diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/TracingRepository.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/TracingRepository.kt index 3beb1fb40b6525a237422bcb0fa72f4a341737c6..966f104dc704db3ae5a6bab148a813105679835a 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/TracingRepository.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/TracingRepository.kt @@ -78,6 +78,8 @@ object TracingRepository { val isEnabled = InternalExposureNotificationClient.asyncIsEnabled() isTracingEnabled.value = isEnabled } catch (e: Exception) { + // when API is not available, ensure tracing is displayed as off + isTracingEnabled.postValue(false) e.report( ExceptionCategory.EXPOSURENOTIFICATION, TAG, diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsNotificationFragment.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsNotificationFragment.kt index 2344f700960106f66274889270eeb6319c162ca5..4317f0e40adf3b187812170832489017fdb58bba 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsNotificationFragment.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsNotificationFragment.kt @@ -66,7 +66,7 @@ class SettingsNotificationFragment : Fragment() { val updateTestNotificationSwitch = binding.settingsSwitchRowNotificationsTest.settingsSwitchRowSwitch // Settings - val settingsRow = binding.settingsNavigationRowSystem.navigationRow + val settingsRow = binding.settingsNotificationsCard.tracingStatusCardButton val goBack = binding.settingsNotificationsHeader.headerButtonBack.buttonIcon // Update Risk diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsResetFragment.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsResetFragment.kt index ab76409e36161b6dadeed66f43beee76815c24bc..a0f6f4b3bf10cba7f7ee563df1a0c7ec2cb2e082 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsResetFragment.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsResetFragment.kt @@ -16,7 +16,6 @@ import de.rki.coronawarnapp.nearby.InternalExposureNotificationClient import de.rki.coronawarnapp.ui.main.MainActivity import de.rki.coronawarnapp.ui.onboarding.OnboardingActivity import de.rki.coronawarnapp.util.DataRetentionHelper -import de.rki.coronawarnapp.util.SettingsNavigationHelper import de.rki.coronawarnapp.worker.BackgroundWorkScheduler import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.launch @@ -60,9 +59,6 @@ class SettingsResetFragment : Fragment() { binding.settingsResetHeader.headerButtonBack.buttonIcon.setOnClickListener { (activity as MainActivity).goBack() } - binding.settingsResetKeys.tracingStatusCardButton.setOnClickListener { - SettingsNavigationHelper.toEnSettings(requireContext()) - } } // TODO verify that all local data is deleted diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsTracingFragment.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsTracingFragment.kt index 941451a8b396cd167664fe5453d70b4e946bc090..e22cdad1d5bf5547e9e8a18a1bf2d07214aba3cf 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsTracingFragment.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/settings/SettingsTracingFragment.kt @@ -125,8 +125,8 @@ class SettingsTracingFragment : Fragment(), private fun startStopTracing() { // if tracing is enabled when listener is activated it should be disabled lifecycleScope.launch { - if (InternalExposureNotificationClient.asyncIsEnabled()) { - try { + try { + if (InternalExposureNotificationClient.asyncIsEnabled()) { Toast.makeText( requireContext(), "Tracing stopped successfully", @@ -135,25 +135,26 @@ class SettingsTracingFragment : Fragment(), .show() InternalExposureNotificationClient.asyncStop() - } catch (exception: Exception) { - exception.report( - ExceptionCategory.EXPOSURENOTIFICATION, - TAG, - null - ) - } - tracingViewModel.refreshIsTracingEnabled() - BackgroundWorkScheduler.stopWorkScheduler() - } else { - // tracing was already activated - if (LocalData.initialTracingActivationTimestamp() != null) { - internalExposureNotificationPermissionHelper.requestPermissionToStartTracing() + tracingViewModel.refreshIsTracingEnabled() + BackgroundWorkScheduler.stopWorkScheduler() } else { - // tracing was never activated - // ask for consent via dialog for initial tracing activation when tracing was not - // activated during onboarding - showConsentDialog() + // tracing was already activated + if (LocalData.initialTracingActivationTimestamp() != null) { + internalExposureNotificationPermissionHelper.requestPermissionToStartTracing() + } else { + // tracing was never activated + // ask for consent via dialog for initial tracing activation when tracing was not + // activated during onboarding + showConsentDialog() + } } + } catch (exception: Exception) { + tracingViewModel.refreshIsTracingEnabled() + exception.report( + ExceptionCategory.EXPOSURENOTIFICATION, + TAG, + null + ) } } } diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/SettingsNavigationHelper.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/SettingsNavigationHelper.kt index 22265e06264e9008e860b8a765d06114aa48d061..bb2fb34da90cc0087ebe500fe8f0c414cacb8a82 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/SettingsNavigationHelper.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/SettingsNavigationHelper.kt @@ -4,7 +4,6 @@ import android.content.Context import android.content.Intent import android.os.Build import android.provider.Settings -import com.google.android.gms.nearby.exposurenotification.ExposureNotificationClient.ACTION_EXPOSURE_NOTIFICATION_SETTINGS /** * A helper to navigate to the os settings, used in different places in the application, @@ -45,15 +44,5 @@ object SettingsNavigationHelper { } context.startActivity(intent) } - - /** - * Navigate the user to the os exposure notification settings - * - * @param context - */ - fun toEnSettings(context: Context) { - val intent = Intent(ACTION_EXPOSURE_NOTIFICATION_SETTINGS) - context.startActivity(intent) - } // todo navigate storage settings } diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterHelper.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterHelper.kt index 6b1a56f39daa147d7c93f795fcaa0d08bdffa96e..c826961f01ce619e5081157b8670546bfe38b9a5 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterHelper.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterHelper.kt @@ -95,7 +95,7 @@ fun formatVisibilityText(text: String?): Int = formatVisibility(text != null && * @param text * @return */ -fun formatVisibilityText(text: CharSequence?): Int = formatVisibility(text != null) +fun formatVisibilityText(text: CharSequence?): Int = formatVisibility(text != null && text != "") /*Text*/ /** @@ -106,12 +106,14 @@ fun formatVisibilityText(text: CharSequence?): Int = formatVisibility(text != nu * @param stringFalse * @return */ -fun formatText(value: Boolean?, stringTrue: Int, stringFalse: Int): String { +fun formatText(value: Boolean?, stringTrue: Int, stringFalse: Int?): String { val appContext = CoronaWarnApplication.getAppContext() return if (value == true) { appContext.getString(stringTrue) } else { - appContext.getString(stringFalse) + if (stringFalse != null) { + appContext.getString(stringFalse) + } else "" } } diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelper.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelper.kt index c37cd7004a19d23a3c66b815df512626a040c89c..fbaea2c319efae910d7aa3ffcd7cdc0e58f343f8 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelper.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelper.kt @@ -41,11 +41,8 @@ fun formatNotificationsStatusText( * @param notifications * @return */ -fun formatNotificationsTitle(notifications: Boolean): String = formatText( - notifications, - R.string.settings_notifications_headline_active, - R.string.settings_notifications_headline_inactive -) +fun formatNotificationsTitle(notifications: Boolean): String? = + formatText(notifications, R.string.settings_notifications_headline_active, null) /** * Formats the settings notifications description text display depending on notifications status @@ -53,11 +50,8 @@ fun formatNotificationsTitle(notifications: Boolean): String = formatText( * @param notifications * @return */ -fun formatNotificationsDescription(notifications: Boolean): String = formatText( - notifications, - R.string.settings_notifications_body_active, - R.string.settings_notifications_body_inactive -) +fun formatNotificationsDescription(notifications: Boolean): String? = + formatText(notifications, R.string.settings_notifications_body_active, null) /** * Formats the settings notifications details illustration description depending on notifications status diff --git a/Corona-Warn-App/src/main/res/drawable-night/ic_illustration_test.xml b/Corona-Warn-App/src/main/res/drawable-night/ic_illustration_test.xml index 6e83eb3f1de436a57ee80b1710588c5ba73e48ea..9472fc4720aad0ad46adfc5f2db88127e28584b1 100644 --- a/Corona-Warn-App/src/main/res/drawable-night/ic_illustration_test.xml +++ b/Corona-Warn-App/src/main/res/drawable-night/ic_illustration_test.xml @@ -3,765 +3,451 @@ android:height="220dp" android:viewportWidth="360" android:viewportHeight="220"> - <group> - <path - android:fillColor="#B1BBC2" - android:fillType="nonZero" - android:pathData="M68.171,118.984L45.088,118.907C44.597,118.905 44.197,119.304 44.196,119.796L44.171,127.033C44.17,127.527 44.567,127.927 45.058,127.929L68.141,128.005C68.632,128.007 69.032,127.609 69.033,127.116L69.058,119.879C69.059,119.386 68.662,118.986 68.171,118.984" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#94A1AB" - android:fillType="nonZero" - android:pathData="M68.215,106.455L45.132,106.378C44.641,106.376 44.242,106.775 44.24,107.267L44.216,114.504C44.215,114.997 44.612,115.398 45.103,115.4L68.185,115.476C68.676,115.478 69.076,115.08 69.078,114.587L69.102,107.35C69.104,106.857 68.707,106.457 68.215,106.455" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M45.47,115.399C45.47,115.399 45.158,115.4 45.144,115.4C44.938,115.399 45.172,115.403 44.966,115.399C44.797,115.394 44.262,115.2 44.244,114.627C44.243,113.992 44.244,109.477 44.244,107.319C44.239,106.562 44.85,106.384 45.066,106.383C45.253,106.383 44.946,106.384 45.134,106.383C45.174,106.382 45.469,106.383 45.469,106.383L45.47,115.399Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#748692" - android:fillType="nonZero" - android:pathData="M68.253,93.929L45.17,93.852C44.679,93.85 44.279,94.249 44.277,94.741L44.253,101.978C44.252,102.472 44.649,102.872 45.14,102.874L68.223,102.95C68.714,102.952 69.114,102.554 69.115,102.062L69.139,94.824C69.141,94.331 68.744,93.931 68.253,93.929" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M68.285,81.407L45.202,81.33C44.711,81.329 44.311,81.727 44.31,82.219L44.286,89.456C44.285,89.95 44.682,90.35 45.173,90.352L68.255,90.428C68.746,90.43 69.146,90.032 69.147,89.539L69.171,82.302C69.173,81.809 68.776,81.409 68.285,81.407" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E7EAEF" - android:fillType="nonZero" - android:pathData="M57.009,110.785C60.435,110.785 63.212,108 63.212,104.564C63.212,101.129 60.435,98.343 57.009,98.343C53.582,98.343 50.805,101.129 50.805,104.564C50.805,108 53.582,110.785 57.009,110.785" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M49.014,99.496L49.014,98.871L48.967,97.795L49.58,99.496L49.902,99.496L50.517,97.793L50.47,98.871L50.47,99.496L50.941,99.496L50.941,97.211L50.325,97.211L49.743,98.868L49.158,97.211L48.544,97.211L48.544,99.496L49.014,99.496ZM52.404,99.496L52.404,97.208L52.356,97.208L51.412,97.547L51.412,97.916L51.952,97.748L51.952,99.496L52.404,99.496ZM53.864,99.527C54.107,99.527 54.303,99.466 54.45,99.344C54.598,99.221 54.672,99.059 54.672,98.856C54.672,98.73 54.64,98.621 54.577,98.529C54.514,98.437 54.418,98.368 54.29,98.322C54.393,98.275 54.477,98.208 54.54,98.12C54.604,98.032 54.636,97.936 54.636,97.831C54.636,97.628 54.567,97.469 54.431,97.353C54.294,97.238 54.105,97.18 53.864,97.18C53.725,97.18 53.598,97.207 53.483,97.26C53.368,97.313 53.278,97.387 53.214,97.482C53.15,97.577 53.118,97.684 53.118,97.803L53.118,97.803L53.57,97.803C53.57,97.727 53.599,97.665 53.658,97.617C53.716,97.569 53.789,97.546 53.875,97.546C53.971,97.546 54.047,97.571 54.101,97.622C54.156,97.674 54.183,97.745 54.183,97.837C54.183,97.933 54.156,98.009 54.101,98.066C54.045,98.124 53.96,98.153 53.845,98.153L53.845,98.153L53.604,98.153L53.604,98.507L53.844,98.507C54.094,98.507 54.219,98.621 54.219,98.849C54.219,98.944 54.189,99.019 54.128,99.076C54.067,99.133 53.983,99.162 53.875,99.162C53.781,99.162 53.702,99.135 53.638,99.08C53.574,99.026 53.542,98.956 53.542,98.87L53.542,98.87L53.09,98.87C53.09,99.068 53.162,99.227 53.306,99.347C53.451,99.467 53.637,99.527 53.864,99.527ZM55.302,99.518L55.413,99.516C55.76,99.502 56.027,99.386 56.216,99.168C56.405,98.95 56.499,98.651 56.499,98.27L56.499,98.27L56.499,98.103C56.498,97.921 56.465,97.759 56.401,97.618C56.336,97.477 56.245,97.368 56.128,97.293C56.012,97.218 55.878,97.18 55.728,97.18C55.582,97.18 55.45,97.215 55.334,97.284C55.217,97.354 55.126,97.451 55.06,97.576C54.995,97.701 54.963,97.838 54.963,97.988C54.963,98.223 55.023,98.41 55.144,98.549C55.265,98.688 55.426,98.757 55.628,98.757C55.785,98.757 55.923,98.699 56.041,98.583C56.008,98.935 55.796,99.12 55.402,99.138L55.402,99.138L55.302,99.14L55.302,99.518ZM55.739,98.41C55.636,98.41 55.555,98.37 55.499,98.29C55.442,98.21 55.413,98.108 55.413,97.983C55.413,97.858 55.443,97.753 55.501,97.67C55.559,97.587 55.634,97.546 55.725,97.546C55.823,97.546 55.901,97.588 55.959,97.673C56.018,97.757 56.047,97.877 56.047,98.03L56.047,98.03L56.047,98.217C56.02,98.27 55.98,98.316 55.927,98.354C55.875,98.391 55.812,98.41 55.739,98.41ZM57.587,99.527C57.838,99.527 58.029,99.444 58.16,99.276C58.29,99.109 58.355,98.867 58.355,98.551L58.355,98.551L58.355,98.131C58.352,97.824 58.285,97.589 58.153,97.426C58.022,97.262 57.832,97.18 57.584,97.18C57.335,97.18 57.145,97.263 57.013,97.428C56.881,97.593 56.815,97.835 56.815,98.154L56.815,98.154L56.815,98.575C56.819,98.881 56.886,99.117 57.017,99.281C57.149,99.445 57.339,99.527 57.587,99.527ZM57.587,99.162C57.475,99.162 57.394,99.117 57.344,99.026C57.293,98.936 57.268,98.797 57.268,98.611L57.268,98.611L57.268,98.056C57.271,97.881 57.298,97.752 57.348,97.67C57.399,97.588 57.477,97.547 57.584,97.547C57.693,97.547 57.774,97.59 57.825,97.677C57.877,97.763 57.903,97.901 57.903,98.09L57.903,98.09L57.903,98.633C57.901,98.812 57.875,98.945 57.826,99.032C57.777,99.118 57.697,99.162 57.587,99.162ZM58.985,99.496L59.141,99.025L59.965,99.025L60.123,99.496L60.622,99.496L59.769,97.211L59.334,97.211L58.486,99.496L58.985,99.496ZM59.838,98.644L59.268,98.644L59.551,97.789L59.838,98.644ZM61.304,99.496L61.304,98.871L61.257,97.795L61.87,99.496L62.193,99.496L62.808,97.793L62.761,98.871L62.761,99.496L63.232,99.496L63.232,97.211L62.615,97.211L62.033,98.868L61.448,97.211L60.835,97.211L60.835,99.496L61.304,99.496ZM65.106,99.496L65.106,99.118L64.11,99.118L64.11,97.211L63.64,97.211L63.64,99.496L65.106,99.496Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M49.178,111.961L49.178,111.028L50.08,111.028L50.08,110.648L49.178,110.648L49.178,110.058L50.192,110.058L50.192,109.677L48.709,109.677L48.709,111.961L49.178,111.961ZM50.934,111.961L50.934,111.309L51.178,111.045L51.763,111.961L52.322,111.961L51.489,110.692L52.298,109.677L51.721,109.677L51.14,110.428L50.934,110.712L50.934,109.677L50.464,109.677L50.464,111.961L50.934,111.961ZM53.107,111.993C53.254,111.993 53.386,111.963 53.503,111.902C53.62,111.841 53.711,111.755 53.775,111.644C53.839,111.532 53.871,111.404 53.871,111.259L53.871,111.259L53.871,109.677L53.402,109.677L53.402,111.259C53.402,111.373 53.375,111.46 53.322,111.522C53.269,111.584 53.197,111.615 53.107,111.615C53.006,111.615 52.932,111.588 52.885,111.535C52.838,111.481 52.815,111.399 52.815,111.287L52.815,111.287L52.342,111.287C52.342,111.512 52.409,111.686 52.544,111.809C52.679,111.931 52.866,111.993 53.107,111.993ZM54.544,111.983L54.655,111.982C55.001,111.967 55.269,111.851 55.458,111.634C55.646,111.416 55.741,111.117 55.741,110.736L55.741,110.736L55.741,110.568C55.74,110.386 55.707,110.224 55.642,110.083C55.578,109.942 55.487,109.834 55.37,109.758C55.253,109.683 55.12,109.645 54.969,109.645C54.823,109.645 54.692,109.68 54.575,109.75C54.458,109.819 54.367,109.917 54.302,110.042C54.237,110.167 54.204,110.304 54.204,110.454C54.204,110.689 54.265,110.876 54.386,111.015C54.507,111.153 54.668,111.222 54.869,111.222C55.027,111.222 55.164,111.164 55.282,111.048C55.25,111.401 55.037,111.586 54.644,111.604L54.644,111.604L54.544,111.605L54.544,111.983ZM54.98,110.876C54.877,110.876 54.797,110.836 54.74,110.756C54.683,110.676 54.655,110.573 54.655,110.449C54.655,110.323 54.684,110.219 54.743,110.136C54.801,110.053 54.876,110.011 54.966,110.011C55.064,110.011 55.143,110.053 55.201,110.138C55.259,110.223 55.289,110.342 55.289,110.496L55.289,110.496L55.289,110.683C55.262,110.736 55.222,110.782 55.169,110.819C55.116,110.857 55.053,110.876 54.98,110.876ZM56.382,111.983L56.494,111.982C56.84,111.967 57.107,111.851 57.296,111.634C57.485,111.416 57.579,111.117 57.579,110.736L57.579,110.736L57.579,110.568C57.578,110.386 57.546,110.224 57.481,110.083C57.416,109.942 57.325,109.834 57.209,109.758C57.092,109.683 56.958,109.645 56.808,109.645C56.662,109.645 56.531,109.68 56.414,109.75C56.297,109.819 56.206,109.917 56.141,110.042C56.075,110.167 56.043,110.304 56.043,110.454C56.043,110.689 56.103,110.876 56.224,111.015C56.345,111.153 56.507,111.222 56.708,111.222C56.865,111.222 57.003,111.164 57.121,111.048C57.089,111.401 56.876,111.586 56.483,111.604L56.483,111.604L56.382,111.605L56.382,111.983ZM56.819,110.876C56.716,110.876 56.636,110.836 56.579,110.756C56.522,110.676 56.494,110.573 56.494,110.449C56.494,110.323 56.523,110.219 56.581,110.136C56.64,110.053 56.714,110.011 56.805,110.011C56.903,110.011 56.981,110.053 57.04,110.138C57.098,110.223 57.127,110.342 57.127,110.496L57.127,110.496L57.127,110.683C57.1,110.736 57.06,110.782 57.008,110.819C56.955,110.857 56.892,110.876 56.819,110.876ZM58.673,111.993C58.831,111.993 58.968,111.961 59.083,111.896C59.199,111.832 59.288,111.742 59.35,111.625C59.412,111.508 59.443,111.376 59.443,111.229C59.443,110.986 59.382,110.797 59.259,110.662C59.135,110.527 58.965,110.46 58.748,110.46C58.627,110.46 58.513,110.489 58.406,110.546L58.406,110.546L58.462,110.055L59.368,110.055L59.368,109.677L58.091,109.677L57.96,110.838L58.32,110.927L58.364,110.887C58.43,110.83 58.517,110.802 58.625,110.802C58.742,110.802 58.832,110.836 58.896,110.905C58.959,110.975 58.991,111.074 58.991,111.204C58.991,111.339 58.963,111.443 58.908,111.517C58.853,111.59 58.774,111.627 58.672,111.627C58.58,111.627 58.506,111.601 58.449,111.548C58.392,111.495 58.359,111.421 58.349,111.326L58.349,111.326L57.902,111.326C57.906,111.456 57.942,111.571 58.011,111.673C58.079,111.774 58.172,111.853 58.29,111.909C58.408,111.965 58.536,111.993 58.673,111.993ZM60.451,111.993C60.694,111.993 60.889,111.932 61.037,111.809C61.185,111.687 61.258,111.524 61.258,111.321C61.258,111.196 61.227,111.087 61.164,110.995C61.101,110.903 61.005,110.834 60.877,110.788C60.98,110.741 61.063,110.673 61.127,110.585C61.191,110.497 61.222,110.401 61.222,110.297C61.222,110.094 61.154,109.934 61.017,109.819C60.881,109.703 60.692,109.645 60.451,109.645C60.312,109.645 60.185,109.672 60.07,109.725C59.955,109.779 59.865,109.853 59.801,109.948C59.737,110.042 59.705,110.149 59.705,110.268L59.705,110.268L60.157,110.268C60.157,110.192 60.186,110.13 60.244,110.082C60.303,110.035 60.375,110.011 60.462,110.011C60.558,110.011 60.633,110.037 60.688,110.088C60.743,110.139 60.77,110.211 60.77,110.303C60.77,110.398 60.743,110.474 60.687,110.532C60.632,110.59 60.547,110.618 60.432,110.618L60.432,110.618L60.191,110.618L60.191,110.973L60.431,110.973C60.681,110.973 60.806,111.087 60.806,111.315C60.806,111.409 60.776,111.485 60.715,111.542C60.654,111.599 60.569,111.627 60.462,111.627C60.368,111.627 60.289,111.6 60.225,111.546C60.161,111.491 60.129,111.421 60.129,111.335L60.129,111.335L59.676,111.335C59.676,111.533 59.749,111.692 59.893,111.812C60.038,111.933 60.224,111.993 60.451,111.993ZM62.33,111.993C62.581,111.993 62.772,111.909 62.903,111.742C63.033,111.574 63.098,111.333 63.098,111.017L63.098,111.017L63.098,110.596C63.095,110.29 63.028,110.055 62.896,109.891C62.765,109.727 62.575,109.645 62.327,109.645C62.078,109.645 61.888,109.728 61.756,109.893C61.624,110.059 61.558,110.301 61.558,110.62L61.558,110.62L61.558,111.04C61.561,111.347 61.629,111.582 61.76,111.747C61.892,111.911 62.082,111.993 62.33,111.993ZM62.33,111.627C62.218,111.627 62.137,111.582 62.086,111.492C62.036,111.401 62.011,111.263 62.011,111.077L62.011,111.077L62.011,110.521C62.014,110.346 62.041,110.218 62.091,110.136C62.142,110.054 62.22,110.013 62.327,110.013C62.436,110.013 62.517,110.056 62.568,110.142C62.62,110.228 62.646,110.366 62.646,110.556L62.646,110.556L62.646,111.098C62.644,111.277 62.618,111.41 62.569,111.497C62.52,111.584 62.44,111.627 62.33,111.627ZM64.942,111.961L64.942,111.596L63.962,111.596L64.48,111.048C64.622,110.892 64.722,110.756 64.781,110.639C64.839,110.522 64.868,110.406 64.868,110.294C64.868,110.087 64.803,109.928 64.673,109.815C64.544,109.702 64.361,109.645 64.127,109.645C63.973,109.645 63.836,109.678 63.715,109.744C63.594,109.809 63.5,109.899 63.434,110.014C63.368,110.129 63.335,110.256 63.335,110.396L63.335,110.396L63.789,110.396C63.789,110.28 63.818,110.188 63.877,110.117C63.936,110.046 64.017,110.011 64.119,110.011C64.214,110.011 64.287,110.04 64.338,110.098C64.389,110.156 64.414,110.236 64.414,110.337C64.414,110.412 64.39,110.49 64.342,110.573C64.293,110.655 64.218,110.752 64.117,110.863L64.117,110.863L63.38,111.651L63.38,111.961L64.942,111.961Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#1E1E1F" - android:fillType="nonZero" - android:pathData="M50.395,111.197l13.229,0l0,-13.265l-13.229,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M55.726,103.616L55.505,103.616C55.21,103.616 54.972,103.861 54.972,104.163L54.972,106.033C54.972,106.334 55.21,106.579 55.505,106.579L58.326,106.579C58.621,106.579 58.859,106.334 58.859,106.033L58.859,104.163C58.859,103.861 58.621,103.616 58.326,103.616L58.105,103.616C58.066,102.801 57.548,102.155 56.915,102.155C56.284,102.155 55.765,102.801 55.726,103.616M56.915,102.68C57.262,102.68 57.558,103.1 57.592,103.616L56.24,103.616C56.273,103.1 56.569,102.68 56.915,102.68" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M56.852,99.789C56.423,100.049 55.044,100.819 53.659,100.922C53.491,100.933 53.362,101.07 53.362,101.236L53.362,106.18C53.362,106.939 53.762,107.644 54.42,108.04C55.485,108.681 56.652,109.288 56.927,109.429C56.965,109.448 57.01,109.448 57.047,109.429C57.322,109.288 58.489,108.681 59.553,108.04C60.212,107.644 60.613,106.939 60.613,106.18L60.613,101.236C60.613,101.07 60.483,100.933 60.316,100.922C58.93,100.819 57.55,100.049 57.122,99.789C57.081,99.765 57.034,99.752 56.987,99.752C56.94,99.752 56.893,99.765 56.852,99.789" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M54.376,107.178l5.08,0l0,-5.622l-5.08,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M49.803,87.03L49.803,86.536L50.061,86.536L50.061,86.171L49.803,86.171L49.803,84.746L49.346,84.746L48.396,86.251L48.417,86.536L49.351,86.536L49.351,87.03L49.803,87.03ZM49.351,86.171L48.847,86.171L49.321,85.416L49.351,85.364L49.351,86.171ZM51.103,87.062C51.251,87.062 51.384,87.028 51.501,86.961C51.619,86.894 51.709,86.801 51.774,86.681C51.838,86.56 51.87,86.426 51.87,86.277C51.87,86.045 51.811,85.858 51.694,85.716C51.578,85.573 51.42,85.502 51.222,85.502C51.037,85.502 50.884,85.564 50.763,85.687C50.788,85.503 50.863,85.359 50.988,85.256C51.113,85.152 51.277,85.099 51.482,85.096L51.482,85.096L51.525,85.096L51.525,84.722L51.45,84.722C51.22,84.723 51.017,84.776 50.842,84.88C50.668,84.984 50.534,85.131 50.44,85.321C50.347,85.511 50.3,85.73 50.3,85.978L50.3,85.978L50.3,86.141C50.3,86.42 50.374,86.643 50.522,86.811C50.669,86.978 50.863,87.062 51.103,87.062ZM51.094,86.696C50.986,86.696 50.903,86.654 50.843,86.568C50.784,86.483 50.754,86.365 50.754,86.213L50.754,86.213L50.754,86.075C50.782,86.012 50.826,85.962 50.885,85.923C50.945,85.885 51.011,85.866 51.084,85.866C51.186,85.866 51.268,85.904 51.328,85.981C51.389,86.057 51.419,86.157 51.419,86.282C51.419,86.404 51.389,86.504 51.329,86.581C51.269,86.658 51.191,86.696 51.094,86.696ZM52.918,87.062C53.076,87.062 53.212,87.03 53.328,86.965C53.444,86.901 53.533,86.811 53.595,86.694C53.657,86.577 53.688,86.445 53.688,86.298C53.688,86.055 53.626,85.866 53.503,85.731C53.38,85.596 53.21,85.529 52.993,85.529C52.872,85.529 52.758,85.558 52.651,85.615L52.651,85.615L52.707,85.124L53.613,85.124L53.613,84.746L52.336,84.746L52.205,85.907L52.564,85.996L52.608,85.956C52.675,85.899 52.762,85.871 52.87,85.871C52.986,85.871 53.077,85.905 53.14,85.974C53.204,86.043 53.236,86.143 53.236,86.273C53.236,86.408 53.208,86.512 53.153,86.586C53.098,86.659 53.019,86.696 52.917,86.696C52.825,86.696 52.75,86.67 52.694,86.617C52.637,86.564 52.604,86.49 52.594,86.395L52.594,86.395L52.147,86.395C52.151,86.525 52.187,86.64 52.255,86.742C52.324,86.843 52.417,86.922 52.535,86.978C52.653,87.034 52.78,87.062 52.918,87.062ZM54.741,87.062C54.978,87.062 55.165,87.003 55.303,86.885C55.441,86.768 55.509,86.607 55.509,86.404C55.509,86.278 55.477,86.168 55.412,86.074C55.348,85.98 55.26,85.907 55.15,85.854C55.247,85.802 55.323,85.734 55.378,85.648C55.433,85.562 55.461,85.464 55.461,85.353C55.461,85.156 55.396,85.001 55.266,84.886C55.136,84.772 54.961,84.714 54.74,84.714C54.517,84.714 54.342,84.772 54.212,84.888C54.083,85.003 54.018,85.158 54.018,85.353C54.018,85.464 54.046,85.562 54.1,85.648C54.155,85.734 54.231,85.802 54.328,85.854C54.218,85.906 54.131,85.979 54.067,86.073C54.002,86.167 53.97,86.278 53.97,86.404C53.97,86.606 54.039,86.766 54.178,86.885C54.317,87.003 54.504,87.062 54.741,87.062ZM54.741,85.678C54.656,85.678 54.589,85.65 54.542,85.595C54.495,85.539 54.472,85.466 54.472,85.375C54.472,85.283 54.495,85.211 54.542,85.158C54.589,85.106 54.655,85.08 54.74,85.08C54.825,85.08 54.891,85.107 54.938,85.161C54.985,85.215 55.009,85.286 55.009,85.375C55.009,85.466 54.985,85.539 54.939,85.595C54.893,85.65 54.827,85.678 54.741,85.678ZM54.741,86.696C54.641,86.696 54.563,86.666 54.506,86.607C54.45,86.547 54.422,86.469 54.422,86.371C54.422,86.271 54.451,86.191 54.508,86.132C54.565,86.073 54.642,86.043 54.738,86.043C54.835,86.043 54.912,86.073 54.97,86.133C55.027,86.193 55.056,86.272 55.056,86.371C55.056,86.473 55.028,86.552 54.972,86.61C54.916,86.667 54.839,86.696 54.741,86.696ZM56.872,87.03L57.665,84.746L57.142,84.746L56.626,86.464L56.113,84.746L55.592,84.746L56.382,87.03L56.872,87.03ZM58.349,87.03L58.349,86.194L58.723,86.194L59.15,87.03L59.654,87.03L59.654,87.008L59.161,86.075C59.298,86.013 59.4,85.93 59.467,85.826C59.534,85.722 59.568,85.592 59.568,85.436C59.568,85.217 59.495,85.047 59.349,84.926C59.203,84.806 58.995,84.746 58.726,84.746L58.726,84.746L57.879,84.746L57.879,87.03L58.349,87.03ZM58.728,85.813L58.349,85.813L58.349,85.127L58.726,85.127C58.852,85.127 58.946,85.158 59.007,85.22C59.068,85.281 59.098,85.366 59.098,85.474C59.098,85.58 59.066,85.662 59.001,85.723C58.937,85.783 58.845,85.813 58.728,85.813L58.728,85.813ZM60.544,87.03L61.425,85L61.425,84.746L59.817,84.746L59.817,85.113L60.95,85.113L60.067,87.03L60.544,87.03ZM63.276,87.03L63.276,86.665L62.297,86.665L62.815,86.117C62.957,85.961 63.057,85.825 63.115,85.708C63.174,85.591 63.203,85.475 63.203,85.362C63.203,85.156 63.138,84.997 63.008,84.884C62.878,84.771 62.696,84.714 62.461,84.714C62.308,84.714 62.171,84.747 62.05,84.813C61.929,84.878 61.835,84.968 61.769,85.083C61.702,85.198 61.669,85.325 61.669,85.464L61.669,85.464L62.123,85.464C62.123,85.349 62.153,85.257 62.212,85.186C62.27,85.115 62.351,85.08 62.453,85.08C62.548,85.08 62.621,85.109 62.672,85.167C62.723,85.225 62.749,85.305 62.749,85.406C62.749,85.481 62.725,85.559 62.676,85.642C62.628,85.724 62.553,85.821 62.452,85.932L62.452,85.932L61.715,86.72L61.715,87.03L63.276,87.03ZM64.428,87.062C64.68,87.062 64.881,87.006 65.03,86.893C65.18,86.781 65.254,86.626 65.254,86.428C65.254,86.25 65.193,86.102 65.071,85.982C64.949,85.863 64.755,85.763 64.488,85.683C64.342,85.639 64.233,85.592 64.158,85.541C64.084,85.491 64.046,85.429 64.046,85.355C64.046,85.275 64.078,85.211 64.142,85.162C64.205,85.114 64.295,85.089 64.409,85.089C64.528,85.089 64.621,85.118 64.686,85.177C64.752,85.235 64.785,85.316 64.785,85.421L64.785,85.421L65.254,85.421C65.254,85.283 65.219,85.161 65.149,85.053C65.078,84.946 64.979,84.862 64.852,84.803C64.725,84.744 64.58,84.714 64.417,84.714C64.255,84.714 64.11,84.742 63.98,84.796C63.85,84.85 63.75,84.926 63.681,85.023C63.611,85.12 63.577,85.23 63.577,85.353C63.577,85.591 63.706,85.779 63.965,85.92C64.06,85.971 64.189,86.023 64.351,86.076C64.514,86.128 64.627,86.179 64.689,86.226C64.752,86.274 64.783,86.342 64.783,86.431C64.783,86.513 64.752,86.576 64.689,86.622C64.627,86.667 64.54,86.69 64.428,86.69C64.128,86.69 63.977,86.564 63.977,86.312L63.977,86.312L63.506,86.312C63.506,86.459 63.544,86.589 63.62,86.701C63.695,86.813 63.805,86.901 63.949,86.965C64.093,87.03 64.253,87.062 64.428,87.062Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M48.654,124.427L48.654,123.448L49.569,123.448L49.569,124.427L50.039,124.427L50.039,122.143L49.569,122.143L49.569,123.068L48.654,123.068L48.654,122.143L48.184,122.143L48.184,124.427L48.654,124.427ZM50.783,124.427L50.94,123.956L51.763,123.956L51.921,124.427L52.42,124.427L51.567,122.143L51.132,122.143L50.284,124.427L50.783,124.427ZM51.636,123.575L51.067,123.575L51.35,122.72L51.636,123.575ZM53.29,124.459C53.533,124.459 53.728,124.397 53.876,124.275C54.024,124.153 54.097,123.99 54.097,123.787C54.097,123.661 54.066,123.553 54.003,123.461C53.94,123.369 53.844,123.3 53.716,123.254C53.819,123.206 53.902,123.139 53.966,123.051C54.03,122.963 54.061,122.867 54.061,122.762C54.061,122.559 53.993,122.4 53.856,122.285C53.72,122.169 53.531,122.111 53.29,122.111C53.151,122.111 53.024,122.138 52.909,122.191C52.794,122.245 52.704,122.319 52.64,122.413C52.576,122.508 52.544,122.615 52.544,122.734L52.544,122.734L52.996,122.734C52.996,122.658 53.025,122.596 53.083,122.548C53.142,122.501 53.214,122.477 53.301,122.477C53.397,122.477 53.472,122.502 53.527,122.554C53.582,122.605 53.609,122.677 53.609,122.769C53.609,122.864 53.581,122.94 53.526,122.998C53.471,123.055 53.386,123.084 53.271,123.084L53.271,123.084L53.03,123.084L53.03,123.439L53.27,123.439C53.52,123.439 53.645,123.553 53.645,123.781C53.645,123.875 53.615,123.95 53.554,124.007C53.493,124.064 53.408,124.093 53.301,124.093C53.207,124.093 53.128,124.066 53.064,124.011C53,123.957 52.968,123.887 52.968,123.801L52.968,123.801L52.515,123.801C52.515,123.999 52.588,124.158 52.732,124.278C52.877,124.398 53.062,124.459 53.29,124.459ZM55.747,124.427L55.747,123.933L56.005,123.933L56.005,123.567L55.747,123.567L55.747,122.143L55.29,122.143L54.34,123.647L54.36,123.933L55.294,123.933L55.294,124.427L55.747,124.427ZM55.294,123.567L54.791,123.567L55.265,122.813L55.294,122.761L55.294,123.567ZM57.211,124.459C57.398,124.459 57.569,124.431 57.724,124.375C57.878,124.319 57.998,124.24 58.082,124.138L58.082,124.138L58.082,123.227L57.186,123.227L57.186,123.574L57.613,123.574L57.613,123.967C57.538,124.043 57.412,124.08 57.236,124.08C57.06,124.08 56.927,124.019 56.837,123.897C56.746,123.774 56.7,123.593 56.7,123.354L56.7,123.354L56.7,123.208C56.701,122.971 56.744,122.792 56.827,122.671C56.911,122.551 57.032,122.491 57.192,122.491C57.317,122.491 57.415,122.521 57.487,122.582C57.558,122.643 57.604,122.738 57.625,122.869L57.625,122.869L58.082,122.869C58.054,122.622 57.964,122.434 57.811,122.305C57.659,122.176 57.448,122.111 57.178,122.111C56.984,122.111 56.814,122.155 56.67,122.244C56.525,122.332 56.415,122.46 56.338,122.627C56.262,122.793 56.223,122.991 56.223,123.219L56.223,123.219L56.223,123.374C56.225,123.596 56.267,123.789 56.348,123.953C56.428,124.118 56.543,124.243 56.692,124.329C56.84,124.415 57.013,124.459 57.211,124.459ZM59.314,124.459C59.584,124.459 59.797,124.386 59.953,124.24C60.109,124.095 60.187,123.897 60.187,123.647L60.187,123.647L60.187,122.143L59.716,122.143L59.716,123.663C59.712,123.941 59.578,124.08 59.314,124.08C59.187,124.08 59.089,124.046 59.017,123.978C58.946,123.909 58.91,123.8 58.91,123.65L58.91,123.65L58.91,122.143L58.44,122.143L58.44,123.665C58.444,123.911 58.523,124.106 58.68,124.247C58.836,124.388 59.048,124.459 59.314,124.459ZM60.949,124.427L61.387,123.627L61.825,124.427L62.371,124.427L61.69,123.275L62.354,122.143L61.814,122.143L61.387,122.93L60.96,122.143L60.42,122.143L61.083,123.275L60.403,124.427L60.949,124.427ZM63.31,124.459C63.467,124.459 63.604,124.426 63.72,124.362C63.836,124.298 63.925,124.207 63.987,124.091C64.049,123.974 64.08,123.842 64.08,123.694C64.08,123.452 64.018,123.263 63.895,123.128C63.772,122.993 63.602,122.926 63.385,122.926C63.264,122.926 63.15,122.954 63.042,123.012L63.042,123.012L63.099,122.521L64.005,122.521L64.005,122.143L62.728,122.143L62.596,123.304L62.956,123.393L63,123.352C63.067,123.296 63.154,123.268 63.261,123.268C63.378,123.268 63.469,123.302 63.532,123.371C63.596,123.44 63.628,123.54 63.628,123.669C63.628,123.804 63.6,123.909 63.545,123.982C63.489,124.056 63.411,124.093 63.308,124.093C63.217,124.093 63.142,124.067 63.085,124.014C63.029,123.961 62.995,123.887 62.986,123.792L62.986,123.792L62.539,123.792C62.543,123.921 62.579,124.037 62.647,124.138C62.716,124.24 62.809,124.319 62.927,124.375C63.044,124.431 63.172,124.459 63.31,124.459ZM65.466,124.427L65.466,122.139L65.418,122.139L64.474,122.478L64.474,122.847L65.014,122.679L65.014,124.427L65.466,124.427Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M45.513,90.346C45.513,90.346 45.2,90.347 45.187,90.347C44.981,90.346 45.214,90.35 45.009,90.346C44.838,90.341 44.304,90.146 44.286,89.574C44.285,88.938 44.285,84.424 44.285,82.266C44.281,81.509 44.892,81.331 45.108,81.331C45.295,81.33 44.989,81.331 45.175,81.33C45.216,81.329 45.512,81.33 45.512,81.33L45.513,90.346Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M45.522,102.877C45.522,102.877 45.209,102.878 45.196,102.878C44.99,102.877 45.224,102.881 45.017,102.877C44.848,102.873 44.314,102.678 44.295,102.105C44.295,101.47 44.295,96.955 44.295,94.797C44.29,94.04 44.901,93.862 45.118,93.862C45.304,93.861 44.998,93.862 45.185,93.861C45.226,93.86 45.521,93.861 45.521,93.861L45.522,102.877Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M81.148,103.844C81.148,104.856 80.331,105.676 79.321,105.676C78.313,105.676 77.495,104.856 77.495,103.844C77.495,102.833 78.313,102.013 79.321,102.013C80.331,102.013 81.148,102.833 81.148,103.844" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M93.924,103.82C93.924,104.848 93.092,105.682 92.066,105.682C91.041,105.682 90.209,104.848 90.209,103.82C90.209,102.791 91.041,101.957 92.066,101.957C93.092,101.957 93.924,102.791 93.924,103.82" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#94A1AB" - android:fillType="nonZero" - android:pathData="M183.655,138.393L121.484,138.393C118.852,138.393 116.718,135.802 116.718,132.604L116.718,67.572C116.718,64.374 118.852,61.783 121.484,61.783L183.655,61.783C186.287,61.783 188.421,64.374 188.421,67.572L188.421,132.604C188.421,135.802 186.287,138.393 183.655,138.393" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M178.892,116.041C178.892,117.234 179.856,118.201 181.045,118.201C182.236,118.201 183.199,117.234 183.199,116.041C183.199,114.849 182.236,113.881 181.045,113.881C179.856,113.881 178.892,114.849 178.892,116.041" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M170.278,116.041C170.278,117.234 171.243,118.201 172.431,118.201C173.621,118.201 174.585,117.234 174.585,116.041C174.585,114.849 173.621,113.881 172.431,113.881C171.243,113.881 170.278,114.849 170.278,116.041" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M161.664,116.041C161.664,117.234 162.628,118.201 163.818,118.201C165.007,118.201 165.97,117.234 165.97,116.041C165.97,114.849 165.007,113.881 163.818,113.881C162.628,113.881 161.664,114.849 161.664,116.041" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M178.932,95.28C178.645,96.8 179.95,98.11 181.467,97.821C182.31,97.661 183,96.97 183.159,96.125C183.446,94.603 182.141,93.294 180.625,93.583C179.782,93.743 179.092,94.434 178.932,95.28" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M170.318,95.28C170.03,96.8 171.335,98.11 172.853,97.821C173.696,97.661 174.385,96.97 174.545,96.125C174.833,94.603 173.527,93.294 172.01,93.583C171.167,93.743 170.478,94.434 170.318,95.28" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M161.704,95.28C161.417,96.8 162.722,98.11 164.238,97.821C165.081,97.661 165.771,96.97 165.931,96.125C166.218,94.603 164.913,93.294 163.396,93.583C162.553,93.743 161.864,94.434 161.704,95.28" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M124.242,79.682L154.938,79.682C155.679,79.682 156.28,79.08 156.28,78.337L156.28,72.39C156.28,71.647 155.679,71.044 154.938,71.044L124.242,71.044C123.501,71.044 122.9,71.647 122.9,72.39L122.9,78.337C122.9,79.08 123.501,79.682 124.242,79.682" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M178.932,74.941C178.645,76.462 179.95,77.771 181.467,77.482C182.31,77.322 183,76.631 183.159,75.786C183.446,74.265 182.141,72.955 180.625,73.244C179.782,73.404 179.092,74.095 178.932,74.941" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M170.318,74.941C170.03,76.462 171.335,77.771 172.853,77.482C173.696,77.322 174.385,76.631 174.545,75.786C174.833,74.265 173.527,72.955 172.01,73.244C171.167,73.404 170.478,74.095 170.318,74.941" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M161.704,74.941C161.417,76.462 162.722,77.771 164.238,77.482C165.081,77.322 165.771,76.631 165.931,75.786C166.218,74.265 164.913,72.955 163.396,73.244C162.553,73.404 161.864,74.095 161.704,74.941" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M124.518,100.06L155.215,100.06C155.955,100.06 156.556,99.458 156.556,98.715L156.556,92.767C156.556,92.024 155.955,91.422 155.215,91.422L124.518,91.422C123.777,91.422 123.177,92.024 123.177,92.767L123.177,98.715C123.177,99.458 123.777,100.06 124.518,100.06" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M124.518,119.782L155.215,119.782C155.955,119.782 156.556,119.179 156.556,118.437L156.556,112.49C156.556,111.746 155.955,111.144 155.215,111.144L124.518,111.144C123.777,111.144 123.177,111.746 123.177,112.49L123.177,118.437C123.177,119.179 123.777,119.782 124.518,119.782" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M91.439,146.349C93.048,128.406 116.478,130.141 118.254,130.853C123.207,119.522 139.964,118.207 145.817,122.398C148.743,116.949 152.764,114.252 156.556,112.489C168.974,106.721 190.964,104.248 203.724,129.411C223.678,129 225.329,145.539 225.674,146.349L159.966,146.349L91.439,146.349Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M107.259,103.797C107.259,104.826 106.427,105.66 105.401,105.66C104.376,105.66 103.544,104.826 103.544,103.797C103.544,102.769 104.376,101.935 105.401,101.935C106.427,101.935 107.259,102.769 107.259,103.797" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M200.731,103.844C200.731,104.856 199.914,105.676 198.904,105.676C197.896,105.676 197.078,104.856 197.078,103.844C197.078,102.833 197.896,102.013 198.904,102.013C199.914,102.013 200.731,102.833 200.731,103.844" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M213.506,103.82C213.506,104.848 212.675,105.682 211.649,105.682C210.623,105.682 209.792,104.848 209.792,103.82C209.792,102.791 210.623,101.957 211.649,101.957C212.675,101.957 213.506,102.791 213.506,103.82" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M226.841,103.797C226.841,104.826 226.01,105.66 224.984,105.66C223.959,105.66 223.127,104.826 223.127,103.797C223.127,102.769 223.959,101.935 224.984,101.935C226.01,101.935 226.841,102.769 226.841,103.797" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#1E1E1F" - android:fillType="nonZero" - android:pathData="M47.121,112.237L20.317,112.237C16.798,112.237 13.944,115.082 13.944,118.588L13.944,183.315C13.944,186.822 16.798,189.667 20.317,189.667L47.121,189.667C50.641,189.667 53.493,186.822 53.493,183.315L53.493,118.588C53.493,115.082 50.641,112.237 47.121,112.237" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M47.444,112.559C49.903,112.559 51.905,114.555 51.905,117.009L51.905,184.894C51.905,187.348 49.903,189.344 47.444,189.344L19.365,189.344C16.905,189.344 14.904,187.348 14.904,184.894L14.904,117.009C14.904,114.555 16.905,112.559 19.365,112.559L47.444,112.559ZM47.444,110.349L19.365,110.349C15.678,110.349 12.688,113.33 12.688,117.009L12.688,184.894C12.688,188.572 15.678,191.555 19.365,191.555L47.444,191.555C51.132,191.555 54.121,188.572 54.121,184.894L54.121,117.009C54.121,113.33 51.132,110.349 47.444,110.349L47.444,110.349Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M48.379,160.924L18.557,161.076C18.12,161.079 17.763,160.724 17.761,160.286L17.641,136.68C17.639,136.241 17.992,135.884 18.429,135.882L48.251,135.728C48.688,135.726 49.045,136.08 49.047,136.519L49.168,160.124C49.17,160.564 48.817,160.922 48.379,160.924" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M37.471,150.841C36.039,153.575 32.667,154.625 29.942,153.189C27.216,151.752 26.168,148.371 27.6,145.638C29.034,142.905 32.405,141.854 35.131,143.291C37.856,144.727 38.904,148.108 37.471,150.841" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M38.339,153.263C38.21,153.46 37.775,154.151 37.463,153.306C37.055,152.204 36.193,152.445 36.193,152.445L35.393,152.558L37.073,150.657C37.073,150.657 37.033,151.42 37.28,151.801C37.406,151.993 37.667,152.274 37.995,152.282C38.323,152.289 38.959,152.313 38.339,153.263" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M29.183,155.584C28.963,155.502 28.194,155.229 28.946,154.737C29.928,154.094 29.637,153.038 29.637,153.038L29.35,152.282L31.57,153.503C31.57,153.503 30.819,153.632 30.504,153.959C30.344,154.123 29.996,154.708 30.061,155.03C30.126,155.353 30.244,155.98 29.183,155.584" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M34.843,152.755C34.843,152.755 34.397,152.988 34.536,153.996C34.62,154.597 35.025,155.519 35.083,155.711C35.121,155.834 35.196,155.87 35.3,155.945C35.558,156.129 35.949,156.525 35.021,156.785C34.244,157.004 33.89,156.931 34.047,156.466C34.128,156.229 34.166,156.054 34.138,155.804C34.08,155.258 33.693,153.933 33.181,153.575C32.41,153.036 32.67,153.201 32.67,153.201L34.325,151.948L34.843,152.755Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M30.909,140.989C31.212,140.945 31.551,140.842 31.407,141.37C31.356,141.555 31.347,141.732 31.363,141.895C31.402,142.322 31.545,142.555 31.877,142.826L32.132,143.034L30.432,143.186C30.432,143.186 30.734,142.923 30.652,142.485C30.617,142.303 30.59,141.898 30.384,141.748C30.196,141.609 29.805,141.146 30.909,140.989" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M28.24,146.261C28.106,146.166 28.039,146.002 28.072,145.841C28.128,145.56 28.249,145.131 27.695,144.634C27.059,144.066 26.148,143.632 26.073,143.625C25.494,143.56 25.123,143.535 25.758,142.636C26.36,141.786 26.709,141.821 26.767,142.48C26.781,142.622 26.832,142.758 26.917,142.874C27.217,143.286 28.36,144.405 29.134,144.419C29.371,144.423 29.104,145.646 29.104,145.646C29.06,145.956 28.24,146.261 28.24,146.261" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M24.438,147.715C24.513,147.018 24.806,146.683 25.425,147.115C26.498,147.863 27.719,146.769 27.719,146.769L27.953,146.125L27.704,149.149C27.704,149.149 27.224,148.507 26.738,148.275C26.503,148.163 25.777,148.062 25.425,148.206C25.044,148.362 24.343,148.584 24.438,147.715" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M29.146,151.716C29.146,151.716 28.463,151.035 27.531,151.745C26.597,152.455 26.414,152.654 26.414,152.654C26.414,152.654 25.652,154.204 24.853,152.974C24.054,151.746 24.711,151.455 25.585,151.659C25.585,151.659 27.396,151.149 27.698,150.165C28,149.182 27.838,149.433 27.838,149.433L29.947,151.085L29.146,151.716Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M33.233,143.052C33.233,143.052 34.129,143.295 34.571,142.212C34.783,141.693 34.95,141.098 35.021,140.893C35.076,140.738 35.099,140.574 35.085,140.41C35.062,140.113 35.14,139.623 36.06,140.105C37.125,140.664 36.789,140.932 36.435,141.073C36.291,141.13 36.165,141.223 36.062,141.339C35.707,141.738 34.951,142.916 35.115,143.674C35.33,144.676 35.346,144.377 35.346,144.377L33.083,144.135L33.233,143.052Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M39.336,144.285C39.468,144.48 39.935,145.15 39.038,145.112C37.866,145.062 37.492,146.093 37.492,146.093L37.287,146.876L36.187,144.588C36.187,144.588 36.873,144.92 37.32,144.838C37.544,144.796 38.166,144.525 38.3,144.224C38.434,143.923 38.702,143.345 39.336,144.285" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M37.714,147.637C37.714,147.637 37.829,148.477 38.904,148.459C39.509,148.449 39.869,148.46 40.068,148.471C40.197,148.478 40.674,148.475 40.779,148.402C41.04,148.222 41.545,147.989 41.471,148.953C41.408,149.76 41.218,150.067 40.838,149.76C40.643,149.603 40.074,149.453 39.832,149.393C39.3,149.261 38.423,149.124 37.912,149.484C37.141,150.025 37.385,149.837 37.385,149.837L36.78,147.849L37.714,147.637Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M253.117,117.592C243.115,117.584 235.014,109.445 235.023,99.415C235.032,89.386 243.147,81.263 253.149,81.272C263.151,81.281 271.252,89.419 271.243,99.449C271.234,109.479 263.119,117.602 253.117,117.592Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M249.26,106.917C249.189,106.633 249.119,106.338 249.05,106.037C244.509,106.77 242.624,111.061 243.401,114.744C243.761,114.975 244.127,115.197 244.504,115.403C243.331,112.008 244.917,107.617 249.26,106.917" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M256.793,110.226L255.91,110.213C257.026,112.543 256.711,115.555 254.967,117.501C255.337,117.464 255.703,117.411 256.066,117.352C257.466,115.301 257.709,112.527 256.793,110.226" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M252.784,108.512C252.202,108.517 251.661,108.534 251.204,108.57C251.373,109.468 251.301,110.165 250.722,110.095C250.702,110.098 250.682,110.099 250.662,110.099C250.751,110.121 250.851,110.135 250.965,110.139L255.91,110.213L256.793,110.226L258.766,110.256L258.766,110.121L259.453,110.122L258.907,108.835C257.449,108.772 254.675,108.936 252.784,108.512" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M249.856,108.925C249.839,108.957 249.833,108.99 249.842,109.028C249.994,109.428 250.079,109.867 250.518,110.05C250.297,109.917 250.075,109.511 249.856,108.925" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3E6883" - android:fillType="nonZero" - android:pathData="M255.916,105.686C254.65,106.886 252.057,108.106 250.938,107.441C251.206,107.984 251.896,108.314 252.784,108.512C254.675,108.936 257.45,108.772 258.908,108.835L257.538,105.598C257.159,105.601 256.588,105.638 255.916,105.686" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3E6883" - android:fillType="nonZero" - android:pathData="M260.401,106.416C259.927,106.324 259.195,106.068 258.336,105.79L261.881,114.166L262.281,115.104C262.828,114.782 263.357,114.434 263.866,114.059L262.23,108.12C262.23,108.12 261.713,106.832 260.401,106.416" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M252.456,95.034L252.676,94.4C252.028,94.186 251.594,94.035 251.264,93.765C251.263,93.765 251.26,93.765 251.258,93.765C251.076,94.102 250.806,94.601 250.669,94.856C250.85,94.755 251.032,94.699 251.21,94.703C251.663,94.695 252.076,94.815 252.456,95.034" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M253.704,90.536C253.597,90.501 253.486,90.562 253.446,90.666C253.227,91.245 252.511,91.785 252.278,91.826C251.959,90.983 251.136,91.317 251.42,92.185C251.52,92.489 252.054,92.933 251.967,93.164C251.89,93.367 251.622,93.646 251.265,93.764C251.593,94.035 252.029,94.186 252.676,94.4C252.94,94.487 253.239,94.585 253.583,94.707C254.528,95.045 255.635,92.466 255.109,90.92C255.032,90.69 254.94,90.482 254.836,90.293C254.613,90.56 254.23,90.706 253.704,90.536" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#663014" - android:fillType="nonZero" - android:pathData="M251.967,93.164C252.055,92.933 251.52,92.489 251.42,92.185C251.136,91.317 251.959,90.983 252.278,91.825C252.511,91.785 253.227,91.246 253.446,90.667C253.486,90.561 253.597,90.502 253.704,90.536C254.23,90.705 254.613,90.559 254.836,90.294C255.27,89.774 255.095,88.796 254.177,88.796C253.918,88.485 251.319,86.909 249.72,89.292C249.251,89.991 249.427,91.652 250.073,92.85C250.092,92.885 250.114,92.919 250.137,92.951C250.375,93.27 250.806,93.827 250.963,93.822C251.067,93.818 251.165,93.796 251.257,93.766C251.26,93.765 251.262,93.764 251.265,93.764C251.622,93.645 251.89,93.366 251.967,93.164" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M256.498,104.605C256.339,103.876 256.169,103.102 255.981,102.319L255.213,102.343C254.459,102.459 253.936,101.841 253.668,101.562L250.565,98.335C249.787,97.051 251.562,94.943 252.853,96.225L255.244,99.638C254.576,97.555 253.7,95.75 252.456,95.034C252.076,94.815 251.663,94.695 251.21,94.703C251.032,94.699 250.85,94.755 250.669,94.857C249.626,95.443 248.635,97.604 248.836,99.272C248.854,99.417 248.88,99.587 248.913,99.772C249.365,101.111 249.815,102.926 250.2,104.554C251.812,104.298 254.706,104.52 256.498,104.605" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M250.939,107.44C252.057,108.107 254.649,106.887 255.916,105.685C254.25,105.803 251.976,105.982 250.503,105.844C250.638,106.419 250.761,106.936 250.867,107.357C250.872,107.374 250.878,107.392 250.882,107.408C250.9,107.42 250.92,107.43 250.939,107.44" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M261.532,100.166C261.569,100.148 261.605,100.141 261.642,100.139C261.75,99.413 261.857,98.691 261.857,98.691C261.983,98.244 261.528,98.447 261.309,98.436L261.158,98.454C261.002,98.472 260.968,98.514 260.943,98.669L260.667,100.432L260.911,100.433L261.532,100.166Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFC1AF" - android:fillType="nonZero" - android:pathData="M260.117,101.74C260.389,101.781 261.191,102.282 261.439,102.002L262.034,101.498C262.412,101.148 262.078,100.11 261.641,100.139C261.606,100.141 261.569,100.149 261.532,100.167L260.91,100.433L260.666,100.433L260.27,100.433L260.103,101.621L260.117,101.74Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M250.565,98.334L253.669,101.562C253.936,101.841 254.458,102.459 255.212,102.343L255.981,102.318L260.023,102.188L260.103,101.622L260.27,100.433L260.313,100.129L255.548,100.07L255.245,99.637L252.853,96.225C251.562,94.943 249.788,97.051 250.565,98.334" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M250.2,104.554C250.306,105.003 250.408,105.437 250.503,105.843C251.976,105.981 254.25,105.803 255.916,105.686C256.587,105.638 257.158,105.601 257.538,105.599L257.494,105.494L258.102,105.236L258.257,105.602C258.816,105.599 259.499,105.684 259.506,105.127C259.415,104.469 258.55,104.677 257.952,104.606C257.737,104.652 257.203,104.639 256.498,104.605C254.707,104.519 251.811,104.298 250.2,104.554" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M249.856,108.925C250.075,109.511 250.297,109.917 250.518,110.05C250.567,110.08 250.615,110.096 250.662,110.099C250.682,110.099 250.702,110.098 250.722,110.095C251.301,110.165 251.373,109.468 251.204,108.57C251.191,108.498 251.176,108.425 251.16,108.351C251.087,108.185 250.987,107.833 250.867,107.356C250.761,106.937 250.638,106.419 250.504,105.844C250.408,105.437 250.306,105.003 250.2,104.553C249.816,102.926 249.365,101.11 248.913,99.772C248.552,98.704 248.189,97.941 247.857,97.827C247.803,97.792 247.232,97.373 247.435,98.289C247.699,98.78 248.314,102.818 249.05,106.037C249.119,106.338 249.189,106.633 249.26,106.917C249.454,107.691 249.653,108.384 249.856,108.925" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M259.453,110.123L258.766,110.122L258.766,110.256L258.76,116.448C259.009,116.396 259.267,116.389 259.517,116.428C259.54,116.42 259.562,116.41 259.584,116.402L259.59,110.446L259.453,110.123Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M249.373,113.359C249.355,114.449 251.063,114.451 251.048,113.361C251.065,112.27 249.357,112.269 249.373,113.359" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M258.76,116.447C258.385,116.525 258.034,116.705 257.767,116.989C258.363,116.832 258.947,116.644 259.517,116.428C259.266,116.389 259.009,116.396 258.76,116.447" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M258.336,105.79L258.257,105.603L258.102,105.236L257.494,105.494L257.538,105.599L258.908,108.835L259.453,110.123L259.59,110.446L261.701,115.435C261.896,115.329 262.088,115.218 262.278,115.105L261.881,114.167L258.336,105.79Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M326.996,117.222C316.994,117.222 308.886,109.091 308.886,99.061C308.886,89.032 316.994,80.901 326.996,80.901C336.998,80.901 345.106,89.032 345.106,99.061C345.106,109.091 336.998,117.222 326.996,117.222Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M325.136,90.93C325.055,90.448 324.942,89.954 324.866,89.456C324.86,89.461 324.854,89.465 324.848,89.472C324.958,89.33 324.436,91.14 325.175,91.407C325.185,91.411 325.194,91.412 325.204,91.416C325.18,91.274 325.16,91.131 325.144,90.986C325.142,90.968 325.139,90.948 325.136,90.93" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M329.706,90.171C329.704,90.197 329.7,90.222 329.699,90.248C329.678,90.664 329.643,91.081 329.57,91.48C329.586,91.476 329.597,91.475 329.613,91.469C330.165,91.269 330.014,89.63 329.939,89.534C329.91,89.497 329.874,89.486 329.833,89.493C329.799,89.685 329.76,89.873 329.721,90.057C329.713,90.095 329.709,90.132 329.706,90.171" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#8C8C99" - android:fillType="nonZero" - android:pathData="M322.726,110.538C322.726,110.527 322.725,110.516 322.725,110.506C322.698,112.036 322.774,114.248 322.909,116.752C324.224,117.055 325.59,117.222 326.997,117.222C327.293,117.222 327.589,117.213 327.882,117.199C327.888,117.096 327.894,116.994 327.901,116.892C327.907,116.791 328.053,116.785 328.068,116.884C328.068,116.884 328.079,116.991 328.1,117.185C329.768,117.085 331.373,116.756 332.89,116.233C332.818,113.635 332.668,111.474 332.408,110.186C331.708,111.77 323.062,111.772 322.726,110.538" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M334.846,109.359L334.187,109.457C334.064,109.47 333.968,109.42 333.89,109.338C333.74,109.944 333.607,110.621 333.78,111.345C333.875,111.879 334.67,112.751 335.24,112.095C335.741,111.255 335.557,110.015 335.133,109.199C335.062,109.284 334.963,109.347 334.846,109.359" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M332.408,110.186C332.423,110.151 332.441,110.116 332.448,110.08C332.637,109.159 332.295,104.58 331.758,101.684C332.329,104.156 333.384,108.406 333.744,109.121C333.785,109.203 333.833,109.277 333.89,109.338C333.968,109.419 334.063,109.47 334.187,109.457L334.845,109.359C334.963,109.347 335.061,109.285 335.132,109.199C335.19,109.128 335.229,109.04 335.233,108.944C335.304,107.199 335.018,104.918 334.218,101.363C333.909,99.996 332.791,95.513 329.868,93.781C329.472,93.546 329.074,93.387 328.678,93.283C328.672,93.287 328.666,93.294 328.659,93.3L328.699,93.636C328.694,94.207 327.878,94.789 327.376,94.783C326.807,94.841 326.32,94.373 326.326,93.732C326.326,93.732 326.328,93.491 326.328,93.444C326.275,93.409 326.224,93.372 326.174,93.332C325.224,93.609 324.381,94.136 323.756,94.711C322.844,95.549 321.635,97.444 320.408,98.647C318.85,100.528 317.429,101.58 315.188,102.862L315.473,104.849C317.719,104.251 319.571,103.055 320.896,102.051C321.714,101.386 321.753,101.307 322.841,100.216C323.183,99.872 322.385,102.275 322.725,110.506C322.725,110.516 322.726,110.527 322.726,110.538C323.062,111.772 331.709,111.77 332.408,110.186" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M327.207,93.787C326.859,93.721 326.571,93.602 326.329,93.444C326.328,93.491 326.326,93.732 326.326,93.732C326.32,94.372 326.807,94.84 327.376,94.783C327.878,94.789 328.694,94.207 328.699,93.636L328.66,93.3C328.382,93.531 328.032,93.7 327.585,93.786C327.461,93.81 327.332,93.811 327.207,93.787" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M329.701,90.214C329.7,90.226 329.7,90.237 329.699,90.249C329.701,90.222 329.704,90.197 329.706,90.17C329.704,90.185 329.701,90.2 329.701,90.214" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M328.097,91.86C327.967,91.808 327.536,91.793 327.392,91.624C327.24,91.786 326.804,91.736 326.669,91.771C326.613,91.785 326.536,91.92 326.458,92.089C326.649,92.431 326.898,92.687 327.454,92.678C327.875,92.671 328.125,92.481 328.313,92.21C328.232,92.03 328.152,91.881 328.097,91.86" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M327.415,91.164C327.587,91.159 327.886,91.064 328.289,91.28C328.392,91.348 328.49,91.528 328.565,91.749C328.649,91.567 328.73,91.377 328.827,91.193C328.863,91.124 328.909,91.062 328.962,91.004C329.023,90.938 329.081,90.872 329.138,90.802C329.237,90.676 329.337,90.282 329.36,90.123C329.589,88.517 329.767,86.925 327.524,87.263C327.407,87.281 327.286,87.278 327.171,87.251C325.213,86.804 325.128,88.403 325.357,90.238C325.399,90.579 325.66,90.834 325.911,91.1C325.952,91.141 325.989,91.186 326.02,91.234C326.108,91.369 326.179,91.511 326.245,91.651C326.468,91.3 326.885,91.092 327.415,91.164" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DFDFDF" - android:fillType="nonZero" - android:pathData="M326.245,91.651C326.179,91.511 326.108,91.369 326.02,91.233C325.989,91.185 325.951,91.141 325.911,91.1C325.66,90.834 325.399,90.579 325.357,90.237C325.129,88.403 325.213,86.803 327.17,87.251C327.286,87.277 327.407,87.281 327.523,87.263C329.768,86.925 329.588,88.517 329.36,90.123C329.337,90.282 329.237,90.676 329.138,90.802C329.081,90.872 329.023,90.938 328.962,91.004C328.909,91.062 328.863,91.125 328.827,91.193C328.73,91.377 328.649,91.567 328.565,91.749C328.713,92.182 328.773,92.772 328.609,92.98C328.609,92.98 328.46,92.54 328.313,92.211C328.125,92.482 327.875,92.671 327.454,92.677C326.898,92.687 326.648,92.431 326.458,92.088C326.315,92.4 326.172,92.828 326.172,92.828C326.003,92.382 326.048,91.961 326.245,91.651M327.207,93.787C327.331,93.811 327.46,93.81 327.585,93.786C328.032,93.7 328.382,93.53 328.659,93.3C328.666,93.294 328.672,93.288 328.677,93.282C329.188,92.845 329.441,92.197 329.571,91.48C329.643,91.082 329.678,90.664 329.698,90.249C329.699,90.237 329.699,90.226 329.7,90.214C329.701,90.2 329.705,90.185 329.706,90.17C329.71,90.132 329.713,90.095 329.72,90.057C329.76,89.873 329.799,89.685 329.833,89.493C329.922,89.005 329.982,88.498 329.935,87.989L329.94,87.995C330.095,86.796 329.336,86.193 328.858,86.121C328.695,86.095 328.535,86.044 328.399,85.947C328.099,85.728 327.669,85.688 327.353,85.816C327.196,85.879 327.025,85.906 326.859,85.878C326.568,85.829 326.359,85.899 326.152,86.069C326.054,86.15 325.94,86.208 325.818,86.241C325.387,86.359 324.724,86.804 324.801,88.012C324.805,88.061 324.804,88.11 324.8,88.159C324.762,88.595 324.8,89.028 324.866,89.456C324.942,89.954 325.055,90.448 325.136,90.93C325.139,90.948 325.142,90.968 325.144,90.986C325.16,91.131 325.18,91.274 325.205,91.416C325.337,92.185 325.607,92.884 326.174,93.333C326.224,93.371 326.275,93.409 326.328,93.444C326.57,93.601 326.859,93.72 327.207,93.787" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DFDFDF" - android:fillType="nonZero" - android:pathData="M326.458,92.088C326.536,91.92 326.613,91.785 326.669,91.771C326.804,91.736 327.24,91.786 327.392,91.624C327.536,91.794 327.967,91.808 328.097,91.86C328.152,91.881 328.232,92.03 328.313,92.211C328.46,92.54 328.609,92.98 328.609,92.98C328.773,92.772 328.713,92.182 328.565,91.749C328.491,91.528 328.392,91.348 328.29,91.28C327.887,91.064 327.587,91.159 327.415,91.164C326.885,91.092 326.468,91.3 326.245,91.651C326.049,91.961 326.003,92.382 326.173,92.828C326.173,92.828 326.316,92.4 326.458,92.088" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M315.144,102.55C315.112,102.348 315.046,102.298 314.717,102.294L314.398,102.29C313.932,102.332 312.991,102.123 313.201,102.696C313.201,102.696 313.26,103.115 313.34,103.674C313.448,103.668 313.43,104.165 313.665,104.205C314.428,104.245 315.033,105.348 314.479,105.873C314.282,106.03 313.958,106.019 313.659,105.909C313.708,106.252 313.74,106.479 313.74,106.479C313.741,106.973 314.892,106.897 315.314,106.887C315.566,106.847 315.756,106.811 315.725,106.61L315.473,104.849L315.188,102.862L315.144,102.55Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M314.479,105.872C315.034,105.348 314.428,104.245 313.664,104.205C313.431,104.164 313.448,103.667 313.34,103.674C313.328,103.674 313.317,103.679 313.303,103.691C312.996,103.958 312.822,105.225 313.131,105.568C313.264,105.716 313.457,105.834 313.659,105.909C313.958,106.019 314.281,106.031 314.479,105.872" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M266.476,161.961C256.474,161.953 248.373,153.814 248.382,143.785C248.391,133.755 256.507,125.632 266.509,125.641C276.51,125.65 284.612,133.789 284.602,143.818C284.593,153.848 276.477,161.971 266.476,161.961Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M272.713,149.65C273.745,151.144 274.823,152.654 275.729,153.73C275.886,153.048 276.073,152.278 276.255,151.788C276.101,151.54 275.964,151.322 275.916,151.235C275.449,150.389 274.906,149.448 274.361,148.519C273.904,149.38 273.169,149.588 272.713,149.65" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#8C8C99" - android:fillType="nonZero" - android:pathData="M269.823,155.541C268.189,156.293 263.284,156.657 261.087,155.588C260.915,155.504 260.805,155.335 260.784,155.147C260.776,155.409 260.768,155.691 260.762,155.989C260.824,156.069 260.881,156.143 260.932,156.207C261.926,156.034 263.374,156.792 263.206,157.772C262.852,158.737 261.543,158.659 260.741,158.089C260.74,158.992 260.746,159.981 260.759,161.028C262.258,161.528 263.843,161.843 265.488,161.933C265.581,161.137 265.637,160.662 265.637,160.662C265.647,160.565 265.669,160.79 265.687,160.886C265.754,161.238 265.817,161.592 265.88,161.946C266.078,161.953 266.276,161.962 266.476,161.962C267.803,161.963 269.095,161.817 270.341,161.547C270.315,159.556 270.257,157.424 270.166,155.16C270.11,155.326 269.987,155.465 269.823,155.541" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M268.566,133.473C268.72,133.674 268.823,133.929 268.856,134.245C268.866,133.98 268.849,133.737 268.808,133.513C268.789,133.566 268.777,133.596 268.777,133.596C268.708,133.551 268.637,133.513 268.566,133.473" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M265.766,133.037C265.796,133.052 265.808,133.072 265.797,133.096C265.533,133.137 265.357,133.241 265.241,133.369C265.648,133.156 266.087,133.006 266.514,132.93C266.26,132.938 266.008,132.973 265.766,133.037" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M264.547,137.421C264.497,137.327 264.245,137.026 264.403,136.868C264.419,136.851 264.43,136.832 264.438,136.811C264.369,136.883 264.268,136.874 264.161,136.816C264.384,137.189 264.614,137.606 264.915,137.957C264.917,137.947 264.919,137.937 264.921,137.928C264.764,137.738 264.635,137.56 264.547,137.421" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M264.155,135.247C264.17,135.256 264.184,135.269 264.198,135.284C264.197,135.282 264.197,135.279 264.196,135.277C264.113,135.175 264.001,135.063 263.851,134.874C263.678,135.178 263.548,135.159 263.456,135.552C263.317,135.133 263.212,134.758 263.15,134.413C263.179,134.818 263.297,135.261 263.525,135.739C263.503,135.334 263.694,135.005 264.155,135.247" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M264.439,136.811C264.44,136.807 264.441,136.803 264.442,136.799C264.34,136.299 264.276,135.731 264.198,135.284C264.184,135.269 264.17,135.256 264.154,135.247C263.694,135.005 263.503,135.334 263.525,135.739C263.534,135.905 263.579,136.084 263.657,136.242C263.761,136.462 263.973,136.714 264.161,136.816C264.268,136.874 264.369,136.884 264.439,136.811" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M275.368,155.169C275.313,155.318 275.4,155.389 275.492,155.47C275.476,155.583 276.462,155.296 276.902,155.177C276.487,155.096 276.249,154.671 276.724,153.848C276.899,153.647 277.179,153.511 277.451,153.464C277.659,153.429 277.778,153.053 277.898,153.007C278.117,152.207 278.301,151.471 278.35,151.406C278.414,151.361 278.256,151.079 278.088,151.062L276.612,151.302C276.504,151.244 276.381,151.447 276.255,151.789C276.074,152.277 275.886,153.048 275.728,153.73C275.557,154.474 275.421,155.112 275.368,155.169" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M277.45,153.465C277.179,153.512 276.898,153.648 276.724,153.847C276.249,154.672 276.488,155.096 276.902,155.177C277.584,155.311 278.744,154.51 277.969,153.021C277.944,153.001 277.921,152.998 277.898,153.008C277.778,153.054 277.659,153.429 277.45,153.465" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M263.207,157.772C263.374,156.793 261.926,156.034 260.931,156.207C260.882,156.143 260.823,156.068 260.762,155.989C260.395,155.517 259.848,154.812 259.344,154.153C258.918,153.6 258.739,152.988 258.732,152.35C258.28,152.497 257.304,152.211 256.802,151.802C256.738,153.482 257.639,154.991 260.106,157.15C260.154,157.525 260.404,157.849 260.742,158.089C261.544,158.659 262.852,158.736 263.207,157.772" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B1DAEF" - android:fillType="nonZero" - android:pathData="M258.733,152.35C258.796,152.33 258.853,152.304 258.892,152.266C259.758,151.431 260.759,147.829 260.759,147.829L260.776,155.092C260.776,155.11 260.782,155.128 260.785,155.147C260.804,155.335 260.914,155.504 261.086,155.588C263.283,156.657 268.189,156.293 269.822,155.542C269.987,155.466 270.109,155.327 270.167,155.16C270.187,155.1 270.2,155.037 270.202,154.972L270.272,152.751C270.347,150.559 270.286,148.783 270.344,146.403L271.912,149.269C272.022,149.49 272.387,149.682 272.504,149.672C272.563,149.668 272.634,149.662 272.713,149.65C273.169,149.589 273.903,149.381 274.361,148.52C274.429,148.392 274.491,148.253 274.544,148.096C274.673,147.719 271.48,142.333 269.453,140.469C268.86,139.851 268.048,139.636 267.156,139.55C267.151,139.686 267.148,139.767 267.148,139.767C267.131,140.376 266.566,140.788 265.983,140.704C265.447,140.685 264.603,140.096 264.622,139.56C264.622,139.56 264.624,139.55 264.628,139.53C263.372,139.855 262.34,140.213 261.566,140.657C261.382,140.74 261.199,140.863 261.019,141.02C260.635,141.315 260.345,141.647 260.156,142.026C258.426,144.546 257.006,149.527 256.506,151.211C256.446,151.414 256.578,151.62 256.802,151.802C257.303,152.211 258.28,152.497 258.733,152.35" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M265.982,140.703C266.566,140.789 267.131,140.375 267.148,139.768C267.148,139.768 267.151,139.685 267.155,139.55C267.158,139.474 267.161,139.382 267.165,139.278C266.313,139.344 265.449,138.567 264.92,137.928C264.919,137.937 264.917,137.947 264.915,137.956C264.789,138.644 264.655,139.379 264.627,139.531C264.625,139.549 264.622,139.56 264.622,139.56C264.604,140.096 265.447,140.684 265.982,140.703" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M266.514,132.93C266.086,133.006 265.648,133.156 265.24,133.369C264.967,133.668 265.014,134.092 265.013,134.113C264.618,134.848 264.613,135.231 264.705,135.765L264.714,135.765C264.722,135.825 264.729,135.883 264.737,135.938C264.761,136.067 264.789,136.205 264.817,136.359C264.916,136.719 265.102,136.974 265.563,137.203C265.768,137.341 266.024,137.27 266.176,137.09C266.405,136.805 267.367,136.984 267.675,136.948C268.22,136.917 268.249,137.859 268.606,136.961C268.529,137.195 268.448,137.459 268.354,137.724C268.86,136.551 268.968,134.988 268.86,134.265C268.859,134.258 268.857,134.253 268.856,134.246C268.823,133.929 268.72,133.674 268.566,133.473C267.916,133.095 267.202,132.909 266.514,132.93" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M264.426,136.274C264.411,135.644 264.358,135.477 264.196,135.277C264.197,135.28 264.197,135.282 264.198,135.285C264.276,135.731 264.34,136.3 264.442,136.8C264.488,136.666 264.43,136.445 264.426,136.274" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M267.742,137.688C267.777,137.561 267.864,137.299 267.652,137.29L266.552,137.272C266.364,137.267 266.352,137.497 266.397,137.625C266.529,138.218 267.591,138.311 267.742,137.688" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M266.553,137.273L267.651,137.289C267.865,137.299 267.777,137.561 267.742,137.688C267.59,138.31 266.53,138.218 266.397,137.626C266.352,137.497 266.364,137.266 266.553,137.273M263.852,134.874C264.002,135.063 264.113,135.174 264.196,135.277C264.358,135.477 264.411,135.644 264.426,136.274C264.431,136.445 264.488,136.666 264.442,136.8C264.44,136.804 264.44,136.807 264.439,136.811C264.43,136.832 264.419,136.852 264.403,136.867C264.245,137.026 264.498,137.327 264.546,137.421C264.635,137.561 264.764,137.738 264.92,137.928C265.45,138.566 266.314,139.343 267.165,139.277C267.169,139.277 267.173,139.277 267.177,139.277C267.736,139.228 268.09,138.477 268.355,137.724C268.447,137.46 268.53,137.195 268.606,136.961C268.248,137.86 268.22,136.917 267.675,136.948C267.367,136.984 266.405,136.805 266.176,137.09C266.024,137.271 265.767,137.341 265.563,137.203C265.102,136.974 264.917,136.719 264.817,136.359C264.789,136.205 264.762,136.067 264.738,135.939C264.729,135.882 264.721,135.825 264.715,135.764L264.705,135.764C264.613,135.232 264.618,134.848 265.013,134.113C265.013,134.092 264.967,133.668 265.24,133.37C265.358,133.241 265.533,133.136 265.796,133.096C265.808,133.072 265.796,133.053 265.766,133.037C266.008,132.973 266.259,132.938 266.514,132.93C267.202,132.91 267.915,133.095 268.566,133.473C268.637,133.513 268.708,133.552 268.777,133.597C268.777,133.597 268.789,133.565 268.808,133.513C268.956,133.122 269.526,131.434 268.574,130.995C267.962,130.712 267.053,130.667 266.391,130.999C265.7,131.345 265.177,131.11 264.615,131.486C263.249,132.419 262.942,133.243 263.15,134.412C263.212,134.758 263.317,135.133 263.456,135.551C263.547,135.159 263.678,135.177 263.852,134.874" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <clip-path android:pathData="M272.078,55.38l36.22,0l0,36.32l-36.22,0z" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M290.172,91.7C280.171,91.691 272.07,83.553 272.078,73.523C272.088,63.493 280.203,55.37 290.205,55.38C300.207,55.389 308.307,63.527 308.299,73.557C308.289,83.586 300.174,91.709 290.172,91.7Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M292.775,77.944C293.288,78.313 293.901,78.736 294.232,78.891C294.666,79.093 295.78,79.373 296.409,79.524C296.638,79.185 296.931,78.738 297.226,78.316C296.498,77.974 295.327,77.409 294.864,77.099C294.311,76.729 293.163,75.702 292.444,75.045C292.658,75.927 292.789,76.909 292.775,77.944" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B96161" - android:fillType="nonZero" - android:pathData="M286.407,91.301C287.622,91.56 288.88,91.699 290.172,91.7C290.181,91.7 290.19,91.699 290.199,91.699C288.83,89.271 287.214,86.201 286.437,83.973L286.407,91.301Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M287.192,81.275L287.208,81.204L287.2,81.204L286.418,83.919C286.425,83.937 286.432,83.955 286.437,83.973C287.214,86.201 288.829,89.271 290.2,91.699C291.605,91.699 292.973,91.532 294.287,91.227C293.084,85.808 292.182,81.27 292.182,81.27L287.192,81.275Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M291.644,65.669C291.625,65.463 291.589,65.24 291.521,65.015C291.312,64.452 290.922,64.315 290.922,64.315C290.663,65.503 289.621,65.59 289.355,65.592L289.306,65.706C289.654,68.936 288.694,68.672 288.139,70.636C288.127,70.679 288.115,70.718 288.104,70.758L288.099,70.787L288.178,70.848C289.117,70.884 289.662,71.686 290.156,71.128C290.215,71.062 290.306,71.062 290.415,71.116L290.033,68.411C290.033,68.411 291.707,68.485 291.669,66.142C291.669,66.139 291.668,66.133 291.668,66.129C291.647,66.144 291.632,66.155 291.632,66.155C291.649,65.976 291.651,65.816 291.644,65.669" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M287.2,81.204L287.237,81.074L287.404,80.32C287.116,80.386 285.627,80.677 285.297,79.772L284.886,84.802C284.831,85.428 282.703,86.601 284.288,87.717C285.565,88.616 285.945,85.565 285.945,85.565L286.419,83.919L287.2,81.204Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B1DAEF" - android:fillType="nonZero" - android:pathData="M287.405,80.32L287.237,81.074L287.208,81.204L287.192,81.275L292.182,81.27C292.588,80.142 292.76,79.015 292.775,77.944C292.789,76.909 292.658,75.927 292.444,75.045C291.926,72.911 290.936,71.37 290.415,71.115C290.305,71.062 290.215,71.062 290.156,71.128C289.661,71.687 289.118,70.884 288.178,70.848C288.144,70.847 288.112,70.846 288.078,70.847C287.681,72.174 287.61,71.592 287.08,71.63C286.146,73.617 285.396,78.995 285.303,79.691C285.296,79.74 285.293,79.765 285.293,79.765C285.293,79.768 285.295,79.769 285.296,79.771C285.627,80.677 287.116,80.386 287.405,80.32" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#663014" - android:fillType="nonZero" - android:pathData="M288.078,70.847C288.087,70.818 288.095,70.788 288.104,70.758C288.116,70.718 288.127,70.679 288.139,70.637C288.695,68.672 289.654,68.936 289.306,65.706C289.302,65.667 289.298,65.63 289.294,65.591C289.294,65.591 289.316,65.592 289.355,65.592C289.621,65.59 290.663,65.503 290.922,64.315C290.922,64.315 291.312,64.452 291.521,65.015C291.586,65.189 291.632,65.405 291.644,65.669C291.651,65.816 291.649,65.976 291.632,66.155C291.632,66.155 291.647,66.144 291.668,66.129C291.863,65.984 292.795,65.174 292.076,63.305C292.076,63.305 291.899,62.415 290.655,62.445C290.655,62.445 288.672,60.664 286.807,62.178C284.942,63.691 286.215,65.205 286.215,65.205C286.215,65.205 283.729,67.461 284.587,70.518C284.587,70.518 285.505,72.506 286.571,71.824C286.78,71.689 286.944,71.639 287.08,71.63C287.61,71.591 287.681,72.174 288.078,70.847" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M296.001,80.08C295.903,80.194 295.955,80.287 296.01,80.39C295.943,80.51 297.558,80.76 297.596,80.788C297.675,80.861 297.97,80.517 298.325,80.036C298.293,79.916 298.368,79.685 298.491,79.43C298.65,79.101 298.769,78.96 299.017,78.868C299.081,78.844 299.121,78.849 299.14,78.875C299.539,78.29 299.872,77.789 299.93,77.752C300.003,77.734 299.958,77.429 299.814,77.356L298.42,77.067C298.275,76.896 297.75,77.565 297.226,78.316C296.931,78.738 296.638,79.185 296.409,79.524C296.198,79.839 296.044,80.059 296.001,80.08" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M299.017,78.868C298.768,78.96 298.65,79.101 298.491,79.43C298.368,79.685 298.293,79.916 298.324,80.036C298.334,80.071 298.351,80.098 298.379,80.111C298.507,80.173 298.579,80.003 298.767,79.737C298.935,79.501 299.225,78.988 299.14,78.875C299.121,78.849 299.081,78.844 299.017,78.868" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M313.432,162.419C303.43,162.419 295.322,154.288 295.322,144.258C295.322,134.229 303.43,126.098 313.432,126.098C323.434,126.098 331.542,134.229 331.542,144.258C331.542,154.288 323.434,162.419 313.432,162.419Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M308.901,146.721L308.842,147.014L307.293,154.676C307.293,154.676 306.139,156.334 307.268,156.331C308.398,156.328 308.133,154.819 308.133,154.819L310.327,147.248C310.314,147.248 310.301,147.248 310.288,147.244L308.901,146.721Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M316.023,152.6L309.922,152.704C309.913,152.704 309.906,152.7 309.899,152.699L309.884,152.812L310.481,162.175C311.253,162.302 312.042,162.378 312.844,162.404L313.057,155.435L313.484,162.417C314.264,162.415 315.03,162.359 315.784,162.262L316.035,152.598C316.03,152.598 316.027,152.6 316.023,152.6" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CBAB7D" - android:fillType="nonZero" - android:pathData="M312.243,142.924C312.338,143.045 312.474,143.191 312.634,143.303C312.475,143.185 312.338,143.039 312.243,142.924" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CBAB7D" - android:fillType="nonZero" - android:pathData="M310.529,143.515L311.992,142.752C312.038,142.731 312.09,142.741 312.126,142.774C312.108,142.749 312.098,142.735 312.098,142.735L312.269,141.722C312.207,141.708 312.145,141.692 312.082,141.682C311.748,141.634 310.945,141.388 310.569,140.138C310.569,140.138 309.987,139.287 310.44,138.517C310.895,137.746 312.43,138.283 313.297,136.534C313.297,136.534 314.546,138.547 315.376,138.567C316.205,138.585 315.298,141.308 314.056,141.605C314.056,141.605 313.97,141.638 313.831,141.676L313.919,142.708C313.907,142.742 313.894,142.773 313.881,142.805C313.919,142.772 313.974,142.764 314.02,142.789L315.637,143.602C315.653,143.611 315.9,143.781 316.161,144.074C316.386,144.324 316.569,144.607 316.66,144.931L316.91,145.833C320.094,146.004 320.44,144.965 320.305,144.236C320.236,143.868 319.982,143.558 319.639,143.409C319.623,143.402 319.608,143.396 319.592,143.389C318.883,143.074 318.681,142.168 319.177,141.571C319.414,141.285 319.451,141.073 319.444,140.953C319.441,140.889 319.459,140.824 319.45,140.761C319.361,140.167 318.309,139.49 317.483,139.039C317.075,138.817 316.84,138.374 316.881,137.911C317.149,134.925 314.845,133.959 314.051,133.741C313.928,133.708 313.789,133.65 313.659,133.645C313.3,133.631 312.804,133.313 310.937,134.327C308.954,135.406 309.126,137.903 309.277,138.872C309.311,139.092 309.404,139.3 309.551,139.467C309.895,139.858 310.515,140.794 309.967,142.021C309.468,143.136 309.712,143.609 309.916,143.797C309.96,143.837 309.996,143.884 310.032,143.931C310.202,143.738 310.386,143.566 310.529,143.515" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M313.788,141.174L313.832,141.677C313.97,141.637 314.056,141.606 314.056,141.606C315.298,141.308 316.204,138.585 315.376,138.566C314.546,138.548 313.297,136.535 313.297,136.535C312.431,138.283 310.895,137.746 310.44,138.517C309.986,139.287 310.569,140.138 310.569,140.138C310.945,141.388 311.749,141.634 312.081,141.682C312.146,141.691 312.207,141.708 312.269,141.723L312.351,141.231C313.044,141.618 313.788,141.174 313.788,141.174" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B1DAEF" - android:fillType="nonZero" - android:pathData="M316.023,152.6C316.027,152.6 316.03,152.598 316.035,152.598C316.107,152.589 316.159,152.522 316.143,152.449L315.741,150.263L313.481,149.491C313.481,149.491 313.431,149.496 313.353,149.502L313.38,149.812C313.392,149.955 313.288,150.071 313.145,150.071L312.061,150.071C311.92,150.071 311.794,149.955 311.782,149.812L311.552,147.18C311.539,147.038 311.645,146.922 311.787,146.922L312.871,146.922C313.012,146.922 313.138,147.038 313.151,147.18L313.274,148.594C313.467,148.715 313.601,148.819 313.601,148.819L315.56,149.275L315.53,149.119L315.53,149.119C315.502,149.006 315.478,148.819 315.477,148.703L315.258,146.752C315.249,146.622 315.235,146.524 315.304,146.635L315.379,147.03C315.414,147.087 315.49,147.106 315.548,147.072L315.572,147.057L315.572,147.056L316.887,146.28L316.888,146.284L316.933,146.258C316.983,146.227 317.006,146.167 316.988,146.11L316.911,145.833L316.66,144.931C316.569,144.607 316.385,144.324 316.161,144.073C315.9,143.782 315.653,143.611 315.637,143.602L314.02,142.789C313.973,142.765 313.919,142.772 313.881,142.804C313.52,143.698 313.014,143.585 312.633,143.303C312.475,143.192 312.338,143.045 312.242,142.924C312.19,142.86 312.15,142.808 312.126,142.774C312.09,142.742 312.037,142.731 311.992,142.751L310.529,143.515C310.385,143.565 310.202,143.738 310.032,143.93C309.773,144.222 309.546,144.558 309.539,144.575L308.817,146.549C308.788,146.615 308.82,146.69 308.886,146.716L308.901,146.721L310.288,147.243C310.302,147.248 310.314,147.248 310.327,147.248C310.391,147.252 310.451,147.207 310.458,147.138L310.484,146.853C310.499,146.704 310.568,146.694 310.587,146.841L310.541,148.368C310.483,148.859 310.376,149.675 310.341,150.022L309.799,152.546C309.779,152.618 309.828,152.686 309.899,152.699C309.906,152.7 309.913,152.704 309.922,152.704L316.023,152.6Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M311.883,148.946C311.768,147.795 312.744,148.263 313.274,148.595L313.151,147.18C313.139,147.038 313.013,146.922 312.871,146.922L311.787,146.922C311.645,146.922 311.54,147.038 311.552,147.18L311.782,149.813C311.794,149.955 311.92,150.071 312.062,150.071L313.145,150.071C313.288,150.071 313.393,149.955 313.38,149.813L313.353,149.503C312.986,149.531 311.944,149.557 311.883,148.946" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M315.572,147.056L315.572,147.058L316.106,149.402L315.559,149.275L313.601,148.819C313.601,148.819 313.467,148.716 313.274,148.595C312.744,148.263 311.768,147.796 311.883,148.945C311.944,149.557 312.986,149.531 313.353,149.503C313.432,149.496 313.481,149.49 313.481,149.49L315.741,150.263L316.714,150.596C317.079,150.721 317.449,150.423 317.404,150.039L316.933,146.623L316.888,146.285L316.888,146.28L315.572,147.056Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M313.831,141.676L313.788,141.174C313.788,141.174 313.044,141.618 312.351,141.231L312.269,141.723L312.098,142.735C312.098,142.735 312.108,142.749 312.126,142.774C312.15,142.808 312.19,142.86 312.242,142.924C312.338,143.038 312.476,143.185 312.634,143.303C313.014,143.586 313.52,143.698 313.881,142.804C313.894,142.772 313.907,142.742 313.919,142.708L313.831,141.676Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M300.055,112.362C300.055,117.846 295.621,122.292 290.152,122.292C284.684,122.292 280.25,117.846 280.25,112.362C280.25,106.877 284.684,102.431 290.152,102.431C295.621,102.431 300.055,106.877 300.055,112.362" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#17191A" - android:fillType="nonZero" - android:pathData="M290.066,105.396C289.488,105.396 289.012,105.873 289.012,106.453L289.012,106.948C288.33,107.108 287.733,107.426 287.274,107.889C286.588,108.584 286.204,109.567 286.204,110.699L286.204,113.445C286.204,114.091 285.852,114.911 285.488,115.519L284.859,116.466C284.787,116.575 284.781,116.714 284.842,116.828C284.903,116.942 285.022,117.013 285.151,117.013L288.311,117.013C288.311,117.98 289.101,118.774 290.066,118.774C291.03,118.774 291.821,117.98 291.821,117.013L294.98,117.013C295.109,117.013 295.229,116.942 295.29,116.828C295.351,116.714 295.344,116.575 295.272,116.466L294.646,115.523L294.644,115.521C294.277,114.907 293.928,114.139 293.928,113.493L293.928,110.747C293.928,108.857 292.805,107.395 291.119,106.96L291.119,106.453C291.119,105.873 290.643,105.396 290.066,105.396" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M56.372,104.831C56.372,105.018 56.48,105.18 56.64,105.267L56.64,105.825C56.64,105.898 56.703,105.957 56.78,105.957L57.035,105.957C57.112,105.957 57.175,105.898 57.175,105.825L57.175,105.267C57.335,105.18 57.443,105.018 57.443,104.831C57.443,104.551 57.203,104.326 56.908,104.326C56.611,104.326 56.372,104.551 56.372,104.831" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> + <path + android:pathData="M67.73,119l-22.92,-0.07a0.87,0.87 0,0 0,-0.88 0.86h0V127a0.87,0.87 0,0 0,0.87 0.89h0l22.92,0.07a0.89,0.89 0,0 0,0.89 -0.88v-7.16a0.87,0.87 0,0 0,-0.87 -0.89h0" + android:fillColor="#b1bbc2" + android:fillType="evenOdd"/> + <path + android:pathData="M67.77,106.55l-22.91,-0.08a0.87,0.87 0,0 0,-0.89 0.87h0v7.17a0.87,0.87 0,0 0,0.86 0.88h0l22.91,0.08a0.87,0.87 0,0 0,0.89 -0.87h0v-7.17a0.87,0.87 0,0 0,-0.86 -0.88h0" + android:fillColor="#94a1ab" + android:fillType="evenOdd"/> + <path + android:pathData="M45.19,115.4h-0.5a0.8,0.8 0,0 1,-0.72 -0.76V107.4a0.88,0.88 0,0 1,0.82 -0.93h0.4Z" + android:fillColor="#c4314a" + android:fillType="evenOdd"/> + <path + android:pathData="M67.81,94.14l-22.92,-0.07a0.87,0.87 0,0 0,-0.89 0.87v7.22a0.89,0.89 0,0 0,0.88 0.89l22.92,0.08a0.89,0.89 0,0 0,0.89 -0.88V95.08a0.89,0.89 0,0 0,-0.88 -0.89" + android:fillColor="#748692" + android:fillType="evenOdd"/> + <path + android:pathData="M67.84,81.75l-22.91,-0.08a0.87,0.87 0,0 0,-0.89 0.87h0v7.17a0.87,0.87 0,0 0,0.86 0.88h0l22.91,0.08a0.87,0.87 0,0 0,0.89 -0.87h0V82.63a0.87,0.87 0,0 0,-0.86 -0.88h0" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M49,87.35v-0.49h0.26v-0.37L49,86.49L49,85.07h-0.46l-1,1.5v0.29h0.93v0.49ZM48.54,86.49L48,86.49l0.47,-0.75h0ZM50.3,87.38a0.79,0.79 0,0 0,0.4 -0.1A0.61,0.61 0,0 0,51 87a0.79,0.79 0,0 0,0.1 -0.4,0.82 0.82,0 0,0 -0.18,-0.56 0.56,0.56 0,0 0,-0.47 -0.21A0.61,0.61 0,0 0,50 86a0.6,0.6 0,0 1,0.22 -0.43,0.75 0.75,0 0,1 0.5,-0.16h0v-0.37L50.6,85.04a1.2,1.2 0,0 0,-0.61 0.15,1.06 1.06,0 0,0 -0.4,0.44 1.49,1.49 0,0 0,-0.15 0.66h0v0.16a1,1 0,0 0,0.23 0.67,0.71 0.71,0 0,0 0.58,0.25ZM50.3,87.02a0.28,0.28 0,0 1,-0.25 -0.13,0.54 0.54,0 0,1 -0.09,-0.35h0L49.96,86.4a0.32,0.32 0,0 1,0.13 -0.15,0.36 0.36,0 0,1 0.2,-0.06 0.33,0.33 0,0 1,0.25 0.11,0.49 0.49,0 0,1 0.09,0.31 0.44,0.44 0,0 1,-0.09 0.29,0.29 0.29,0 0,1 -0.3,0.1ZM52.13,87.38a1,1 0,0 0,0.41 -0.09,0.7 0.7,0 0,0 0.27,-0.27 0.9,0.9 0,0 0,0.09 -0.4,0.83 0.83,0 0,0 -0.18,-0.57 0.7,0.7 0,0 0,-0.51 -0.2,0.73 0.73,0 0,0 -0.35,0.09h0l0.06,-0.49h0.91v-0.38L51.49,85.07l-0.14,1.16 0.37,0.09h0a0.39,0.39 0,0 1,0.26 -0.09,0.32 0.32,0 0,1 0.27,0.11 0.41,0.41 0,0 1,0.1 0.3,0.48 0.48,0 0,1 -0.08,0.31 0.32,0.32 0,0 1,-0.24 0.11A0.4,0.4 0,0 1,51.8 87a0.31,0.31 0,0 1,-0.09 -0.22L51.3,86.78a0.6,0.6 0,0 0,0.11 0.34,0.55 0.55,0 0,0 0.28,0.24 0.81,0.81 0,0 0,0.38 0ZM53.96,87.38a0.86,0.86 0,0 0,0.56 -0.17,0.6 0.6,0 0,0 0.21,-0.48 0.5,0.5 0,0 0,-0.1 -0.33,0.51 0.51,0 0,0 -0.26,-0.22A0.66,0.66 0,0 0,54.6 86a0.62,0.62 0,0 0,-0.12 -0.76A0.74,0.74 0,0 0,53.9 85a0.78,0.78 0,0 0,-0.53 0.17,0.6 0.6,0 0,0 -0.2,0.47 0.5,0.5 0,0 0,0.09 0.29,0.56 0.56,0 0,0 0.22,0.21 0.61,0.61 0,0 0,-0.36 0.55,0.6 0.6,0 0,0 0.21,0.48 0.86,0.86 0,0 0,0.57 0.21ZM54,86a0.28,0.28 0,0 1,-0.2 -0.08,0.34 0.34,0 0,1 -0.07,-0.22 0.29,0.29 0,0 1,0.07 -0.22,0.28 0.28,0 0,1 0.2,-0.08 0.3,0.3 0,0 1,0.2 0.08,0.39 0.39,0 0,1 0,0.44 0.29,0.29 0,0 1,-0.26 0.08ZM54,87a0.34,0.34 0,0 1,-0.24 -0.09,0.41 0.41,0 0,1 -0.08,-0.24 0.29,0.29 0,0 1,0.26 -0.32L54,86.35a0.34,0.34 0,0 1,0.24 0.09,0.4 0.4,0 0,1 0.08,0.23 0.3,0.3 0,0 1,-0.08 0.24,0.31 0.31,0 0,1 -0.29,0.09ZM56.13,87.33 L56.93,85.05h-0.52l-0.52,1.72 -0.52,-1.72h-0.52l0.79,2.28ZM57.62,87.33L57.62,86.5L58,86.5l0.43,0.83h0.5l-0.49,-0.93a0.64,0.64 0,0 0,0.41 -0.64,0.63 0.63,0 0,0 -0.22,-0.51 1,1 0,0 0,-0.63 -0.18L57,85.07v2.28ZM58,86.12h-0.38v-0.69L58,85.43a0.39,0.39 0,0 1,0.29 0.09,0.38 0.38,0 0,1 0,0.51 0.37,0.37 0,0 1,-0.27 0.09ZM59.82,87.33 L60.7,85.33v-0.25L59,85.08v0.37h1.13l-0.88,1.91ZM62.56,87.33L62.56,87h-1l0.52,-0.55A1.7,1.7 0,0 0,62.3 86a0.81,0.81 0,0 0,0.08 -0.34,0.61 0.61,0 0,0 -0.19,-0.48 0.84,0.84 0,0 0,-0.55 -0.17,0.86 0.86,0 0,0 -0.41,0.1 0.61,0.61 0,0 0,-0.28 0.27,0.72 0.72,0 0,0 -0.1,0.38h0.45a0.41,0.41 0,0 1,0.09 -0.28,0.32 0.32,0 0,1 0.24,-0.11 0.27,0.27 0,0 1,0.22 0.09,0.41 0.41,0 0,1 0.08,0.24 0.62,0.62 0,0 1,-0.07 0.23,1.7 1.7,0 0,1 -0.23,0.3h0l-0.74,0.78v0.31ZM63.71,87.33a1,1 0,0 0,0.61 -0.16,0.55 0.55,0 0,0 0.22,-0.47 0.55,0.55 0,0 0,-0.18 -0.44,1.44 1.44,0 0,0 -0.59,-0.3 2,2 0,0 1,-0.33 -0.15,0.22 0.22,0 0,1 0,-0.37 0.5,0.5 0,0 1,0.27 -0.08,0.41 0.41,0 0,1 0.28,0.09 0.31,0.31 0,0 1,0.1 0.24h0.47a0.66,0.66 0,0 0,-0.11 -0.36,0.71 0.71,0 0,0 -0.29,-0.25 1.21,1.21 0,0 0,-0.88 0,0.57 0.57,0 0,0 -0.3,0.23 0.5,0.5 0,0 0,-0.1 0.33,0.62 0.62,0 0,0 0.39,0.56 1.8,1.8 0,0 0,0.38 0.16,1 1,0 0,1 0.34,0.15 0.22,0.22 0,0 1,0.1 0.2,0.19 0.19,0 0,1 -0.1,0.19 0.41,0.41 0,0 1,-0.26 0.07c-0.3,0 -0.45,-0.12 -0.45,-0.38h-0.47a0.77,0.77 0,0 0,0.11 0.39,0.79 0.79,0 0,0 0.33,0.27 1.21,1.21 0,0 0,0.42 0.13Z" + android:fillColor="#fff"/> + <path + android:pathData="M48.58,99.82v-1.7l0.62,1.7h0.32l0.62,-1.7L50,99.19v0.63h0.47L50.47,97.53h-0.62l-0.58,1.66 -0.59,-1.66h-0.61v2.29ZM51.98,99.82L51.98,97.53h0l-1,0.34v0.37l0.55,-0.17v1.75ZM53.44,99.82a0.9,0.9 0,0 0,0.59 -0.18,0.58 0.58,0 0,0 0.22,-0.49 0.63,0.63 0,0 0,-0.09 -0.33,0.5 0.5,0 0,0 -0.29,-0.2 0.64,0.64 0,0 0,0.25 -0.21,0.43 0.43,0 0,0 0.1,-0.29 0.56,0.56 0,0 0,-0.21 -0.47,0.83 0.83,0 0,0 -0.57,-0.18 1,1 0,0 0,-0.38 0.08,0.67 0.67,0 0,0 -0.27,0.23 0.62,0.62 0,0 0,-0.09 0.32h0.45a0.25,0.25 0,0 1,0.09 -0.19,0.31 0.31,0 0,1 0.21,-0.07 0.29,0.29 0,0 1,0.23 0.08,0.24 0.24,0 0,1 0.08,0.21 0.29,0.29 0,0 1,-0.08 0.23,0.31 0.31,0 0,1 -0.26,0.09h-0.24v0.35h0.24c0.25,0 0.38,0.11 0.38,0.34a0.32,0.32 0,0 1,-0.09 0.23,0.35 0.35,0 0,1 -0.26,0.08 0.29,0.29 0,0 1,-0.23 -0.08,0.23 0.23,0 0,1 -0.1,-0.21h-0.45a0.6,0.6 0,0 0,0.21 0.48,0.88 0.88,0 0,0 0.56,0.21ZM54.89,99.82L55,99.82a1.11,1.11 0,0 0,0.8 -0.35,1.32 1.32,0 0,0 0.29,-0.9h0v-0.16a1.38,1.38 0,0 0,-0.1 -0.49,0.79 0.79,0 0,0 -0.28,-0.32 0.72,0.72 0,0 0,-0.4 -0.12,0.77 0.77,0 0,0 -0.39,0.11 0.71,0.71 0,0 0,-0.28 0.29,1 1,0 0,0 -0.09,0.41 0.82,0.82 0,0 0,0.18 0.56,0.6 0.6,0 0,0 0.48,0.21 0.59,0.59 0,0 0,0.42 -0.17,0.59 0.59,0 0,1 -0.63,0.55h-0.11ZM55.32,98.71a0.3,0.3 0,0 1,-0.24 -0.12,0.61 0.61,0 0,1 -0.08,-0.3 0.72,0.72 0,0 1,0.08 -0.32,0.27 0.27,0 0,1 0.23,-0.12 0.26,0.26 0,0 1,0.23 0.13,0.54 0.54,0 0,1 0.09,0.35h0v0.19a0.28,0.28 0,0 1,-0.12 0.14,0.34 0.34,0 0,1 -0.19,0.07ZM57.18,99.83a0.67,0.67 0,0 0,0.57 -0.25,1.11 1.11,0 0,0 0.2,-0.73h0v-0.42a1.09,1.09 0,0 0,-0.21 -0.7,0.67 0.67,0 0,0 -0.57,-0.25 0.69,0.69 0,0 0,-0.57 0.25,1.11 1.11,0 0,0 -0.2,0.73h0v0.42a1.09,1.09 0,0 0,0.21 0.7,0.67 0.67,0 0,0 0.57,0.27ZM57.18,99.46a0.26,0.26 0,0 1,-0.25 -0.13,0.87 0.87,0 0,1 -0.07,-0.42h0v-0.55a0.76,0.76 0,0 1,0.08 -0.39,0.27 0.27,0 0,1 0.23,-0.12 0.28,0.28 0,0 1,0.25 0.13,0.83 0.83,0 0,1 0.07,0.41h0L57.49,99a0.75,0.75 0,0 1,-0.07 0.39,0.25 0.25,0 0,1 -0.24,0.09ZM58.58,99.8 L58.74,99.33h0.82l0.16,0.47h0.5l-0.86,-2.29h-0.43l-0.85,2.29ZM59.43,98.95h-0.57l0.29,-0.86ZM60.9,99.8L60.9,98.1l0.61,1.7h0.33l0.61,-1.7v1.7h0.48L62.93,97.53h-0.62l-0.58,1.66 -0.59,-1.66h-0.62v2.29ZM64.72,99.8v-0.38h-1L63.72,97.53h-0.47v2.29Z" + android:fillColor="#fff"/> + <path + android:pathData="M48.32,112.28v-0.93h0.9L49.22,111h-0.9v-0.59h1L49.32,110L47.84,110v2.28ZM50.08,112.28v-0.65l0.24,-0.26 0.59,0.91h0.56L50.63,111l0.81,-1h-0.58l-0.58,0.75 -0.2,0.29v-1L49.6,110.04v2.28ZM52.26,112.28a0.86,0.86 0,0 0,0.39 -0.09,0.68 0.68,0 0,0 0.27,-0.26 0.76,0.76 0,0 0,0.1 -0.39h0L53.02,110h-0.47v1.58a0.43,0.43 0,0 1,-0.08 0.27,0.27 0.27,0 0,1 -0.21,0.09 0.29,0.29 0,0 1,-0.23 -0.08,0.43 0.43,0 0,1 -0.07,-0.25h-0.47a0.68,0.68 0,0 0,0.2 0.52,0.84 0.84,0 0,0 0.57,0.19ZM53.7,112.28h0.11a1.11,1.11 0,0 0,0.8 -0.35,1.32 1.32,0 0,0 0.29,-0.9h0v-0.17a1.58,1.58 0,0 0,-0.1 -0.48,0.81 0.81,0 0,0 -0.28,-0.33 0.8,0.8 0,0 0,-0.4 -0.11,0.76 0.76,0 0,0 -0.39,0.1 0.78,0.78 0,0 0,-0.28 0.29,1 1,0 0,0 -0.09,0.42 0.82,0.82 0,0 0,0.18 0.56,0.62 0.62,0 0,0 0.9,0 0.59,0.59 0,0 1,-0.62 0.56L53.7,111.87ZM54.13,111.17a0.3,0.3 0,0 1,-0.24 -0.12,0.55 0.55,0 0,1 -0.08,-0.31 0.65,0.65 0,0 1,0.08 -0.31,0.27 0.27,0 0,1 0.46,0 0.64,0.64 0,0 1,0.09 0.36h0L54.44,111a0.37,0.37 0,0 1,-0.12 0.13,0.26 0.26,0 0,1 -0.19,0.07ZM55.54,112.28h0.11a1.12,1.12 0,0 0,0.81 -0.35,1.34 1.34,0 0,0 0.28,-0.9h0v-0.17a1.12,1.12 0,0 0,-0.1 -0.48,0.79 0.79,0 0,0 -0.27,-0.33 0.81,0.81 0,0 0,-0.8 0,0.69 0.69,0 0,0 -0.27,0.29 0.87,0.87 0,0 0,-0.1 0.42,0.82 0.82,0 0,0 0.18,0.56 0.6,0.6 0,0 0,0.49 0.21,0.58 0.58,0 0,0 0.41,-0.18 0.59,0.59 0,0 1,-0.62 0.56h-0.12ZM56,111.2a0.25,0.25 0,0 1,-0.24 -0.12,0.49 0.49,0 0,1 -0.09,-0.31 0.56,0.56 0,0 1,0.09 -0.31,0.26 0.26,0 0,1 0.22,-0.13 0.28,0.28 0,0 1,0.24 0.13,0.64 0.64,0 0,1 0.09,0.36h0L56.31,111a0.49,0.49 0,0 1,-0.12 0.13A0.32,0.32 0,0 1,56 111.2ZM57.86,112.32a1,1 0,0 0,0.41 -0.1,0.87 0.87,0 0,0 0.27,-0.27 0.9,0.9 0,0 0,0.09 -0.4,0.77 0.77,0 0,0 -0.19,-0.56 0.66,0.66 0,0 0,-0.51 -0.21,0.67 0.67,0 0,0 -0.34,0.09h0v-0.49h0.91L58.5,110L57.25,110l-0.13,1.16 0.36,0.09h0.05a0.35,0.35 0,0 1,0.26 -0.08,0.34 0.34,0 0,1 0.27,0.1 0.45,0.45 0,0 1,0.1 0.3,0.49 0.49,0 0,1 -0.09,0.31 0.28,0.28 0,0 1,-0.23 0.11,0.38 0.38,0 0,1 -0.23,-0.08 0.32,0.32 0,0 1,-0.1 -0.22h-0.45a0.76,0.76 0,0 0,0.11 0.35,0.7 0.7,0 0,0 0.28,0.23 0.86,0.86 0,0 0,0.39 0ZM59.64,112.32a0.91,0.91 0,0 0,0.59 -0.19,0.58 0.58,0 0,0 0.22,-0.49 0.53,0.53 0,0 0,-0.1 -0.32,0.58 0.58,0 0,0 -0.28,-0.21 0.69,0.69 0,0 0,0.25 -0.2,0.52 0.52,0 0,0 0.09,-0.29 0.62,0.62 0,0 0,-0.2 -0.48,0.91 0.91,0 0,0 -0.57,-0.17 1,1 0,0 0,-0.38 0.08,0.64 0.64,0 0,0 -0.27,0.22 0.53,0.53 0,0 0,-0.1 0.32h0.45a0.21,0.21 0,0 1,0.09 -0.18,0.35 0.35,0 0,1 0.22,-0.08 0.38,0.38 0,0 1,0.23 0.08,0.27 0.27,0 0,1 0.08,0.22 0.4,0.4 0,0 1,-0.08 0.23,0.35 0.35,0 0,1 -0.26,0.08h-0.24v0.36h0.24c0.25,0 0.38,0.11 0.38,0.34a0.32,0.32 0,0 1,-0.1 0.22,0.34 0.34,0 0,1 -0.25,0.09 0.41,0.41 0,0 1,-0.24 -0.08,0.27 0.27,0 0,1 -0.09,-0.21h-0.46a0.56,0.56 0,0 0,0.22 0.48,0.86 0.86,0 0,0 0.54,0.18ZM61.52,112.32a0.69,0.69 0,0 0,0.58 -0.26,1.15 1.15,0 0,0 0.19,-0.72h0v-0.42a1.2,1.2 0,0 0,-0.2 -0.71,0.68 0.68,0 0,0 -0.57,-0.24 0.67,0.67 0,0 0,-0.57 0.25,1.08 1.08,0 0,0 -0.2,0.72h0v0.42a1.07,1.07 0,0 0,0.2 0.71,0.73 0.73,0 0,0 0.55,0.25ZM61.52,111.95a0.24,0.24 0,0 1,-0.24 -0.14,0.84 0.84,0 0,1 -0.08,-0.41h0v-0.56a0.84,0.84 0,0 1,0.08 -0.38,0.25 0.25,0 0,1 0.24,-0.12 0.24,0.24 0,0 1,0.24 0.13,0.84 0.84,0 0,1 0.08,0.41h0v0.54a0.78,0.78 0,0 1,-0.08 0.4,0.25 0.25,0 0,1 -0.26,0.18ZM64.14,112.28v-0.36h-1l0.52,-0.55A2,2 0,0 0,64 111a0.67,0.67 0,0 0,0.09 -0.34,0.59 0.59,0 0,0 -0.2,-0.48 0.84,0.84 0,0 0,-0.55 -0.17,0.86 0.86,0 0,0 -0.41,0.1 0.61,0.61 0,0 0,-0.28 0.27,0.72 0.72,0 0,0 -0.1,0.38L63,110.76a0.46,0.46 0,0 1,0.08 -0.28,0.33 0.33,0 0,1 0.25,-0.11 0.31,0.31 0,0 1,0.22 0.09,0.34 0.34,0 0,1 0.07,0.24 0.51,0.51 0,0 1,-0.07 0.24,2 2,0 0,1 -0.22,0.29h0l-0.74,0.78v0.31Z" + android:fillColor="#fff"/> + <path + android:pathData="M47.72,124.75v-1h0.92v1h0.47v-2.28h-0.47v0.92h-0.92v-0.92h-0.47v2.28ZM49.86,124.75 L50.01,124.28h0.83l0.16,0.47h0.5l-0.86,-2.28h-0.43l-0.85,2.28ZM50.71,123.9h-0.57l0.28,-0.86ZM52.37,124.78a0.9,0.9 0,0 0,0.59 -0.18,0.58 0.58,0 0,0 0.22,-0.49 0.63,0.63 0,0 0,-0.09 -0.33,0.5 0.5,0 0,0 -0.29,-0.2 0.72,0.72 0,0 0,0.25 -0.21,0.47 0.47,0 0,0 0.09,-0.28 0.59,0.59 0,0 0,-0.2 -0.48,0.83 0.83,0 0,0 -0.57,-0.18 1,1 0,0 0,-0.38 0.08,0.67 0.67,0 0,0 -0.27,0.23 0.53,0.53 0,0 0,-0.1 0.32h0.46a0.21,0.21 0,0 1,0.08 -0.19,0.34 0.34,0 0,1 0.22,-0.07 0.38,0.38 0,0 1,0.23 0.08,0.32 0.32,0 0,1 0.08,0.21 0.38,0.38 0,0 1,-0.08 0.23,0.31 0.31,0 0,1 -0.26,0.09h-0.24v0.35h0.24c0.25,0 0.38,0.12 0.38,0.34a0.29,0.29 0,0 1,-0.1 0.23,0.34 0.34,0 0,1 -0.25,0.09 0.36,0.36 0,0 1,-0.24 -0.09,0.27 0.27,0 0,1 -0.09,-0.21h-0.46a0.62,0.62 0,0 0,0.22 0.48A0.87,0.87 0,0 0,52.37 124.78ZM54.83,124.78v-0.49h0.26v-0.37h-0.26L54.83,122.5h-0.45l-1,1.5v0.29h0.94v0.49ZM54.38,123.92h-0.5l0.47,-0.75v-0.06ZM56.3,124.81a1.82,1.82 0,0 0,0.52 -0.08,0.88 0.88,0 0,0 0.36,-0.24h0v-0.91h-0.9v0.35h0.43v0.39a0.52,0.52 0,0 1,-0.38 0.11,0.46 0.46,0 0,1 -0.4,-0.18 0.93,0.93 0,0 1,-0.14 -0.54h0v-0.15a0.92,0.92 0,0 1,0.13 -0.54,0.47 0.47,0 0,1 0.66,-0.08h0a0.42,0.42 0,0 1,0.14 0.28h0.46a0.84,0.84 0,0 0,-0.28 -0.56,1 1,0 0,0 -1.14,-0.06 0.76,0.76 0,0 0,-0.33 0.38,1.52 1.52,0 0,0 -0.12,0.59h0v0.16a1.29,1.29 0,0 0,0.13 0.58,0.77 0.77,0 0,0 0.34,0.37 1,1 0,0 0,0.52 0.1ZM58.41,124.81a0.84,0.84 0,0 0,0.64 -0.22,0.77 0.77,0 0,0 0.24,-0.59h0v-1.5h-0.48L58.81,124a0.36,0.36 0,0 1,-0.3 0.41h-0.1a0.41,0.41 0,0 1,-0.3 -0.1A0.51,0.51 0,0 1,58 124h0v-1.5h-0.47L57.53,124a0.75,0.75 0,0 0,0.24 0.58,0.88 0.88,0 0,0 0.64,0.2ZM60.05,124.81 L60.49,124.01 60.93,124.81h0.55l-0.69,-1.15 0.67,-1.13h-0.54l-0.43,0.78 -0.43,-0.78h-0.54l0.67,1.13 -0.69,1.15ZM62.42,124.81a1,1 0,0 0,0.41 -0.09,0.73 0.73,0 0,0 0.27,-0.28 0.86,0.86 0,0 0,0.09 -0.39,0.83 0.83,0 0,0 -0.18,-0.57 0.68,0.68 0,0 0,-0.52 -0.2,0.67 0.67,0 0,0 -0.34,0.09h0l0.06,-0.5h0.9v-0.37L61.83,122.5l-0.13,1.16 0.36,0.09h0a0.35,0.35 0,0 1,0.26 -0.09,0.38 0.38,0 0,1 0.27,0.1 0.45,0.45 0,0 1,0.1 0.3,0.52 0.52,0 0,1 -0.09,0.32 0.28,0.28 0,0 1,-0.23 0.11,0.38 0.38,0 0,1 -0.23,-0.08 0.37,0.37 0,0 1,-0.1 -0.23h-0.45a0.89,0.89 0,0 0,0.11 0.35,0.81 0.81,0 0,0 0.28,0.24 0.93,0.93 0,0 0,0.44 0ZM64.58,124.81v-2.29h0l-0.94,0.34v0.37l0.54,-0.17v1.75Z" + android:fillColor="#fff"/> + <path + android:pathData="M45.23,90.6h-0.5a0.79,0.79 0,0 1,-0.71 -0.77V82.6a0.86,0.86 0,0 1,0.79 -0.93h0.42Z" + android:fillColor="#c4314a" + android:fillType="evenOdd"/> + <path + android:pathData="M45.24,103h-0.32a0.54,0.54 0,0 1,-0.18 0,0.8 0.8,0 0,1 -0.72,-0.76V95a0.86,0.86 0,0 1,0.8 -0.92h0.42Z" + android:fillColor="#c4314a" + android:fillType="evenOdd"/> + <path + android:pathData="M80.61,104a1.81,1.81 0,1 1,-1.81 -1.81h0A1.81,1.81 0,0 1,80.61 104" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M93.3,103.94a1.85,1.85 0,1 1,-1.85 -1.85h0a1.84,1.84 0,0 1,1.85 1.83v0" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M182.39,138.17H120.66c-2.61,0 -4.73,-2.57 -4.73,-5.73V68.05c0,-3.17 2.12,-5.73 4.73,-5.73h61.73c2.61,0 4.73,2.56 4.73,5.73v64.39c0,3.16 -2.12,5.73 -4.73,5.73" + android:fillColor="#94a1ab" + android:fillType="evenOdd"/> + <path + android:pathData="M177.66,116a2.14,2.14 0,1 0,2.14 -2.14h0a2.14,2.14 0,0 0,-2.14 2.14" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M169.11,116a2.14,2.14 0,1 0,2.14 -2.14h0a2.13,2.13 0,0 0,-2.13 2.13h0" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M160.55,116a2.14,2.14 0,1 0,2.14 -2.14h0a2.14,2.14 0,0 0,-2.14 2.14" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M177.7,95.48a2.14,2.14 0,1 0,2.52 -1.68,2 2,0 0,0 -0.84,0 2.14,2.14 0,0 0,-1.68 1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M169.15,95.48a2.14,2.14 0,1 0,2.52 -1.68,2 2,0 0,0 -0.84,0 2.14,2.14 0,0 0,-1.68 1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M160.59,95.48a2.14,2.14 0,1 0,2.52 -1.68,2 2,0 0,0 -0.84,0 2.14,2.14 0,0 0,-1.68 1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M123.4,80h30.48a1.35,1.35 0,0 0,1.33 -1.33V72.82a1.34,1.34 0,0 0,-1.33 -1.33H123.4a1.32,1.32 0,0 0,-1.33 1.31v5.91A1.33,1.33 0,0 0,123.4 80" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M177.7,75.34a2.14,2.14 0,1 0,2.52 -1.68,2 2,0 0,0 -0.84,0 2.14,2.14 0,0 0,-1.68 1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M169.15,75.34a2.14,2.14 0,1 0,2.52 -1.68,2 2,0 0,0 -0.84,0 2.14,2.14 0,0 0,-1.68 1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M160.59,75.34a2.14,2.14 0,1 0,2.52 -1.68,2 2,0 0,0 -0.84,0 2.14,2.14 0,0 0,-1.68 1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M123.67,100.21h30.48a1.32,1.32 0,0 0,1.33 -1.31V93a1.34,1.34 0,0 0,-1.33 -1.33H123.67A1.35,1.35 0,0 0,122.34 93v5.89a1.34,1.34 0,0 0,1.33 1.33h0" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M123.67,119.74h30.48a1.34,1.34 0,0 0,1.33 -1.33h0v-5.89a1.32,1.32 0,0 0,-1.31 -1.33h-30.5a1.34,1.34 0,0 0,-1.33 1.33h0v5.89a1.35,1.35 0,0 0,1.33 1.33" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M90.83,146c1.6,-17.76 24.86,-16 26.62,-15.34 4.92,-11.22 21.56,-12.52 27.37,-8.37a22,22 0,0 1,10.66 -9.81c12.33,-5.71 34.16,-8.16 46.83,16.75 19.81,-0.4 21.45,16 21.8,16.77Z" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M106.54,103.91a1.85,1.85 0,1 1,-1.86 -1.84h0a1.85,1.85 0,0 1,1.85 1.84" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M199.34,104a1.81,1.81 0,1 1,-1.81 -1.81h0a1.81,1.81 0,0 1,1.81 1.81" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M212,103.94a1.85,1.85 0,1 1,-1.85 -1.85,1.85 1.85,0 0,1 1.85,1.85v0" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M225.27,103.91a1.85,1.85 0,1 1,-1.86 -1.84h0a1.85,1.85 0,0 1,1.85 1.84" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M46.83,112.27H20.22a6.32,6.32 0,0 0,-6.33 6.29h0v64.08a6.3,6.3 0,0 0,6.31 6.29H46.83a6.3,6.3 0,0 0,6.33 -6.27v-64.1a6.32,6.32 0,0 0,-6.33 -6.29h0" + android:fillColor="#1e1e1f" + android:fillType="evenOdd"/> + <path + android:pathData="M47.15,112.59A4.43,4.43 0,0 1,51.58 117v67.21a4.41,4.41 0,0 1,-4.43 4.4L19.27,188.61a4.41,4.41 0,0 1,-4.43 -4.4L14.84,117a4.43,4.43 0,0 1,4.43 -4.41ZM47.15,110.4L19.27,110.4A6.61,6.61 0,0 0,12.64 117h0v67.21a6.61,6.61 0,0 0,6.63 6.59L47.15,190.8a6.61,6.61 0,0 0,6.63 -6.59h0L53.78,117a6.61,6.61 0,0 0,-6.62 -6.6Z" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M48.08,160.48l-29.61,0.15a0.79,0.79 0,0 1,-0.79 -0.79l-0.12,-23.37a0.8,0.8 0,0 1,0.78 -0.79L48,135.53a0.78,0.78 0,0 1,0.79 0.77h0l0.12,23.37a0.81,0.81 0,0 1,-0.78 0.8" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M41.78,148.06a2.41,2.41 0,0 1,-0.71 0.07,11.22 11.22,0 0,0 -1.16,0h0a1,1 0,0 1,-0.77 -0.18,5.52 5.52,0 0,0 -0.49,-2.34 1.56,1.56 0,0 1,1.42 -0.79c0.89,0 0.43,-0.63 0.29,-0.82v0c-0.61,-0.93 -0.87,-0.36 -1,-0.06a1.75,1.75 0,0 1,-1 0.61c-0.12,0 -0.23,0 -0.35,0A5.52,5.52 0,0 0,36.23 143a3.53,3.53 0,0 1,0.89 -1.9,1 1,0 0,1 0.37,-0.27c0.35,-0.18 0.57,-0.53 -0.37,-1s-1,0 -1,0.3a1,1 0,0 1,-0.06 0.48c-0.07,0.21 -0.24,0.79 -0.45,1.31a1.12,1.12 0,0 1,-0.46 0.64,5.34 5.34,0 0,0 -2.31,-0.17 1.15,1.15 0,0 1,-0.35 -0.78,1.51 1.51,0 0,1 0,-0.52c0.14,-0.53 -0.19,-0.43 -0.49,-0.38h0c-1.1,0.15 -0.72,0.6 -0.52,0.75a1,1 0,0 1,0.26 0.73,0.76 0.76,0 0,1 -0.09,0.49 5.45,5.45 0,0 0,-2 1.29A5.38,5.38 0,0 1,28 142.62a0.77,0.77 0,0 1,-0.14 -0.39c-0.05,-0.65 -0.37,-0.75 -1,0.16s-0.26,0.93 0.32,1a6.38,6.38 0,0 1,1.61 1,1.06 1.06,0 0,1 0.28,0.32 4.78,4.78 0,0 0,-0.38 0.61,6.05 6.05,0 0,0 -0.55,1.56 1.58,1.58 0,0 1,-1.59 -0.08c-0.63,-0.4 -0.92,-0.09 -1,0.6 -0.07,0.86 0.62,0.64 1,0.48a2.25,2.25 0,0 1,1.31 0.07c0.07,0 0.13,0.1 0.2,0.15a5.61,5.61 0,0 0,0.49 2.1,4.3 4.3,0 0,1 -1.86,1.07c-0.87,-0.2 -1.53,0.08 -0.73,1.3s1.55,-0.31 1.55,-0.31a12.11,12.11 0,0 1,1.11 -0.9,1.22 1.22,0 0,1 0.46,-0.25 5.54,5.54 0,0 0,1.61 1.51l0,0a1.57,1.57 0,0 1,-0.68 1.68c-0.77,0.49 0,0.76 0.23,0.84 1.06,0.39 0.94,-0.23 0.88,-0.55a1.68,1.68 0,0 1,0.44 -1.06,2.37 2.37,0 0,1 0.61,-0.32 5.58,5.58 0,0 0,2.11 0.13,4.09 4.09,0 0,1 0.85,2 1.32,1.32 0,0 1,-0.09 0.65c-0.12,0.46 0.08,0.58 1,0.32s0.39,-0.75 0.28,-0.83 -0.22,-0.11 -0.22,-0.24a10.07,10.07 0,0 1,-0.54 -1.69,2.68 2.68,0 0,1 0,-0.55 5.43,5.43 0,0 0,1.72 -1c0.2,0 0.86,-0.06 1.2,0.86s0.75,0.2 0.87,0h0c0.66,-1 0,-1 -0.34,-1a1,1 0,0 1,-0.71 -0.48,1.85 1.85,0 0,1 -0.12,-0.4 4.33,4.33 0,0 0,0.31 -0.51v0h0a5.88,5.88 0,0 0,0.5 -1.36,2.54 2.54,0 0,1 1.84,-0.07 3.52,3.52 0,0 1,1 0.36c0.38,0.31 0.57,0 0.63,-0.8S42,147.88 41.78,148.06Z" + android:fillColor="#c4314a" + android:fillType="evenOdd"/> + <path + android:pathData="M269.35,99.61a18,18 0,1 1,-18 -18,18 18,0 0,1 18,18" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M247.52,107c-0.07,-0.28 -0.14,-0.57 -0.2,-0.87 -4.51,0.73 -6.38,5 -5.61,8.62 0.35,0.23 0.72,0.45 1.09,0.66 -1.16,-3.37 0.41,-7.71 4.72,-8.41" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M255,110.28h-0.87a6.71,6.71 0,0 1,-0.94 7.21,7.92 7.92,0 0,0 1.09,-0.14 7.67,7.67 0,0 0,0.72 -7.06" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M251,108.58a12.72,12.72 0,0 0,-1.57 0.06c0.17,0.89 0.1,1.58 -0.47,1.51h-0.06a0.76,0.76 0,0 0,0.3 0l4.91,0.08H257v-0.13h0.68l-0.54,-1.28a36.34,36.34 0,0 1,-6.08 -0.32" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M248.12,109a0.17,0.17 0,0 0,0 0.1c0.15,0.4 0.24,0.83 0.67,1a2.36,2.36 0,0 1,-0.65 -1.12" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M254.13,105.78c-1.25,1.19 -3.83,2.4 -4.94,1.74a2.54,2.54 0,0 0,1.83 1.06,37.44 37.44,0 0,0 6.08,0.32l-1.36,-3.2a13.07,13.07 0,0 0,-1.61 0.08" + android:fillColor="#3e6883" + android:fillType="evenOdd"/> + <path + android:pathData="M258.59,106.51a19.36,19.36 0,0 1,-2 -0.62l3.52,8.29 0.39,0.93c0.54,-0.31 1.07,-0.64 1.58,-1l-1.63,-5.88a3.15,3.15 0,0 0,-1.81 -1.68" + android:fillColor="#3e6883" + android:fillType="evenOdd"/> + <path + android:pathData="M250.7,95.24l0.22,-0.63a4.36,4.36 0,0 1,-1.41 -0.63h0c-0.18,0.34 -0.45,0.83 -0.59,1.08a1,1 0,0 1,0.54 -0.15,2.33 2.33,0 0,1 1.24,0.33" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M251.94,90.78a0.22,0.22 0,0 0,-0.26 0.13,2.32 2.32,0 0,1 -1.16,1.15c-0.32,-0.83 -1.13,-0.5 -0.85,0.36 0.1,0.3 0.63,0.74 0.54,1a1.14,1.14 0,0 1,-0.7 0.59,4.36 4.36,0 0,0 1.41,0.63l0.9,0.3c0.93,0.34 2,-2.21 1.51,-3.75 -0.08,-0.21 -0.17,-0.42 -0.27,-0.62a1,1 0,0 1,-1.12 0.24" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M250.21,93.39c0.09,-0.23 -0.44,-0.67 -0.54,-1 -0.28,-0.86 0.53,-1.19 0.85,-0.36a2.32,2.32 0,0 0,1.16 -1.15,0.22 0.22,0 0,1 0.26,-0.13 1,1 0,0 0,1.12 -0.24,0.88 0.88,0 0,0 -0.65,-1.48c-0.26,-0.31 -2.84,-1.87 -4.43,0.49 -0.46,0.7 -0.29,2.34 0.35,3.53l0.06,0.1c0.24,0.31 0.67,0.86 0.82,0.86a1.59,1.59 0,0 0,0.3 -0.06h0a1.14,1.14 0,0 0,0.7 -0.59" + android:fillColor="#663014" + android:fillType="evenOdd"/> + <path + android:pathData="M254.71,104.71c-0.16,-0.72 -0.33,-1.48 -0.51,-2.26h-0.77a1.82,1.82 0,0 1,-1.53 -0.78l-3.08,-3.19c-0.77,-1.28 1,-3.36 2.27,-2.09l2.38,3.38c-0.67,-2.07 -1.54,-3.85 -2.77,-4.56a2.33,2.33 0,0 0,-1.24 -0.33,1 1,0 0,0 -0.54,0.15 5.08,5.08 0,0 0,-1.82 4.37,3.43 3.43,0 0,0 0.08,0.5c0.45,1.32 0.9,3.12 1.28,4.73a40.75,40.75 0,0 1,6.25 0" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M249.19,107.52c1.11,0.66 3.68,-0.55 4.94,-1.74a38.5,38.5 0,0 1,-5.37 0.16c0.13,0.57 0.25,1.08 0.36,1.5h0.06" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M259.71,100.32h0.11c0.1,-0.72 0.21,-1.43 0.21,-1.43 0.13,-0.44 -0.33,-0.24 -0.54,-0.25h-0.15c-0.16,0 -0.19,0.06 -0.22,0.22l-0.27,1.74h0.24Z" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M258.3,101.88c0.27,0 1.07,0.53 1.32,0.26l0.59,-0.5c0.37,-0.35 0,-1.38 -0.39,-1.35a0.21,0.21 0,0 0,-0.11 0l-0.62,0.26h-0.63l-0.17,1.18Z" + android:fillColor="#ffc1af" + android:fillType="evenOdd"/> + <path + android:pathData="M248.82,98.51l3.08,3.19a1.79,1.79 0,0 0,1.53 0.77h0.77l4,-0.13 0.08,-0.56 0.17,-1.18v-0.3l-4.73,-0.06 -0.3,-0.42L251,96.44c-1.28,-1.27 -3,0.82 -2.27,2.09" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M248.46,104.66c0.1,0.45 0.2,0.88 0.3,1.28a38.5,38.5 0,0 0,5.37 -0.16c0.67,0 1.24,-0.08 1.61,-0.08v-0.11l0.6,-0.25 0.16,0.36c0.55,0 1.23,0.08 1.24,-0.47s-0.95,-0.44 -1.55,-0.52a6.93,6.93 0,0 1,-1.44 0,40.75 40.75,0 0,0 -6.25,0" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M248.12,109a2.36,2.36 0,0 0,0.65 1.12H249c0.57,0.07 0.64,-0.62 0.47,-1.51v-0.22a8.78,8.78 0,0 1,-0.29 -1c-0.11,-0.42 -0.23,-0.93 -0.36,-1.5 -0.1,-0.4 -0.2,-0.83 -0.3,-1.28 -0.38,-1.61 -0.83,-3.41 -1.28,-4.73 -0.36,-1.06 -0.72,-1.81 -1.05,-1.93 0,0 -0.62,-0.45 -0.42,0.46 0.26,0.49 0.88,4.48 1.61,7.67 0.06,0.3 0.13,0.59 0.2,0.87a17.06,17.06 0,0 0,0.6 2" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M257.64,110.18H257v6.26a1.89,1.89 0,0 1,0.75 0h0.06V110.5Z" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M247.64,113.38a0.83,0.83 0,1 0,0.83 -0.83,0.83 0.83,0 0,0 -0.83,0.83" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M257,116.44a1.86,1.86 0,0 0,-1 0.54c0.59,-0.16 1.17,-0.35 1.74,-0.56a2.36,2.36 0,0 0,-0.75 0" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M256.54,105.89l-0.08,-0.19 -0.16,-0.36 -0.6,0.25v0.11l1.36,3.2 0.54,1.28 0.14,0.32 2.1,4.94 0.57,-0.33 -0.4,-0.93Z" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M342.69,99.23a18,18 0,1 1,-18 -18h0a18,18 0,0 1,18 18" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M322.86,91.17c-0.08,-0.47 -0.19,-1 -0.27,-1.45h0c0.11,-0.14 -0.41,1.65 0.33,1.92h0a3.18,3.18 0,0 1,-0.06 -0.43v-0.06" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M327.39,90.42v0.08a9.89,9.89 0,0 1,-0.13 1.22h0c0.55,-0.2 0.4,-1.82 0.33,-1.92h-0.11a2.64,2.64 0,0 1,-0.11 0.56c0,0.18 0,0.07 0,0.11" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M320.46,110.59h0c0,1.51 0.05,3.7 0.19,6.18a17.85,17.85 0,0 0,4.05 0.47h0.88v-0.3a0.1,0.1 0,0 1,0.11 -0.06,0.09 0.09,0 0,1 0.06,0.06v0.3a18.43,18.43 0,0 0,4.76 -0.94,40.23 40.23,0 0,0 -0.48,-6c-0.7,1.57 -9.28,1.57 -9.62,0.35" + android:fillColor="#8c8c99" + android:fillType="evenOdd"/> + <path + android:pathData="M332.5,109.42l-0.66,0.1a0.35,0.35 0,0 1,-0.29 -0.12,4.11 4.11,0 0,0 -0.11,2c0.09,0.53 0.88,1.39 1.45,0.74a3.16,3.16 0,0 0,-0.11 -2.87,0.4 0.4,0 0,1 -0.28,0.16" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M330.08,110.24v-0.11a39.92,39.92 0,0 0,-0.69 -8.31,69.37 69.37,0 0,0 2,7.37 0.8,0.8 0,0 0,0.15 0.21,0.35 0.35,0 0,0 0.29,0.12l0.66,-0.1a0.4,0.4 0,0 0,0.28 -0.16,0.39 0.39,0 0,0 0.1,-0.25 29.73,29.73 0,0 0,-1 -7.51c-0.3,-1.35 -1.41,-5.79 -4.31,-7.5a4.62,4.62 0,0 0,-1.19 -0.5h0v0.33c0,0.57 -0.82,1.15 -1.32,1.14a1,1 0,0 1,-1 -1v-0.29l-0.15,-0.11a6.26,6.26 0,0 0,-2.4 1.37c-0.91,0.83 -2.11,2.7 -3.33,3.9A16.8,16.8 0,0 1,313 103l0.28,2a15.88,15.88 0,0 0,5.39 -2.77,19.51 19.51,0 0,0 1.93,-1.82c0.34,-0.34 -0.45,2 -0.12,10.19h0c0.34,1.22 8.92,1.22 9.62,-0.35" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M324.91,94a2.26,2.26 0,0 1,-0.87 -0.34V94a1,1 0,0 0,1 1c0.5,0 1.31,-0.57 1.31,-1.14v-0.33a2.26,2.26 0,0 1,-1.07 0.48,0.81 0.81,0 0,1 -0.38,0" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M327.39,90.47h0v-0.08h0" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M325.8,92.1c-0.13,-0.06 -0.56,-0.07 -0.7,-0.24 -0.15,0.16 -0.59,0.11 -0.72,0.15s-0.13,0.14 -0.21,0.31a1,1 0,0 0,1 0.59,1 1,0 0,0 0.85,-0.47 0.81,0.81 0,0 0,-0.21 -0.34" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M325.12,91.41a1.38,1.38 0,0 1,0.87 0.11,1.06 1.06,0 0,1 0.27,0.47c0.09,-0.18 0.17,-0.37 0.26,-0.55a0.85,0.85 0,0 1,0.14 -0.19l0.17,-0.2a2,2 0,0 0,0.22 -0.67c0.23,-1.59 0.41,-3.17 -1.82,-2.84a0.69,0.69 0,0 1,-0.35 0c-1.95,-0.44 -2,1.14 -1.8,3a1.62,1.62 0,0 0,0.55 0.85,0.76 0.76,0 0,1 0.11,0.14c0.08,0.13 0.15,0.27 0.22,0.41a1.12,1.12 0,0 1,1.16 -0.48" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M324,91.89c-0.07,-0.14 -0.14,-0.28 -0.22,-0.41a0.76,0.76 0,0 0,-0.11 -0.14,1.62 1.62,0 0,1 -0.55,-0.85c-0.23,-1.82 -0.15,-3.4 1.8,-3a0.69,0.69 0,0 0,0.35 0c2.23,-0.33 2,1.25 1.82,2.84a2,2 0,0 1,-0.22 0.67l-0.17,0.2a0.85,0.85 0,0 0,-0.14 0.19c-0.09,0.18 -0.17,0.37 -0.26,0.55a1.63,1.63 0,0 1,0.05 1.21s-0.15,-0.43 -0.3,-0.76a1,1 0,0 1,-0.85 0.46,1 1,0 0,1 -1,-0.58c-0.14,0.31 -0.28,0.73 -0.28,0.73a1.25,1.25 0,0 1,0.07 -1.16M325,94a0.81,0.81 0,0 0,0.38 0,2.26 2.26,0 0,0 1.07,-0.48h0a2.9,2.9 0,0 0,0.89 -1.78,9.89 9.89,0 0,0 0.13,-1.22v-0.19s0.08,-0.37 0.11,-0.56a5.32,5.32 0,0 0,0.1 -1.49h0a1.55,1.55 0,0 0,-1.08 -1.86,0.92 0.92,0 0,1 -0.45,-0.17 1.14,1.14 0,0 0,-1 -0.13,1 1,0 0,1 -0.49,0.06 0.81,0.81 0,0 0,-0.7 0.19,0.91 0.91,0 0,1 -0.34,0.17 1.52,1.52 0,0 0,-1 1.76v0.14a5.59,5.59 0,0 0,0.07 1.29c0.07,0.49 0.19,1 0.27,1.45v0.06a3.18,3.18 0,0 0,0.06 0.43,2.92 2.92,0 0,0 1,1.89l0.15,0.11A2.26,2.26 0,0 0,325 94" + android:fillColor="#dfdfdf" + android:fillType="evenOdd"/> + <path + android:pathData="M324.17,92.32c0.08,-0.16 0.15,-0.3 0.21,-0.31s0.57,0 0.72,-0.15c0.14,0.17 0.57,0.18 0.7,0.24a0.81,0.81 0,0 1,0.21 0.34c0.15,0.33 0.3,0.76 0.3,0.76a1.63,1.63 0,0 0,-0.05 -1.21,1.06 1.06,0 0,0 -0.27,-0.47 1.38,1.38 0,0 0,-0.87 -0.11,1.12 1.12,0 0,0 -1.16,0.48 1.25,1.25 0,0 0,-0.07 1.16s0.14,-0.42 0.28,-0.73" + android:fillColor="#dfdfdf" + android:fillType="evenOdd"/> + <path + android:pathData="M312.94,102.68c0,-0.2 -0.1,-0.25 -0.43,-0.25h-0.31c-0.47,0 -1.4,-0.16 -1.19,0.4l0.14,1c0.1,0 0.09,0.49 0.32,0.53 0.76,0 1.36,1.13 0.81,1.65a0.91,0.91 0,0 1,-0.82 0c0.05,0.33 0.08,0.56 0.08,0.56 0,0.49 1.15,0.41 1.57,0.4 0.25,0 0.43,-0.07 0.4,-0.27l-0.25,-1.74 -0.28,-2Z" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M312.28,106c0.55,-0.52 0,-1.61 -0.81,-1.65 -0.23,0 -0.22,-0.53 -0.32,-0.53h0a2,2 0,0 0,-0.17 1.86,1.38 1.38,0 0,0 0.52,0.34 0.91,0.91 0,0 0,0.82 0" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M282.61,143.54a18,18 0,1 1,-18 -18,18 18,0 0,1 18,18" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M270.81,149.31a38.45,38.45 0,0 0,3 4,18.18 18.18,0 0,1 0.53,-1.92l-0.34,-0.55c-0.46,-0.83 -1,-1.77 -1.54,-2.69a2.07,2.07 0,0 1,-1.64 1.12" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M267.94,155.15c-1.62,0.74 -6.49,1.1 -8.67,0a0.53,0.53 0,0 1,-0.3 -0.43v0.83a1.84,1.84 0,0 1,0.17 0.22c1,-0.18 2.43,0.57 2.26,1.54 -0.35,1 -1.65,0.88 -2.45,0.32v2.91a17.93,17.93 0,0 0,4.7 0.9c0.09,-0.79 0.14,-1.26 0.14,-1.26a0.56,0.56 0,0 0,0 0.22c0.07,0.35 0.13,0.7 0.19,1h0.6a18.26,18.26 0,0 0,3.83 -0.41q0,-3 -0.17,-6.32a0.7,0.7 0,0 1,-0.34 0.38" + android:fillColor="#8c8c99" + android:fillType="evenOdd"/> + <path + android:pathData="M266.69,133.3a1.4,1.4 0,0 1,0.29 0.76,3.49 3.49,0 0,0 -0.05,-0.72v0.08l-0.21,-0.12" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M263.91,132.86v0.06a1,1 0,0 0,-0.55 0.27,4.37 4.37,0 0,1 1.26,-0.43 3.66,3.66 0,0 0,-0.74 0.1" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M262.7,137.21c-0.05,-0.1 -0.3,-0.4 -0.14,-0.55v-0.06a0.23,0.23 0,0 1,-0.27 0,7.91 7.91,0 0,0 0.75,1.13h0c-0.15,-0.19 -0.28,-0.37 -0.37,-0.5" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M262.31,135.05h0c-0.08,-0.1 -0.19,-0.21 -0.34,-0.4 -0.17,0.3 -0.3,0.29 -0.39,0.67a8.86,8.86 0,0 1,-0.31 -1.12,3.53 3.53,0 0,0 0.38,1.31c0,-0.4 0.17,-0.73 0.62,-0.49" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M262.59,136.6h0c-0.1,-0.5 -0.17,-1.06 -0.25,-1.5h0c-0.45,-0.24 -0.64,0.09 -0.62,0.49a1.38,1.38 0,0 0,0.63 1.07c0.11,0 0.2,0.06 0.27,0" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M273.44,154.78c-0.05,0.15 0,0.22 0.13,0.3a5.08,5.08 0,0 0,1.4 -0.29c-0.41,-0.08 -0.65,-0.51 -0.18,-1.32a1.24,1.24 0,0 1,0.72 -0.38c0.21,0 0.33,-0.41 0.45,-0.45 0.21,-0.79 0.4,-1.52 0.45,-1.59s-0.1,-0.32 -0.26,-0.34l-1.47,0.24c-0.11,-0.06 -0.23,0.14 -0.35,0.48a18.18,18.18 0,0 0,-0.53 1.92,12 12,0 0,1 -0.36,1.43" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M275.51,153.09a1.24,1.24 0,0 0,-0.72 0.38c-0.47,0.82 -0.23,1.24 0.18,1.32 0.68,0.13 1.83,-0.66 1.06,-2.14a0,0 0,0 0,-0.07 0c-0.12,0 -0.24,0.41 -0.45,0.45" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M261.37,157.36c0.17,-1 -1.27,-1.73 -2.26,-1.55l-0.17,-0.22 -1.4,-1.82a2.86,2.86 0,0 1,-0.61 -1.78,2.69 2.69,0 0,1 -1.92,-0.55c-0.06,1.67 0.83,3.16 3.28,5.3a1.45,1.45 0,0 0,0.63 0.93c0.8,0.56 2.1,0.64 2.45,-0.31" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M256.93,152a0.51,0.51 0,0 0,0.16 -0.09c0.86,-0.82 1.85,-4.39 1.85,-4.39v7.25a0.53,0.53 0,0 0,0.3 0.43c2.18,1.06 7.05,0.7 8.67,0a0.7,0.7 0,0 0,0.34 -0.38,0.61 0.61,0 0,0 0,-0.19l0.07,-2.2c0.07,-2.17 0,-3.93 0.07,-6.28l1.55,2.84a1,1 0,0 0,0.59 0.4h0.21a2.07,2.07 0,0 0,1.64 -1.12,3.79 3.79,0 0,0 0.18,-0.42c0.12,-0.37 -3.05,-5.7 -5.06,-7.55a3.48,3.48 0,0 0,-2.28 -0.91v0.22a1,1 0,0 1,-1.06 0.94h-0.09c-0.53,0 -1.37,-0.61 -1.35,-1.14h0a12.48,12.48 0,0 0,-3 1.12,2 2,0 0,0 -0.54,0.36 3.06,3.06 0,0 0,-0.86 1c-1.72,2.5 -3.13,7.43 -3.62,9.1 -0.06,0.2 0.07,0.4 0.29,0.58a2.69,2.69 0,0 0,1.92 0.55" + android:fillColor="#b1daef" + android:fillType="evenOdd"/> + <path + android:pathData="M264.13,140.46a1,1 0,0 0,1.14 -0.84s0,-0.06 0,-0.09V139a3.11,3.11 0,0 1,-2.23 -1.33h0c-0.13,0.68 -0.26,1.4 -0.29,1.55h0c0,0.53 0.81,1.12 1.35,1.14" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M264.65,132.76a4.27,4.27 0,0 0,-1.26 0.43,1 1,0 0,0 -0.23,0.74 2.2,2.2 0,0 0,-0.3 1.64h0v0.17c0,0.06 0.05,0.26 0.08,0.41a1.24,1.24 0,0 0,0.74 0.84,0.45 0.45,0 0,0 0.61,-0.11c0.23,-0.28 1.18,-0.11 1.49,-0.14 0.54,0 0.57,0.9 0.92,0 -0.07,0.23 -0.16,0.49 -0.25,0.76a7.44,7.44 0,0 0,0.5 -3.43h0a1.4,1.4 0,0 0,-0.29 -0.76,3.8 3.8,0 0,0 -2,-0.54" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M262.58,136.07c0,-0.62 -0.07,-0.79 -0.23,-1h0c0.07,0.44 0.14,1 0.24,1.5a2.26,2.26 0,0 0,0 -0.52" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M265.87,137.47c0,-0.13 0.13,-0.39 -0.09,-0.39h-1.09c-0.18,0 -0.2,0.22 -0.15,0.35 0.13,0.58 1.18,0.68 1.33,0.06" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M264.69,137.06h1.09c0.22,0 0.13,0.27 0.09,0.4 -0.15,0.62 -1.2,0.52 -1.33,-0.06 -0.05,-0.13 0,-0.36 0.15,-0.35M262,134.68c0.15,0.19 0.26,0.3 0.34,0.4a1.67,1.67 0,0 1,0.23 1,2.26 2.26,0 0,1 0,0.52h0v0.06c-0.16,0.15 0.09,0.45 0.14,0.55a4.69,4.69 0,0 0,0.37 0.5A3.11,3.11 0,0 0,265.3 139h0c0.56,0 0.91,-0.79 1.17,-1.53 0.09,-0.27 0.18,-0.53 0.25,-0.76 -0.35,0.89 -0.38,0 -0.92,0 -0.31,0 -1.26,-0.14 -1.49,0.14a0.45,0.45 0,0 1,-0.61 0.11,1.24 1.24,0 0,1 -0.74,-0.84 2.29,2.29 0,0 0,-0.08 -0.41v-0.17h0a2.2,2.2 0,0 1,0.3 -1.64,1 1,0 0,1 0.23,-0.74 1,1 0,0 1,0.55 -0.27v-0.06a3.66,3.66 0,0 1,0.74 -0.1,3.8 3.8,0 0,1 2,0.54l0.21,0.12v-0.08c0.15,-0.39 0.71,-2.06 -0.23,-2.5a2.73,2.73 0,0 0,-2.17 0c-0.68,0.34 -1.2,0.11 -1.76,0.48 -1.36,0.92 -1.66,1.74 -1.46,2.9a8.86,8.86 0,0 0,0.31 1.12c0.09,-0.38 0.22,-0.37 0.39,-0.67" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M306.14,74a18,18 0,1 1,-18 -18,18 18,0 0,1 18,18" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M290.73,78.32a13.6,13.6 0,0 0,1.44 0.93,16.32 16.32,0 0,0 2.17,0.63c0.22,-0.33 0.51,-0.78 0.81,-1.19a23.7,23.7 0,0 1,-2.35 -1.21,28.57 28.57,0 0,1 -2.4,-2 11.55,11.55 0,0 1,0.33 2.87" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M284.41,91.54a17.39,17.39 0,0 0,3.73 0.4h0a54.61,54.61 0,0 1,-3.73 -7.65Z" + android:fillColor="#b96161" + android:fillType="evenOdd"/> + <path + android:pathData="M285.18,81.62v-0.07h0l-0.77,2.68v0.06a54.61,54.61 0,0 0,3.73 7.65,17.87 17.87,0 0,0 4.06,-0.47c-1.19,-5.37 -2.09,-9.86 -2.09,-9.86Z" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M289.61,66.16a2.8,2.8 0,0 0,-0.13 -0.64,1.11 1.11,0 0,0 -0.59,-0.7 1.55,1.55 0,0 1,-1.56 1.27l-0.05,0.11c0.35,3.2 -0.6,2.94 -1.15,4.88v0.12h0l0.07,0.06c0.94,0 1.48,0.83 2,0.28 0.06,-0.07 0.15,-0.07 0.25,0L288,68.88s1.66,0.07 1.62,-2.25h0a3.84,3.84 0,0 0,0 -0.48" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M285.19,81.54v-0.12l0.17,-0.75c-0.29,0.07 -1.77,0.35 -2.1,-0.54l-0.4,5c-0.06,0.62 -2.17,1.78 -0.6,2.88 1.27,0.89 1.65,-2.13 1.65,-2.13l0.47,-1.63Z" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M285.4,80.67l-0.17,0.75v0.2h4.95a10.55,10.55 0,0 0,0.59 -3.29,11.55 11.55,0 0,0 -0.33,-2.87c-0.52,-2.12 -1.5,-3.64 -2,-3.89a0.19,0.19 0,0 0,-0.25 0c-0.49,0.55 -1,-0.24 -2,-0.28h-0.1c-0.39,1.31 -0.46,0.74 -1,0.78 -0.92,2 -1.67,7.29 -1.76,8v0.07h0c0.33,0.89 1.81,0.61 2.1,0.54" + android:fillColor="#b1daef" + android:fillType="evenOdd"/> + <path + android:pathData="M286.06,71.29v-0.21c0.55,-1.94 1.5,-1.68 1.15,-4.88v-0.11h0.06a1.55,1.55 0,0 0,1.56 -1.27,1.11 1.11,0 0,1 0.59,0.7 2,2 0,0 1,0.13 0.64,3.84 3.84,0 0,1 0,0.48h0c0.19,-0.14 1.12,-1 0.4,-2.8 0,0 -0.17,-0.88 -1.41,-0.85 0,0 -2,-1.76 -3.82,-0.26a2.06,2.06 0,0 0,-0.59 3A5.58,5.58 0,0 0,282.6 71s0.91,2 2,1.3a1,1 0,0 1,0.5 -0.19c0.53,0 0.6,0.53 1,-0.78" + android:fillColor="#663014" + android:fillType="evenOdd"/> + <path + android:pathData="M293.93,80.43c-0.1,0.12 0,0.21 0,0.31a10.29,10.29 0,0 0,1.57 0.39,2.6 2.6,0 0,0 0.73,-0.74 1.15,1.15 0,0 1,0.16 -0.6c0.16,-0.33 0.28,-0.47 0.53,-0.56H297a12.29,12.29 0,0 1,0.78 -1.11c0.07,0 0,-0.32 -0.11,-0.39l-1.39,-0.29c-0.14,-0.17 -0.66,0.49 -1.18,1.24 -0.3,0.41 -0.59,0.86 -0.81,1.19a3.74,3.74 0,0 1,-0.41 0.55" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M296.93,79.23c-0.25,0.09 -0.37,0.23 -0.53,0.56a1.15,1.15 0,0 0,-0.16 0.6s0,0.06 0.05,0.07 0.2,-0.1 0.39,-0.37 0.45,-0.74 0.37,-0.85 -0.06,0 -0.12,0" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M329.22,144a18,18 0,1 1,-18 -18,18 18,0 0,1 18,18" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M306.74,146.41l-0.06,0.29 -1.54,7.59s-1.14,1.64 0,1.64 0.86,-1.5 0.86,-1.5l2.17,-7.49h0Z" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M313.81,152.23l-6.06,0.11h0v0.11l0.6,9.27a18.36,18.36 0,0 0,2.34 0.23l0.22,-6.9 0.42,6.91a17.46,17.46 0,0 0,2.28 -0.15l0.25,-9.57h0" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M310.06,142.65a2.28,2.28 0,0 0,0.38 0.38,2.28 2.28,0 0,1 -0.38,-0.38" + android:fillColor="#cbab7d" + android:fillType="evenOdd"/> + <path + android:pathData="M308.36,143.24l1.45,-0.76a0.11,0.11 0,0 1,0.13 0h0l0.17,-1h-0.18a1.9,1.9 0,0 1,-1.51 -1.52,1.63 1.63,0 0,1 -0.12,-1.61c0.45,-0.76 2,-0.23 2.83,-2 0,0 1.24,2 2.07,2s-0.08,2.71 -1.31,3l-0.23,0.07 0.09,1v0.1a0.12,0.12 0,0 1,0.14 0l1.61,0.81a2.52,2.52 0,0 1,0.52 0.46,2.13 2.13,0 0,1 0.49,0.85l0.25,0.89c3.16,0.17 3.51,-0.85 3.37,-1.58a1.14,1.14 0,0 0,-0.66 -0.82h0a1.17,1.17 0,0 1,-0.58 -1.54,1.45 1.45,0 0,1 0.17,-0.26 0.93,0.93 0,0 0,0.27 -0.61v-0.19c-0.09,-0.59 -1.13,-1.26 -1.95,-1.7a1.15,1.15 0,0 1,-0.6 -1.12,3.73 3.73,0 0,0 -2.81,-4.13 1.38,1.38 0,0 0,-0.39 -0.09c-0.35,0 -0.85,-0.33 -2.7,0.67s-1.8,3.54 -1.65,4.5a1.28,1.28 0,0 0,0.27 0.59,2.28 2.28,0 0,1 0.42,2.53c-0.5,1.1 -0.26,1.57 -0.05,1.76a0.69,0.69 0,0 1,0.11 0.13,1.43 1.43,0 0,1 0.5,-0.41" + android:fillColor="#cbab7d" + android:fillType="evenOdd"/> + <path + android:pathData="M311.59,140.92v0.5l0.23,-0.07c1.23,-0.3 2.13,-3 1.31,-3s-2.07,-2 -2.07,-2c-0.86,1.73 -2.38,1.2 -2.83,2a1.63,1.63 0,0 0,0.12 1.61,1.9 1.9,0 0,0 1.51,1.52H310l0.08,-0.48a1.57,1.57 0,0 0,1.43 -0.06" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M313.81,152.23h0a0.11,0.11 0,0 0,0.11 -0.13v0l-0.4,-2.16 -2.24,-0.76h-0.13v0.3a0.24,0.24 0,0 1,-0.22 0.26h-1.09a0.28,0.28 0,0 1,-0.28 -0.26l-0.23,-2.6a0.23,0.23 0,0 1,0.2 -0.26h1.11a0.31,0.31 0,0 1,0.28 0.26l0.12,1.4c0.19,0.12 0.32,0.22 0.32,0.22l2,0.45v-0.15h0a1.84,1.84 0,0 1,-0.05 -0.41l-0.22,-1.94c0,-0.12 0,-0.22 0.05,-0.11l0.07,0.39a0.14,0.14 0,0 0,0.17 0h0l1.31,-0.77h0a0.12,0.12 0,0 0,0.06 -0.14l-0.08,-0.28 -0.25,-0.89a2.13,2.13 0,0 0,-0.49 -0.85,2.52 2.52,0 0,0 -0.52,-0.46l-1.61,-0.81a0.12,0.12 0,0 0,-0.14 0c-0.36,0.89 -0.86,0.78 -1.24,0.5a2.28,2.28 0,0 1,-0.38 -0.38l-0.12,-0.14a0.11,0.11 0,0 0,-0.13 0l-1.45,0.76a1.43,1.43 0,0 0,-0.5 0.41,6 6,0 0,0 -0.49,0.64l-0.72,2a0.14,0.14 0,0 0,0.07 0.17h0l1.38,0.52h0a0.12,0.12 0,0 0,0.13 -0.11h0v-0.29c0,-0.14 0.08,-0.15 0.1,0v1.51c-0.06,0.49 -0.17,1.3 -0.2,1.64l-0.54,2.5a0.12,0.12 0,0 0,0.08 0.15h0Z" + android:fillColor="#b1daef" + android:fillType="evenOdd"/> + <path + android:pathData="M309.7,148.62c-0.11,-1.14 0.85,-0.68 1.38,-0.35l-0.12,-1.4a0.28,0.28 0,0 0,-0.28 -0.26H309.6a0.23,0.23 0,0 0,-0.23 0.23v0l0.23,2.6a0.28,0.28 0,0 0,0.28 0.26H311a0.24,0.24 0,0 0,0.24 -0.24v-0.32c-0.37,0 -1.4,0.05 -1.46,-0.55" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M313.36,146.75h0l0.53,2.32 -0.54,-0.13 -2,-0.45s-0.13,-0.1 -0.32,-0.22c-0.53,-0.33 -1.49,-0.79 -1.38,0.35 0.06,0.6 1.09,0.58 1.46,0.55h0.13l2.24,0.76 1,0.33a0.53,0.53 0,0 0,0.66 -0.33,0.55 0.55,0 0,0 0,-0.22l-0.47,-3.38V146h0Z" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M311.63,141.42v-0.5a1.57,1.57 0,0 1,-1.43 0.06l-0.08,0.48 -0.17,1h0l0.12,0.14a2,2 0,0 0,0.39 0.38c0.37,0.28 0.87,0.39 1.23,-0.5v-0.09Z" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M298,112.39a9.84,9.84 0,1 1,-9.85 -9.83h0a9.85,9.85 0,0 1,9.84 9.83" + android:fillColor="#ff919a" + android:fillType="evenOdd"/> + <path + android:pathData="M288,105.5a1,1 0,0 0,-1.05 1V107a3.48,3.48 0,0 0,-1.72 0.94,3.83 3.83,0 0,0 -1.07,2.78v2.72a4.5,4.5 0,0 1,-0.71 2l-0.62,0.94a0.38,0.38 0,0 0,0 0.36,0.35 0.35,0 0,0 0.31,0.18h3.14a1.74,1.74 0,0 0,3.48 0h3.14a0.37,0.37 0,0 0,0.31 -0.18,0.38 0.38,0 0,0 0,-0.36l-0.62,-0.94h0a4.38,4.38 0,0 1,-0.71 -2V110.8a3.7,3.7 0,0 0,-2.79 -3.75v-0.51a1,1 0,0 0,-1 -1" + android:fillColor="#17191a" + android:fillType="evenOdd"/> + <path + android:pathData="M56.63,104.71m-6.21,0a6.21,6.21 0,1 1,12.42 0a6.21,6.21 0,1 1,-12.42 0" + android:fillColor="#1e1e1f"/> + <path + android:pathData="M56.49,100a7.92,7.92 0,0 1,-3.16 1.11,0.31 0.31,0 0,0 -0.3,0.31v4.89a2.14,2.14 0,0 0,1 1.84c1.06,0.63 2.21,1.23 2.49,1.37a0.13,0.13 0,0 0,0.12 0c0.27,-0.14 1.42,-0.74 2.48,-1.37a2.14,2.14 0,0 0,1 -1.84v-4.89a0.31,0.31 0,0 0,-0.3 -0.31A7.94,7.94 0,0 1,56.76 100a0.29,0.29 0,0 0,-0.13 0,0.33 0.33,0 0,0 -0.14,0" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M56.56,102.81c0.34,0 0.63,0.42 0.67,0.93H55.89c0,-0.51 0.32,-0.93 0.67,-0.93m-1.18,0.93h-0.22a0.55,0.55 0,0 0,-0.53 0.54v1.85a0.55,0.55 0,0 0,0.53 0.54H58a0.55,0.55 0,0 0,0.53 -0.54v-1.85a0.55,0.55 0,0 0,-0.53 -0.54h-0.22a1.2,1.2 0,1 0,-2.35 -0.49,1.35 1.35,0 0,0 0,0.49" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M56,104.94a0.48,0.48 0,0 0,0.26 0.43v0.55a0.13,0.13 0,0 0,0.13 0.13h0.26a0.13,0.13 0,0 0,0.14 -0.12h0v-0.55a0.49,0.49 0,0 0,-0.25 -0.93h0a0.51,0.51 0,0 0,-0.53 0.49h0" + android:fillColor="#657887" + android:fillType="evenOdd"/> </vector> diff --git a/Corona-Warn-App/src/main/res/drawable-night/ic_main_header.xml b/Corona-Warn-App/src/main/res/drawable-night/ic_main_header.xml index 99f802b0077215198e4897f9453fe1382c521029..9e95a1a348c5440cf99c0a00cc57559ec788cad5 100644 --- a/Corona-Warn-App/src/main/res/drawable-night/ic_main_header.xml +++ b/Corona-Warn-App/src/main/res/drawable-night/ic_main_header.xml @@ -1,103 +1,103 @@ <vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt" - android:width="120dp" + android:width="114dp" android:height="40dp" - android:viewportWidth="120" + android:viewportWidth="114" android:viewportHeight="40"> <path + android:pathData="M35.072,24.195l1.177,0l1.52,4.737l1.999,-4.889l0.063,0l2.01,4.889l1.489,-4.737l1.104,0l-2.478,7.52l-0.063,0l-2.093,-5.173l-2.145,5.173l-0.052,0z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M41.017,24.195l1.177,0l1.52,4.737l1.999,-4.889l0.063,0l2.01,4.889l1.489,-4.737l1.104,0l-2.478,7.52l-0.063,0l-2.093,-5.173l-2.145,5.173l-0.052,0z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M49.005,30.23L46.131,30.23L45.579,31.616L44.455,31.616L47.558,24.042L47.62,24.042L50.734,31.616L49.557,31.616L49.005,30.23ZM46.537,29.205L48.599,29.205L47.578,26.607L46.537,29.205Z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M54.95,30.23L52.076,30.23L51.524,31.616L50.399,31.616L53.502,24.042L53.565,24.042L56.678,31.616L55.502,31.616L54.95,30.23ZM52.482,29.205L54.543,29.205L53.523,26.607L52.482,29.205Z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M53.358,31.616L52.244,31.616L52.244,24.195L54.514,24.195C56.169,24.195 57.117,25.145 57.117,26.552C57.117,27.589 56.628,28.331 55.742,28.67L57.45,31.616L56.232,31.616L54.649,28.877L54.514,28.877L53.358,28.877L53.358,31.616L53.358,31.616ZM54.472,27.873C55.524,27.873 55.961,27.436 55.961,26.552C55.961,25.658 55.513,25.232 54.472,25.232L53.358,25.232L53.358,27.873L54.472,27.873Z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M59.303,31.616L58.188,31.616L58.188,24.195L60.458,24.195C62.114,24.195 63.062,25.145 63.062,26.552C63.062,27.589 62.572,28.331 61.687,28.67L63.395,31.616L62.177,31.616L60.594,28.877L60.458,28.877L59.303,28.877L59.303,31.616L59.303,31.616ZM60.417,27.873C61.468,27.873 61.906,27.436 61.906,26.552C61.906,25.658 61.458,25.232 60.417,25.232L59.303,25.232L59.303,27.873L60.417,27.873Z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M60.241,26.738l0,4.878l-1.041,0l0,-7.531l0.083,0l4.54,4.988l0,-4.878l1.041,0l0,7.53l-0.083,0z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M66.186,26.738l0,4.878l-1.041,0l0,-7.531l0.083,0l4.54,4.988l0,-4.878l1.041,0l0,7.53l-0.083,0z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M67.12,27.655l1.916,0l0,0.993l-1.916,0z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M73.065,27.655l1.916,0l0,0.993l-1.916,0z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M74.779,30.23L71.905,30.23L71.353,31.616L70.229,31.616L73.332,24.042L73.394,24.042L76.508,31.616L75.331,31.616L74.779,30.23ZM72.311,29.205L74.373,29.205L73.353,26.607L72.311,29.205Z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M80.724,30.23L77.85,30.23L77.298,31.616L76.173,31.616L79.276,24.042L79.339,24.042L82.452,31.616L81.276,31.616L80.724,30.23ZM78.256,29.205L80.318,29.205L79.297,26.607L78.256,29.205Z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M79.132,31.616L78.018,31.616L78.018,24.195L80.267,24.195C81.923,24.195 82.87,25.156 82.87,26.596C82.87,28.069 81.912,28.997 80.267,28.997L79.132,28.997L79.132,31.616L79.132,31.616ZM80.226,27.96C81.277,27.96 81.715,27.502 81.715,26.596C81.715,25.679 81.267,25.232 80.226,25.232L79.132,25.232L79.132,27.96L80.226,27.96Z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M85.077,31.616L83.963,31.616L83.963,24.195L86.212,24.195C87.867,24.195 88.815,25.156 88.815,26.596C88.815,28.069 87.857,28.997 86.212,28.997L85.077,28.997L85.077,31.616L85.077,31.616ZM86.17,27.96C87.222,27.96 87.659,27.502 87.659,26.596C87.659,25.679 87.211,25.232 86.17,25.232L85.077,25.232L85.077,27.96L86.17,27.96Z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M85.713,31.616L84.599,31.616L84.599,24.195L86.849,24.195C88.504,24.195 89.452,25.156 89.452,26.596C89.452,28.069 88.494,28.997 86.849,28.997L85.713,28.997L85.713,31.616L85.713,31.616ZM86.807,27.96C87.858,27.96 88.296,27.502 88.296,26.596C88.296,25.679 87.848,25.232 86.807,25.232L85.713,25.232L85.713,27.96L86.807,27.96Z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M91.658,31.616L90.544,31.616L90.544,24.195L92.793,24.195C94.449,24.195 95.396,25.156 95.396,26.596C95.396,28.069 94.438,28.997 92.793,28.997L91.658,28.997L91.658,31.616L91.658,31.616ZM92.751,27.96C93.803,27.96 94.24,27.502 94.24,26.596C94.24,25.679 93.793,25.232 92.751,25.232L91.658,25.232L91.658,27.96L92.751,27.96Z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M35.129,13.46C35.129,9.996 37.717,7.445 40.997,7.445C43.128,7.445 44.599,8.29 45.597,9.72L44.211,10.72C43.449,9.669 42.469,9.117 40.947,9.117C38.664,9.117 37.006,10.979 37.006,13.46C37.006,15.994 38.697,17.804 41.014,17.804C42.502,17.804 43.602,17.235 44.464,16.097L45.868,17.08C44.684,18.683 43.179,19.475 40.947,19.475C37.666,19.475 35.129,16.925 35.129,13.46Z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M41.074,13.46C41.074,9.996 43.661,7.445 46.942,7.445C49.073,7.445 50.544,8.29 51.542,9.72L50.155,10.72C49.394,9.669 48.413,9.117 46.891,9.117C44.608,9.117 42.951,10.979 42.951,13.46C42.951,15.994 44.642,17.804 46.959,17.804C48.447,17.804 49.546,17.235 50.409,16.097L51.812,17.08C50.629,18.683 49.124,19.475 46.891,19.475C43.611,19.475 41.074,16.925 41.074,13.46Z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M47.474,13.46C47.474,9.996 50.112,7.445 53.41,7.445C56.708,7.445 59.346,9.996 59.346,13.46C59.346,16.925 56.708,19.475 53.41,19.475C50.112,19.475 47.474,16.925 47.474,13.46ZM57.469,13.46C57.469,10.979 55.795,9.117 53.41,9.117C51.026,9.117 49.351,10.979 49.351,13.46C49.351,15.942 51.026,17.804 53.41,17.804C55.795,17.804 57.469,15.942 57.469,13.46Z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M53.419,13.46C53.419,9.996 56.057,7.445 59.355,7.445C62.652,7.445 65.29,9.996 65.29,13.46C65.29,16.925 62.652,19.475 59.355,19.475C56.057,19.475 53.419,16.925 53.419,13.46ZM63.413,13.46C63.413,10.979 61.739,9.117 59.355,9.117C56.97,9.117 55.296,10.979 55.296,13.46C55.296,15.942 56.97,17.804 59.355,17.804C61.739,17.804 63.413,15.942 63.413,13.46Z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M63.777,19.32L61.967,19.32L61.967,7.601L65.654,7.601C68.343,7.601 69.882,9.1 69.882,11.323C69.882,12.961 69.087,14.133 67.649,14.667L70.423,19.32L68.444,19.32L65.874,14.994L65.654,14.994L63.777,14.994L63.777,19.32L63.777,19.32ZM65.586,13.409C67.294,13.409 68.004,12.719 68.004,11.323C68.004,9.91 67.277,9.238 65.586,9.238L63.777,9.238L63.777,13.409L65.586,13.409L65.586,13.409Z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M69.721,19.32L67.912,19.32L67.912,7.601L71.598,7.601C74.287,7.601 75.826,9.1 75.826,11.323C75.826,12.961 75.031,14.133 73.594,14.667L76.367,19.32L74.389,19.32L71.818,14.994L71.598,14.994L69.721,14.994L69.721,19.32L69.721,19.32ZM71.531,13.409C73.239,13.409 73.949,12.719 73.949,11.323C73.949,9.91 73.222,9.238 71.531,9.238L69.721,9.238L69.721,13.409L71.531,13.409L71.531,13.409Z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M72.198,13.46C72.198,9.996 74.836,7.445 78.134,7.445C81.432,7.445 84.07,9.996 84.07,13.46C84.07,16.925 81.432,19.475 78.134,19.475C74.836,19.475 72.198,16.925 72.198,13.46ZM82.193,13.46C82.193,10.979 80.518,9.117 78.134,9.117C75.75,9.117 74.075,10.979 74.075,13.46C74.075,15.942 75.75,17.804 78.134,17.804C80.518,17.804 82.193,15.942 82.193,13.46Z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M78.143,13.46C78.143,9.996 80.781,7.445 84.079,7.445C87.376,7.445 90.014,9.996 90.014,13.46C90.014,16.925 87.376,19.475 84.079,19.475C80.781,19.475 78.143,16.925 78.143,13.46ZM88.137,13.46C88.137,10.979 86.463,9.117 84.079,9.117C81.694,9.117 80.02,10.979 80.02,13.46C80.02,15.942 81.694,17.804 84.079,17.804C86.463,17.804 88.137,15.942 88.137,13.46Z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M88.362,11.616l0,7.704l-1.691,0l0,-11.892l0.135,0l7.373,7.876l0,-7.704l1.691,0l0,11.892l-0.135,0z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M94.306,11.616l0,7.704l-1.691,0l0,-11.892l0.135,0l7.373,7.876l0,-7.704l1.691,0l0,11.892l-0.135,0z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path + android:pathData="M105.019,17.131L100.352,17.131L99.455,19.32L97.629,19.32L102.669,7.359L102.77,7.359L107.826,19.32L105.916,19.32L105.019,17.131ZM101.011,15.511L104.36,15.511L102.702,11.409L101.011,15.511Z" + android:strokeWidth="1" android:fillColor="#FFFFFF" android:fillType="nonZero" - android:pathData="M110.964,17.131L106.296,17.131L105.4,19.32L103.574,19.32L108.613,7.359L108.715,7.359L113.771,19.32L111.86,19.32L110.964,17.131ZM106.956,15.511L110.304,15.511L108.647,11.409L106.956,15.511Z" - android:strokeWidth="1" - android:strokeColor="#00FFFFFF" /> + android:strokeColor="#00000000" /> <path android:fillType="nonZero" - android:pathData="M24.389,25.873L24.389,29.004L24.544,29.16L24.61,29.104C25.069,29.358 25.38,29.846 25.38,30.408C25.38,31.232 24.714,31.899 23.893,31.899C23.072,31.899 22.406,31.232 22.406,30.408C22.406,29.759 22.82,29.209 23.397,29.004L23.397,26.131L23.552,26.028L23.397,25.873C22.127,25.768 20.971,25.263 20.052,24.484L17.843,26.698C18.107,27.252 18.012,27.935 17.554,28.394C16.973,28.976 16.032,28.976 15.451,28.394C14.87,27.812 14.87,26.868 15.451,26.286C15.908,25.827 16.59,25.731 17.142,25.996L19.351,23.782C18.621,22.917 18.133,21.842 17.99,20.659L18.121,20.585L17.966,20.429L14.842,20.429C14.638,21.008 14.088,21.423 13.441,21.423C12.62,21.423 11.954,20.756 11.954,19.932C11.954,19.109 12.62,18.442 13.441,18.442C14.088,18.442 14.638,18.857 14.842,19.435L14.997,19.591L15.149,19.435L17.966,19.435C18.071,18.162 18.574,17.003 19.351,16.083L17.142,13.869C16.59,14.133 15.908,14.037 15.451,13.579C14.87,12.996 14.87,12.053 15.451,11.47C16.032,10.888 16.973,10.888 17.554,11.47C18.012,11.929 18.107,12.612 17.843,13.166L20.052,15.38C20.971,14.601 22.127,14.097 23.397,13.992L23.397,11.079L23.552,11.016L23.397,10.86C22.82,10.655 22.406,10.105 22.406,9.456C22.406,8.633 23.072,7.966 23.893,7.966C24.714,7.966 25.38,8.633 25.38,9.456C25.38,10.105 24.966,10.655 24.389,10.86L24.389,13.992L24.544,14.147L24.665,14.021C25.999,14.195 27.193,14.811 28.098,15.717L36.513,7.283C33.283,4.046 28.821,2.044 23.893,2.044C14.036,2.044 6.046,10.053 6.046,19.932C6.046,29.812 14.036,37.82 23.893,37.82C28.821,37.82 33.283,35.818 36.513,32.581L28.098,24.147C27.131,25.116 25.833,25.753 24.389,25.873Z" android:strokeWidth="1" - android:strokeColor="#00FFFFFF"> + android:pathData="M18.444,25.873L18.444,29.004L18.599,29.16L18.665,29.104C19.124,29.358 19.436,29.846 19.436,30.408C19.436,31.232 18.77,31.899 17.948,31.899C17.127,31.899 16.461,31.232 16.461,30.408C16.461,29.759 16.875,29.209 17.453,29.004L17.453,26.131L17.608,26.028L17.453,25.873C16.183,25.768 15.026,25.263 14.108,24.484L11.899,26.698C12.163,27.252 12.067,27.935 11.609,28.394C11.029,28.976 10.087,28.976 9.506,28.394C8.925,27.812 8.925,26.868 9.506,26.286C9.964,25.827 10.645,25.731 11.198,25.996L13.407,23.782C12.677,22.917 12.189,21.842 12.045,20.659L12.177,20.585L12.022,20.429L8.897,20.429C8.693,21.008 8.144,21.423 7.497,21.423C6.675,21.423 6.009,20.756 6.009,19.932C6.009,19.109 6.675,18.442 7.497,18.442C8.144,18.442 8.693,18.857 8.897,19.435L9.053,19.591L9.204,19.435L12.022,19.435C12.126,18.162 12.63,17.003 13.407,16.083L11.198,13.869C10.645,14.133 9.964,14.037 9.506,13.579C8.925,12.996 8.925,12.053 9.506,11.47C10.087,10.888 11.029,10.888 11.609,11.47C12.067,11.929 12.163,12.612 11.899,13.166L14.108,15.38C15.026,14.601 16.183,14.097 17.453,13.992L17.453,11.079L17.608,11.016L17.453,10.86C16.875,10.655 16.461,10.105 16.461,9.456C16.461,8.633 17.127,7.966 17.948,7.966C18.77,7.966 19.436,8.633 19.436,9.456C19.436,10.105 19.021,10.655 18.444,10.86L18.444,13.992L18.599,14.147L18.721,14.021C20.054,14.195 21.249,14.811 22.154,15.717L30.568,7.283C27.338,4.046 22.877,2.044 17.948,2.044C8.092,2.044 0.101,10.053 0.101,19.932C0.101,29.812 8.092,37.82 17.948,37.82C22.877,37.82 27.338,35.818 30.568,32.581L22.154,24.147C21.187,25.116 19.889,25.753 18.444,25.873Z" + android:strokeColor="#00000000"> <aapt:attr name="android:fillColor"> <gradient - android:endX="21.2795" + android:endX="15.334498" + android:startX="15.334498" android:endY="31.824244" - android:startX="21.2795" android:startY="2.8311005" android:type="linear"> <item @@ -110,15 +110,15 @@ </aapt:attr> </path> <path - android:fillType="nonZero" - android:pathData="M24.544,26.028L24.544,29.16C25.121,29.365 25.535,29.915 25.535,30.564C25.535,31.387 24.87,32.055 24.048,32.055C23.227,32.055 22.561,31.387 22.561,30.564C22.561,29.915 22.975,29.365 23.552,29.16L23.552,26.028C22.282,25.923 21.126,25.419 20.208,24.64L17.999,26.854C18.262,27.408 18.167,28.091 17.709,28.55C17.129,29.132 16.187,29.132 15.606,28.55C15.025,27.968 15.025,27.024 15.606,26.442C16.064,25.983 16.745,25.887 17.298,26.151L19.507,23.937C18.729,23.017 18.226,21.858 18.121,20.585L14.997,20.585C14.793,21.163 14.244,21.579 13.596,21.579C12.775,21.579 12.109,20.911 12.109,20.088C12.109,19.265 12.775,18.597 13.596,18.597C14.244,18.597 14.793,19.012 14.997,19.591L18.121,19.591C18.226,18.318 18.729,17.159 19.507,16.238L17.298,14.024C16.745,14.289 16.064,14.193 15.606,13.734C15.025,13.152 15.025,12.208 15.606,11.626C16.187,11.044 17.129,11.044 17.709,11.626C18.167,12.085 18.262,12.768 17.999,13.322L20.208,15.536C21.126,14.757 22.282,14.253 23.552,14.147L23.552,11.016C22.975,10.811 22.561,10.261 22.561,9.612C22.561,8.789 23.227,8.121 24.048,8.121C24.87,8.121 25.535,8.789 25.535,9.612C25.535,10.261 25.121,10.811 24.544,11.016L24.544,14.147C25.989,14.267 27.287,14.904 28.254,15.873L36.668,7.439C33.438,4.202 28.977,2.2 24.048,2.2C14.192,2.2 6.201,10.209 6.201,20.088C6.201,29.967 14.192,37.976 24.048,37.976C28.977,37.976 33.438,35.974 36.668,32.737L28.254,24.303C27.287,25.272 25.989,25.909 24.544,26.028Z" + android:pathData="M18.599,26.028L18.599,29.16C19.177,29.365 19.591,29.915 19.591,30.564C19.591,31.387 18.925,32.055 18.104,32.055C17.282,32.055 16.616,31.387 16.616,30.564C16.616,29.915 17.031,29.365 17.608,29.16L17.608,26.028C16.338,25.923 15.181,25.419 14.263,24.64L12.054,26.854C12.318,27.408 12.222,28.091 11.765,28.55C11.184,29.132 10.242,29.132 9.661,28.55C9.081,27.968 9.081,27.024 9.661,26.442C10.119,25.983 10.8,25.887 11.353,26.151L13.562,23.937C12.785,23.017 12.282,21.858 12.177,20.585L9.053,20.585C8.848,21.163 8.299,21.579 7.652,21.579C6.83,21.579 6.165,20.911 6.165,20.088C6.165,19.265 6.83,18.597 7.652,18.597C8.299,18.597 8.848,19.012 9.053,19.591L12.177,19.591C12.282,18.318 12.785,17.159 13.562,16.238L11.353,14.024C10.8,14.289 10.119,14.193 9.661,13.734C9.081,13.152 9.081,12.208 9.661,11.626C10.242,11.044 11.184,11.044 11.765,11.626C12.222,12.085 12.318,12.768 12.054,13.322L14.263,15.536C15.181,14.757 16.338,14.253 17.608,14.147L17.608,11.016C17.031,10.811 16.616,10.261 16.616,9.612C16.616,8.789 17.282,8.121 18.104,8.121C18.925,8.121 19.591,8.789 19.591,9.612C19.591,10.261 19.177,10.811 18.599,11.016L18.599,14.147C20.044,14.267 21.342,14.904 22.309,15.873L30.723,7.439C27.494,4.202 23.032,2.2 18.104,2.2C8.247,2.2 0.257,10.209 0.257,20.088C0.257,29.967 8.247,37.976 18.104,37.976C23.032,37.976 27.494,35.974 30.723,32.737L22.309,24.303C21.342,25.272 20.044,25.909 18.599,26.028Z" android:strokeWidth="1" - android:strokeColor="#00FFFFFF"> + android:fillType="nonZero" + android:strokeColor="#00000000"> <aapt:attr name="android:fillColor"> <gradient - android:endX="21.434502" + android:endX="15.490001" + android:startX="15.490001" android:endY="2.2" - android:startX="21.434502" android:startY="37.976" android:type="linear"> <item diff --git a/Corona-Warn-App/src/main/res/drawable-night/ic_settings_notification_circle.xml b/Corona-Warn-App/src/main/res/drawable-night/ic_settings_notification_circle.xml new file mode 100644 index 0000000000000000000000000000000000000000..6d41fcee13a19110c64a55cc073331fb7613b8eb --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable-night/ic_settings_notification_circle.xml @@ -0,0 +1,18 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="40dp" + android:height="40dp" + android:viewportWidth="40" + android:viewportHeight="40"> + <path + android:pathData="M20,0L20,0A20,20 0,0 1,40 20L40,20A20,20 0,0 1,20 40L20,40A20,20 0,0 1,0 20L0,20A20,20 0,0 1,20 0z" + android:strokeWidth="1" + android:fillColor="#232324" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M20,10C19.172,10 18.5,10.672 18.5,11.5L18.5,12.1953C15.9132,12.8621 14,15.2048 14,18L14,24L12,26L12,27L18.2695,27C18.0934,27.3039 18.0005,27.6488 18,28C18,29.1046 18.8954,30 20,30C21.1046,30 22,29.1046 22,28C21.9989,27.6486 21.9053,27.3037 21.7285,27L28,27L28,26L26,24L26,18C26,15.2048 24.0868,12.8621 21.5,12.1953L21.5,11.5C21.5,10.672 20.828,10 20,10ZM20,14C22.206,14 24,15.794 24,18L24,24L24,24.8281L24.1719,25L15.8281,25L16,24.8281L16,24L16,18C16,15.794 17.794,14 20,14Z" + android:strokeWidth="1" + android:fillColor="#83D2F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable-night/ic_submission_illustration_hotline.xml b/Corona-Warn-App/src/main/res/drawable-night/ic_submission_illustration_hotline.xml new file mode 100644 index 0000000000000000000000000000000000000000..6731208ebc9736a43f7a8349831fdbdca0c8a88b --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable-night/ic_submission_illustration_hotline.xml @@ -0,0 +1,90 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="360dp" + android:height="220dp" + android:viewportWidth="360" + android:viewportHeight="220"> + <group> + <path + android:pathData="M272.992,161.612C273.38,158.044 273.989,155.612 273.989,155.612L255.042,153.612C255.042,153.612 254.185,161.2 254.044,164.612L272.992,161.612Z" + android:strokeWidth="1" + android:fillColor="#F3B590" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M236.057,62.523C236.057,62.523 234.429,95.377 211.444,85.648C209.062,84.639 206.178,83.612 203.585,81.165C198.987,76.825 192.217,68.612 194.042,49.473C195.708,32.01 213.128,19.77 226.762,35.926C240.395,52.083 242.254,58.297 240.395,60.037C238.536,61.777 236.057,62.523 236.057,62.523" + android:strokeWidth="1" + android:fillColor="#F3B590" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M206.696,103.767C206.696,103.767 205.123,101.86 206.78,96.006C206.8,95.938 206.787,95.822 206.863,95.725C208.062,94.188 209.644,86.817 210.997,84.432L229.202,81.198C229.202,81.198 228.958,90.307 231.07,97.121C232.206,100.785 230.054,104.377 227.812,105.879C222.56,109.396 211.352,113.366 206.696,103.767" + android:strokeWidth="1" + android:fillColor="#F3B590" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M186.623,143.043C186.623,143.043 178.255,200.612 166.288,198.612C160.853,197.704 143.312,186.756 129.133,171.964C120.335,162.789 116.511,159.285 114.951,157.172C111.03,151.859 95.623,147.71 98.941,139.277C100.099,136.335 106.236,133.665 112.048,136.985C117.734,140.233 121.184,146.481 121.466,147.512C122.3,150.562 129,155.933 134.759,160.252C140.44,164.514 157.902,174.252 157.902,174.252C158.906,175.093 160.438,174.683 160.884,173.449C163.531,166.146 165.421,144.616 165.603,143.903C165.827,143.036 186.623,143.043 186.623,143.043" + android:strokeWidth="1" + android:fillColor="#F3B590" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <group> + <path + android:pathData="M231.255,97.474C231.255,97.474 229.946,101.311 226.122,103.612C216.15,109.612 208.172,102.612 207.277,98.661L206.77,95.804C206.77,95.804 179.166,102.261 171.112,111.99C167.285,116.612 165.291,119.612 162.299,148.612C161.991,151.596 165.001,153.182 166.288,153.612C171.048,155.203 181.477,154.025 184.727,153.476C185.534,153.34 186.177,152.736 186.37,151.938L187.48,147.373L189.224,137.612L187.881,205.182L248.406,205.833L253.047,140.612L254.064,154.074C254.143,155.12 254.868,155.991 255.874,156.277C260.729,157.655 272.388,155.97 274.386,155.648C274.982,155.553 275.42,155.043 275.424,154.437C275.441,148.516 275.133,119.08 267.173,112.46C258.31,105.09 231.255,97.474 231.255,97.474" + android:strokeWidth="1" + android:fillColor="#898995" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> + <path + android:pathData="M255.042,156.612C254.212,159.914 253.49,170.157 253.047,174.612C252.158,183.573 251.01,191.975 250.309,191.887C248.909,191.711 207.559,198.489 203.186,197.612C198.2,196.612 201.191,196.612 196.205,195.612C186.233,193.612 175.263,197.612 179.252,205.612C180.301,207.716 184.238,208.612 192.216,207.612C197.823,206.909 205.137,205.677 208.172,205.612C215.189,205.462 253.124,207.13 260.688,205.669C264.585,204.916 268.01,192.053 270,179.612C271.106,172.704 272.496,166.173 272.992,161.612L255.042,156.612Z" + android:strokeWidth="1" + android:fillColor="#F3B590" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M223.13,45.612C225.405,47.893 224.889,50.376 227.119,52.612C230.111,55.612 238.366,55.769 239.372,49.574C239.414,49.317 239.176,55.707 239.251,55.956C240.145,58.928 237.02,58.192 236.056,62.523C235.936,63.069 235.11,69.269 235.023,69.642C234.203,73.137 233.687,74.458 233.687,74.458C237.558,73.736 251.152,54.089 247.115,42.958C243.132,31.981 234.366,25.766 229.782,23.572C229.668,23.518 219.179,20.284 216.15,20.612C215.126,20.723 206.192,22.498 205.205,23.372C205.077,23.485 204.917,23.543 204.75,23.573C203.239,23.849 197.441,24.818 194.646,24.028C193.977,23.839 193.324,24.365 193.415,25.056C193.512,25.799 193.658,26.619 193.878,27.261C194.08,27.856 193.641,28.475 193.015,28.497C190.068,28.599 184.208,28.47 183.374,28.47C182.469,28.47 183.933,31.155 185.955,32.931C186.636,33.529 186.199,34.638 185.294,34.601C185.272,34.6 185.251,34.599 185.229,34.598C184.48,34.563 183.989,35.362 184.36,36.015C186.371,39.559 189.407,47.988 195.208,47.612C201.773,47.187 214.155,36.612 223.13,45.612" + android:strokeWidth="1" + android:fillColor="#352525" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M216.15,73.612C216.15,73.612 209.729,73.594 209.533,76.717C209.339,79.839 215.979,77.564 217.147,75.612C217.147,75.612 227.119,72.612 236.487,60.129C236.487,60.129 245.643,62.084 245.342,52.908C245.069,44.612 242.078,43.612 239.086,43.612C239.086,43.612 237.092,31.612 230.111,23.612C225.468,18.291 218.221,15.738 212.161,17.612C208.126,18.86 204.183,23.612 204.183,23.612C204.183,23.612 207.531,23.001 209.488,22.454C211.247,21.963 213.196,21.035 216.394,21.319C222.804,21.887 225.01,23.725 226.772,25.413C230.111,28.612 235.097,36.612 236.585,44.419C236.585,44.419 229.967,47.932 235.514,58.373C235.514,58.373 233.103,61.612 229.114,65.612C225.125,69.612 217.573,73.73 216.15,73.612" + android:strokeWidth="1" + android:fillColor="#C36A61" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <group> + <path + android:pathData="M161.481,77.391L156.647,62.702C156.427,62.033 156.494,61.312 156.837,60.697C158.813,57.158 164.186,44.605 161.957,34.175C159.539,22.87 146.59,6.486 116.089,9.845C85.588,13.205 83.114,40.548 83.114,40.548C83.114,40.548 81.313,54.163 93.444,64.618C105.348,74.878 124.707,76.632 138.854,72.971C139.38,72.835 139.929,72.87 140.43,73.079L158.144,80.49C160.121,81.318 162.152,79.43 161.481,77.391" + android:strokeWidth="1" + android:fillColor="#4A4A4A" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> + <path + android:pathData="M150.679,34.203L141.242,34.203C140.537,34.203 139.965,34.735 139.965,35.393L139.965,50.265C139.965,50.922 140.537,51.455 141.242,51.455L150.679,51.455C151.384,51.455 151.956,50.922 151.956,50.265L151.956,35.393C151.956,34.735 151.384,34.203 150.679,34.203" + android:strokeWidth="1" + android:fillColor="#B8C8D9" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M135.396,34.203L125.96,34.203C125.255,34.203 124.682,34.735 124.682,35.393L124.682,50.265C124.682,50.922 125.255,51.455 125.96,51.455L135.396,51.455C136.101,51.455 136.674,50.922 136.674,50.265L136.674,35.393C136.674,34.735 136.101,34.203 135.396,34.203" + android:strokeWidth="1" + android:fillColor="#B8C8D9" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M120.114,34.203L110.677,34.203C109.972,34.203 109.4,34.735 109.4,35.393L109.4,50.265C109.4,50.922 109.972,51.455 110.677,51.455L120.114,51.455C120.819,51.455 121.391,50.922 121.391,50.265L121.391,35.393C121.391,34.735 120.819,34.203 120.114,34.203" + android:strokeWidth="1" + android:fillColor="#B8C8D9" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M104.832,34.203L95.395,34.203C94.69,34.203 94.118,34.735 94.118,35.393L94.118,50.265C94.118,50.922 94.69,51.455 95.395,51.455L104.832,51.455C105.537,51.455 106.109,50.922 106.109,50.265L106.109,35.393C106.109,34.735 105.537,34.203 104.832,34.203" + android:strokeWidth="1" + android:fillColor="#B8C8D9" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable-night/ic_submission_illustration_other_warning.xml b/Corona-Warn-App/src/main/res/drawable-night/ic_submission_illustration_other_warning.xml index f1175f21d2d3e3977be5cd733c687c708ebb9e9d..814323b348e6d5869dca44441c0c1bb2271c04c9 100644 --- a/Corona-Warn-App/src/main/res/drawable-night/ic_submission_illustration_other_warning.xml +++ b/Corona-Warn-App/src/main/res/drawable-night/ic_submission_illustration_other_warning.xml @@ -1,396 +1,200 @@ <vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="361dp" + android:width="359.5dp" android:height="220dp" - android:viewportWidth="361" + android:viewportWidth="359.5" android:viewportHeight="220"> - <group> - <path - android:fillColor="#B1BBC2" - android:fillType="nonZero" - android:pathData="M174.38,100.378L143.587,100.277C142.932,100.274 142.399,100.803 142.397,101.456L142.365,111.068C142.363,111.722 142.893,112.254 143.548,112.256L174.34,112.359C174.995,112.36 175.528,111.832 175.53,111.178L175.562,101.567C175.564,100.913 175.035,100.38 174.38,100.378" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#94A1AB" - android:fillType="nonZero" - android:pathData="M174.439,83.741L143.648,83.638C142.992,83.636 142.458,84.165 142.456,84.819L142.424,94.429C142.422,95.084 142.952,95.616 143.607,95.618L174.399,95.72C175.054,95.723 175.588,95.194 175.59,94.539L175.622,84.929C175.624,84.275 175.094,83.743 174.439,83.741" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M144.098,95.618C144.098,95.618 143.681,95.62 143.663,95.62C143.388,95.618 143.699,95.623 143.425,95.617C143.199,95.612 142.486,95.352 142.461,94.592C142.46,93.749 142.461,87.754 142.461,84.888C142.454,83.882 143.269,83.645 143.558,83.644C143.807,83.644 143.398,83.646 143.647,83.643C143.702,83.643 144.096,83.643 144.096,83.643L144.098,95.618Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#748692" - android:fillType="nonZero" - android:pathData="M174.489,67.107L143.698,67.005C143.042,67.002 142.508,67.531 142.507,68.185L142.475,77.796C142.473,78.45 143.002,78.982 143.657,78.984L174.45,79.087C175.105,79.089 175.638,78.56 175.64,77.906L175.672,68.296C175.674,67.641 175.144,67.109 174.489,67.107" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M174.532,50.478L143.741,50.376C143.085,50.374 142.552,50.902 142.549,51.556L142.517,61.167C142.515,61.821 143.045,62.354 143.701,62.356L174.492,62.457C175.147,62.46 175.681,61.932 175.683,61.277L175.715,51.666C175.717,51.013 175.188,50.48 174.532,50.478" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E7EAEF" - android:fillType="nonZero" - android:pathData="M159.489,89.491C164.06,89.491 167.765,85.792 167.765,81.23C167.765,76.668 164.06,72.969 159.489,72.969C154.919,72.969 151.214,76.668 151.214,81.23C151.214,85.792 154.919,89.491 159.489,89.491" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M148.65,74.33L148.65,73.492L148.587,72.049L149.413,74.33L149.847,74.33L150.676,72.047L150.613,73.492L150.613,74.33L151.247,74.33L151.247,71.266L150.417,71.266L149.632,73.488L148.844,71.266L148.017,71.266L148.017,74.33L148.65,74.33ZM153.219,74.33L153.219,71.262L153.154,71.262L151.882,71.716L151.882,72.211L152.61,71.986L152.61,74.33L153.219,74.33ZM155.186,74.372C155.514,74.372 155.777,74.29 155.976,74.126C156.175,73.962 156.274,73.744 156.274,73.471C156.274,73.303 156.232,73.157 156.146,73.034C156.061,72.91 155.932,72.818 155.76,72.756C155.899,72.693 156.011,72.602 156.097,72.484C156.183,72.366 156.226,72.237 156.226,72.097C156.226,71.825 156.133,71.611 155.949,71.456C155.765,71.301 155.511,71.224 155.186,71.224C154.999,71.224 154.828,71.259 154.673,71.331C154.517,71.403 154.397,71.502 154.31,71.629C154.224,71.756 154.18,71.899 154.18,72.059L154.18,72.059L154.79,72.059C154.79,71.957 154.829,71.874 154.908,71.81C154.987,71.746 155.084,71.714 155.201,71.714C155.33,71.714 155.432,71.748 155.506,71.817C155.579,71.886 155.616,71.982 155.616,72.106C155.616,72.233 155.579,72.336 155.505,72.413C155.43,72.49 155.315,72.529 155.161,72.529L155.161,72.529L154.836,72.529L154.836,73.004L155.159,73.004C155.496,73.004 155.665,73.157 155.665,73.463C155.665,73.589 155.624,73.691 155.541,73.767C155.459,73.844 155.346,73.882 155.201,73.882C155.074,73.882 154.968,73.845 154.882,73.772C154.795,73.699 154.752,73.605 154.752,73.49L154.752,73.49L154.143,73.49C154.143,73.756 154.24,73.969 154.435,74.13C154.629,74.291 154.88,74.372 155.186,74.372ZM157.124,74.36L157.273,74.357C157.74,74.338 158.101,74.182 158.355,73.89C158.609,73.598 158.737,73.197 158.737,72.686L158.737,72.686L158.737,72.461C158.735,72.217 158.691,72 158.604,71.811C158.517,71.621 158.394,71.476 158.237,71.375C158.079,71.274 157.9,71.224 157.697,71.224C157.5,71.224 157.323,71.27 157.166,71.364C157.008,71.457 156.886,71.587 156.798,71.755C156.71,71.923 156.666,72.107 156.666,72.308C156.666,72.623 156.748,72.874 156.911,73.06C157.074,73.246 157.291,73.339 157.562,73.339C157.774,73.339 157.96,73.261 158.119,73.105C158.075,73.578 157.788,73.826 157.259,73.85L157.259,73.85L157.124,73.852L157.124,74.36ZM157.712,72.874C157.573,72.874 157.465,72.82 157.388,72.713C157.312,72.605 157.273,72.468 157.273,72.301C157.273,72.133 157.313,71.993 157.391,71.881C157.47,71.77 157.571,71.714 157.693,71.714C157.825,71.714 157.93,71.771 158.009,71.885C158.088,71.998 158.127,72.158 158.127,72.364L158.127,72.364L158.127,72.615C158.091,72.686 158.037,72.747 157.966,72.798C157.895,72.848 157.81,72.874 157.712,72.874ZM160.202,74.372C160.541,74.372 160.798,74.26 160.973,74.035C161.149,73.811 161.237,73.487 161.237,73.063L161.237,73.063L161.237,72.499C161.233,72.088 161.142,71.773 160.965,71.553C160.788,71.333 160.532,71.224 160.198,71.224C159.863,71.224 159.607,71.335 159.429,71.556C159.251,71.778 159.162,72.103 159.162,72.531L159.162,72.531L159.162,73.095C159.167,73.506 159.257,73.821 159.434,74.042C159.611,74.262 159.867,74.372 160.202,74.372ZM160.202,73.882C160.051,73.882 159.942,73.821 159.874,73.7C159.806,73.578 159.772,73.393 159.772,73.143L159.772,73.143L159.772,72.398C159.776,72.164 159.812,71.992 159.88,71.881C159.948,71.771 160.054,71.716 160.198,71.716C160.345,71.716 160.454,71.774 160.523,71.89C160.593,72.006 160.628,72.19 160.628,72.444L160.628,72.444L160.628,73.173C160.625,73.412 160.59,73.591 160.524,73.707C160.458,73.824 160.351,73.882 160.202,73.882ZM162.085,74.33L162.296,73.699L163.405,73.699L163.618,74.33L164.291,74.33L163.141,71.266L162.555,71.266L161.413,74.33L162.085,74.33ZM163.234,73.187L162.467,73.187L162.848,72.04L163.234,73.187ZM165.21,74.33L165.21,73.492L165.146,72.049L165.973,74.33L166.407,74.33L167.236,72.047L167.173,73.492L167.173,74.33L167.807,74.33L167.807,71.266L166.977,71.266L166.192,73.488L165.404,71.266L164.577,71.266L164.577,74.33L165.21,74.33ZM170.335,74.33L170.335,73.823L168.992,73.823L168.992,71.266L168.36,71.266L168.36,74.33L170.335,74.33Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M148.295,91.049L148.295,89.797L149.509,89.797L149.509,89.287L148.295,89.287L148.295,88.496L149.661,88.496L149.661,87.985L147.662,87.985L147.662,91.049L148.295,91.049ZM150.658,91.049L150.658,90.173L150.987,89.82L151.775,91.049L152.528,91.049L151.406,89.346L152.496,87.985L151.719,87.985L150.936,88.993L150.658,89.374L150.658,87.985L150.026,87.985L150.026,91.049L150.658,91.049ZM153.586,91.091C153.785,91.091 153.962,91.05 154.12,90.969C154.277,90.888 154.399,90.772 154.486,90.623C154.572,90.473 154.615,90.301 154.615,90.106L154.615,90.106L154.615,87.985L153.983,87.985L153.983,90.106C153.983,90.259 153.947,90.377 153.875,90.46C153.804,90.542 153.707,90.584 153.586,90.584C153.45,90.584 153.35,90.548 153.287,90.477C153.224,90.405 153.192,90.294 153.192,90.144L153.192,90.144L152.555,90.144C152.555,90.446 152.646,90.679 152.827,90.844C153.009,91.009 153.262,91.091 153.586,91.091ZM155.522,91.078L155.672,91.076C156.138,91.057 156.499,90.901 156.753,90.609C157.007,90.317 157.135,89.916 157.135,89.405L157.135,89.405L157.135,89.18C157.133,88.936 157.089,88.719 157.002,88.53C156.915,88.34 156.792,88.195 156.635,88.094C156.478,87.993 156.298,87.943 156.095,87.943C155.899,87.943 155.721,87.989 155.564,88.083C155.407,88.176 155.284,88.306 155.196,88.474C155.108,88.642 155.064,88.826 155.064,89.026C155.064,89.342 155.146,89.593 155.309,89.779C155.472,89.965 155.689,90.058 155.96,90.058C156.173,90.058 156.358,89.98 156.517,89.824C156.473,90.297 156.187,90.545 155.657,90.569L155.657,90.569L155.522,90.571L155.522,91.078ZM156.11,89.593C155.971,89.593 155.863,89.539 155.786,89.432C155.71,89.324 155.672,89.187 155.672,89.02C155.672,88.852 155.711,88.712 155.79,88.6C155.868,88.489 155.969,88.433 156.091,88.433C156.223,88.433 156.329,88.49 156.407,88.603C156.486,88.717 156.525,88.877 156.525,89.083L156.525,89.083L156.525,89.334C156.489,89.405 156.435,89.466 156.364,89.517C156.293,89.567 156.208,89.593 156.11,89.593ZM157.999,91.078L158.149,91.076C158.615,91.057 158.976,90.901 159.23,90.609C159.485,90.317 159.612,89.916 159.612,89.405L159.612,89.405L159.612,89.18C159.611,88.936 159.566,88.719 159.479,88.53C159.392,88.34 159.27,88.195 159.112,88.094C158.955,87.993 158.775,87.943 158.573,87.943C158.376,87.943 158.199,87.989 158.041,88.083C157.884,88.176 157.761,88.306 157.673,88.474C157.586,88.642 157.542,88.826 157.542,89.026C157.542,89.342 157.623,89.593 157.786,89.779C157.949,89.965 158.166,90.058 158.438,90.058C158.65,90.058 158.835,89.98 158.994,89.824C158.951,90.297 158.664,90.545 158.134,90.569L158.134,90.569L157.999,90.571L157.999,91.078ZM158.587,89.593C158.448,89.593 158.34,89.539 158.264,89.432C158.187,89.324 158.149,89.187 158.149,89.02C158.149,88.852 158.188,88.712 158.267,88.6C158.346,88.489 158.446,88.433 158.568,88.433C158.7,88.433 158.806,88.49 158.885,88.603C158.963,88.717 159.003,88.877 159.003,89.083L159.003,89.083L159.003,89.334C158.966,89.405 158.912,89.466 158.841,89.517C158.77,89.567 158.686,89.593 158.587,89.593ZM161.085,91.091C161.298,91.091 161.482,91.048 161.638,90.962C161.794,90.875 161.914,90.754 161.997,90.598C162.081,90.441 162.123,90.264 162.123,90.066C162.123,89.741 162.04,89.487 161.874,89.306C161.708,89.125 161.479,89.035 161.187,89.035C161.023,89.035 160.87,89.073 160.725,89.151L160.725,89.151L160.801,88.492L162.021,88.492L162.021,87.985L160.301,87.985L160.124,89.542L160.609,89.662L160.668,89.607C160.758,89.532 160.875,89.494 161.02,89.494C161.177,89.494 161.299,89.54 161.385,89.633C161.47,89.725 161.513,89.858 161.513,90.032C161.513,90.213 161.476,90.353 161.402,90.452C161.327,90.551 161.221,90.601 161.083,90.601C160.96,90.601 160.859,90.565 160.783,90.494C160.706,90.424 160.662,90.324 160.649,90.197L160.649,90.197L160.046,90.197C160.052,90.371 160.1,90.526 160.192,90.662C160.285,90.798 160.41,90.903 160.569,90.978C160.728,91.054 160.9,91.091 161.085,91.091ZM163.48,91.091C163.808,91.091 164.071,91.009 164.27,90.845C164.469,90.681 164.568,90.463 164.568,90.19C164.568,90.022 164.526,89.876 164.441,89.753C164.356,89.629 164.227,89.536 164.054,89.475C164.193,89.412 164.305,89.321 164.391,89.203C164.477,89.085 164.52,88.956 164.52,88.816C164.52,88.544 164.428,88.33 164.244,88.175C164.059,88.02 163.805,87.943 163.48,87.943C163.293,87.943 163.122,87.978 162.967,88.05C162.812,88.122 162.691,88.221 162.604,88.348C162.518,88.475 162.475,88.618 162.475,88.778L162.475,88.778L163.084,88.778C163.084,88.676 163.123,88.593 163.202,88.529C163.281,88.465 163.378,88.433 163.495,88.433C163.624,88.433 163.726,88.467 163.8,88.536C163.874,88.605 163.91,88.701 163.91,88.824C163.91,88.952 163.873,89.055 163.799,89.132C163.724,89.209 163.61,89.247 163.455,89.247L163.455,89.247L163.13,89.247L163.13,89.723L163.453,89.723C163.79,89.723 163.959,89.876 163.959,90.182C163.959,90.308 163.918,90.41 163.836,90.486C163.753,90.562 163.64,90.601 163.495,90.601C163.369,90.601 163.262,90.564 163.176,90.491C163.089,90.418 163.046,90.324 163.046,90.209L163.046,90.209L162.437,90.209C162.437,90.474 162.534,90.688 162.729,90.849C162.923,91.01 163.174,91.091 163.48,91.091ZM166.011,91.091C166.35,91.091 166.607,90.979 166.783,90.754C166.959,90.53 167.047,90.206 167.047,89.782L167.047,89.782L167.047,89.218C167.042,88.807 166.952,88.492 166.775,88.272C166.598,88.052 166.342,87.943 166.007,87.943C165.673,87.943 165.417,88.053 165.239,88.275C165.061,88.497 164.972,88.822 164.972,89.25L164.972,89.25L164.972,89.814C164.976,90.225 165.067,90.54 165.244,90.761C165.421,90.981 165.677,91.091 166.011,91.091ZM166.011,90.601C165.861,90.601 165.752,90.54 165.684,90.419C165.615,90.297 165.581,90.112 165.581,89.862L165.581,89.862L165.581,89.117C165.586,88.883 165.622,88.71 165.69,88.6C165.758,88.49 165.864,88.435 166.007,88.435C166.155,88.435 166.263,88.493 166.333,88.609C166.403,88.724 166.437,88.909 166.437,89.163L166.437,89.163L166.437,89.891C166.434,90.131 166.4,90.31 166.334,90.426C166.268,90.542 166.16,90.601 166.011,90.601ZM169.531,91.049L169.531,90.559L168.211,90.559L168.909,89.824C169.1,89.615 169.235,89.432 169.314,89.275C169.393,89.118 169.432,88.963 169.432,88.812C169.432,88.535 169.345,88.321 169.17,88.17C168.995,88.018 168.749,87.943 168.433,87.943C168.226,87.943 168.041,87.986 167.878,88.074C167.715,88.162 167.589,88.283 167.5,88.437C167.411,88.592 167.366,88.762 167.366,88.949L167.366,88.949L167.977,88.949C167.977,88.794 168.017,88.67 168.096,88.575C168.176,88.48 168.284,88.433 168.422,88.433C168.55,88.433 168.648,88.472 168.717,88.55C168.786,88.628 168.821,88.735 168.821,88.871C168.821,88.97 168.788,89.076 168.723,89.186C168.657,89.297 168.556,89.427 168.42,89.576L168.42,89.576L167.427,90.632L167.427,91.049L169.531,91.049Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#232324" - android:fillType="nonZero" - android:pathData="M150.666,90.038l17.647,0l0,-17.616l-17.647,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M155.02,76.392C154.796,76.408 154.623,76.591 154.623,76.81L154.623,83.374C154.623,84.383 155.158,85.319 156.037,85.845C157.457,86.697 159.014,87.502 159.38,87.689C159.431,87.716 159.49,87.716 159.54,87.689C159.908,87.502 161.465,86.697 162.884,85.845C163.762,85.319 164.298,84.383 164.298,83.374L164.298,76.81C164.298,76.591 164.125,76.408 163.901,76.392C162.054,76.257 160.212,75.232 159.64,74.889C159.586,74.856 159.523,74.839 159.46,74.839C159.398,74.839 159.336,74.856 159.28,74.889C158.709,75.232 156.868,76.257 155.02,76.392Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M157.778,79.97L157.483,79.97C157.091,79.97 156.774,80.295 156.774,80.696L156.774,83.179C156.774,83.58 157.091,83.905 157.483,83.905L161.247,83.905C161.639,83.905 161.958,83.58 161.958,83.179L161.958,80.696C161.958,80.295 161.639,79.97 161.247,79.97L160.952,79.97C160.9,78.889 160.209,78.03 159.365,78.03C158.523,78.03 157.831,78.889 157.778,79.97M159.365,78.729C159.827,78.729 160.222,79.285 160.267,79.97L158.463,79.97C158.509,79.285 158.903,78.729 159.365,78.729" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M155.977,84.7l6.776,0l0,-7.466l-6.776,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M158.997,82.164L158.997,82.903C158.997,83 159.081,83.079 159.185,83.079L159.524,83.079C159.627,83.079 159.712,83 159.712,82.903L159.712,82.164C159.925,82.048 160.069,81.832 160.069,81.583C160.069,81.213 159.749,80.913 159.354,80.913C158.96,80.913 158.64,81.213 158.64,81.583C158.64,81.832 158.784,82.048 158.997,82.164Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M149.142,57.611L149.142,56.948L149.49,56.948L149.49,56.458L149.142,56.458L149.142,54.547L148.527,54.547L147.247,56.565L147.274,56.948L148.533,56.948L148.533,57.611L149.142,57.611ZM148.533,56.458L147.854,56.458L148.493,55.445L148.533,55.376L148.533,56.458ZM150.894,57.653C151.093,57.653 151.272,57.608 151.43,57.518C151.588,57.429 151.711,57.303 151.797,57.142C151.883,56.98 151.927,56.8 151.927,56.601C151.927,56.289 151.848,56.038 151.691,55.847C151.533,55.657 151.321,55.561 151.054,55.561C150.805,55.561 150.599,55.644 150.436,55.81C150.47,55.563 150.571,55.37 150.739,55.231C150.907,55.092 151.128,55.02 151.404,55.016L151.404,55.016L151.463,55.016L151.463,54.515L151.362,54.515C151.051,54.517 150.778,54.587 150.543,54.727C150.307,54.866 150.127,55.063 150.001,55.318C149.875,55.573 149.812,55.866 149.812,56.199L149.812,56.199L149.812,56.418C149.812,56.792 149.911,57.092 150.11,57.316C150.309,57.541 150.57,57.653 150.894,57.653ZM150.881,57.163C150.736,57.163 150.624,57.106 150.544,56.991C150.464,56.877 150.423,56.718 150.423,56.515L150.423,56.515L150.423,56.329C150.461,56.245 150.52,56.177 150.601,56.126C150.681,56.075 150.77,56.049 150.868,56.049C151.006,56.049 151.116,56.101 151.197,56.203C151.279,56.306 151.319,56.44 151.319,56.607C151.319,56.771 151.279,56.905 151.198,57.008C151.117,57.111 151.012,57.163 150.881,57.163ZM153.339,57.653C153.551,57.653 153.736,57.61 153.892,57.524C154.048,57.437 154.167,57.316 154.251,57.16C154.335,57.003 154.377,56.826 154.377,56.628C154.377,56.303 154.294,56.049 154.128,55.868C153.962,55.687 153.733,55.597 153.44,55.597C153.277,55.597 153.123,55.636 152.979,55.713L152.979,55.713L153.055,55.054L154.275,55.054L154.275,54.547L152.555,54.547L152.378,56.104L152.863,56.224L152.922,56.169C153.012,56.094 153.129,56.056 153.274,56.056C153.431,56.056 153.553,56.102 153.639,56.195C153.724,56.287 153.767,56.421 153.767,56.595C153.767,56.776 153.73,56.915 153.655,57.014C153.581,57.113 153.475,57.163 153.337,57.163C153.213,57.163 153.113,57.127 153.037,57.056C152.96,56.986 152.915,56.886 152.903,56.759L152.903,56.759L152.3,56.759C152.305,56.933 152.354,57.088 152.446,57.224C152.538,57.36 152.664,57.465 152.823,57.541C152.982,57.616 153.154,57.653 153.339,57.653ZM155.795,57.653C156.114,57.653 156.367,57.574 156.552,57.416C156.738,57.259 156.831,57.044 156.831,56.771C156.831,56.602 156.787,56.454 156.7,56.328C156.613,56.203 156.495,56.104 156.346,56.033C156.476,55.964 156.579,55.872 156.653,55.757C156.728,55.642 156.765,55.51 156.765,55.361C156.765,55.097 156.678,54.889 156.503,54.735C156.328,54.581 156.091,54.505 155.793,54.505C155.494,54.505 155.257,54.582 155.083,54.737C154.909,54.892 154.821,55.1 154.821,55.361C154.821,55.51 154.858,55.642 154.932,55.757C155.006,55.872 155.108,55.964 155.239,56.033C155.091,56.103 154.974,56.201 154.887,56.327C154.8,56.454 154.756,56.602 154.756,56.771C154.756,57.042 154.849,57.257 155.036,57.415C155.223,57.574 155.476,57.653 155.795,57.653ZM155.795,55.797C155.68,55.797 155.591,55.76 155.528,55.685C155.464,55.611 155.433,55.513 155.433,55.391C155.433,55.267 155.464,55.17 155.528,55.1C155.591,55.03 155.679,54.995 155.793,54.995C155.909,54.995 155.998,55.031 156.061,55.103C156.124,55.176 156.156,55.271 156.156,55.391C156.156,55.513 156.125,55.611 156.062,55.685C156,55.76 155.911,55.797 155.795,55.797ZM155.795,57.163C155.66,57.163 155.555,57.123 155.479,57.043C155.403,56.963 155.365,56.858 155.365,56.727C155.365,56.592 155.404,56.485 155.481,56.406C155.559,56.327 155.662,56.287 155.791,56.287C155.922,56.287 156.026,56.327 156.103,56.407C156.181,56.487 156.219,56.594 156.219,56.727C156.219,56.863 156.182,56.97 156.106,57.047C156.031,57.124 155.928,57.163 155.795,57.163ZM158.666,57.611L159.735,54.547L159.031,54.547L158.335,56.851L157.644,54.547L156.942,54.547L158.006,57.611L158.666,57.611ZM160.656,57.611L160.656,56.489L161.16,56.489L161.736,57.611L162.415,57.611L162.415,57.582L161.751,56.329C161.935,56.247 162.072,56.135 162.163,55.996C162.253,55.856 162.299,55.682 162.299,55.473C162.299,55.178 162.2,54.95 162.004,54.789C161.807,54.627 161.527,54.547 161.164,54.547L161.164,54.547L160.024,54.547L160.024,57.611L160.656,57.611ZM161.167,55.978L160.656,55.978L160.656,55.058L161.164,55.058C161.335,55.058 161.461,55.1 161.543,55.182C161.625,55.265 161.666,55.379 161.666,55.523C161.666,55.665 161.623,55.776 161.536,55.857C161.448,55.938 161.325,55.978 161.167,55.978L161.167,55.978ZM163.614,57.611L164.801,54.888L164.801,54.547L162.634,54.547L162.634,55.039L164.16,55.039L162.971,57.611L163.614,57.611ZM167.295,57.611L167.295,57.121L165.976,57.121L166.673,56.386C166.865,56.177 167,55.994 167.078,55.837C167.157,55.68 167.196,55.525 167.196,55.374C167.196,55.097 167.109,54.883 166.934,54.732C166.759,54.58 166.513,54.505 166.197,54.505C165.99,54.505 165.806,54.549 165.642,54.636C165.479,54.724 165.353,54.845 165.264,54.999C165.175,55.154 165.13,55.324 165.13,55.511L165.13,55.511L165.742,55.511C165.742,55.356 165.781,55.232 165.861,55.137C165.94,55.042 166.049,54.995 166.186,54.995C166.314,54.995 166.413,55.034 166.482,55.112C166.55,55.19 166.585,55.297 166.585,55.433C166.585,55.532 166.552,55.638 166.487,55.748C166.421,55.859 166.321,55.989 166.184,56.138L166.184,56.138L165.191,57.194L165.191,57.611L167.295,57.611ZM168.847,57.653C169.187,57.653 169.458,57.578 169.659,57.427C169.86,57.276 169.96,57.068 169.96,56.803C169.96,56.564 169.878,56.365 169.714,56.205C169.549,56.045 169.287,55.911 168.927,55.803C168.732,55.744 168.584,55.681 168.483,55.614C168.383,55.546 168.333,55.463 168.333,55.363C168.333,55.257 168.376,55.171 168.461,55.106C168.547,55.04 168.667,55.008 168.822,55.008C168.982,55.008 169.106,55.047 169.195,55.124C169.284,55.202 169.328,55.311 169.328,55.452L169.328,55.452L169.96,55.452C169.96,55.268 169.913,55.104 169.818,54.959C169.723,54.815 169.59,54.703 169.418,54.624C169.247,54.544 169.052,54.505 168.832,54.505C168.614,54.505 168.418,54.541 168.243,54.614C168.068,54.687 167.934,54.788 167.84,54.918C167.747,55.048 167.7,55.196 167.7,55.361C167.7,55.68 167.874,55.933 168.223,56.121C168.351,56.19 168.525,56.26 168.744,56.33C168.963,56.401 169.115,56.469 169.199,56.532C169.284,56.596 169.326,56.688 169.326,56.807C169.326,56.917 169.284,57.002 169.199,57.063C169.115,57.124 168.997,57.154 168.847,57.154C168.442,57.154 168.24,56.985 168.24,56.647L168.24,56.647L167.605,56.647C167.605,56.845 167.656,57.019 167.758,57.169C167.86,57.319 168.008,57.437 168.202,57.524C168.396,57.61 168.611,57.653 168.847,57.653Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M147.497,107.768L147.497,106.455L148.73,106.455L148.73,107.768L149.363,107.768L149.363,104.704L148.73,104.704L148.73,105.945L147.497,105.945L147.497,104.704L146.864,104.704L146.864,107.768L147.497,107.768ZM150.366,107.768L150.577,107.137L151.686,107.137L151.899,107.768L152.571,107.768L151.422,104.704L150.836,104.704L149.694,107.768L150.366,107.768ZM151.515,106.625L150.748,106.625L151.129,105.478L151.515,106.625ZM153.743,107.81C154.071,107.81 154.334,107.728 154.533,107.564C154.732,107.4 154.831,107.182 154.831,106.909C154.831,106.741 154.789,106.595 154.704,106.472C154.619,106.348 154.49,106.256 154.317,106.194C154.456,106.131 154.568,106.04 154.654,105.922C154.74,105.804 154.783,105.675 154.783,105.535C154.783,105.263 154.691,105.049 154.506,104.894C154.322,104.739 154.068,104.662 153.743,104.662C153.556,104.662 153.385,104.697 153.23,104.769C153.075,104.841 152.954,104.94 152.867,105.067C152.781,105.194 152.738,105.337 152.738,105.497L152.738,105.497L153.347,105.497C153.347,105.395 153.386,105.312 153.465,105.248C153.544,105.184 153.641,105.152 153.758,105.152C153.887,105.152 153.989,105.186 154.063,105.255C154.136,105.324 154.173,105.42 154.173,105.543C154.173,105.671 154.136,105.774 154.062,105.851C153.987,105.928 153.873,105.966 153.718,105.966L153.718,105.966L153.393,105.966L153.393,106.442L153.716,106.442C154.053,106.442 154.222,106.595 154.222,106.901C154.222,107.027 154.181,107.129 154.098,107.205C154.016,107.282 153.903,107.32 153.758,107.32C153.631,107.32 153.525,107.283 153.439,107.21C153.352,107.137 153.309,107.043 153.309,106.928L153.309,106.928L152.7,106.928C152.7,107.193 152.797,107.407 152.992,107.568C153.186,107.729 153.437,107.81 153.743,107.81ZM157.053,107.768L157.053,107.105L157.401,107.105L157.401,106.615L157.053,106.615L157.053,104.704L156.438,104.704L155.158,106.722L155.185,107.105L156.444,107.105L156.444,107.768L157.053,107.768ZM156.444,106.615L155.765,106.615L156.404,105.602L156.444,105.533L156.444,106.615ZM159.026,107.81C159.279,107.81 159.509,107.773 159.717,107.698C159.925,107.622 160.086,107.517 160.2,107.381L160.2,107.381L160.2,106.158L158.992,106.158L158.992,106.623L159.568,106.623L159.568,107.151C159.466,107.252 159.297,107.303 159.059,107.303C158.823,107.303 158.644,107.221 158.522,107.057C158.4,106.893 158.338,106.65 158.338,106.328L158.338,106.328L158.338,106.133C158.34,105.814 158.397,105.574 158.509,105.413C158.622,105.252 158.785,105.171 159,105.171C159.169,105.171 159.302,105.212 159.398,105.293C159.494,105.374 159.556,105.503 159.584,105.678L159.584,105.678L160.2,105.678C160.162,105.347 160.04,105.095 159.835,104.922C159.63,104.748 159.345,104.662 158.981,104.662C158.72,104.662 158.492,104.721 158.297,104.839C158.103,104.958 157.954,105.129 157.85,105.353C157.747,105.577 157.695,105.842 157.695,106.147L157.695,106.147L157.695,106.356C157.698,106.653 157.754,106.912 157.863,107.132C157.972,107.353 158.127,107.521 158.327,107.636C158.527,107.752 158.76,107.81 159.026,107.81ZM161.859,107.81C162.223,107.81 162.51,107.713 162.721,107.518C162.931,107.323 163.036,107.057 163.036,106.722L163.036,106.722L163.036,104.704L162.401,104.704L162.401,106.743C162.395,107.116 162.215,107.303 161.859,107.303C161.689,107.303 161.556,107.257 161.46,107.165C161.363,107.073 161.315,106.927 161.315,106.726L161.315,106.726L161.315,104.704L160.683,104.704L160.683,106.745C160.687,107.076 160.795,107.337 161.005,107.526C161.216,107.715 161.501,107.81 161.859,107.81ZM164.062,107.768L164.653,106.695L165.243,107.768L165.979,107.768L165.062,106.223L165.956,104.704L165.228,104.704L164.653,105.76L164.077,104.704L163.35,104.704L164.244,106.223L163.327,107.768L164.062,107.768ZM167.244,107.81C167.456,107.81 167.64,107.767 167.796,107.681C167.952,107.594 168.072,107.473 168.156,107.317C168.239,107.16 168.281,106.983 168.281,106.785C168.281,106.46 168.198,106.206 168.032,106.025C167.866,105.844 167.637,105.754 167.345,105.754C167.182,105.754 167.028,105.793 166.883,105.87L166.883,105.87L166.959,105.211L168.18,105.211L168.18,104.704L166.459,104.704L166.282,106.261L166.767,106.381L166.826,106.326C166.916,106.251 167.034,106.213 167.178,106.213C167.336,106.213 167.457,106.259 167.543,106.352C167.629,106.444 167.672,106.578 167.672,106.751C167.672,106.932 167.635,107.072 167.56,107.171C167.486,107.27 167.379,107.32 167.242,107.32C167.118,107.32 167.018,107.284 166.941,107.213C166.865,107.143 166.82,107.043 166.807,106.916L166.807,106.916L166.204,106.916C166.21,107.09 166.259,107.245 166.351,107.381C166.443,107.517 166.568,107.622 166.727,107.698C166.886,107.773 167.058,107.81 167.244,107.81ZM170.149,107.768L170.149,104.7L170.084,104.7L168.812,105.154L168.812,105.649L169.54,105.424L169.54,107.768L170.149,107.768Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M144.154,62.348C144.154,62.348 143.738,62.35 143.719,62.35C143.445,62.348 143.756,62.354 143.481,62.348C143.255,62.343 142.543,62.083 142.517,61.323C142.516,60.479 142.517,54.485 142.517,51.619C142.511,50.613 143.326,50.376 143.613,50.376C143.864,50.375 143.454,50.377 143.704,50.374C143.759,50.374 144.152,50.375 144.152,50.375L144.154,62.348Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C4314A" - android:fillType="nonZero" - android:pathData="M144.166,78.989C144.166,78.989 143.75,78.991 143.732,78.991C143.457,78.989 143.768,78.995 143.493,78.989C143.267,78.984 142.555,78.724 142.529,77.964C142.529,77.12 142.529,71.126 142.529,68.26C142.523,67.254 143.339,67.017 143.626,67.016C143.876,67.016 143.466,67.018 143.716,67.015C143.771,67.015 144.164,67.016 144.164,67.016L144.166,78.989Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M191.691,80.274C191.691,81.617 190.6,82.705 189.255,82.705C187.909,82.705 186.818,81.617 186.818,80.274C186.818,78.93 187.909,77.842 189.255,77.842C190.6,77.842 191.691,78.93 191.691,80.274" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M208.734,80.241C208.734,81.607 207.625,82.714 206.256,82.714C204.888,82.714 203.779,81.607 203.779,80.241C203.779,78.875 204.888,77.767 206.256,77.767C207.625,77.767 208.734,78.875 208.734,80.241" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#94A1AB" - android:fillType="nonZero" - android:pathData="M328.434,126.153L245.498,126.153C241.988,126.153 239.141,122.711 239.141,118.465L239.141,32.105C239.141,27.859 241.988,24.417 245.498,24.417L328.434,24.417C331.946,24.417 334.792,27.859 334.792,32.105L334.792,118.465C334.792,122.711 331.946,126.153 328.434,126.153" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M322.081,96.47C322.081,98.055 323.367,99.339 324.953,99.339C326.54,99.339 327.827,98.055 327.827,96.47C327.827,94.886 326.54,93.603 324.953,93.603C323.367,93.603 322.081,94.886 322.081,96.47" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M310.59,96.47C310.59,98.055 311.876,99.339 313.462,99.339C315.049,99.339 316.336,98.055 316.336,96.47C316.336,94.886 315.049,93.603 313.462,93.603C311.876,93.603 310.59,94.886 310.59,96.47" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M299.098,96.47C299.098,98.055 300.385,99.339 301.971,99.339C303.558,99.339 304.844,98.055 304.844,96.47C304.844,94.886 303.558,93.603 301.971,93.603C300.385,93.603 299.098,94.886 299.098,96.47" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M322.134,68.9C321.751,70.92 323.492,72.659 325.516,72.275C326.641,72.063 327.56,71.145 327.773,70.022C328.157,68.003 326.416,66.264 324.391,66.647C323.267,66.86 322.347,67.778 322.134,68.9" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M310.643,68.9C310.26,70.92 312.001,72.659 314.024,72.275C315.15,72.063 316.068,71.145 316.281,70.022C316.666,68.003 314.924,66.264 312.9,66.647C311.776,66.86 310.856,67.778 310.643,68.9" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M299.152,68.9C298.768,70.92 300.51,72.659 302.533,72.275C303.658,72.063 304.577,71.145 304.79,70.022C305.175,68.003 303.432,66.264 301.409,66.647C300.285,66.86 299.365,67.778 299.152,68.9" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M249.177,48.187L290.127,48.187C291.114,48.187 291.916,47.388 291.916,46.401L291.916,38.504C291.916,37.517 291.114,36.716 290.127,36.716L249.177,36.716C248.189,36.716 247.388,37.517 247.388,38.504L247.388,46.401C247.388,47.388 248.189,48.187 249.177,48.187" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M322.134,41.891C321.751,43.911 323.492,45.65 325.516,45.266C326.641,45.054 327.56,44.135 327.773,43.013C328.157,40.993 326.416,39.255 324.391,39.638C323.267,39.85 322.347,40.769 322.134,41.891" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M310.643,41.891C310.26,43.911 312.001,45.65 314.024,45.266C315.15,45.054 316.068,44.135 316.281,43.013C316.666,40.993 314.924,39.255 312.9,39.638C311.776,39.85 310.856,40.769 310.643,41.891" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M299.152,41.891C298.768,43.911 300.51,45.65 302.533,45.266C303.658,45.054 304.577,44.135 304.79,43.013C305.175,40.993 303.432,39.255 301.409,39.638C300.285,39.85 299.365,40.769 299.152,41.891" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M249.546,75.248L290.495,75.248C291.484,75.248 292.285,74.448 292.285,73.462L292.285,65.565C292.285,64.577 291.484,63.777 290.495,63.777L249.546,63.777C248.558,63.777 247.757,64.577 247.757,65.565L247.757,73.462C247.757,74.448 248.558,75.248 249.546,75.248" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M249.546,101.438L290.495,101.438C291.484,101.438 292.285,100.638 292.285,99.652L292.285,91.754C292.285,90.767 291.484,89.967 290.495,89.967L249.546,89.967C248.558,89.967 247.757,90.767 247.757,91.754L247.757,99.652C247.757,100.638 248.558,101.438 249.546,101.438" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M205.418,136.718C207.565,112.891 238.822,115.195 241.19,116.14C247.797,101.093 270.152,99.345 277.958,104.912C281.862,97.676 287.226,94.093 292.285,91.754C308.851,84.093 338.184,80.81 355.206,114.225C381.825,113.68 384.028,135.643 384.487,136.718L296.833,136.718L205.418,136.718Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#3F3F43" - android:fillType="nonZero" - android:pathData="M226.522,80.211C226.522,81.577 225.413,82.684 224.045,82.684C222.676,82.684 221.567,81.577 221.567,80.211C221.567,78.845 222.676,77.738 224.045,77.738C225.413,77.738 226.522,78.845 226.522,80.211" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E1EEFF" - android:fillType="nonZero" - android:pathData="M47.6,22.398L48.258,30.446C48.022,27.519 47.712,23.679 47.6,22.398" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M45.921,40.061l-0.826,10.484l9.676,0.783l1.683,-11.146z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M58.435,31.414C58.628,48.504 42.185,47.975 41.576,31.573C41.637,14.823 58.057,14.668 58.435,31.414" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#8C8C98" - android:fillType="nonZero" - android:pathData="M35.449,97.954C28.206,125.031 34.12,164.196 35.725,195.583L40.664,195.822C40.664,195.822 44.314,144.881 45.7,133.308C46.121,129.792 47.435,122.281 48.094,119.017C48.145,118.768 48.69,117.696 48.733,118.96C49.007,126.962 52.47,135.814 53.131,144.622C54.674,165.205 54.033,179.505 54.574,196.482C54.574,196.482 60.249,199.957 60.26,199.92C61.533,195.205 65.364,156.261 65.456,150.417C65.476,149.217 67.436,124.268 61.473,98.768L35.449,97.954Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M63.446,51.397C59.53,48.242 59.376,49.258 55.202,48.363C52.067,52.512 46.7,50.1 45.155,48.429C44.971,48.23 44.468,48.466 44.386,48.417C27.35,49.633 36.125,86.23 34.936,97.137C34.878,97.67 34.958,98.682 35.442,98.633C35.442,98.633 51.122,100.844 57.515,99.569C58.431,99.385 61.552,99.058 61.617,98.391C62.666,87.546 68.282,57.016 63.446,51.397" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M37.858,50.618C37.869,50.625 37.882,50.628 37.894,50.632C38.251,50.779 39.388,52.222 41.693,51.352C43.579,50.64 44.668,48.996 45.227,48.465C46.405,47.346 46.968,45.12 46.543,43.125C46.314,42.047 45.891,41.603 45.659,41.331C41.091,35.967 42.574,30.418 43.128,28.442C43.173,28.28 43.327,26.867 43.414,27.01C44.268,28.397 48.566,29.029 57.759,32.451C57.846,32.484 57.623,35.458 57.606,35.549C57.492,36.173 56.994,38.509 55.638,40.244C55.522,40.391 54.334,41.491 54.312,43.19C54.29,44.856 54.31,46.545 55.479,49.084C56.906,52.187 60.452,52.895 63.122,51.791C65.045,50.996 65.835,49.099 65.95,47.196C65.957,47.085 65.868,46.993 65.756,46.992C64.779,46.989 60.647,46.662 61.717,41.272C62.623,36.686 63.648,26.682 59.057,20.959C58.992,20.88 58.927,20.801 58.862,20.721C58.817,20.662 58.764,20.603 58.711,20.547C58.618,20.441 58.521,20.334 58.423,20.231C58.33,20.136 58.237,20.041 58.143,19.947C56.709,18.53 54.834,17.474 52.392,16.974C52.387,16.973 52.38,16.972 52.373,16.971C52.036,16.931 43.114,15.918 41.545,21.197C41.531,21.242 41.501,21.281 41.461,21.306C41.065,21.547 38.947,23.035 38.705,27.394C38.443,32.203 39.27,33.952 39.474,37.637C39.716,42.05 39.698,46.036 34.142,46.181C34.011,46.185 33.919,46.31 33.96,46.435C34.193,47.129 35.075,49.128 37.858,50.618" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <group> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M40.85,191.076L35.669,192.248C35.383,194.252 31.626,203.053 36.154,205.116C37.934,206.145 39.311,207.087 41.248,205.198C45.407,202.78 40.929,192.756 40.85,191.076" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M54.606,193.36C54.744,194.424 53.591,201.992 54.69,202.696C55.049,203.115 55.471,203.287 55.667,203.354C61.389,203.456 67.912,203.571 73.634,203.674C76.867,200.236 60.897,198.995 61.256,193.305C59.039,193.323 56.823,193.341 54.606,193.36" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#EFEFEF" - android:fillType="nonZero" - android:pathData="M50.409,51.407C49.411,50.988 48.903,50.777 48.445,50.661C47.513,50.426 47.047,50.308 46.611,50.475C46.131,50.657 45.737,51.035 45.039,51.034C44.833,51.034 44.663,51.001 44.515,50.847C44.354,50.682 44.329,50.487 44.122,49.729C43.878,48.829 42.133,45.71 41.896,45.066C41.47,43.908 40.851,43.854 40.848,43.2C40.848,42.947 40.94,42.791 41.765,41.708C42.451,40.809 42.855,40.305 43.075,40.03C44.016,38.855 44.127,38.722 44.384,38.538C44.66,38.341 45.036,38.071 45.563,37.978C46.016,37.898 46.219,38.013 46.611,37.792C46.671,37.758 46.658,37.76 47.266,37.232C47.774,36.791 47.945,36.649 48.182,36.672C48.29,36.684 52.957,37.852 54.064,37.852C54.447,37.852 56.527,38.615 56.957,38.724C57.089,38.758 57.903,38.961 58.791,39.284C59.033,39.372 58.619,40.642 58.333,40.993C58.2,41.156 56.746,43.373 56.564,43.947C56.199,45.098 56.172,46.152 56.171,46.558C56.171,47.251 56.25,47.745 56.302,49.355C56.312,49.649 56.321,50.055 56.171,50.475C56.098,50.678 56.053,50.701 55.779,51.221C55.473,51.796 55.485,51.85 55.386,51.967C55.102,52.301 54.715,52.209 54.338,52.153C53.142,51.978 53.227,52.347 52.242,52.153C51.873,52.081 51.918,52.04 50.409,51.407" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M31.993,75.116C32.1,74.476 32.298,73.861 32.58,73.289L34.936,68.506C34.946,68.486 34.957,68.467 34.968,68.447C39.443,60.387 39.839,59.713 40.246,59.003C40.292,58.924 42.222,55.513 42.251,55.425C42.399,54.981 42.883,53.498 43.23,52.043C43.239,52.008 43.245,51.972 43.251,51.936C43.397,51.051 43.542,50.167 43.688,49.282C43.698,49.222 43.704,49.163 43.706,49.103L45.212,43.374C45.228,42.982 46.199,42.628 46.319,42.269C46.319,42.269 47.033,42.24 47.099,42.673C47.587,45.87 48.526,45.241 48.306,46.915C48.109,48.419 47.797,51.127 46.948,54.491C46.665,55.607 46.218,57.33 45.612,59.447C44.589,63.022 43.725,65.965 42.336,69.31C41.436,71.48 40.076,74.378 38.059,77.627C38.026,77.679 37.99,77.73 37.952,77.776C36.155,79.965 34.963,80.357 34.179,80.24C34.113,80.229 34.049,80.21 33.987,80.185L32.483,79.596C32.105,79.449 31.937,78.726 31.875,78.278C31.74,77.313 31.824,76.135 31.993,75.116" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M45.791,52.827L47.277,52.561C48.862,49.377 49.852,44.376 48.461,41.533C46.929,39.578 44.38,42.777 43.997,44.737C43.256,47.834 43.769,50.871 44.139,53.141" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M66.512,75.774C66.395,75.165 66.187,74.581 65.895,74.042L63.45,69.526C63.44,69.507 63.43,69.488 63.418,69.469C58.792,61.871 58.383,61.238 57.962,60.568C57.915,60.494 55.921,57.279 55.891,57.196C55.734,56.775 55.225,55.368 54.854,53.984C54.846,53.951 54.837,53.917 54.83,53.883C54.672,53.04 54.512,52.197 54.353,51.355C54.341,51.298 54.335,51.242 54.332,51.184C54.517,49.475 54.517,47.377 53.984,45.077C53.875,44.606 53.75,44.156 53.615,43.728C53.572,43.454 53.479,43.07 53.262,42.659C53.16,42.465 52.337,40.956 51.217,41.077C50.515,41.153 50.06,41.825 49.959,41.993C49.768,42.315 49.635,42.7 49.575,43.116C49.131,46.186 49.419,47.611 49.664,49.206C49.885,50.64 50.238,53.223 51.143,56.419C51.444,57.481 51.919,59.117 52.56,61.128C53.643,64.52 54.556,67.315 56.005,70.48C56.944,72.532 58.356,75.271 60.437,78.329C60.469,78.377 60.506,78.425 60.545,78.468C62.388,80.517 63.595,80.863 64.383,80.731C64.45,80.719 64.513,80.698 64.577,80.673L66.084,80.072C66.462,79.922 66.74,79.567 66.797,79.137C66.918,78.21 66.698,76.746 66.512,75.774" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M33.437,80.053C33.16,78.753 32.98,77.401 33.042,76.092C33.085,75.195 33.216,73.757 33.729,72.019C34.232,69.996 34.704,68.363 34.744,68.258C34.745,68.255 32.701,69.516 31.891,71.072C29.904,74.89 31.516,79.094 31.826,79.059C31.848,79.056 31.872,79.055 31.896,79.055C32.1,79.06 32.171,79.071 32.231,79.129C32.351,79.244 32.29,79.409 32.378,79.611C32.425,79.717 32.521,79.856 32.75,79.975C32.79,79.996 33.458,80.153 33.437,80.053" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M65.943,80.238C66.02,78.91 66.079,76.885 65.818,75.6C65.638,74.72 65.29,73.319 64.519,71.68C63.713,69.756 62.997,68.214 62.94,68.117C62.939,68.115 65.152,69.049 66.189,70.464C68.736,73.936 67.784,78.336 67.473,78.348C67.449,78.349 67.426,78.351 67.403,78.355C67.202,78.39 67.134,78.412 67.083,78.479C66.982,78.61 67.067,78.764 67.01,78.977C66.981,79.089 66.907,79.242 66.698,79.394C66.663,79.42 65.938,80.339 65.943,80.238" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <group> - <path - android:fillColor="#1E1E1F" - android:fillType="nonZero" - android:pathData="M142.188,91.54L106.803,91.54C102.158,91.54 98.39,95.279 98.39,99.886L98.39,184.948C98.39,189.556 102.158,193.295 106.803,193.295L142.188,193.295C146.835,193.295 150.601,189.556 150.601,184.948L150.601,99.886C150.601,95.279 146.835,91.54 142.188,91.54" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M142.615,91.964C145.862,91.964 148.504,94.586 148.504,97.812L148.504,187.023C148.504,190.249 145.862,192.871 142.615,192.871L105.547,192.871C102.299,192.871 99.658,190.249 99.658,187.023L99.658,97.812C99.658,94.586 102.299,91.964 105.547,91.964L142.615,91.964ZM142.615,89.059L105.547,89.059C100.68,89.059 96.732,92.976 96.732,97.812L96.732,187.023C96.732,191.856 100.68,195.777 105.547,195.777L142.615,195.777C147.484,195.777 151.43,191.856 151.43,187.023L151.43,97.812C151.43,92.976 147.484,89.059 142.615,89.059L142.615,89.059Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M143.849,155.522L104.481,155.723C103.903,155.726 103.432,155.26 103.43,154.684L103.271,123.662C103.268,123.086 103.734,122.616 104.311,122.613L143.68,122.411C144.257,122.409 144.729,122.874 144.731,123.45L144.89,154.472C144.893,155.049 144.428,155.52 143.849,155.522" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M129.996,142.272C128.105,145.865 123.653,147.245 120.056,145.358C116.457,143.469 115.074,139.026 116.965,135.434C118.857,131.843 123.307,130.461 126.906,132.35C130.503,134.237 131.888,138.68 129.996,142.272" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M131.141,145.455C130.972,145.713 130.397,146.621 129.985,145.512C129.447,144.063 128.309,144.379 128.309,144.379L127.253,144.528L129.47,142.03C129.47,142.03 129.417,143.033 129.744,143.533C129.909,143.786 130.254,144.155 130.687,144.165C131.121,144.175 131.959,144.207 131.141,145.455" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M119.054,148.504C118.763,148.397 117.749,148.038 118.742,147.392C120.038,146.547 119.654,145.159 119.654,145.159L119.275,144.166L122.206,145.771C122.206,145.771 121.214,145.94 120.798,146.37C120.587,146.585 120.128,147.353 120.214,147.777C120.299,148.202 120.455,149.025 119.054,148.504" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M126.527,144.787C126.527,144.787 125.937,145.094 126.121,146.418C126.231,147.208 126.767,148.42 126.843,148.672C126.893,148.834 126.992,148.881 127.129,148.98C127.47,149.221 127.986,149.741 126.762,150.083C125.735,150.371 125.269,150.275 125.476,149.665C125.582,149.353 125.633,149.122 125.596,148.794C125.519,148.077 125.009,146.336 124.333,145.865C123.315,145.157 123.658,145.374 123.658,145.374L125.842,143.727L126.527,144.787Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M121.333,129.324C121.733,129.267 122.181,129.131 121.99,129.826C121.923,130.068 121.912,130.301 121.932,130.516C121.984,131.077 122.173,131.383 122.611,131.739L122.947,132.013L120.703,132.212C120.703,132.212 121.102,131.866 120.993,131.291C120.948,131.052 120.911,130.52 120.64,130.323C120.392,130.14 119.875,129.531 121.333,129.324" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M117.809,136.253C117.632,136.129 117.544,135.913 117.587,135.701C117.661,135.332 117.821,134.768 117.089,134.115C116.251,133.368 115.048,132.798 114.948,132.788C114.184,132.704 113.694,132.671 114.533,131.49C115.327,130.372 115.788,130.418 115.865,131.284C115.883,131.471 115.951,131.65 116.062,131.802C116.459,132.343 117.967,133.814 118.989,133.832C119.302,133.837 118.95,135.445 118.95,135.445C118.892,135.852 117.809,136.253 117.809,136.253" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M112.79,138.164C112.89,137.248 113.276,136.808 114.094,137.376C115.51,138.358 117.121,136.92 117.121,136.92L117.431,136.074L117.101,140.049C117.101,140.049 116.468,139.205 115.827,138.9C115.516,138.752 114.558,138.62 114.094,138.809C113.591,139.015 112.665,139.306 112.79,138.164" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M119.005,143.421C119.005,143.421 118.103,142.527 116.873,143.46C115.64,144.394 115.399,144.655 115.399,144.655C115.399,144.655 114.393,146.691 113.337,145.076C112.283,143.462 113.15,143.078 114.305,143.347C114.305,143.347 116.695,142.676 117.094,141.384C117.492,140.091 117.278,140.422 117.278,140.422L120.062,142.593L119.005,143.421Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M124.401,132.036C124.401,132.036 125.583,132.355 126.167,130.932C126.447,130.25 126.667,129.468 126.762,129.199C126.834,128.995 126.864,128.779 126.846,128.564C126.815,128.174 126.918,127.53 128.132,128.163C129.539,128.898 129.095,129.25 128.627,129.435C128.438,129.511 128.271,129.633 128.136,129.785C127.667,130.309 126.669,131.857 126.885,132.853C127.17,134.17 127.19,133.778 127.19,133.778L124.202,133.459L124.401,132.036Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M132.458,133.656C132.632,133.912 133.248,134.793 132.064,134.743C130.518,134.678 130.024,136.032 130.024,136.032L129.752,137.061L128.301,134.055C128.301,134.055 129.206,134.491 129.796,134.383C130.092,134.329 130.913,133.972 131.09,133.576C131.267,133.181 131.62,132.421 132.458,133.656" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FF919A" - android:fillType="nonZero" - android:pathData="M130.316,138.062C130.316,138.062 130.469,139.165 131.887,139.141C132.685,139.129 133.162,139.142 133.424,139.158C133.594,139.166 134.224,139.163 134.363,139.067C134.708,138.83 135.373,138.525 135.276,139.79C135.193,140.851 134.943,141.254 134.44,140.851C134.183,140.645 133.432,140.447 133.112,140.369C132.41,140.195 131.252,140.016 130.577,140.489C129.56,141.2 129.882,140.953 129.882,140.953L129.083,138.34L130.316,138.062Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> + <path + android:pathData="M173.7,100.7l-30.81,-0.1a1.17,1.17 0,0 0,-1.19 1.15h0v9.64a1.2,1.2 0,0 0,1.17 1.2h0l30.81,0.09a1.2,1.2 0,0 0,1.2 -1.18v-9.63a1.18,1.18 0,0 0,-1.17 -1.19h0" + android:fillColor="#b1bbc2" + android:fillType="evenOdd"/> + <path + android:pathData="M173.76,84 L143,83.85A1.18,1.18 0,0 0,141.76 85v0h0v9.64a1.17,1.17 0,0 0,1.15 1.19h0l30.8,0.1a1.18,1.18 0,0 0,1.2 -1.16h0V85.14A1.16,1.16 0,0 0,173.78 84h0" + android:fillColor="#94a1ab" + android:fillType="evenOdd"/> + <path + android:pathData="M173.81,67.27 L143,67.18a1.17,1.17 0,0 0,-1.19 1.15h0v9.71a1.2,1.2 0,0 0,1.18 1.2l30.82,0.11A1.19,1.19 0,0 0,175 78.17h0V68.53a1.2,1.2 0,0 0,-1.18 -1.19" + android:fillColor="#748692" + android:fillType="evenOdd"/> + <path + android:pathData="M173.85,50.61l-30.8,-0.11a1.2,1.2 0,0 0,-1.2 1.17v9.66A1.17,1.17 0,0 0,143 62.51h0l30.81,0.11A1.18,1.18 0,0 0,175 61.45h0V51.8a1.17,1.17 0,0 0,-1.15 -1.19h0" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M148.56,57.74v-0.66h0.35v-0.5h-0.35L148.56,54.67L148,54.67l-1.35,2v0.39h1.25v0.66ZM148,56.58h-0.73l0.63,-1h0ZM150.36,57.78a0.93,0.93 0,0 0,0.54 -0.14,0.76 0.76,0 0,0 0.36,-0.37 0.93,0.93 0,0 0,0.14 -0.54,1.2 1.2,0 0,0 -0.24,-0.75 0.79,0.79 0,0 0,-0.64 -0.29,0.89 0.89,0 0,0 -0.62,0.25 0.87,0.87 0,0 1,0.3 -0.58,1.08 1.08,0 0,1 0.67,-0.22h0v-0.49h-0.1a1.56,1.56 0,0 0,-0.82 0.2,1.24 1.24,0 0,0 -0.54,0.59 1.82,1.82 0,0 0,-0.2 0.89h0v0.21a1.4,1.4 0,0 0,0.3 0.9,1 1,0 0,0 0.78,0.34ZM150.36,57.29a0.37,0.37 0,0 1,-0.33 -0.17,0.78 0.78,0 0,1 -0.13,-0.47h0v-0.19a0.49,0.49 0,0 1,0.18 -0.2,0.5 0.5,0 0,1 0.27,-0.08 0.41,0.41 0,0 1,0.33 0.15,0.67 0.67,0 0,1 0.13,0.41 0.61,0.61 0,0 1,-0.13 0.39,0.38 0.38,0 0,1 -0.4,0.14ZM152.82,57.78a1.3,1.3 0,0 0,0.55 -0.12,0.94 0.94,0 0,0 0.37,-0.37 1.24,1.24 0,0 0,0.12 -0.53,1.18 1.18,0 0,0 -0.24,-0.77 0.93,0.93 0,0 0,-0.69 -0.27,1 1,0 0,0 -0.47,0.12h0l0.08,-0.66h1.22v-0.51L152,54.67l-0.19,1.56 0.5,0.12h0a0.55,0.55 0,0 1,0.35 -0.12,0.44 0.44,0 0,1 0.36,0.15 0.53,0.53 0,0 1,0.14 0.4,0.68 0.68,0 0,1 -0.11,0.42 0.41,0.41 0,0 1,-0.32 0.15,0.51 0.51,0 0,1 -0.31,-0.11 0.42,0.42 0,0 1,-0.12 -0.3h-0.55a0.86,0.86 0,0 0,0.14 0.46,0.74 0.74,0 0,0 0.38,0.32 1.11,1.11 0,0 0,0.51 0.06ZM155.28,57.78a1.11,1.11 0,0 0,0.76 -0.23,0.8 0.8,0 0,0 0.28,-0.65 0.77,0.77 0,0 0,-0.14 -0.44,0.74 0.74,0 0,0 -0.35,-0.3 0.73,0.73 0,0 0,0.42 -0.67,0.8 0.8,0 0,0 -0.27,-0.63 1,1 0,0 0,-0.78 -0.28,1 1,0 0,0 -0.71,0.23 0.8,0.8 0,0 0,-0.27 0.63,0.67 0.67,0 0,0 0.12,0.39 0.68,0.68 0,0 0,0.3 0.28,0.92 0.92,0 0,0 -0.35,0.3 0.77,0.77 0,0 0,-0.14 0.44,0.81 0.81,0 0,0 0.29,0.65 1.17,1.17 0,0 0,0.76 0.28ZM155.28,55.92a0.34,0.34 0,0 1,-0.27 -0.1,0.54 0.54,0 0,1 0,-0.6 0.4,0.4 0,0 1,0.54 0,0.51 0.51,0 0,1 0,0.6 0.37,0.37 0,0 1,-0.35 0.1ZM155.28,57.27a0.47,0.47 0,0 1,-0.32 -0.12,0.57 0.57,0 0,1 -0.11,-0.33 0.41,0.41 0,0 1,0.35 -0.43h0.07a0.47,0.47 0,0 1,0.32 0.12,0.51 0.51,0 0,1 0.11,0.31 0.44,0.44 0,0 1,-0.11 0.33,0.43 0.43,0 0,1 -0.39,0.12ZM158.15,57.71 L159.22,54.65h-0.7l-0.7,2.31 -0.7,-2.31h-0.69l1.06,3.06ZM160.15,57.71L160.15,56.6h0.5l0.58,1.11h0.67l-0.66,-1.25a1,1 0,0 0,0.42 -0.34,1.06 1.06,0 0,0 0.13,-0.52 0.87,0.87 0,0 0,-0.3 -0.69,1.4 1.4,0 0,0 -0.84,-0.24h-1.28v3.07ZM160.66,56.08h-0.51v-0.92h0.5a0.55,0.55 0,0 1,0.39 0.12,0.52 0.52,0 0,1 0,0.68 0.5,0.5 0,0 1,-0.37 0.12ZM163.11,57.71L164.24,55v-0.33L162,54.67v0.49h1.52l-1.18,2.57ZM166.79,57.71v-0.44L165.4,57.27l0.7,-0.74a2.84,2.84 0,0 0,0.35 -0.61,1.14 1.14,0 0,0 0.1,-0.45 0.8,0.8 0,0 0,-0.25 -0.65,1 1,0 0,0 -0.74,-0.23 1.07,1.07 0,0 0,-0.55 0.14,0.78 0.78,0 0,0 -0.38,0.36 0.9,0.9 0,0 0,-0.13 0.51h0.6a0.58,0.58 0,0 1,0.12 -0.38,0.38 0.38,0 0,1 0.33,-0.14 0.33,0.33 0,0 1,0.29 0.12,0.52 0.52,0 0,1 0.11,0.32 0.67,0.67 0,0 1,-0.1 0.31,3 3,0 0,1 -0.3,0.4h0l-1,1.05v0.42ZM168.34,57.71a1.38,1.38 0,0 0,0.82 -0.21,0.79 0.79,0 0,0 0.29,-0.64 0.77,0.77 0,0 0,-0.24 -0.59,2 2,0 0,0 -0.79,-0.4 2.28,2.28 0,0 1,-0.45 -0.2,0.29 0.29,0 0,1 -0.14,-0.24 0.3,0.3 0,0 1,0.12 -0.26,0.66 0.66,0 0,1 0.36,-0.11 0.58,0.58 0,0 1,0.38 0.12,0.41 0.41,0 0,1 0.13,0.33h0.63a0.88,0.88 0,0 0,-0.53 -0.82,1.54 1.54,0 0,0 -1.19,0 0.87,0.87 0,0 0,-0.4 0.31,0.69 0.69,0 0,0 -0.13,0.44 0.83,0.83 0,0 0,0.52 0.75,2.91 2.91,0 0,0 0.51,0.22 1.12,1.12 0,0 1,0.46 0.2,0.29 0.29,0 0,1 0.13,0.27 0.26,0.26 0,0 1,-0.13 0.25,0.55 0.55,0 0,1 -0.35,0.1c-0.41,0 -0.61,-0.16 -0.61,-0.51h-0.63a1,1 0,0 0,0.15 0.52,1 1,0 0,0 0.44,0.36 1.9,1.9 0,0 0,0.57 0.18Z" + android:fillColor="#fff"/> + <path + android:pathData="M148,74.5L148,72.22l0.83,2.28h0.43l0.84,-2.28 -0.19,1.44v0.84h0.63L150.54,71.42h-0.83l-0.78,2.24 -0.8,-2.24h-0.82L147.31,74.5ZM152.57,74.5L152.57,71.42h0l-1.34,0.46v0.5l0.74,-0.23L151.97,74.5ZM154.57,74.5a1.2,1.2 0,0 0,0.8 -0.24,0.83 0.83,0 0,0 0.29,-0.66 0.68,0.68 0,0 0,-0.12 -0.44,0.77 0.77,0 0,0 -0.39,-0.27 0.84,0.84 0,0 0,0.34 -0.28,0.56 0.56,0 0,0 0.13,-0.39 0.76,0.76 0,0 0,-0.28 -0.63,1.13 1.13,0 0,0 -0.77,-0.25 1.45,1.45 0,0 0,-0.51 0.11,1 1,0 0,0 -0.36,0.31 0.82,0.82 0,0 0,-0.12 0.43h0.6a0.33,0.33 0,0 1,0.12 -0.25,0.43 0.43,0 0,1 0.29,-0.1 0.4,0.4 0,0 1,0.31 0.11,0.36 0.36,0 0,1 0.1,0.28 0.39,0.39 0,0 1,-0.45 0.43h-0.33v0.47h0.33c0.33,0 0.51,0.15 0.51,0.46a0.43,0.43 0,0 1,-0.12 0.31,0.49 0.49,0 0,1 -0.35,0.11 0.4,0.4 0,0 1,-0.31 -0.11,0.35 0.35,0 0,1 -0.14,-0.28h-0.6a0.8,0.8 0,0 0,0.28 0.64,1.14 1.14,0 0,0 0.75,0.28ZM156.57,74.5h0.15a1.48,1.48 0,0 0,1.08 -0.47,1.81 1.81,0 0,0 0.39,-1.21h0v-0.21A1.81,1.81 0,0 0,158 72a1,1 0,0 0,-0.37 -0.43,0.88 0.88,0 0,0 -0.54,-0.16 1,1 0,0 0,-0.53 0.15,0.87 0.87,0 0,0 -0.37,0.39 1.06,1.06 0,0 0,-0.12 0.55,1.07 1.07,0 0,0 0.24,0.75 0.8,0.8 0,0 0,0.64 0.28,0.81 0.81,0 0,0 0.57,-0.23 0.79,0.79 0,0 1,-0.84 0.74h-0.16ZM157.1,73a0.39,0.39 0,0 1,-0.32 -0.16,0.8 0.8,0 0,1 -0.11,-0.4 0.92,0.92 0,0 1,0.11 -0.43,0.38 0.38,0 0,1 0.31,-0.16 0.33,0.33 0,0 1,0.31 0.17,0.77 0.77,0 0,1 0.12,0.47h0v0.26a0.46,0.46 0,0 1,-0.16 0.18,0.52 0.52,0 0,1 -0.26,0.1ZM159.6,74.51a0.92,0.92 0,0 0,0.77 -0.34,1.61 1.61,0 0,0 0.27,-1h0v-0.56a1.55,1.55 0,0 0,-0.29 -1,0.89 0.89,0 0,0 -0.76,-0.33 1,1 0,0 0,-0.77 0.33,1.7 1.7,0 0,0 -0.27,1h0v0.56a1.5,1.5 0,0 0,0.29 0.94,0.87 0.87,0 0,0 0.76,0.36ZM159.6,74.01a0.37,0.37 0,0 1,-0.33 -0.17,1.23 1.23,0 0,1 -0.1,-0.57h0v-0.74a1,1 0,0 1,0.11 -0.52,0.32 0.32,0 0,1 0.31,-0.16 0.37,0.37 0,0 1,0.33 0.17,1.15 1.15,0 0,1 0.1,0.55h0v0.82a1.09,1.09 0,0 1,-0.1 0.53,0.35 0.35,0 0,1 -0.32,0.12ZM161.48,74.47 L161.7,73.84h1.1l0.22,0.63h0.67l-1.16,-3.08L162,71.39l-1.14,3.08ZM162.63,73.32h-0.77l0.39,-1.15ZM164.63,74.47L164.63,72.19l0.82,2.29h0.45l0.82,-2.29v2.29h0.64L167.36,71.42h-0.83l-0.78,2.24L165,71.42h-0.84L164.16,74.5ZM169.77,74.47L169.77,74h-1.34L168.43,71.42h-0.64L167.79,74.5Z" + android:fillColor="#fff"/> + <path + android:pathData="M147.65,91.26L147.65,90h1.21v-0.47h-1.21v-0.8L149,88.73v-0.55h-2v3.07ZM150.02,91.26v-0.88l0.32,-0.35 0.79,1.23h0.75l-1.12,-1.72 1.08,-1.35h-0.78l-0.78,1 -0.26,0.39L150.02,88.24h-0.65v3.07ZM152.95,91.26a1.17,1.17 0,0 0,0.52 -0.12,0.93 0.93,0 0,0 0.36,-0.35 0.9,0.9 0,0 0,0.14 -0.53h0L153.97,88.19h-0.63v2.13a0.66,0.66 0,0 1,-0.11 0.36,0.36 0.36,0 0,1 -0.28,0.12 0.4,0.4 0,0 1,-0.31 -0.11,0.56 0.56,0 0,1 -0.1,-0.33h-0.63a0.93,0.93 0,0 0,0.27 0.69,1.14 1.14,0 0,0 0.77,0.26ZM154.88,91.26L155,91.26a1.56,1.56 0,0 0,1.08 -0.47,1.81 1.81,0 0,0 0.39,-1.21h0v-0.23a2.1,2.1 0,0 0,-0.14 -0.65,1 1,0 0,0 -0.91,-0.59 1.09,1.09 0,0 0,-0.53 0.13,1.15 1.15,0 0,0 -0.37,0.39 1.24,1.24 0,0 0,-0.12 0.57,1.07 1.07,0 0,0 0.24,0.75 0.8,0.8 0,0 0,0.64 0.28,0.76 0.76,0 0,0 0.57,-0.24 0.79,0.79 0,0 1,-0.82 0.76h-0.18ZM155.46,89.76a0.34,0.34 0,0 1,-0.32 -0.16,0.74 0.74,0 0,1 -0.11,-0.41 0.88,0.88 0,0 1,0.11 -0.42,0.39 0.39,0 0,1 0.31,-0.18 0.37,0.37 0,0 1,0.31 0.18,0.82 0.82,0 0,1 0.12,0.48h0v0.29a0.44,0.44 0,0 1,-0.16 0.17,0.41 0.41,0 0,1 -0.26,0.09ZM157.36,91.26h0.14a1.6,1.6 0,0 0,1.09 -0.47,1.76 1.76,0 0,0 0.38,-1.21h0v-0.23a1.46,1.46 0,0 0,-0.13 -0.65,1.06 1.06,0 0,0 -0.37,-0.44 1.08,1.08 0,0 0,-1.07 0,0.93 0.93,0 0,0 -0.37,0.39 1.21,1.21 0,0 0,-0.13 0.56,1.17 1.17,0 0,0 0.24,0.76 0.84,0.84 0,0 0,0.66 0.28,0.76 0.76,0 0,0 0.55,-0.24 0.79,0.79 0,0 1,-0.83 0.75h-0.16ZM158,89.8a0.36,0.36 0,0 1,-0.33 -0.16,0.66 0.66,0 0,1 -0.12,-0.41 0.79,0.79 0,0 1,0.12 -0.42,0.42 0.42,0 0,1 0.3,-0.18 0.41,0.41 0,0 1,0.32 0.18,0.8 0.8,0 0,1 0.12,0.48h0v0.25a1.29,1.29 0,0 1,-0.16 0.17A0.38,0.38 0,0 1,158 89.8ZM160.5,91.31a1.31,1.31 0,0 0,0.55 -0.13,1.06 1.06,0 0,0 0.36,-0.37 1.25,1.25 0,0 0,0.12 -0.54,1 1,0 0,0 -0.25,-0.75 0.9,0.9 0,0 0,-0.69 -0.28,0.93 0.93,0 0,0 -0.46,0.12h0L160.13,88.7h1.23v-0.51h-1.68l-0.18,1.56 0.49,0.12h0a0.49,0.49 0,0 1,0.35 -0.11,0.47 0.47,0 0,1 0.37,0.14 0.58,0.58 0,0 1,0.13 0.4,0.63 0.63,0 0,1 -0.12,0.42 0.37,0.37 0,0 1,-0.31 0.15,0.51 0.51,0 0,1 -0.31,-0.11 0.43,0.43 0,0 1,-0.13 -0.3h-0.61a1,1 0,0 0,0.15 0.47,0.77 0.77,0 0,0 0.38,0.31 1,1 0,0 0,0.52 0.07ZM162.89,91.31a1.18,1.18 0,0 0,0.79 -0.26,0.79 0.79,0 0,0 0.3,-0.65 0.6,0.6 0,0 0,-0.14 -0.43,0.82 0.82,0 0,0 -0.37,-0.29 0.86,0.86 0,0 0,0.33 -0.27,0.67 0.67,0 0,0 0.12,-0.39 0.86,0.86 0,0 0,-0.26 -0.64,1.33 1.33,0 0,0 -1.28,-0.12 0.79,0.79 0,0 0,-0.36 0.29,0.76 0.76,0 0,0 -0.14,0.43h0.61a0.25,0.25 0,0 1,0.12 -0.24,0.44 0.44,0 0,1 0.29,-0.11 0.51,0.51 0,0 1,0.31 0.11,0.38 0.38,0 0,1 0.11,0.3 0.51,0.51 0,0 1,-0.11 0.31,0.48 0.48,0 0,1 -0.35,0.1h-0.32v0.49h0.32c0.34,0 0.51,0.15 0.51,0.46a0.39,0.39 0,0 1,-0.13 0.29,0.42 0.42,0 0,1 -0.34,0.12 0.6,0.6 0,0 1,-0.32 -0.1,0.4 0.4,0 0,1 -0.12,-0.29h-0.62a0.79,0.79 0,0 0,0.3 0.65,1.1 1.1,0 0,0 0.72,0.24ZM165.42,91.31a0.92,0.92 0,0 0,0.78 -0.35,1.48 1.48,0 0,0 0.25,-1h0L166.45,89.4a1.49,1.49 0,0 0,-0.27 -1,1.05 1.05,0 0,0 -1.48,-0.05s0,0 0,0.05a1.49,1.49 0,0 0,-0.27 1h0L164.43,90a1.49,1.49 0,0 0,0.27 1,0.91 0.91,0 0,0 0.74,0.34ZM165.42,90.81a0.32,0.32 0,0 1,-0.33 -0.19,1.15 1.15,0 0,1 -0.1,-0.55h0v-0.75a1.11,1.11 0,0 1,0.1 -0.51,0.36 0.36,0 0,1 0.33,-0.16 0.35,0.35 0,0 1,0.32 0.17,1.15 1.15,0 0,1 0.11,0.55h0v0.73a1.12,1.12 0,0 1,-0.11 0.54,0.35 0.35,0 0,1 -0.35,0.24ZM168.94,91.26v-0.49L167.6,90.77l0.69,-0.74a2.37,2.37 0,0 0,0.46 -0.49,0.93 0.93,0 0,0 0.12,-0.46 0.77,0.77 0,0 0,-0.27 -0.65,1.14 1.14,0 0,0 -0.74,-0.23 1.18,1.18 0,0 0,-0.55 0.14,0.81 0.81,0 0,0 -0.37,0.36 1,1 0,0 0,-0.14 0.51h0.61a0.61,0.61 0,0 1,0.1 -0.37,0.4 0.4,0 0,1 0.34,-0.15 0.39,0.39 0,0 1,0.3 0.12,0.46 0.46,0 0,1 0.09,0.32 0.62,0.62 0,0 1,-0.09 0.32,2.88 2.88,0 0,1 -0.3,0.39h0l-1,1v0.42Z" + android:fillColor="#fff"/> + <path + android:pathData="M146.84,108v-1.34h1.24L148.08,108h0.63v-3h-0.63v1.23h-1.24L146.84,105h-0.63v3ZM149.72,108 L149.92,107.37L151,107.37l0.21,0.63h0.68l-1.12,-3h-0.58l-1.14,3ZM150.86,106.86h-0.76l0.37,-1.16ZM153.09,108.04a1.2,1.2 0,0 0,0.8 -0.24,0.77 0.77,0 0,0 0.29,-0.66 0.68,0.68 0,0 0,-0.51 -0.71,0.91 0.91,0 0,0 0.34,-0.28 0.64,0.64 0,0 0,0.12 -0.38,0.76 0.76,0 0,0 -0.27,-0.64 1.13,1.13 0,0 0,-0.77 -0.25,1.26 1.26,0 0,0 -0.51,0.11 0.9,0.9 0,0 0,-0.36 0.31,0.66 0.66,0 0,0 -0.13,0.43h0.62a0.32,0.32 0,0 1,0.1 -0.26,0.46 0.46,0 0,1 0.3,-0.09 0.51,0.51 0,0 1,0.31 0.11,0.43 0.43,0 0,1 0.11,0.28 0.51,0.51 0,0 1,-0.11 0.31,0.44 0.44,0 0,1 -0.35,0.12h-0.32v0.47h0.32c0.33,0 0.51,0.16 0.51,0.46a0.34,0.34 0,0 1,-0.14 0.31,0.5 0.5,0 0,1 -0.65,0 0.37,0.37 0,0 1,-0.13 -0.28h-0.61a0.79,0.79 0,0 0,0.29 0.64,1.14 1.14,0 0,0 0.75,0.26ZM156.4,108.04v-0.66h0.35v-0.49h-0.35L156.4,105h-0.6l-1.35,2v0.39h1.27v0.66ZM155.8,106.89h-0.67l0.63,-1v-0.08ZM158.38,108.08a2.37,2.37 0,0 0,0.7 -0.1,1.58 1.58,0 0,0 0.48,-0.33h0v-1.22h-1.21v0.47h0.58v0.52a0.67,0.67 0,0 1,-0.51 0.15,0.6 0.6,0 0,1 -0.54,-0.24 1.25,1.25 0,0 1,-0.19 -0.73h0v-0.2a1.14,1.14 0,0 1,0.18 -0.72,0.63 0.63,0 0,1 0.88,-0.12h0a0.62,0.62 0,0 1,0.18 0.38h0.62a1.11,1.11 0,0 0,-0.37 -0.76,1.38 1.38,0 0,0 -1.54,-0.08 1.09,1.09 0,0 0,-0.44 0.51,1.82 1.82,0 0,0 -0.16,0.8h0v0.21a1.89,1.89 0,0 0,0.17 0.78,1.17 1.17,0 0,0 0.46,0.5 1.31,1.31 0,0 0,0.7 0.13ZM161.22,108.08a1.19,1.19 0,0 0,0.86 -0.29,1 1,0 0,0 0.32,-0.8h0v-2h-0.65v2a0.48,0.48 0,0 1,-0.4 0.55h-0.13a0.56,0.56 0,0 1,-0.41 -0.14,0.66 0.66,0 0,1 -0.15,-0.42h0v-2L160,104.98v2a1,1 0,0 0,0.33 0.78,1.17 1.17,0 0,0 0.86,0.27ZM163.42,108.08L164,107l0.59,1.07h0.74l-0.92,-1.54 0.9,-1.52h-0.73l-0.58,1 -0.58,-1h-0.72l0.9,1.52 -0.93,1.54ZM166.61,108.08a0.94,0.94 0,0 0,0.91 -0.49,1 1,0 0,0 0.12,-0.53 1.13,1.13 0,0 0,-0.24 -0.77,1 1,0 0,0 -0.7,-0.26 0.93,0.93 0,0 0,-0.46 0.12h0l0.08,-0.68h1.21L167.53,105h-1.72l-0.17,1.56 0.48,0.12h0a0.44,0.44 0,0 1,0.35 -0.12,0.5 0.5,0 0,1 0.37,0.13 0.58,0.58 0,0 1,0.13 0.4,0.68 0.68,0 0,1 -0.12,0.44 0.37,0.37 0,0 1,-0.31 0.14,0.45 0.45,0 0,1 -0.31,-0.1 0.53,0.53 0,0 1,-0.13 -0.31h-0.61a1,1 0,0 0,0.15 0.47,0.79 0.79,0 0,0 1,0.32ZM169.51,108.08L169.51,105h0l-1.26,0.46v0.5l0.72,-0.23v2.35Z" + android:fillColor="#fff"/> + <path + android:pathData="M158.78,81.48m-8.35,0a8.35,8.35 0,1 1,16.7 0a8.35,8.35 0,1 1,-16.7 0" + android:fillColor="#232324"/> + <path + android:pathData="M158.59,75.15a10.7,10.7 0,0 1,-4.25 1.49,0.44 0.44,0 0,0 -0.4,0.42v6.57a2.92,2.92 0,0 0,1.34 2.48c1.43,0.84 3,1.65 3.35,1.84a0.15,0.15 0,0 0,0.16 0c0.37,-0.19 1.91,-1 3.34,-1.84a2.92,2.92 0,0 0,1.34 -2.48V77.06a0.44,0.44 0,0 0,-0.4 -0.42A11,11 0,0 1,159 75.15a0.25,0.25 0,0 0,-0.17 0,0.31 0.31,0 0,0 -0.19,0" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M158.69,78.93c0.45,0 0.84,0.56 0.9,1.25h-1.81c0,-0.69 0.43,-1.25 0.91,-1.25m-1.59,1.25h-0.3a0.73,0.73 0,0 0,-0.71 0.72v2.49a0.72,0.72 0,0 0,0.71 0.73h3.82a0.72,0.72 0,0 0,0.71 -0.73h0V80.9a0.73,0.73 0,0 0,-0.71 -0.72h-0.29a1.61,1.61 0,1 0,-3.16 -0.66h0a1.47,1.47 0,0 0,0 0.66" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M158,81.85a0.68,0.68 0,0 0,0.35 0.59v0.74a0.19,0.19 0,0 0,0.19 0.18h0.34a0.18,0.18 0,0 0,0.19 -0.17h0v-0.74a0.69,0.69 0,1 0,-0.76 -1.15,0.66 0.66,0 0,0 -0.31,0.56" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M143.5,96h-0.68a1.06,1.06 0,0 1,-1 -1V85.25A1.16,1.16 0,0 1,142.89 84h0.56Z" + android:fillColor="#c4314a" + android:fillType="evenOdd"/> + <path + android:pathData="M143.55,62.53h-0.67a1.08,1.08 0,0 1,-1 -1V51.75A1.16,1.16 0,0 1,143 50.5h0.59Z" + android:fillColor="#c4314a" + android:fillType="evenOdd"/> + <path + android:pathData="M143.57,79.25h-0.68a1.11,1.11 0,0 1,-1 -1V68.47A1.17,1.17 0,0 1,143 67.22h0.55Z" + android:fillColor="#c4314a" + android:fillType="evenOdd"/> + <path + android:pathData="M191.22,80.54a2.44,2.44 0,1 1,-2.44 -2.44,2.44 2.44,0 0,1 2.44,2.44h0" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M208.31,80.51A2.49,2.49 0,1 1,205.83 78a2.48,2.48 0,0 1,2.48 2.51h0" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M328.35,126.63H245.18c-3.52,0 -6.38,-3.46 -6.38,-7.73V32.15c0,-4.26 2.86,-7.72 6.38,-7.72h83.17c3.52,0 6.37,3.46 6.37,7.72V118.9c0,4.27 -2.85,7.73 -6.37,7.73" + android:fillColor="#94a1ab" + android:fillType="evenOdd"/> + <path + android:pathData="M322,96.81a2.89,2.89 0,1 0,2.9 -2.88h0A2.88,2.88 0,0 0,322 96.81h0" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M310.45,96.81a2.88,2.88 0,1 0,2.88 -2.88,2.88 2.88,0 0,0 -2.88,2.88h0" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M298.93,96.81a2.88,2.88 0,1 0,2.88 -2.88,2.88 2.88,0 0,0 -2.88,2.88h0" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M322,69.11a2.88,2.88 0,1 0,3.39 -2.26,3.07 3.07,0 0,0 -1.13,0A2.89,2.89 0,0 0,322 69.11" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M310.5,69.11a2.89,2.89 0,1 0,3.41 -2.26,3.12 3.12,0 0,0 -1.14,0 2.9,2.9 0,0 0,-2.27 2.26" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M299,69.11a2.89,2.89 0,1 0,3.41 -2.26,2.79 2.79,0 0,0 -1.15,0A2.89,2.89 0,0 0,299 69.11" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M248.87,48.31h41.06a1.82,1.82 0,0 0,1.8 -1.8V38.58a1.82,1.82 0,0 0,-1.8 -1.8H248.87a1.82,1.82 0,0 0,-1.8 1.8v7.93a1.82,1.82 0,0 0,1.8 1.8" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M322,42a2.88,2.88 0,1 0,3.39 -2.26,3.07 3.07,0 0,0 -1.13,0A2.89,2.89 0,0 0,322 42" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M310.5,42a2.89,2.89 0,1 0,3.41 -2.26,3.12 3.12,0 0,0 -1.14,0A2.9,2.9 0,0 0,310.5 42" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M299,42a2.89,2.89 0,1 0,3.41 -2.26,2.79 2.79,0 0,0 -1.15,0A2.89,2.89 0,0 0,299 42" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M249.24,75.49H290.3a1.8,1.8 0,0 0,1.8 -1.79V65.76A1.8,1.8 0,0 0,290.3 64H249.24a1.8,1.8 0,0 0,-1.8 1.79V73.7a1.8,1.8 0,0 0,1.8 1.79" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M249.24,101.8H290.3a1.81,1.81 0,0 0,1.8 -1.8V92.07a1.8,1.8 0,0 0,-1.8 -1.79H249.24a1.8,1.8 0,0 0,-1.8 1.79V100a1.81,1.81 0,0 0,1.8 1.8h0" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M205,137.24c2.15,-23.94 33.49,-21.62 35.87,-20.67 6.62,-15.12 29,-16.87 36.87,-11.28A29.41,29.41 0,0 1,292.1 92.07c16.61,-7.69 46,-11 63.09,22.57 1.44,0 2.88,0 4.31,0.12v22.48Z" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M226.15,80.48a2.49,2.49 0,1 1,-2.5 -2.48h0a2.48,2.48 0,0 1,2.48 2.48h0" + android:fillColor="#3f3f43" + android:fillType="evenOdd"/> + <path + android:pathData="M46.73,22.4l0.66,8.08c-0.24,-2.94 -0.55,-6.79 -0.66,-8.08" + android:fillColor="#e1eeff" + android:fillType="evenOdd"/> + <path + android:pathData="M45.05,40.14l-0.83,10.53l9.7,0.79l1.69,-11.19l-10.56,-0.13z" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M57.6,31.46c0.19,17.16 -16.3,16.63 -16.91,0.16 0.06,-16.83 16.53,-17 16.91,-0.16" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M34.55,98.3c-7.27,27.2 -1.34,66.54 0.27,98.07l5,0.24s3.66,-51.17 5,-62.8c0.42,-3.53 1.74,-11.07 2.4,-14.35 0.05,-0.25 0.59,-1.33 0.64,-0.06 0.27,8 3.74,16.93 4.41,25.78 1.54,20.68 0.9,35 1.44,52.1 0,0 5.7,3.49 5.71,3.45C60.7,196 64.54,156.87 64.64,151c0,-1.2 2,-26.27 -4,-51.88Z" + android:fillColor="#8c8c98" + android:fillType="evenOdd"/> + <path + android:pathData="M62.62,51.53c-3.93,-3.17 -4.08,-2.15 -8.27,-3.05 -3.14,4.17 -8.52,1.75 -10.07,0.07 -0.19,-0.2 -0.69,0 -0.77,0 -17.09,1.22 -8.29,38 -9.48,48.94C34,98 34,99 34.54,99c0,0 15.72,2.22 22.13,0.94 0.92,-0.18 4,-0.51 4.12,-1.18 1.05,-10.9 6.68,-41.57 1.83,-47.21" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M37,50.75h0a3.57,3.57 0,0 0,3.81 0.73,9.85 9.85,0 0,0 3.54,-2.9 6.05,6.05 0,0 0,1.32 -5.37,3.45 3.45,0 0,0 -0.89,-1.8 13.33,13.33 0,0 1,-2.53 -13c0,-0.16 0.2,-1.58 0.28,-1.44 0.86,1.4 5.17,2 14.39,5.47a29.31,29.31 0,0 1,-0.16 3.11,11.64 11.64,0 0,1 -2,4.72 4.42,4.42 0,0 0,-1.33 3,12.21 12.21,0 0,0 1.17,5.92 5.85,5.85 0,0 0,7.67 2.72,5 5,0 0,0 2.83,-4.62 0.19,0.19 0,0 0,-0.18 -0.2h0c-1,0 -5.13,-0.34 -4,-5.75C61.8,36.75 62.82,26.7 58.22,21c-0.07,-0.07 -0.13,-0.15 -0.2,-0.23a0.84,0.84 0,0 0,-0.15 -0.18c-0.09,-0.11 -0.19,-0.21 -0.29,-0.32A3.7,3.7 0,0 0,57.3 20a11.08,11.08 0,0 0,-5.76 -3h0c-0.34,0 -9.29,-1.06 -10.86,4.24a0.14,0.14 0,0 1,-0.09 0.11c-0.39,0.25 -2.52,1.74 -2.76,6.12 -0.26,4.83 0.57,6.59 0.77,10.29 0.25,4.43 0.23,8.44 -5.34,8.58a0.2,0.2 0,0 0,-0.2 0.2,0.13 0.13,0 0,0 0,0.06A7.84,7.84 0,0 0,37 50.75" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M40,191.84 L34.77,193c-0.29,2 -4.06,10.86 0.48,12.93 1.79,1 3.17,2 5.11,0.08 4.17,-2.43 -0.32,-12.5 -0.4,-14.19" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M53.76,194.14c0.13,1.07 -1,8.67 0.08,9.38a2.25,2.25 0,0 0,1 0.66l18,0.32c3.24,-3.45 -12.78,-4.7 -12.42,-10.42l-6.66,0.06" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M49.55,51.54a17.82,17.82 0,0 0,-2 -0.75,3.3 3.3,0 0,0 -1.84,-0.19 3.77,3.77 0,0 1,-1.58 0.57,0.72 0.72,0 0,1 -0.52,-0.19c-0.16,-0.17 -0.19,-0.36 -0.4,-1.13s-2,-4 -2.23,-4.68C40.58,44 40,44 40,43.3c0,-0.26 0.09,-0.41 0.92,-1.5 0.69,-0.91 1.09,-1.41 1.31,-1.69a7.85,7.85 0,0 1,1.32 -1.5,2.74 2.74,0 0,1 1.18,-0.56 3.21,3.21 0,0 0,1.05 -0.19,7 7,0 0,0 0.66,-0.56c0.51,-0.44 0.68,-0.58 0.91,-0.56a56,56 0,0 0,5.9 1.18c0.39,0 2.47,0.77 2.9,0.88 0.62,0.16 1.24,0.34 1.84,0.56 0.25,0.09 -0.17,1.37 -0.46,1.72a23.15,23.15 0,0 0,-1.77 3,8.94 8.94,0 0,0 -0.39,2.62c0,0.7 0.07,1.19 0.13,2.81a2.83,2.83 0,0 1,-0.13 1.12,6.72 6.72,0 0,1 -0.4,0.75 5.34,5.34 0,0 1,-0.39 0.75c-0.29,0.34 -0.67,0.25 -1,0.19 -1.2,-0.18 -1.12,0.19 -2.1,0a10.15,10.15 0,0 1,-1.84 -0.75" + android:fillColor="#efefef" + android:fillType="evenOdd"/> + <path + android:pathData="M31.08,75.36a6.94,6.94 0,0 1,0.59 -1.84L34,68.72v-0.06c4.49,-8.1 4.89,-8.78 5.3,-9.49 0,-0.08 2,-3.5 2,-3.59 0.15,-0.45 0.63,-1.94 1,-3.4v-0.11c0.15,-0.89 0.29,-1.78 0.44,-2.66v-0.18l1.51,-5.76c0,-0.39 1,-0.75 1.11,-1.11 0,0 0.71,0 0.78,0.41 0.49,3.21 1.43,2.58 1.21,4.26A61.58,61.58 0,0 1,46 54.64c-0.29,1.12 -0.74,2.85 -1.34,5a84,84 0,0 1,-3.29 9.91,56.72 56.72,0 0,1 -4.29,8.35l-0.1,0.15c-1.81,2.2 -3,2.59 -3.79,2.47H33l-1.51,-0.59c-0.38,-0.15 -0.55,-0.88 -0.61,-1.33A11.23,11.23 0,0 1,31 75.43" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M44.92,53l1.49,-0.27C48,49.5 49,44.48 47.59,41.62c-1.53,-2 -4.09,1.25 -4.47,3.22a21.23,21.23 0,0 0,0.14 8.44" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M65.7,76a6.34,6.34 0,0 0,-0.62 -1.74l-2.45,-4.54v-0.06C58,62 57.58,61.4 57.16,60.72c0,-0.07 -2,-3.3 -2.08,-3.38 -0.15,-0.43 -0.66,-1.84 -1,-3.23V54l-0.48,-2.54V51.3a18.37,18.37 0,0 0,-0.35 -6.14c-0.11,-0.47 -0.23,-0.92 -0.37,-1.35a3.18,3.18 0,0 0,-0.35 -1.08c-0.1,-0.19 -0.93,-1.71 -2,-1.59a1.91,1.91 0,0 0,-1.26 0.92,3 3,0 0,0 -0.39,1.13A17.48,17.48 0,0 0,49 49.31a57.5,57.5 0,0 0,1.48 7.25c0.31,1.06 0.78,2.71 1.42,4.73a80.64,80.64 0,0 0,3.46 9.39,54 54,0 0,0 4.44,7.88 0.76,0.76 0,0 0,0.11 0.14c1.85,2.06 3.06,2.41 3.85,2.28a0.6,0.6 0,0 0,0.19 -0.06l1.52,-0.6A1.2,1.2 0,0 0,66 79.4a13,13 0,0 0,-0.3 -3.4" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M32.53,80.32a15.85,15.85 0,0 1,-0.4 -4,17.68 17.68,0 0,1 0.69,-4.09c0.51,-2 1,-3.68 1,-3.78A9,9 0,0 0,31 71.3c-2,3.83 -0.38,8 -0.07,8H31c0.21,0 0.28,0 0.34,0.08s0.06,0.28 0.15,0.48a0.67,0.67 0,0 0,0.37 0.37s0.71,0.18 0.69,0.08" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M65.13,80.5A22,22 0,0 0,65 75.84a16.94,16.94 0,0 0,-1.3 -3.93c-0.81,-1.94 -1.53,-3.49 -1.59,-3.58a9,9 0,0 1,3.26 2.35c2.56,3.49 1.6,7.91 1.29,7.92h-0.07c-0.2,0 -0.27,0.06 -0.32,0.13s0,0.28 -0.07,0.5a0.77,0.77 0,0 1,-0.32 0.41,7.6 7.6,0 0,1 -0.75,0.85" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M141.58,91.86H106.1a8.42,8.42 0,0 0,-8.44 8.38h0v85.45a8.42,8.42 0,0 0,8.44 8.38h35.48a8.42,8.42 0,0 0,8.44 -8.38h0V100.24a8.42,8.42 0,0 0,-8.44 -8.38h0" + android:fillColor="#1e1e1f"/> + <path + android:pathData="M142,92.28a5.9,5.9 0,0 1,5.91 5.88v89.61a5.9,5.9 0,0 1,-5.91 5.88L104.84,193.65a5.9,5.9 0,0 1,-5.91 -5.88L98.93,98.16a5.9,5.9 0,0 1,5.91 -5.88ZM142,89.36L104.84,89.36A8.82,8.82 0,0 0,96 98.16h0v89.61a8.82,8.82 0,0 0,8.84 8.8L142,196.57a8.82,8.82 0,0 0,8.84 -8.8h0L150.84,98.16a8.82,8.82 0,0 0,-8.84 -8.8Z" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M143.25,156.13l-39.48,0.2a1,1 0,0 1,-1 -1l-0.16,-31.17a1,1 0,0 1,1 -1h0l39.48,-0.2a1,1 0,0 1,1 1l0.16,31.16a1,1 0,0 1,-0.94 1.06h-0.06" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M133.73,139.6a2.49,2.49 0,0 1,-0.94 0.09h-1.54a1.77,1.77 0,0 1,-1.05 -0.28,7.37 7.37,0 0,0 -0.68,-3.1 2,2 0,0 1,1.91 -1c1.19,0.05 0.57,-0.84 0.39,-1.1 -0.84,-1.24 -1.19,-0.47 -1.37,-0.08a2.24,2.24 0,0 1,-1.29 0.81,2 2,0 0,1 -0.49,0 7.4,7.4 0,0 0,-2.41 -2h0a5.71,5.71 0,0 1,1.26 -2.56A1.25,1.25 0,0 1,128 130c0.47,-0.18 0.92,-0.54 -0.49,-1.27 -1.22,-0.64 -1.32,0 -1.29,0.4a1.74,1.74 0,0 1,-0.09 0.64c-0.09,0.27 -0.31,1.05 -0.59,1.74a2,2 0,0 1,-0.65 0.86,7.67 7.67,0 0,0 -3.09,-0.21 1.51,1.51 0,0 1,-0.51 -1.07,2 2,0 0,1 0.06,-0.69c0.19,-0.7 -0.26,-0.56 -0.66,-0.51 -1.46,0.21 -1,0.82 -0.7,1s0.31,0.73 0.36,1a1,1 0,0 1,-0.12 0.7,7.32 7.32,0 0,0 -2.59,1.66 7.28,7.28 0,0 1,-2.24 -1.85,1 1,0 0,1 -0.19,-0.52c-0.08,-0.87 -0.54,-0.92 -1.34,0.21s-0.35,1.22 0.42,1.3a8.16,8.16 0,0 1,2.14 1.33,2.14 2.14,0 0,1 0.41,0.49 7.4,7.4 0,0 0,-0.53 0.84,7.48 7.48,0 0,0 -0.72,2 2.12,2.12 0,0 1,-2.16 -0.09c-0.82,-0.57 -1.21,-0.13 -1.31,0.79 -0.12,1.15 0.81,0.86 1.31,0.65a3,3 0,0 1,1.74 0.09l0.3,0.18a7.34,7.34 0,0 0,0.67 2.84,6 6,0 0,1 -2.5,1.45c-1.16,-0.27 -2,0.11 -1,1.74s2.07,-0.43 2.07,-0.43a15.51,15.51 0,0 1,1.48 -1.2,2.11 2.11,0 0,1 0.63,-0.33 7.43,7.43 0,0 0,2.14 2v0.05a2.08,2.08 0,0 1,-0.91 2.24c-1,0.65 0,1 0.31,1.12 1.41,0.52 1.25,-0.3 1.17,-0.73a2.26,2.26 0,0 1,0.58 -1.42,1.94 1.94,0 0,1 0.77,-0.42 7.23,7.23 0,0 0,3 0.16,6.23 6.23,0 0,1 1,2.7 1.71,1.71 0,0 1,-0.12 0.87c-0.2,0.62 0.26,0.71 1.29,0.43 1.23,-0.35 0.71,-0.87 0.37,-1.11 -0.14,-0.1 -0.24,-0.15 -0.29,-0.31a15.34,15.34 0,0 1,-0.72 -2.27,2.81 2.81,0 0,1 0,-0.71 7.25,7.25 0,0 0,2.23 -1.34,1.46 1.46,0 0,1 1.66,1.14c0.42,1.12 1,0.21 1.16,0 0.82,-1.26 0,-1.29 -0.45,-1.3a1.29,1.29 0,0 1,-1 -0.63,1.68 1.68,0 0,1 -0.19,-0.53c0.16,-0.24 0.31,-0.48 0.45,-0.74a7.7,7.7 0,0 0,0.72 -2,3.59 3.59,0 0,1 2.46,-0.07 4.51,4.51 0,0 1,1.33 0.48c0.51,0.41 0.76,0 0.84,-1.06C134.75,139.05 134.08,139.36 133.73,139.6Z" + android:fillColor="#ff919a" + android:fillType="evenOdd"/> </vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_illustration_notification_on.xml b/Corona-Warn-App/src/main/res/drawable/ic_illustration_notification_on.xml index 5b686c5d3e97bcc93308eac765831237f3283144..638af240aa216f96f6f543ae18a477a958d8af6c 100644 --- a/Corona-Warn-App/src/main/res/drawable/ic_illustration_notification_on.xml +++ b/Corona-Warn-App/src/main/res/drawable/ic_illustration_notification_on.xml @@ -1,288 +1,125 @@ <vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="360dp" + android:width="360.11dp" android:height="220dp" - android:viewportWidth="360" + android:viewportWidth="360.11" android:viewportHeight="220"> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M216.595,150.161C216.586,150.109 215.692,144.795 215.153,139.02C214.427,131.248 214.454,126.265 215.494,123.928L215.923,124.071C213.488,129.546 217.256,149.926 217.29,150.131L216.595,150.161Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M215.603,144.717C214.136,144.717 212.166,143.593 209.813,141.624C207.978,140.088 206.554,138.496 206.54,138.48L206.766,138.28C206.822,138.342 212.355,144.406 215.737,144.137L215.845,144.708C215.766,144.714 215.685,144.717 215.603,144.717" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M217.922,147.733C216.894,147.733 216.237,147.681 216.224,147.679L216.307,147.117C216.415,147.127 227.128,148.209 230.099,142.788L230.365,142.933C229.093,145.254 226.239,146.81 222.111,147.433C220.517,147.674 219.011,147.733 217.922,147.733" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="evenOdd" - android:pathData="M231.894,150.678C274.558,150.678 293.144,123.768 332.978,128.863C342.447,130.074 354.471,133.857 367.974,144.468L367.974,174.24L-7.025,176.32L-7.025,142.32C4.975,137.32 8.975,139.32 21.975,142.32C65.473,152.358 115.977,126.356 139.478,125.446C141.672,125.361 143.79,125.321 145.825,125.321C196.599,125.317 199.027,150.678 231.894,150.678" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <group> - <clip-path android:pathData="M145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.975,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.447,130.074 332.979,128.863L332.979,128.863C293.144,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.029,150.679 196.601,125.321 145.836,125.321L145.836,125.321C145.833,125.321 145.829,125.321 145.826,125.321L145.826,125.321Z" /> - <path - android:fillColor="#E8F5FF" - android:fillType="evenOdd" - android:pathData="M-106.558,182.459l508.41,0l0,-63.805l-508.41,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - </group> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <group> - <clip-path android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.975,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.447,130.074 332.979,128.863L332.979,128.863C293.144,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.84,125.321 145.836,125.321L145.836,125.321Z" /> - <path - android:fillColor="#E8F5FF" - android:fillType="evenOdd" - android:pathData="M-76.862,176.204l445.453,0l0,-52.545l-445.453,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - </group> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <group> - <clip-path android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.975,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.203L14.061,176.203L367.974,174.24L367.974,144.468C354.471,133.858 342.447,130.074 332.979,128.863L332.979,128.863C293.144,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.839,125.321 145.836,125.321L145.836,125.321Z" /> - <path - android:fillColor="#E8F5FF" - android:fillType="evenOdd" - android:pathData="M-112,188.509l519.179,0l0,-75.7l-519.179,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - </group> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <group> - <clip-path android:pathData="M107.573,166.86C71.657,166.86 56.009,149.308 22.475,152.631L22.475,152.631C14.504,153.421 4.383,155.889 -6.985,162.81L-6.985,162.81L-6.985,182.23L367.496,183.319L367.496,168.991C365.608,168.134 363.733,167.4 361.95,166.848L361.95,166.848C361.95,166.848 324.155,154.936 282.3,165.129L282.3,165.129C246.451,173.867 205.155,150.995 185.372,150.402L185.372,150.402C183.524,150.346 181.741,150.32 180.028,150.32L180.028,150.32C137.286,150.318 135.242,166.86 107.573,166.86L107.573,166.86Z" /> - <path - android:fillColor="#D8ECF9" - android:fillType="evenOdd" - android:pathData="M-39.989,191.537l437.066,0l0,-49.378l-437.066,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - </group> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <path - android:fillColor="#F6B893" - android:fillType="evenOdd" - android:pathData="M159.279,63.618C159.279,63.618 167.286,71.109 170.315,73.132C172.826,74.809 181.106,78.56 181.106,78.56L177.546,82.265C177.546,82.265 170.271,80.644 168.032,79.601C165.735,78.532 159.659,73.893 159.659,73.893L159.279,63.618Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="evenOdd" - android:pathData="M121.247,188.632L118.356,194.122C117.957,194.878 118.223,195.814 118.961,196.244C122.455,198.281 132.006,203.487 136.128,202.084C136.706,201.887 136.849,201.132 136.399,200.718C133.769,198.298 125.591,190.573 126.224,188.676L121.247,188.632Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B96161" - android:fillType="evenOdd" - android:pathData="M120.981,189.144L126.571,189.889L154.217,126.053L139.819,97.136L139.652,136.717C139.652,136.717 126.812,162.241 124.762,172.254C122.739,182.141 120.981,189.144 120.981,189.144" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="evenOdd" - android:pathData="M138.915,87.901L160.609,88.191C160.609,88.191 179.412,182.49 186.933,188.854L182.883,191.747C182.883,191.747 159.742,160.217 161.767,139.968C161.767,139.968 133.129,93.976 138.915,87.901" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="evenOdd" - android:pathData="M154.225,51.624L152.831,41.767C152.831,41.767 158.891,42.036 158.751,33.581C158.725,32.014 158.617,29.332 157.171,27.299L152.831,26.017L148.117,36.731L145.829,50.348L150.689,54.088L154.76,53.981L154.225,51.624Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="evenOdd" - android:pathData="M182.883,191.747L183.776,197.888C183.898,198.733 184.664,199.333 185.513,199.247C189.536,198.839 200.322,197.429 202.831,193.868C203.182,193.369 202.853,192.674 202.246,192.604C198.695,192.195 187.537,190.761 186.933,188.854L182.883,191.747Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="evenOdd" - android:pathData="M134.197,100.94L135.707,82.488L143.507,84.716L138.032,103.693C138.032,103.693 136.655,114.708 132.033,111.462C126.297,107.434 134,103.202 134.197,100.94" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B1DAEF" - android:fillType="evenOdd" - android:pathData="M135.67,82.757C135.67,82.757 135.682,82.664 135.706,82.488C136.116,79.465 139.969,51.87 144.29,50.759C148.861,49.584 151.186,53.93 153.275,51.579C155.365,49.228 167.657,68.68 160.609,88.191L142.546,88.208L148.6,61.077L143.506,84.716C143.506,84.716 136.976,86.414 135.67,82.757" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#663014" - android:fillType="evenOdd" - android:pathData="M158.617,33.624C158.617,33.624 163.117,30.838 160.225,23.338C160.225,23.338 159.581,20.124 155.081,20.231C155.081,20.231 147.904,13.803 141.154,19.267C134.404,24.731 139.01,30.196 139.01,30.196C139.01,30.196 130.01,38.338 133.117,49.374C133.117,49.374 136.439,56.553 140.296,54.088C144.154,51.624 143.939,56.981 145.975,49.803C148.01,42.624 151.546,43.696 150.154,31.588C150.154,31.588 154.975,31.91 156.046,26.981C156.046,26.981 159.154,28.053 158.617,33.624" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="evenOdd" - android:pathData="M174.465,85.015C174.224,85.446 180.069,86.345 180.209,86.451C181.007,87.202 188.119,75.833 188.657,75.49C188.921,75.426 188.758,74.325 188.238,74.061L183.193,73.016C182.092,71.733 175.057,83.594 174.435,83.895C174.078,84.306 174.269,84.64 174.465,85.015" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="evenOdd" - android:pathData="M185.353,79.517C186.605,79.055 185.192,81.609 184.448,82.657C183.768,83.615 183.506,84.231 183.043,84.007C182.581,83.783 182.871,82.733 183.446,81.546C184.021,80.358 184.453,79.849 185.353,79.517" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B8E0FA" - android:fillType="evenOdd" - android:pathData="M289.647,143.193C289.647,143.193 275.844,123.938 285.557,121.552C295.27,119.167 294.588,131.095 301.064,126.664C307.539,122.234 296.137,101.587 311.549,99.542C330.6,97.014 316.155,116.923 314.812,121.816C314.526,122.856 314.83,123.986 315.644,124.694C317.304,126.138 322.675,126.507 330.713,121.552C343.153,113.884 334.292,149.498 310.947,150.52C310.947,150.52 296.293,150.861 289.647,143.193" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M308.297,150.626C308.286,150.54 307.976,141.877 307.691,132.288C307.308,119.383 309.324,108.938 311.874,105.282L312.383,105.799C306.406,114.37 309.579,150.215 309.621,150.559L308.297,150.626Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M308.527,144.519C308.483,144.505 304.034,143.113 299.377,140.488C295.061,138.054 289.676,134.03 288.533,128.683L288.835,128.393C290.967,138.374 308.346,143.275 308.522,143.329L308.527,144.519Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M308.463,141.134L308.351,139.967C308.521,139.914 325.376,135.176 328.18,127.815L328.549,128.127C327.34,131.301 323.587,134.455 317.395,137.504C312.803,139.765 308.506,141.12 308.463,141.134" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B8E0FA" - android:fillType="evenOdd" - android:pathData="M39.967,60.324C34.448,60.474 31.29,68.901 31.027,72.903C29.901,90.032 20.129,102.25 21.034,128.933C21.627,146.416 27.345,164.38 33.393,167.524C45.038,173.58 52.852,160.093 54.166,147.514C55.481,134.936 56.27,116.64 47.592,93.771C42.775,81.072 51.018,60.022 39.967,60.324" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M39.532,169.676C38.503,164.926 36.195,141.121 36.134,115.351C36.097,99.704 36.887,83.326 39.295,70.034L39.942,70.16C37.543,83.409 36.756,99.743 36.793,115.351C36.853,141.068 39.152,164.797 40.175,169.526L39.532,169.676Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M36.821,139.765C36.845,139.723 44.426,126.334 45.595,120.937L46.239,121.089C45.048,126.59 37.414,140.073 37.39,140.116L36.821,139.765Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M36.202,109.494C36.186,109.472 29.654,101.151 30.093,94.944L30.691,94.996C30.272,100.922 36.642,109.03 36.659,109.052L36.202,109.494Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B8E0FA" - android:fillType="evenOdd" - android:pathData="M64.086,170.605C69.327,166.699 73.886,159.852 74.565,143.816C75.243,127.778 73.912,123.845 70.163,122.444C66.414,121.044 63.466,123.039 61.363,128.223C59.26,133.408 58.38,138.837 56.332,140.581C54.284,142.326 42.57,152.046 45.871,163.061C49.173,174.076 58.687,173.186 64.086,170.605" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M52.684,171.636C54.725,168.818 59.138,160.881 62.746,151.791C65.165,145.695 67.226,139.075 67.968,133.125L67.457,133.059C66.72,138.967 64.673,145.543 62.268,151.603C58.677,160.65 54.292,168.538 52.267,171.335L52.684,171.636Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M59.733,158.59C59.341,158.886 67.845,155.446 70.248,150.852L69.807,150.618C67.496,155.04 59.871,157.952 59.849,157.961L59.733,158.59Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M55.587,166.996C55.578,166.976 52.442,159.996 52.701,155.332L52.227,155.32C51.961,160.126 55.149,167.221 55.158,167.241L55.587,166.996Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#D8ECF9" - android:fillType="evenOdd" - android:pathData="M268.96,24.18C266.689,24.64 263.882,26.714 263.977,27.321C264.01,27.533 271.093,27.332 278.373,27.321C289.35,27.303 294.837,27.321 295.537,27.321L309.378,27.321C310.459,27.321 308.476,23.758 307.717,23.133C306.404,22.051 304.412,21.576 302.734,22.086C300.436,22.784 300.479,24.798 298.305,25.227C296.886,25.507 295.362,24.947 294.429,24.18C293.007,23.011 293.598,21.888 292.214,20.515C291.245,19.554 289.981,19.112 288.338,19.469C286.422,19.885 286.678,19.992 283.909,22.086C282.937,22.821 281.887,24.934 280.034,25.227C275.005,26.02 272.907,23.38 268.96,24.18" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#D8ECF9" - android:fillType="evenOdd" - android:pathData="M8.725,38.32L38.176,38.32C37.043,36.768 35.923,36.277 35.108,36.117C33.106,35.723 32.26,37.186 28.973,37.218C28.388,37.224 26.945,37.227 25.291,36.668C24.31,36.336 24.282,36.154 22.837,35.566C21.642,35.08 20.594,34.653 19.156,34.465C18.058,34.32 17.234,34.381 16.088,34.465C14.787,34.56 13.984,34.625 13.02,35.015C12.304,35.305 11.853,35.631 11.179,36.117C10.53,36.586 9.644,37.301 8.725,38.32" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#D8ECF9" - android:fillType="evenOdd" - android:pathData="M96.763,28.32L59.829,28.32C61.249,26.032 62.655,25.309 63.676,25.073C66.188,24.492 67.248,26.649 71.371,26.696C72.104,26.705 73.913,26.709 75.988,25.885C77.218,25.396 77.253,25.128 79.065,24.261C80.563,23.545 81.879,22.916 83.682,22.638C85.059,22.425 86.092,22.514 87.529,22.638C89.16,22.778 90.167,22.874 91.377,23.449C92.274,23.876 92.84,24.356 93.685,25.073C94.5,25.764 95.611,26.819 96.763,28.32" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M238.975,54.32L196.975,54.32C196.423,54.32 195.975,53.872 195.975,53.32C195.975,52.768 196.423,52.32 196.975,52.32L238.975,52.32C239.527,52.32 239.975,52.768 239.975,53.32C239.975,53.872 239.527,54.32 238.975,54.32" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M230.975,61.32L196.975,61.32C196.423,61.32 195.975,60.872 195.975,60.32C195.975,59.768 196.423,59.32 196.975,59.32L230.975,59.32C231.527,59.32 231.975,59.768 231.975,60.32C231.975,60.872 231.527,61.32 230.975,61.32" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M224.975,47.32L196.975,47.32C196.423,47.32 195.975,46.872 195.975,46.32C195.975,45.768 196.423,45.32 196.975,45.32L224.975,45.32C225.527,45.32 225.975,45.768 225.975,46.32C225.975,46.872 225.527,47.32 224.975,47.32" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="evenOdd" - android:pathData="M243.613,65.207L191.997,65.207C189.616,65.207 187.687,63.277 187.687,60.897L187.687,39.517C187.687,37.136 189.616,35.207 191.997,35.207L243.613,35.207C245.993,35.207 247.923,37.136 247.923,39.517L247.923,60.897C247.923,63.277 245.993,65.207 243.613,65.207" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M237.687,51.091L195.687,51.091C195.135,51.091 194.687,50.643 194.687,50.091C194.687,49.539 195.135,49.091 195.687,49.091L237.687,49.091C238.239,49.091 238.687,49.539 238.687,50.091C238.687,50.643 238.239,51.091 237.687,51.091" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M229.687,58.091L195.687,58.091C195.135,58.091 194.687,57.643 194.687,57.091C194.687,56.539 195.135,56.091 195.687,56.091L229.687,56.091C230.239,56.091 230.687,56.539 230.687,57.091C230.687,57.643 230.239,58.091 229.687,58.091" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M223.687,44.091L195.687,44.091C195.135,44.091 194.687,43.643 194.687,43.091C194.687,42.539 195.135,42.091 195.687,42.091L223.687,42.091C224.239,42.091 224.687,42.539 224.687,43.091C224.687,43.643 224.239,44.091 223.687,44.091" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="evenOdd" - android:pathData="M197.376,61.685L188.855,68.927C188.366,69.342 187.687,68.926 187.687,68.212L187.687,60.97C187.687,60.485 188.018,60.092 188.425,60.092L196.947,60.092C197.666,60.092 197.961,61.188 197.376,61.685" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> + <path + android:pathData="M231.36,151.25c42.67,0 61.25,-26.91 101.09,-21.81a66.57,66.57 0,0 1,27.66 10.38c-0.11,4.74 -0.23,35 -0.23,35L0,176.85s0,-31.24 0,-36.45c6.9,-1.48 11.59,0.22 21.43,2.49 43.5,10 94,-16 117.51,-16.87 2.19,-0.09 4.31,-0.13 6.34,-0.13C196.07,125.89 198.49,151.25 231.36,151.25Z" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M107,167.43c-35.92,0 -51.56,-17.55 -85.1,-14.23A66.66,66.66 0,0 0,0 159.33c0,4.23 0,23.49 0,23.49l360,1.05s0,-12.82 0,-16.86c-7.25,-2 -41.14,-10.34 -78.22,-1.31 -35.85,8.74 -77.15,-14.13 -96.93,-14.73 -1.85,-0.05 -3.63,-0.08 -5.34,-0.08C136.75,150.89 134.71,167.43 107,167.43Z" + android:fillColor="#d8ecf9" + android:fillType="evenOdd"/> + <path + android:pathData="M289.11,143.77s-13.8,-19.26 -4.08,-21.65 9,9.55 15.5,5.12S295.6,102.16 311,100.11c19.05,-2.52 4.6,17.39 3.26,22.28a2.82,2.82 0,0 0,0.83 2.88c1.66,1.44 7,1.81 15.07,-3.15 12.44,-7.66 3.58,27.95 -19.77,29C310.41,151.09 295.76,151.43 289.11,143.77Z" + android:fillColor="#b8e0fa"/> + <path + android:pathData="M307.77,151.2c0,-0.09 -0.33,-8.75 -0.61,-18.34 -0.38,-12.91 1.63,-23.35 4.18,-27l0.51,0.52c-6,8.57 -2.8,44.42 -2.76,44.76Z" + android:fillColor="#fff"/> + <path + android:pathData="M308,145.09a52.58,52.58 0,0 1,-9.15 -4c-4.31,-2.43 -9.7,-6.46 -10.84,-11.8l0.3,-0.3c2.14,10 19.51,14.89 19.69,14.94Z" + android:fillColor="#fff"/> + <path + android:pathData="M307.93,141.71l-0.11,-1.17c0.17,0 17,-4.79 19.83,-12.15l0.37,0.31c-1.21,3.17 -5,6.33 -11.16,9.38A72.46,72.46 0,0 1,307.93 141.71Z" + android:fillColor="#fff"/> + <path + android:pathData="M39.44,60.9c-5.52,0.15 -8.68,8.57 -8.95,12.57 -1.12,17.13 -10.89,29.35 -10,56C21.1,147 26.81,165 32.86,168.1c11.65,6.05 19.46,-7.44 20.77,-20s2.11,-30.88 -6.57,-53.75c-4.82,-12.7 3.43,-33.75 -7.62,-33.44" + android:fillColor="#b8e0fa" + android:fillType="evenOdd"/> + <path + android:pathData="M39,170.25c-1,-4.75 -3.34,-28.56 -3.4,-54.33 0,-15.64 0.76,-32 3.16,-45.31l0.65,0.12C37,84 36.22,100.32 36.26,115.92c0.06,25.72 2.36,49.45 3.38,54.18Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M36.29,140.34s7.6,-13.43 8.77,-18.83l0.65,0.15c-1.19,5.5 -8.83,19 -8.85,19Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M35.67,110.07s-6.55,-8.35 -6.11,-14.55l0.6,0c-0.42,5.92 5.95,14 6,14.05Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M63.55,171.18c5.25,-3.91 9.8,-10.76 10.48,-26.79s-0.65,-20 -4.4,-21.37 -6.7,0.59 -8.8,5.77 -3,10.62 -5,12.36S42,152.62 45.34,163.63s12.82,10.13 18.21,7.55" + android:fillColor="#b8e0fa" + android:fillType="evenOdd"/> + <path + android:pathData="M52.15,172.21c2,-2.82 6.46,-10.76 10.06,-19.85a80,80 0,0 0,5.23 -18.66l-0.51,-0.07a79.62,79.62 0,0 1,-5.19 18.55c-3.59,9 -8,16.93 -10,19.73Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M59.2,159.16c-0.39,0.3 8.11,-3.14 10.52,-7.74l-0.44,-0.23c-2.32,4.42 -9.94,7.33 -10,7.34Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M55.05,167.57s-3.14,-7 -2.88,-11.67h-0.48c-0.26,4.81 2.93,11.9 2.94,11.92Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M268.43,24.75c-2.27,0.46 -5.08,2.54 -5,3.14 0,0.21 7.11,0 14.39,0 11,0 16.47,0 17.16,0h13.85c1.08,0 -0.91,-3.56 -1.66,-4.19a5.62,5.62 0,0 0,-5 -1c-2.3,0.7 -2.25,2.71 -4.43,3.14a4.9,4.9 0,0 1,-3.87 -1.05c-1.42,-1.17 -0.83,-2.29 -2.22,-3.66A4,4 0,0 0,287.81 20c-1.92,0.42 -1.66,0.52 -4.43,2.62 -1,0.73 -2,2.85 -3.88,3.14C274.47,26.59 272.38,24 268.43,24.75Z" + android:fillColor="#d8ecf9"/> + <path + android:pathData="M8.19,38.89H37.64a5,5 0,0 0,-3.06 -2.2c-2,-0.39 -2.85,1.07 -6.14,1.1a10.86,10.86 0,0 1,-3.68 -0.55c-1,-0.33 -1,-0.51 -2.45,-1.1A13.94,13.94 0,0 0,18.62 35a13,13 0,0 0,-3.06 0,9.15 9.15,0 0,0 -3.07,0.55 7.8,7.8 0,0 0,-1.84 1.1A15.57,15.57 0,0 0,8.19 38.89Z" + android:fillColor="#d8ecf9"/> + <path + android:pathData="M96.23,28.89H59.3c1.42,-2.29 2.82,-3 3.84,-3.24 2.52,-0.59 3.58,1.57 7.7,1.62a12,12 0,0 0,4.62 -0.81c1.23,-0.49 1.26,-0.76 3.07,-1.63a15.91,15.91 0,0 1,4.62 -1.62,15 15,0 0,1 3.85,0 10.13,10.13 0,0 1,3.84 0.81,9.85 9.85,0 0,1 2.31,1.63A20.56,20.56 0,0 1,96.23 28.89Z" + android:fillColor="#d8ecf9"/> + <path + android:pathData="M196.44,52.89L238.44,52.89A1,1 0,0 1,239.44 53.89L239.44,53.89A1,1 0,0 1,238.44 54.89L196.44,54.89A1,1 0,0 1,195.44 53.89L195.44,53.89A1,1 0,0 1,196.44 52.89z" + android:fillColor="#fff"/> + <path + android:pathData="M196.44,59.89L230.44,59.89A1,1 0,0 1,231.44 60.89L231.44,60.89A1,1 0,0 1,230.44 61.89L196.44,61.89A1,1 0,0 1,195.44 60.89L195.44,60.89A1,1 0,0 1,196.44 59.89z" + android:fillColor="#fff"/> + <path + android:pathData="M196.44,45.89L224.44,45.89A1,1 0,0 1,225.44 46.89L225.44,46.89A1,1 0,0 1,224.44 47.89L196.44,47.89A1,1 0,0 1,195.44 46.89L195.44,46.89A1,1 0,0 1,196.44 45.89z" + android:fillColor="#fff"/> + <path + android:pathData="M191.46,35.78L248.08,35.78A4.31,4.31 0,0 1,252.39 40.09L252.39,61.47A4.31,4.31 0,0 1,248.08 65.78L191.46,65.78A4.31,4.31 0,0 1,187.15 61.47L187.15,40.09A4.31,4.31 0,0 1,191.46 35.78z" + android:fillColor="#657887"/> + <path + android:pathData="M195.15,49.66L237.15,49.66A1,1 0,0 1,238.15 50.66L238.15,50.66A1,1 0,0 1,237.15 51.66L195.15,51.66A1,1 0,0 1,194.15 50.66L194.15,50.66A1,1 0,0 1,195.15 49.66z" + android:fillColor="#fff"/> + <path + android:pathData="M195.15,56.66L229.15,56.66A1,1 0,0 1,230.15 57.66L230.15,57.66A1,1 0,0 1,229.15 58.66L195.15,58.66A1,1 0,0 1,194.15 57.66L194.15,57.66A1,1 0,0 1,195.15 56.66z" + android:fillColor="#fff"/> + <path + android:pathData="M195.15,42.66L223.15,42.66A1,1 0,0 1,224.15 43.66L224.15,43.66A1,1 0,0 1,223.15 44.66L195.15,44.66A1,1 0,0 1,194.15 43.66L194.15,43.66A1,1 0,0 1,195.15 42.66z" + android:fillColor="#fff"/> + <path + android:pathData="M196.84,62.26l-8.52,7.24c-0.49,0.41 -1.17,0 -1.17,-0.72V61.54a0.83,0.83 0,0 1,0.74 -0.88h8.52C197.13,60.66 197.43,61.76 196.84,62.26Z" + android:fillColor="#657887"/> + <path + android:pathData="M159.37,64.07s8,7.48 11,9.5c2.5,1.67 10.13,5.18 10.13,5.18l-2.92,3.94s-7.26,-1.62 -9.49,-2.66 -8.36,-5.7 -8.36,-5.7Z" + android:fillColor="#f6b893"/> + <path + android:pathData="M121.41,188.86l-2.89,5.48a1.59,1.59 0,0 0,0.61 2.12c3.48,2 13,7.23 17.13,5.83a0.81,0.81 0,0 0,0.27 -1.36c-2.62,-2.42 -10.79,-10.13 -10.16,-12Z" + android:fillColor="#4a4a4a"/> + <path + android:pathData="M121.14,189.38l5.58,0.74 27.6,-63.72L140,97.53 139.78,137S127,162.52 124.92,172.52 121.14,189.38 121.14,189.38Z" + android:fillColor="#b96161"/> + <path + android:pathData="M139,88.31l21.66,0.29S179.47,182.73 187,189.09l-4,2.88s-23.1,-31.47 -21.08,-51.68C161.85,140.29 133.27,94.38 139,88.31Z" + android:fillColor="#c66a61"/> + <path + android:pathData="M154.33,52.1l-1.39,-9.84s6,0.27 5.9,-8.17c0,-1.56 -0.13,-4.24 -1.57,-6.27l-5.54,-1.77 -3.5,11.19L144.9,50.81l5.9,3.75 4.06,-0.11Z" + android:fillColor="#f6b893"/> + <path + android:pathData="M182.93,192l0.89,6.13a1.6,1.6 0,0 0,1.74 1.36c4,-0.41 14.78,-1.81 17.28,-5.37a0.8,0.8 0,0 0,-0.58 -1.26c-3.54,-0.41 -14.68,-1.84 -15.28,-3.74Z" + android:fillColor="#4a4a4a"/> + <path + android:pathData="M134.33,101.33l1.51,-18.42 7.79,2.22 -5.47,19s-1.37,11 -6,7.75C126.45,107.81 134.14,103.59 134.33,101.33Z" + android:fillColor="#f6b893"/> + <path + android:pathData="M153.38,52.06c-2.09,2.34 -4.41,-2 -9,-0.82 -4.31,1.11 -8.16,28.65 -8.57,31.67 0,0.18 0,0.27 0,0.27 1.18,3.29 6.59,2.24 7.64,2l-0.77,3.44 18,0C167.73,69.13 155.46,49.71 153.38,52.06Z" + android:fillColor="#b1daef"/> + <path + android:pathData="M158.85,34.16s4.35,-2.81 1.46,-10.29c0,0 -0.64,-3.21 -5.13,-3.11 0,0 -7.16,-6.41 -13.9,-1s-2.14,10.91 -2.14,10.91 -9,8.13 -5.88,19.15c0,0 3.31,7.16 7.16,4.7s3.64,2.89 5.67,-4.28 5.56,-6.09 4.17,-18.18a5.69,5.69 0,0 0,5.88 -4.6S158.7,28.71 158.85,34.16Z" + android:fillColor="#663014"/> + <path + android:pathData="M174.78,85.45a33.23,33.23 0,0 0,5.52 1.71,1.17 1.17,0 0,0 1.26,-0.46c1.62,-3.07 6.48,-10.55 6.79,-11s0.3,-0.62 -0.13,-0.9 -4.17,-1.28 -5.3,-1.61c-0.38,-0.11 -0.72,0.5 -0.84,0.65 -1.88,2.24 -7,10 -7.33,10.49S174.41,85.25 174.78,85.45Z" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M185.65,79.42c1.54,-0.32 -0.41,2.61 -1.15,3.66s-1.3,1.9 -1.76,1.68 -0.09,-1.72 0.49,-2.91A4.28,4.28 0,0 1,185.65 79.42Z" + android:fillColor="#f6b893"/> </vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_illustration_test.xml b/Corona-Warn-App/src/main/res/drawable/ic_illustration_test.xml index 1d6091721146a676eff60f008ef613717f0746c0..4ded908d3ff81e05bb8cffbaa76896d8e8aa9f00 100644 --- a/Corona-Warn-App/src/main/res/drawable/ic_illustration_test.xml +++ b/Corona-Warn-App/src/main/res/drawable/ic_illustration_test.xml @@ -3,764 +3,499 @@ android:height="220dp" android:viewportWidth="360" android:viewportHeight="220"> - <group> - <path - android:fillColor="#B1BBC2" - android:fillType="nonZero" - android:pathData="M68.11,118.984L44.963,118.907C44.471,118.905 44.07,119.304 44.069,119.796L44.044,127.033C44.043,127.527 44.441,127.927 44.933,127.929L68.08,128.005C68.572,128.007 68.974,127.609 68.975,127.116L68.999,119.879C69,119.386 68.602,118.986 68.11,118.984" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#94A1AB" - android:fillType="nonZero" - android:pathData="M68.155,106.455L45.008,106.378C44.515,106.376 44.115,106.775 44.113,107.267L44.089,114.504C44.087,114.997 44.486,115.398 44.978,115.4L68.125,115.476C68.617,115.478 69.018,115.08 69.02,114.587L69.044,107.35C69.046,106.857 68.648,106.457 68.155,106.455" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BE0F2D" - android:fillType="nonZero" - android:pathData="M45.347,115.399C45.347,115.399 45.033,115.4 45.02,115.4C44.813,115.399 45.047,115.403 44.841,115.399C44.671,115.394 44.135,115.2 44.117,114.627C44.116,113.992 44.117,109.477 44.117,107.319C44.112,106.562 44.725,106.384 44.941,106.383C45.129,106.383 44.821,106.384 45.009,106.383C45.049,106.382 45.346,106.383 45.346,106.383L45.347,115.399Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#748692" - android:fillType="nonZero" - android:pathData="M68.192,93.929L45.045,93.852C44.553,93.85 44.152,94.249 44.15,94.741L44.126,101.978C44.125,102.472 44.523,102.872 45.016,102.874L68.163,102.95C68.655,102.952 69.056,102.554 69.057,102.062L69.081,94.824C69.083,94.331 68.685,93.931 68.192,93.929" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M68.225,81.407L45.078,81.33C44.586,81.329 44.184,81.727 44.184,82.219L44.159,89.456C44.158,89.95 44.556,90.35 45.048,90.352L68.195,90.428C68.687,90.43 69.088,90.032 69.089,89.539L69.113,82.302C69.115,81.809 68.717,81.409 68.225,81.407" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E7EAEF" - android:fillType="nonZero" - android:pathData="M56.917,110.785C60.353,110.785 63.137,108 63.137,104.564C63.137,101.129 60.353,98.343 56.917,98.343C53.481,98.343 50.697,101.129 50.697,104.564C50.697,108 53.481,110.785 56.917,110.785" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M50.285,111.197l13.266,0l0,-13.265l-13.266,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M56.76,99.789C56.33,100.049 54.947,100.819 53.558,100.922C53.389,100.933 53.26,101.07 53.26,101.236L53.26,106.18C53.26,106.939 53.662,107.644 54.321,108.04C55.389,108.681 56.559,109.288 56.835,109.429C56.873,109.448 56.918,109.448 56.956,109.429C57.231,109.288 58.402,108.681 59.469,108.04C60.129,107.644 60.532,106.939 60.532,106.18L60.532,101.236C60.532,101.07 60.401,100.933 60.233,100.922C58.844,100.819 57.459,100.049 57.031,99.789C56.989,99.765 56.942,99.752 56.895,99.752C56.848,99.752 56.801,99.765 56.76,99.789" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M55.631,103.616L55.409,103.616C55.114,103.616 54.875,103.861 54.875,104.163L54.875,106.033C54.875,106.334 55.114,106.579 55.409,106.579L58.238,106.579C58.533,106.579 58.772,106.334 58.772,106.033L58.772,104.163C58.772,103.861 58.533,103.616 58.238,103.616L58.016,103.616C57.977,102.801 57.458,102.155 56.824,102.155C56.19,102.155 55.67,102.801 55.631,103.616M56.824,102.68C57.171,102.68 57.468,103.1 57.502,103.616L56.146,103.616C56.18,103.1 56.476,102.68 56.824,102.68" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M54.277,107.178l5.094,0l0,-5.622l-5.094,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M56.278,104.831C56.278,105.018 56.387,105.18 56.547,105.267L56.547,105.825C56.547,105.898 56.61,105.957 56.688,105.957L56.943,105.957C57.021,105.957 57.084,105.898 57.084,105.825L57.084,105.267C57.245,105.18 57.353,105.018 57.353,104.831C57.353,104.551 57.112,104.326 56.816,104.326C56.518,104.326 56.278,104.551 56.278,104.831" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M49.691,87.03L49.691,86.536L49.95,86.536L49.95,86.171L49.691,86.171L49.691,84.746L49.233,84.746L48.281,86.251L48.301,86.536L49.238,86.536L49.238,87.03L49.691,87.03ZM49.238,86.171L48.733,86.171L49.208,85.416L49.238,85.364L49.238,86.171ZM50.995,87.062C51.143,87.062 51.277,87.028 51.394,86.961C51.512,86.894 51.603,86.801 51.667,86.681C51.732,86.56 51.764,86.426 51.764,86.277C51.764,86.045 51.705,85.858 51.588,85.716C51.471,85.573 51.313,85.502 51.114,85.502C50.929,85.502 50.776,85.564 50.654,85.687C50.68,85.503 50.755,85.359 50.88,85.256C51.005,85.152 51.17,85.099 51.375,85.096L51.375,85.096L51.419,85.096L51.419,84.722L51.343,84.722C51.112,84.723 50.909,84.776 50.734,84.88C50.558,84.984 50.424,85.131 50.33,85.321C50.237,85.511 50.19,85.73 50.19,85.978L50.19,85.978L50.19,86.141C50.19,86.42 50.264,86.643 50.412,86.811C50.56,86.978 50.754,87.062 50.995,87.062ZM50.986,86.696C50.878,86.696 50.794,86.654 50.734,86.568C50.675,86.483 50.645,86.365 50.645,86.213L50.645,86.213L50.645,86.075C50.673,86.012 50.717,85.962 50.777,85.923C50.836,85.885 50.903,85.866 50.976,85.866C51.079,85.866 51.16,85.904 51.221,85.981C51.282,86.057 51.312,86.157 51.312,86.282C51.312,86.404 51.282,86.504 51.222,86.581C51.162,86.658 51.083,86.696 50.986,86.696ZM52.815,87.062C52.973,87.062 53.11,87.03 53.226,86.965C53.342,86.901 53.432,86.811 53.494,86.694C53.556,86.577 53.587,86.445 53.587,86.298C53.587,86.055 53.525,85.866 53.402,85.731C53.279,85.596 53.108,85.529 52.89,85.529C52.769,85.529 52.655,85.558 52.547,85.615L52.547,85.615L52.603,85.124L53.512,85.124L53.512,84.746L52.231,84.746L52.1,85.907L52.461,85.996L52.504,85.956C52.571,85.899 52.659,85.871 52.766,85.871C52.884,85.871 52.974,85.905 53.038,85.974C53.102,86.043 53.134,86.143 53.134,86.273C53.134,86.408 53.106,86.512 53.051,86.586C52.995,86.659 52.916,86.696 52.814,86.696C52.722,86.696 52.647,86.67 52.59,86.617C52.533,86.564 52.5,86.49 52.49,86.395L52.49,86.395L52.042,86.395C52.046,86.525 52.082,86.64 52.151,86.742C52.219,86.843 52.312,86.922 52.431,86.978C52.549,87.034 52.677,87.062 52.815,87.062ZM54.643,87.062C54.881,87.062 55.068,87.003 55.206,86.885C55.345,86.768 55.414,86.607 55.414,86.404C55.414,86.278 55.381,86.168 55.316,86.074C55.251,85.98 55.164,85.907 55.053,85.854C55.15,85.802 55.226,85.734 55.282,85.648C55.337,85.562 55.365,85.464 55.365,85.353C55.365,85.156 55.3,85.001 55.17,84.886C55.039,84.772 54.863,84.714 54.642,84.714C54.419,84.714 54.243,84.772 54.113,84.888C53.983,85.003 53.918,85.158 53.918,85.353C53.918,85.464 53.946,85.562 54.001,85.648C54.056,85.734 54.132,85.802 54.229,85.854C54.119,85.906 54.032,85.979 53.967,86.073C53.902,86.167 53.87,86.278 53.87,86.404C53.87,86.606 53.939,86.766 54.078,86.885C54.217,87.003 54.406,87.062 54.643,87.062ZM54.643,85.678C54.557,85.678 54.491,85.65 54.444,85.595C54.397,85.539 54.373,85.466 54.373,85.375C54.373,85.283 54.397,85.211 54.444,85.158C54.491,85.106 54.557,85.08 54.642,85.08C54.727,85.08 54.794,85.107 54.841,85.161C54.888,85.215 54.911,85.286 54.911,85.375C54.911,85.466 54.888,85.539 54.842,85.595C54.795,85.65 54.729,85.678 54.643,85.678ZM54.643,86.696C54.543,86.696 54.464,86.666 54.408,86.607C54.351,86.547 54.323,86.469 54.323,86.371C54.323,86.271 54.352,86.191 54.409,86.132C54.467,86.073 54.544,86.043 54.64,86.043C54.737,86.043 54.815,86.073 54.872,86.133C54.93,86.193 54.959,86.272 54.959,86.371C54.959,86.473 54.931,86.552 54.875,86.61C54.819,86.667 54.741,86.696 54.643,86.696ZM56.78,87.03L57.575,84.746L57.051,84.746L56.533,86.464L56.019,84.746L55.496,84.746L56.289,87.03L56.78,87.03ZM58.261,87.03L58.261,86.194L58.636,86.194L59.064,87.03L59.57,87.03L59.57,87.008L59.075,86.075C59.212,86.013 59.315,85.93 59.382,85.826C59.45,85.722 59.483,85.592 59.483,85.436C59.483,85.217 59.41,85.047 59.264,84.926C59.117,84.806 58.909,84.746 58.639,84.746L58.639,84.746L57.79,84.746L57.79,87.03L58.261,87.03ZM58.641,85.813L58.261,85.813L58.261,85.127L58.639,85.127C58.766,85.127 58.86,85.158 58.921,85.22C58.982,85.281 59.013,85.366 59.013,85.474C59.013,85.58 58.98,85.662 58.915,85.723C58.85,85.783 58.759,85.813 58.641,85.813L58.641,85.813ZM60.462,87.03L61.346,85L61.346,84.746L59.733,84.746L59.733,85.113L60.869,85.113L59.984,87.03L60.462,87.03ZM63.202,87.03L63.202,86.665L62.22,86.665L62.739,86.117C62.882,85.961 62.982,85.825 63.041,85.708C63.099,85.591 63.128,85.475 63.128,85.362C63.128,85.156 63.063,84.997 62.933,84.884C62.803,84.771 62.62,84.714 62.385,84.714C62.231,84.714 62.093,84.747 61.972,84.813C61.851,84.878 61.757,84.968 61.69,85.083C61.624,85.198 61.591,85.325 61.591,85.464L61.591,85.464L62.046,85.464C62.046,85.349 62.075,85.257 62.134,85.186C62.193,85.115 62.274,85.08 62.377,85.08C62.472,85.08 62.545,85.109 62.596,85.167C62.648,85.225 62.673,85.305 62.673,85.406C62.673,85.481 62.649,85.559 62.6,85.642C62.552,85.724 62.477,85.821 62.375,85.932L62.375,85.932L61.636,86.72L61.636,87.03L63.202,87.03ZM64.357,87.062C64.61,87.062 64.812,87.006 64.961,86.893C65.111,86.781 65.186,86.626 65.186,86.428C65.186,86.25 65.124,86.102 65.002,85.982C64.88,85.863 64.684,85.763 64.417,85.683C64.271,85.639 64.161,85.592 64.086,85.541C64.012,85.491 63.974,85.429 63.974,85.355C63.974,85.275 64.006,85.211 64.07,85.162C64.134,85.114 64.223,85.089 64.338,85.089C64.457,85.089 64.55,85.118 64.616,85.177C64.682,85.235 64.715,85.316 64.715,85.421L64.715,85.421L65.186,85.421C65.186,85.283 65.15,85.161 65.08,85.053C65.009,84.946 64.91,84.862 64.782,84.803C64.655,84.744 64.509,84.714 64.346,84.714C64.184,84.714 64.038,84.742 63.907,84.796C63.777,84.85 63.677,84.926 63.608,85.023C63.538,85.12 63.503,85.23 63.503,85.353C63.503,85.591 63.633,85.779 63.893,85.92C63.988,85.971 64.117,86.023 64.28,86.076C64.443,86.128 64.556,86.179 64.619,86.226C64.682,86.274 64.713,86.342 64.713,86.431C64.713,86.513 64.682,86.576 64.619,86.622C64.556,86.667 64.469,86.69 64.357,86.69C64.056,86.69 63.905,86.564 63.905,86.312L63.905,86.312L63.433,86.312C63.433,86.459 63.471,86.589 63.547,86.701C63.622,86.813 63.732,86.901 63.877,86.965C64.021,87.03 64.181,87.062 64.357,87.062Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M48.9,99.496L48.9,98.871L48.853,97.795L49.468,99.496L49.791,99.496L50.408,97.793L50.361,98.871L50.361,99.496L50.833,99.496L50.833,97.211L50.215,97.211L49.631,98.868L49.044,97.211L48.429,97.211L48.429,99.496L48.9,99.496ZM52.3,99.496L52.3,97.208L52.251,97.208L51.305,97.547L51.305,97.916L51.846,97.748L51.846,99.496L52.3,99.496ZM53.764,99.527C54.008,99.527 54.203,99.466 54.351,99.344C54.499,99.221 54.574,99.059 54.574,98.856C54.574,98.73 54.542,98.621 54.479,98.529C54.415,98.437 54.319,98.368 54.191,98.322C54.294,98.275 54.378,98.208 54.442,98.12C54.506,98.032 54.537,97.936 54.537,97.831C54.537,97.628 54.469,97.469 54.332,97.353C54.195,97.238 54.005,97.18 53.764,97.18C53.625,97.18 53.497,97.207 53.382,97.26C53.266,97.313 53.176,97.387 53.112,97.482C53.048,97.577 53.015,97.684 53.015,97.803L53.015,97.803L53.469,97.803C53.469,97.727 53.498,97.665 53.557,97.617C53.615,97.569 53.688,97.546 53.775,97.546C53.871,97.546 53.947,97.571 54.002,97.622C54.056,97.674 54.084,97.745 54.084,97.837C54.084,97.933 54.056,98.009 54.001,98.067C53.945,98.124 53.86,98.153 53.745,98.153L53.745,98.153L53.503,98.153L53.503,98.507L53.743,98.507C53.995,98.507 54.12,98.621 54.12,98.849C54.12,98.944 54.089,99.019 54.028,99.076C53.967,99.133 53.883,99.162 53.775,99.162C53.681,99.162 53.601,99.135 53.537,99.08C53.473,99.026 53.441,98.956 53.441,98.87L53.441,98.87L52.987,98.87C52.987,99.068 53.06,99.227 53.204,99.347C53.349,99.467 53.536,99.527 53.764,99.527ZM55.206,99.518L55.317,99.516C55.665,99.502 55.933,99.386 56.122,99.168C56.312,98.95 56.406,98.651 56.406,98.27L56.406,98.27L56.406,98.103C56.405,97.921 56.372,97.759 56.307,97.618C56.243,97.477 56.152,97.368 56.034,97.293C55.917,97.218 55.783,97.18 55.633,97.18C55.486,97.18 55.354,97.215 55.237,97.284C55.12,97.354 55.029,97.451 54.963,97.576C54.898,97.701 54.865,97.838 54.865,97.988C54.865,98.223 54.926,98.41 55.047,98.549C55.169,98.688 55.33,98.757 55.532,98.757C55.69,98.757 55.828,98.699 55.946,98.583C55.914,98.935 55.701,99.12 55.306,99.138L55.306,99.138L55.206,99.14L55.206,99.518ZM55.644,98.41C55.54,98.41 55.46,98.37 55.403,98.29C55.346,98.21 55.317,98.108 55.317,97.983C55.317,97.858 55.347,97.753 55.405,97.67C55.464,97.587 55.539,97.546 55.63,97.546C55.728,97.546 55.806,97.588 55.865,97.673C55.923,97.757 55.953,97.877 55.953,98.03L55.953,98.03L55.953,98.217C55.926,98.27 55.886,98.316 55.833,98.354C55.78,98.391 55.717,98.41 55.644,98.41ZM57.497,99.527C57.749,99.527 57.94,99.444 58.071,99.276C58.202,99.109 58.267,98.867 58.267,98.551L58.267,98.551L58.267,98.131C58.264,97.824 58.197,97.589 58.065,97.426C57.933,97.262 57.743,97.18 57.494,97.18C57.245,97.18 57.054,97.263 56.922,97.428C56.789,97.593 56.723,97.835 56.723,98.154L56.723,98.154L56.723,98.575C56.726,98.881 56.794,99.117 56.926,99.281C57.057,99.445 57.248,99.527 57.497,99.527ZM57.497,99.162C57.385,99.162 57.304,99.117 57.253,99.026C57.202,98.936 57.177,98.797 57.177,98.611L57.177,98.611L57.177,98.056C57.18,97.881 57.207,97.752 57.257,97.67C57.308,97.588 57.387,97.547 57.494,97.547C57.603,97.547 57.684,97.59 57.736,97.677C57.788,97.763 57.814,97.901 57.814,98.09L57.814,98.09L57.814,98.633C57.812,98.812 57.786,98.945 57.737,99.032C57.688,99.118 57.608,99.162 57.497,99.162ZM58.899,99.496L59.056,99.025L59.881,99.025L60.04,99.496L60.54,99.496L59.685,97.211L59.249,97.211L58.398,99.496L58.899,99.496ZM59.754,98.644L59.183,98.644L59.467,97.789L59.754,98.644ZM61.224,99.496L61.224,98.871L61.177,97.795L61.792,99.496L62.116,99.496L62.732,97.793L62.685,98.871L62.685,99.496L63.157,99.496L63.157,97.211L62.539,97.211L61.956,98.868L61.369,97.211L60.754,97.211L60.754,99.496L61.224,99.496ZM65.037,99.496L65.037,99.118L64.038,99.118L64.038,97.211L63.567,97.211L63.567,99.496L65.037,99.496Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M49.065,111.961L49.065,111.028L49.969,111.028L49.969,110.648L49.065,110.648L49.065,110.058L50.082,110.058L50.082,109.677L48.594,109.677L48.594,111.961L49.065,111.961ZM50.825,111.961L50.825,111.309L51.07,111.045L51.657,111.961L52.217,111.961L51.382,110.692L52.194,109.677L51.615,109.677L51.033,110.428L50.825,110.712L50.825,109.677L50.355,109.677L50.355,111.961L50.825,111.961ZM53.005,111.993C53.152,111.993 53.285,111.963 53.402,111.902C53.519,111.841 53.61,111.755 53.674,111.644C53.738,111.532 53.771,111.404 53.771,111.259L53.771,111.259L53.771,109.677L53.3,109.677L53.3,111.259C53.3,111.373 53.273,111.46 53.22,111.522C53.166,111.584 53.095,111.615 53.005,111.615C52.903,111.615 52.829,111.588 52.782,111.535C52.735,111.481 52.711,111.399 52.711,111.287L52.711,111.287L52.238,111.287C52.238,111.512 52.305,111.686 52.44,111.809C52.575,111.931 52.763,111.993 53.005,111.993ZM54.445,111.983L54.557,111.982C54.904,111.967 55.172,111.851 55.362,111.634C55.551,111.416 55.646,111.117 55.646,110.736L55.646,110.736L55.646,110.568C55.645,110.386 55.612,110.224 55.547,110.083C55.482,109.942 55.391,109.834 55.274,109.758C55.157,109.683 55.023,109.645 54.872,109.645C54.726,109.645 54.594,109.68 54.477,109.75C54.36,109.819 54.268,109.917 54.203,110.042C54.138,110.167 54.105,110.304 54.105,110.454C54.105,110.689 54.165,110.876 54.287,111.015C54.408,111.153 54.57,111.222 54.772,111.222C54.93,111.222 55.068,111.164 55.186,111.048C55.154,111.401 54.94,111.586 54.546,111.604L54.546,111.604L54.445,111.605L54.445,111.983ZM54.883,110.876C54.78,110.876 54.699,110.836 54.642,110.756C54.585,110.676 54.557,110.573 54.557,110.449C54.557,110.323 54.586,110.219 54.645,110.136C54.703,110.053 54.778,110.011 54.869,110.011C54.967,110.011 55.046,110.053 55.104,110.138C55.163,110.223 55.192,110.342 55.192,110.496L55.192,110.496L55.192,110.683C55.165,110.736 55.125,110.782 55.072,110.819C55.019,110.857 54.956,110.876 54.883,110.876ZM56.289,111.983L56.4,111.982C56.748,111.967 57.016,111.851 57.205,111.634C57.395,111.416 57.489,111.117 57.489,110.736L57.489,110.736L57.489,110.568C57.488,110.386 57.455,110.224 57.391,110.083C57.326,109.942 57.235,109.834 57.118,109.758C57,109.683 56.866,109.645 56.716,109.645C56.569,109.645 56.438,109.68 56.32,109.75C56.203,109.819 56.112,109.917 56.047,110.042C55.981,110.167 55.949,110.304 55.949,110.454C55.949,110.689 56.009,110.876 56.131,111.015C56.252,111.153 56.414,111.222 56.615,111.222C56.773,111.222 56.911,111.164 57.03,111.048C56.997,111.401 56.784,111.586 56.389,111.604L56.389,111.604L56.289,111.605L56.289,111.983ZM56.727,110.876C56.623,110.876 56.543,110.836 56.486,110.756C56.429,110.676 56.4,110.573 56.4,110.449C56.4,110.323 56.43,110.219 56.488,110.136C56.547,110.053 56.622,110.011 56.713,110.011C56.811,110.011 56.889,110.053 56.948,110.138C57.007,110.223 57.036,110.342 57.036,110.496L57.036,110.496L57.036,110.683C57.009,110.736 56.969,110.782 56.916,110.819C56.863,110.857 56.8,110.876 56.727,110.876ZM58.586,111.993C58.744,111.993 58.881,111.961 58.997,111.896C59.114,111.832 59.203,111.742 59.265,111.625C59.327,111.508 59.358,111.376 59.358,111.229C59.358,110.986 59.297,110.797 59.173,110.662C59.05,110.527 58.879,110.46 58.662,110.46C58.54,110.46 58.426,110.489 58.318,110.546L58.318,110.546L58.374,110.055L59.283,110.055L59.283,109.677L58.003,109.677L57.871,110.838L58.232,110.927L58.276,110.887C58.343,110.83 58.43,110.802 58.538,110.802C58.655,110.802 58.745,110.836 58.809,110.905C58.873,110.975 58.905,111.074 58.905,111.204C58.905,111.339 58.877,111.443 58.822,111.517C58.766,111.59 58.687,111.627 58.585,111.627C58.493,111.627 58.418,111.601 58.361,111.548C58.304,111.495 58.271,111.421 58.262,111.326L58.262,111.326L57.813,111.326C57.817,111.456 57.853,111.571 57.922,111.673C57.99,111.774 58.084,111.853 58.202,111.909C58.32,111.965 58.448,111.993 58.586,111.993ZM60.369,111.993C60.613,111.993 60.808,111.932 60.956,111.809C61.105,111.687 61.179,111.524 61.179,111.321C61.179,111.196 61.147,111.087 61.084,110.995C61.02,110.903 60.924,110.834 60.796,110.788C60.899,110.741 60.983,110.673 61.047,110.585C61.111,110.498 61.142,110.401 61.142,110.297C61.142,110.094 61.074,109.934 60.937,109.819C60.8,109.703 60.61,109.645 60.369,109.645C60.23,109.645 60.102,109.672 59.987,109.725C59.871,109.779 59.781,109.853 59.717,109.948C59.653,110.042 59.62,110.149 59.62,110.268L59.62,110.268L60.074,110.268C60.074,110.192 60.103,110.13 60.162,110.082C60.22,110.035 60.293,110.011 60.38,110.011C60.476,110.011 60.552,110.037 60.607,110.088C60.661,110.139 60.689,110.211 60.689,110.303C60.689,110.398 60.661,110.474 60.606,110.532C60.55,110.59 60.465,110.618 60.35,110.618L60.35,110.618L60.108,110.618L60.108,110.973L60.348,110.973C60.6,110.973 60.725,111.087 60.725,111.315C60.725,111.409 60.694,111.485 60.633,111.542C60.572,111.599 60.488,111.627 60.38,111.627C60.286,111.627 60.206,111.6 60.142,111.546C60.078,111.491 60.046,111.421 60.046,111.335L60.046,111.335L59.592,111.335C59.592,111.533 59.665,111.692 59.809,111.812C59.954,111.933 60.141,111.993 60.369,111.993ZM62.253,111.993C62.505,111.993 62.696,111.909 62.827,111.742C62.958,111.574 63.023,111.333 63.023,111.017L63.023,111.017L63.023,110.596C63.02,110.29 62.953,110.055 62.821,109.891C62.689,109.727 62.499,109.645 62.25,109.645C62.001,109.645 61.81,109.728 61.678,109.893C61.546,110.059 61.479,110.301 61.479,110.62L61.479,110.62L61.479,111.04C61.482,111.347 61.55,111.582 61.682,111.747C61.814,111.911 62.004,111.993 62.253,111.993ZM62.253,111.627C62.141,111.627 62.06,111.582 62.009,111.492C61.958,111.401 61.933,111.263 61.933,111.077L61.933,111.077L61.933,110.521C61.936,110.346 61.963,110.218 62.014,110.136C62.064,110.054 62.143,110.013 62.25,110.013C62.36,110.013 62.44,110.056 62.492,110.142C62.544,110.228 62.57,110.366 62.57,110.556L62.57,110.556L62.57,111.098C62.568,111.277 62.542,111.41 62.493,111.497C62.444,111.584 62.364,111.627 62.253,111.627ZM64.872,111.961L64.872,111.596L63.89,111.596L64.409,111.048C64.552,110.892 64.652,110.756 64.711,110.639C64.769,110.522 64.798,110.406 64.798,110.294C64.798,110.087 64.733,109.928 64.603,109.815C64.473,109.702 64.29,109.645 64.055,109.645C63.901,109.645 63.763,109.678 63.642,109.744C63.521,109.809 63.427,109.899 63.36,110.014C63.294,110.129 63.261,110.256 63.261,110.396L63.261,110.396L63.716,110.396C63.716,110.28 63.745,110.188 63.804,110.117C63.864,110.046 63.944,110.011 64.047,110.011C64.142,110.011 64.215,110.04 64.267,110.098C64.318,110.156 64.343,110.236 64.343,110.337C64.343,110.412 64.319,110.49 64.27,110.573C64.222,110.655 64.147,110.752 64.045,110.863L64.045,110.863L63.306,111.651L63.306,111.961L64.872,111.961Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M48.539,124.427L48.539,123.448L49.457,123.448L49.457,124.427L49.928,124.427L49.928,122.143L49.457,122.143L49.457,123.068L48.539,123.068L48.539,122.143L48.068,122.143L48.068,124.427L48.539,124.427ZM50.675,124.427L50.831,123.956L51.657,123.956L51.815,124.427L52.316,124.427L51.461,122.143L51.024,122.143L50.174,124.427L50.675,124.427ZM51.53,123.575L50.959,123.575L51.243,122.72L51.53,123.575ZM53.188,124.459C53.432,124.459 53.628,124.397 53.776,124.275C53.924,124.153 53.998,123.99 53.998,123.787C53.998,123.661 53.966,123.553 53.903,123.461C53.839,123.369 53.743,123.3 53.615,123.254C53.718,123.206 53.802,123.139 53.866,123.051C53.93,122.963 53.962,122.867 53.962,122.762C53.962,122.559 53.893,122.4 53.756,122.285C53.619,122.169 53.43,122.111 53.188,122.111C53.049,122.111 52.921,122.138 52.806,122.191C52.69,122.245 52.6,122.319 52.536,122.413C52.472,122.508 52.439,122.615 52.439,122.734L52.439,122.734L52.893,122.734C52.893,122.658 52.922,122.596 52.981,122.548C53.039,122.501 53.112,122.477 53.199,122.477C53.295,122.477 53.371,122.502 53.426,122.554C53.481,122.605 53.508,122.677 53.508,122.769C53.508,122.864 53.48,122.94 53.425,122.998C53.369,123.055 53.284,123.084 53.169,123.084L53.169,123.084L52.927,123.084L52.927,123.439L53.168,123.439C53.419,123.439 53.544,123.553 53.544,123.781C53.544,123.875 53.514,123.95 53.452,124.007C53.391,124.064 53.307,124.093 53.199,124.093C53.105,124.093 53.026,124.066 52.961,124.011C52.897,123.957 52.865,123.887 52.865,123.801L52.865,123.801L52.411,123.801C52.411,123.999 52.484,124.158 52.629,124.278C52.773,124.398 52.96,124.459 53.188,124.459ZM55.651,124.427L55.651,123.933L55.91,123.933L55.91,123.567L55.651,123.567L55.651,122.143L55.193,122.143L54.241,123.647L54.261,123.933L55.198,123.933L55.198,124.427L55.651,124.427ZM55.198,123.567L54.693,123.567L55.168,122.813L55.198,122.761L55.198,123.567ZM57.119,124.459C57.308,124.459 57.479,124.431 57.634,124.375C57.789,124.319 57.909,124.24 57.993,124.138L57.993,124.138L57.993,123.227L57.094,123.227L57.094,123.574L57.523,123.574L57.523,123.967C57.447,124.043 57.321,124.08 57.145,124.08C56.969,124.08 56.835,124.019 56.744,123.897C56.653,123.774 56.608,123.593 56.608,123.354L56.608,123.354L56.608,123.208C56.609,122.971 56.651,122.792 56.735,122.671C56.819,122.551 56.941,122.491 57.101,122.491C57.226,122.491 57.325,122.521 57.396,122.582C57.468,122.643 57.514,122.738 57.535,122.869L57.535,122.869L57.993,122.869C57.965,122.622 57.875,122.434 57.722,122.305C57.569,122.176 57.357,122.111 57.087,122.111C56.892,122.111 56.722,122.155 56.577,122.244C56.432,122.332 56.322,122.46 56.245,122.627C56.168,122.793 56.129,122.991 56.129,123.219L56.129,123.219L56.129,123.374C56.131,123.596 56.173,123.789 56.254,123.953C56.335,124.118 56.45,124.243 56.599,124.329C56.748,124.415 56.922,124.459 57.119,124.459ZM59.228,124.459C59.499,124.459 59.713,124.386 59.869,124.24C60.026,124.095 60.104,123.897 60.104,123.647L60.104,123.647L60.104,122.143L59.632,122.143L59.632,123.663C59.627,123.941 59.493,124.08 59.228,124.08C59.102,124.08 59.003,124.046 58.931,123.978C58.859,123.909 58.824,123.8 58.824,123.65L58.824,123.65L58.824,122.143L58.353,122.143L58.353,123.665C58.356,123.911 58.436,124.106 58.593,124.247C58.75,124.388 58.962,124.459 59.228,124.459ZM60.868,124.427L61.307,123.627L61.747,124.427L62.294,124.427L61.612,123.275L62.277,122.143L61.736,122.143L61.307,122.93L60.879,122.143L60.338,122.143L61.003,123.275L60.32,124.427L60.868,124.427ZM63.236,124.459C63.394,124.459 63.531,124.426 63.647,124.362C63.763,124.298 63.852,124.207 63.914,124.091C63.977,123.974 64.008,123.842 64.008,123.694C64.008,123.452 63.946,123.263 63.823,123.128C63.699,122.993 63.529,122.926 63.311,122.926C63.19,122.926 63.075,122.954 62.968,123.012L62.968,123.012L63.024,122.521L63.933,122.521L63.933,122.143L62.652,122.143L62.52,123.304L62.881,123.393L62.925,123.352C62.992,123.296 63.079,123.268 63.187,123.268C63.304,123.268 63.395,123.302 63.459,123.371C63.522,123.44 63.554,123.54 63.554,123.669C63.554,123.804 63.527,123.909 63.471,123.982C63.416,124.056 63.337,124.093 63.234,124.093C63.142,124.093 63.068,124.067 63.011,124.014C62.954,123.961 62.92,123.887 62.911,123.792L62.911,123.792L62.462,123.792C62.466,123.921 62.503,124.037 62.571,124.138C62.64,124.24 62.733,124.319 62.851,124.375C62.97,124.431 63.098,124.459 63.236,124.459ZM65.398,124.427L65.398,122.139L65.349,122.139L64.403,122.478L64.403,122.847L64.945,122.679L64.945,124.427L65.398,124.427Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BE0F2D" - android:fillType="nonZero" - android:pathData="M45.389,90.346C45.389,90.346 45.076,90.347 45.062,90.347C44.856,90.346 45.09,90.35 44.884,90.346C44.713,90.341 44.177,90.146 44.159,89.574C44.158,88.938 44.158,84.424 44.158,82.266C44.154,81.509 44.767,81.331 44.983,81.331C45.171,81.33 44.864,81.331 45.051,81.33C45.092,81.329 45.388,81.33 45.388,81.33L45.389,90.346Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BE0F2D" - android:fillType="nonZero" - android:pathData="M45.399,102.877C45.399,102.877 45.085,102.878 45.072,102.878C44.865,102.877 45.099,102.881 44.892,102.877C44.722,102.873 44.187,102.678 44.168,102.105C44.168,101.47 44.168,96.955 44.168,94.797C44.163,94.04 44.776,93.862 44.993,93.862C45.18,93.861 44.873,93.862 45.06,93.861C45.101,93.86 45.398,93.861 45.398,93.861L45.399,102.877Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#A6B4BC" - android:fillType="nonZero" - android:pathData="M81.123,103.844C81.123,104.856 80.304,105.676 79.292,105.676C78.28,105.676 77.46,104.856 77.46,103.844C77.46,102.833 78.28,102.013 79.292,102.013C80.304,102.013 81.123,102.833 81.123,103.844" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#A6B4BC" - android:fillType="nonZero" - android:pathData="M93.934,103.82C93.934,104.848 93.101,105.682 92.072,105.682C91.044,105.682 90.21,104.848 90.21,103.82C90.21,102.791 91.044,101.957 92.072,101.957C93.101,101.957 93.934,102.791 93.934,103.82" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#94A1AB" - android:fillType="nonZero" - android:pathData="M183.915,138.393L121.571,138.393C118.932,138.393 116.792,135.802 116.792,132.604L116.792,67.572C116.792,64.374 118.932,61.783 121.571,61.783L183.915,61.783C186.554,61.783 188.694,64.374 188.694,67.572L188.694,132.604C188.694,135.802 186.554,138.393 183.915,138.393" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M179.139,116.041C179.139,117.234 180.106,118.201 181.298,118.201C182.492,118.201 183.458,117.234 183.458,116.041C183.458,114.849 182.492,113.881 181.298,113.881C180.106,113.881 179.139,114.849 179.139,116.041" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M170.501,116.041C170.501,117.234 171.468,118.201 172.66,118.201C173.854,118.201 174.82,117.234 174.82,116.041C174.82,114.849 173.854,113.881 172.66,113.881C171.468,113.881 170.501,114.849 170.501,116.041" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M161.863,116.041C161.863,117.234 162.83,118.201 164.023,118.201C165.215,118.201 166.181,117.234 166.181,116.041C166.181,114.849 165.215,113.881 164.023,113.881C162.83,113.881 161.863,114.849 161.863,116.041" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M179.179,95.28C178.891,96.8 180.2,98.11 181.721,97.821C182.566,97.661 183.258,96.97 183.418,96.125C183.706,94.603 182.397,93.294 180.876,93.583C180.031,93.743 179.339,94.434 179.179,95.28" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M170.541,95.28C170.253,96.8 171.561,98.11 173.083,97.821C173.928,97.661 174.619,96.97 174.779,96.125C175.068,94.603 173.759,93.294 172.238,93.583C171.392,93.743 170.702,94.434 170.541,95.28" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M161.903,95.28C161.615,96.8 162.924,98.11 164.445,97.821C165.29,97.661 165.982,96.97 166.142,96.125C166.43,94.603 165.121,93.294 163.6,93.583C162.755,93.743 162.063,94.434 161.903,95.28" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M124.337,79.682L155.119,79.682C155.861,79.682 156.464,79.08 156.464,78.337L156.464,72.39C156.464,71.647 155.861,71.044 155.119,71.044L124.337,71.044C123.594,71.044 122.992,71.647 122.992,72.39L122.992,78.337C122.992,79.08 123.594,79.682 124.337,79.682" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M179.179,74.941C178.891,76.462 180.2,77.771 181.721,77.482C182.566,77.322 183.258,76.631 183.418,75.786C183.706,74.265 182.397,72.955 180.876,73.244C180.031,73.404 179.339,74.095 179.179,74.941" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M170.541,74.941C170.253,76.462 171.561,77.771 173.083,77.482C173.928,77.322 174.619,76.631 174.779,75.786C175.068,74.265 173.759,72.955 172.238,73.244C171.392,73.404 170.702,74.095 170.541,74.941" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DCE1E5" - android:fillType="nonZero" - android:pathData="M161.903,74.941C161.615,76.462 162.924,77.771 164.445,77.482C165.29,77.322 165.982,76.631 166.142,75.786C166.43,74.265 165.121,72.955 163.6,73.244C162.755,73.404 162.063,74.095 161.903,74.941" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M124.614,100.06L155.396,100.06C156.139,100.06 156.741,99.458 156.741,98.715L156.741,92.767C156.741,92.024 156.139,91.422 155.396,91.422L124.614,91.422C123.871,91.422 123.269,92.024 123.269,92.767L123.269,98.715C123.269,99.458 123.871,100.06 124.614,100.06" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#657887" - android:fillType="nonZero" - android:pathData="M124.614,119.782L155.396,119.782C156.139,119.782 156.741,119.179 156.741,118.437L156.741,112.49C156.741,111.746 156.139,111.144 155.396,111.144L124.614,111.144C123.871,111.144 123.269,111.746 123.269,112.49L123.269,118.437C123.269,119.179 123.871,119.782 124.614,119.782" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#D8ECF9" - android:fillType="nonZero" - android:pathData="M91.443,146.349C93.056,128.406 116.552,130.141 118.333,130.853C123.299,119.522 140.103,118.207 145.972,122.398C148.906,116.949 152.938,114.252 156.741,112.489C169.194,106.721 191.244,104.248 204.04,129.411C224.049,129 225.705,145.539 226.051,146.349L160.16,146.349L91.443,146.349Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#A6B4BC" - android:fillType="nonZero" - android:pathData="M107.307,103.797C107.307,104.826 106.473,105.66 105.444,105.66C104.416,105.66 103.582,104.826 103.582,103.797C103.582,102.769 104.416,101.935 105.444,101.935C106.473,101.935 107.307,102.769 107.307,103.797" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#A6B4BC" - android:fillType="nonZero" - android:pathData="M201.038,103.844C201.038,104.856 200.219,105.676 199.207,105.676C198.195,105.676 197.376,104.856 197.376,103.844C197.376,102.833 198.195,102.013 199.207,102.013C200.219,102.013 201.038,102.833 201.038,103.844" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#A6B4BC" - android:fillType="nonZero" - android:pathData="M213.85,103.82C213.85,104.848 213.016,105.682 211.987,105.682C210.959,105.682 210.125,104.848 210.125,103.82C210.125,102.791 210.959,101.957 211.987,101.957C213.016,101.957 213.85,102.791 213.85,103.82" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#A6B4BC" - android:fillType="nonZero" - android:pathData="M227.222,103.797C227.222,104.826 226.388,105.66 225.359,105.66C224.331,105.66 223.497,104.826 223.497,103.797C223.497,102.769 224.331,101.935 225.359,101.935C226.388,101.935 227.222,102.769 227.222,103.797" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M47.001,112.237L20.123,112.237C16.595,112.237 13.733,115.082 13.733,118.588L13.733,183.315C13.733,186.822 16.595,189.667 20.123,189.667L47.001,189.667C50.531,189.667 53.392,186.822 53.392,183.315L53.392,118.588C53.392,115.082 50.531,112.237 47.001,112.237" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M47.326,112.559C49.792,112.559 51.799,114.555 51.799,117.009L51.799,184.894C51.799,187.348 49.792,189.344 47.326,189.344L19.169,189.344C16.702,189.344 14.696,187.348 14.696,184.894L14.696,117.009C14.696,114.555 16.702,112.559 19.169,112.559L47.326,112.559ZM47.326,110.349L19.169,110.349C15.472,110.349 12.473,113.33 12.473,117.009L12.473,184.894C12.473,188.572 15.472,191.555 19.169,191.555L47.326,191.555C51.024,191.555 54.022,188.572 54.022,184.894L54.022,117.009C54.022,113.33 51.024,110.349 47.326,110.349L47.326,110.349Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#EFEFEF" - android:fillType="nonZero" - android:pathData="M48.264,160.924L18.359,161.076C17.92,161.079 17.562,160.724 17.561,160.286L17.44,136.68C17.438,136.241 17.792,135.884 18.23,135.882L48.135,135.728C48.574,135.726 48.931,136.08 48.933,136.519L49.054,160.124C49.056,160.564 48.703,160.922 48.264,160.924" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M37.325,150.841C35.889,153.575 32.507,154.625 29.775,153.189C27.041,151.752 25.991,148.371 27.427,145.638C28.864,142.905 32.245,141.854 34.978,143.291C37.711,144.727 38.762,148.108 37.325,150.841" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M38.195,153.263C38.067,153.46 37.63,154.151 37.317,153.306C36.908,152.204 36.044,152.445 36.044,152.445L35.242,152.558L36.926,150.657C36.926,150.657 36.885,151.42 37.134,151.801C37.26,151.993 37.522,152.274 37.851,152.282C38.18,152.289 38.817,152.313 38.195,153.263" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M29.014,155.584C28.793,155.502 28.023,155.229 28.777,154.737C29.761,154.094 29.47,153.038 29.47,153.038L29.182,152.282L31.408,153.503C31.408,153.503 30.655,153.632 30.339,153.959C30.179,154.123 29.829,154.708 29.895,155.03C29.96,155.353 30.078,155.98 29.014,155.584" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M34.69,152.755C34.69,152.755 34.242,152.988 34.382,153.996C34.466,154.597 34.873,155.519 34.93,155.711C34.969,155.834 35.043,155.87 35.148,155.945C35.407,156.129 35.798,156.525 34.869,156.785C34.089,157.004 33.735,156.931 33.892,156.466C33.973,156.229 34.011,156.054 33.983,155.804C33.925,155.258 33.537,153.933 33.024,153.575C32.25,153.036 32.511,153.201 32.511,153.201L34.17,151.948L34.69,152.755Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M30.745,140.989C31.049,140.945 31.389,140.842 31.244,141.37C31.193,141.555 31.184,141.732 31.2,141.895C31.239,142.322 31.383,142.555 31.716,142.826L31.971,143.034L30.266,143.186C30.266,143.186 30.569,142.923 30.487,142.485C30.452,142.303 30.425,141.898 30.218,141.748C30.03,141.609 29.638,141.146 30.745,140.989" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M28.068,146.261C27.934,146.166 27.867,146.002 27.899,145.841C27.956,145.56 28.077,145.131 27.521,144.634C26.884,144.066 25.971,143.632 25.895,143.625C25.315,143.56 24.942,143.535 25.579,142.636C26.183,141.786 26.533,141.821 26.592,142.48C26.605,142.622 26.657,142.758 26.741,142.874C27.043,143.286 28.188,144.405 28.965,144.419C29.202,144.423 28.935,145.646 28.935,145.646C28.891,145.956 28.068,146.261 28.068,146.261" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M24.256,147.715C24.331,147.018 24.625,146.683 25.246,147.115C26.321,147.863 27.546,146.769 27.546,146.769L27.781,146.125L27.53,149.149C27.53,149.149 27.05,148.507 26.562,148.275C26.326,148.163 25.599,148.062 25.246,148.206C24.864,148.362 24.161,148.584 24.256,147.715" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M28.977,151.716C28.977,151.716 28.292,151.035 27.357,151.745C26.421,152.455 26.237,152.654 26.237,152.654C26.237,152.654 25.474,154.204 24.672,152.974C23.87,151.746 24.53,151.455 25.407,151.659C25.407,151.659 27.222,151.149 27.525,150.165C27.827,149.182 27.665,149.433 27.665,149.433L29.78,151.085L28.977,151.716Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M33.075,143.052C33.075,143.052 33.973,143.295 34.417,142.212C34.63,141.693 34.797,141.098 34.869,140.893C34.923,140.738 34.946,140.574 34.933,140.41C34.909,140.113 34.988,139.623 35.91,140.105C36.979,140.664 36.641,140.932 36.286,141.073C36.142,141.13 36.015,141.223 35.913,141.339C35.557,141.738 34.799,142.916 34.963,143.674C35.179,144.676 35.194,144.377 35.194,144.377L32.925,144.135L33.075,143.052Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M39.195,144.285C39.328,144.48 39.796,145.15 38.896,145.112C37.722,145.062 37.346,146.093 37.346,146.093L37.14,146.876L36.038,144.588C36.038,144.588 36.726,144.92 37.174,144.838C37.398,144.796 38.022,144.525 38.156,144.224C38.291,143.923 38.559,143.345 39.195,144.285" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M37.568,147.637C37.568,147.637 37.684,148.477 38.762,148.459C39.368,148.449 39.73,148.46 39.93,148.471C40.058,148.478 40.537,148.475 40.643,148.402C40.904,148.222 41.41,147.989 41.336,148.953C41.273,149.76 41.083,150.067 40.701,149.76C40.506,149.603 39.935,149.453 39.693,149.393C39.159,149.261 38.279,149.124 37.767,149.484C36.994,150.025 37.239,149.837 37.239,149.837L36.632,147.849L37.568,147.637Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M271.747,99.449C271.737,109.479 263.599,117.602 253.57,117.592C243.54,117.584 235.417,109.445 235.426,99.415C235.435,89.386 243.573,81.263 253.602,81.272C263.632,81.281 271.755,89.419 271.747,99.449" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M249.702,106.917C249.631,106.633 249.561,106.338 249.492,106.037C244.938,106.77 243.048,111.061 243.827,114.744C244.188,114.975 244.556,115.197 244.934,115.403C243.757,112.008 245.347,107.617 249.702,106.917" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M257.257,110.226L256.371,110.213C257.49,112.543 257.174,115.555 255.425,117.501C255.796,117.464 256.163,117.411 256.527,117.352C257.931,115.301 258.175,112.527 257.257,110.226" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M253.236,108.512C252.652,108.517 252.11,108.534 251.652,108.57C251.822,109.468 251.749,110.165 251.168,110.095C251.148,110.098 251.129,110.099 251.109,110.099C251.198,110.121 251.298,110.135 251.412,110.139L256.371,110.213L257.256,110.226L259.235,110.256L259.235,110.121L259.924,110.122L259.377,108.835C257.914,108.772 255.133,108.936 253.236,108.512" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M250.3,108.925C250.283,108.957 250.277,108.99 250.286,109.028C250.438,109.428 250.523,109.867 250.964,110.05C250.742,109.917 250.52,109.511 250.3,108.925" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3E6883" - android:fillType="nonZero" - android:pathData="M256.377,105.686C255.107,106.886 252.507,108.106 251.385,107.441C251.654,107.984 252.346,108.314 253.236,108.512C255.132,108.936 257.915,108.772 259.377,108.835L258.003,105.598C257.623,105.601 257.05,105.638 256.377,105.686" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#3E6883" - android:fillType="nonZero" - android:pathData="M260.874,106.416C260.399,106.324 259.664,106.068 258.804,105.79L262.359,114.166L262.76,115.104C263.308,114.782 263.838,114.434 264.349,114.059L262.708,108.12C262.708,108.12 262.19,106.832 260.874,106.416" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M252.907,95.034L253.128,94.4C252.478,94.186 252.043,94.035 251.712,93.765C251.711,93.765 251.708,93.765 251.706,93.765C251.523,94.102 251.253,94.601 251.116,94.856C251.297,94.755 251.479,94.699 251.658,94.703C252.112,94.695 252.526,94.815 252.907,95.034" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M254.159,90.536C254.051,90.501 253.94,90.562 253.9,90.666C253.68,91.245 252.962,91.785 252.729,91.826C252.409,90.983 251.583,91.317 251.868,92.185C251.968,92.489 252.505,92.933 252.417,93.164C252.34,93.367 252.071,93.646 251.713,93.764C252.042,94.035 252.479,94.186 253.128,94.4C253.393,94.487 253.692,94.585 254.037,94.707C254.985,95.045 256.095,92.466 255.567,90.92C255.491,90.69 255.398,90.482 255.294,90.293C255.07,90.56 254.687,90.706 254.159,90.536" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#663014" - android:fillType="nonZero" - android:pathData="M252.417,93.164C252.505,92.933 251.968,92.489 251.869,92.185C251.584,91.317 252.409,90.983 252.729,91.825C252.962,91.785 253.68,91.246 253.9,90.667C253.94,90.561 254.051,90.502 254.159,90.536C254.687,90.705 255.07,90.559 255.294,90.294C255.73,89.774 255.554,88.796 254.633,88.796C254.374,88.485 251.767,86.909 250.164,89.292C249.693,89.991 249.87,91.652 250.518,92.85C250.537,92.885 250.559,92.919 250.582,92.951C250.821,93.27 251.253,93.827 251.41,93.822C251.514,93.818 251.612,93.796 251.705,93.766C251.708,93.765 251.71,93.764 251.713,93.764C252.071,93.645 252.34,93.366 252.417,93.164" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M256.96,104.605C256.801,103.876 256.631,103.102 256.442,102.319L255.671,102.343C254.915,102.459 254.391,101.841 254.123,101.562L251.011,98.335C250.231,97.051 252.011,94.943 253.305,96.225L255.703,99.638C255.033,97.555 254.154,95.75 252.907,95.034C252.526,94.815 252.112,94.695 251.658,94.703C251.479,94.699 251.297,94.755 251.116,94.857C250.07,95.443 249.076,97.604 249.277,99.272C249.296,99.417 249.321,99.587 249.354,99.772C249.808,101.111 250.259,102.926 250.645,104.554C252.261,104.298 255.164,104.52 256.96,104.605" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M251.386,107.44C252.507,108.107 255.107,106.887 256.377,105.685C254.707,105.803 252.426,105.982 250.949,105.844C251.084,106.419 251.207,106.936 251.314,107.357C251.319,107.374 251.325,107.392 251.329,107.408C251.347,107.42 251.367,107.43 251.386,107.44" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M262.008,100.166C262.046,100.148 262.082,100.141 262.119,100.139C262.227,99.413 262.334,98.691 262.334,98.691C262.461,98.244 262.004,98.447 261.785,98.436L261.633,98.454C261.477,98.472 261.443,98.514 261.418,98.669L261.141,100.432L261.385,100.433L262.008,100.166Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFC1AF" - android:fillType="nonZero" - android:pathData="M260.59,101.74C260.862,101.781 261.666,102.282 261.916,102.002L262.511,101.498C262.891,101.148 262.556,100.11 262.118,100.139C262.083,100.141 262.046,100.149 262.009,100.167L261.385,100.433L261.14,100.433L260.743,100.433L260.575,101.621L260.59,101.74Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M251.011,98.334L254.124,101.562C254.391,101.841 254.915,102.459 255.671,102.343L256.442,102.318L260.496,102.188L260.575,101.622L260.743,100.433L260.786,100.129L256.008,100.07L255.704,99.637L253.305,96.225C252.011,94.943 250.232,97.051 251.011,98.334" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M250.645,104.554C250.752,105.003 250.853,105.437 250.949,105.843C252.426,105.981 254.707,105.803 256.377,105.686C257.05,105.638 257.622,105.601 258.003,105.599L257.959,105.494L258.569,105.236L258.724,105.602C259.285,105.599 259.969,105.684 259.977,105.127C259.886,104.469 259.019,104.677 258.419,104.606C258.203,104.652 257.668,104.639 256.96,104.605C255.164,104.519 252.261,104.298 250.645,104.554" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M250.3,108.925C250.52,109.511 250.742,109.917 250.964,110.05C251.013,110.08 251.061,110.096 251.109,110.099C251.129,110.099 251.148,110.098 251.168,110.095C251.749,110.165 251.822,109.468 251.652,108.57C251.638,108.498 251.624,108.425 251.608,108.351C251.535,108.185 251.434,107.833 251.314,107.356C251.207,106.937 251.085,106.419 250.949,105.844C250.853,105.437 250.752,105.003 250.645,104.553C250.259,102.926 249.808,101.11 249.355,99.772C248.992,98.704 248.628,97.941 248.295,97.827C248.242,97.792 247.669,97.373 247.872,98.289C248.137,98.78 248.754,102.818 249.492,106.037C249.561,106.338 249.631,106.633 249.702,106.917C249.897,107.691 250.096,108.384 250.3,108.925" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M259.923,110.123L259.234,110.122L259.234,110.256L259.229,116.448C259.478,116.396 259.737,116.389 259.988,116.428C260.011,116.42 260.033,116.41 260.055,116.402L260.061,110.446L259.923,110.123Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M249.815,113.359C249.798,114.449 251.511,114.451 251.495,113.361C251.513,112.27 249.8,112.269 249.815,113.359" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M259.229,116.447C258.853,116.525 258.501,116.705 258.233,116.989C258.831,116.832 259.416,116.644 259.988,116.428C259.737,116.389 259.478,116.396 259.229,116.447" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#6A7F90" - android:fillType="nonZero" - android:pathData="M258.804,105.79L258.724,105.603L258.569,105.236L257.959,105.494L258.003,105.599L259.377,108.835L259.923,110.123L260.061,110.446L262.178,115.435C262.374,115.329 262.566,115.218 262.757,115.105L262.359,114.167L258.804,105.79Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M345.815,99.061C345.815,109.091 337.684,117.222 327.655,117.222C317.625,117.222 309.494,109.091 309.494,99.061C309.494,89.032 317.625,80.901 327.655,80.901C337.684,80.901 345.815,89.032 345.815,99.061" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M325.79,90.93C325.708,90.448 325.595,89.954 325.518,89.456C325.512,89.461 325.507,89.465 325.501,89.472C325.611,89.33 325.087,91.14 325.828,91.407C325.839,91.411 325.847,91.412 325.858,91.416C325.834,91.274 325.814,91.131 325.797,90.986C325.795,90.968 325.792,90.948 325.79,90.93" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M330.372,90.171C330.37,90.197 330.366,90.222 330.364,90.248C330.344,90.664 330.309,91.081 330.236,91.48C330.251,91.476 330.263,91.475 330.279,91.469C330.833,91.269 330.681,89.63 330.605,89.534C330.576,89.497 330.54,89.486 330.5,89.493C330.465,89.685 330.426,89.873 330.386,90.057C330.379,90.095 330.375,90.132 330.372,90.171" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#8C8C99" - android:fillType="nonZero" - android:pathData="M323.373,110.538C323.373,110.527 323.372,110.516 323.372,110.506C323.345,112.036 323.421,114.248 323.556,116.752C324.874,117.055 326.244,117.222 327.655,117.222C327.952,117.222 328.249,117.213 328.542,117.199C328.549,117.096 328.555,116.994 328.562,116.892C328.568,116.791 328.714,116.785 328.73,116.884C328.73,116.884 328.74,116.991 328.761,117.185C330.434,117.085 332.044,116.756 333.564,116.233C333.492,113.635 333.342,111.474 333.082,110.186C332.379,111.77 323.709,111.772 323.373,110.538" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M335.526,109.359L334.866,109.457C334.742,109.47 334.646,109.42 334.567,109.338C334.417,109.944 334.284,110.621 334.457,111.345C334.553,111.879 335.35,112.751 335.921,112.095C336.424,111.255 336.24,110.015 335.814,109.199C335.742,109.284 335.644,109.347 335.526,109.359" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M333.082,110.186C333.097,110.151 333.114,110.116 333.122,110.08C333.311,109.159 332.968,104.58 332.429,101.684C333.002,104.156 334.06,108.406 334.421,109.121C334.462,109.203 334.51,109.277 334.568,109.338C334.646,109.419 334.741,109.47 334.865,109.457L335.525,109.359C335.643,109.347 335.742,109.285 335.813,109.199C335.871,109.128 335.91,109.04 335.914,108.944C335.985,107.199 335.699,104.918 334.896,101.363C334.587,99.996 333.465,95.513 330.534,93.781C330.137,93.546 329.738,93.387 329.341,93.283C329.335,93.287 329.329,93.294 329.322,93.3L329.362,93.636C329.357,94.207 328.538,94.789 328.035,94.783C327.465,94.841 326.976,94.373 326.982,93.732C326.982,93.732 326.985,93.491 326.985,93.444C326.931,93.409 326.88,93.372 326.83,93.332C325.878,93.609 325.032,94.136 324.406,94.711C323.49,95.549 322.279,97.444 321.048,98.647C319.485,100.528 318.061,101.58 315.813,102.862L316.099,104.849C318.351,104.251 320.209,103.055 321.538,102.051C322.358,101.386 322.397,101.307 323.487,100.216C323.831,99.872 323.031,102.275 323.371,110.506C323.371,110.516 323.372,110.527 323.372,110.538C323.709,111.772 332.38,111.77 333.082,110.186" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M327.866,93.787C327.517,93.721 327.228,93.602 326.985,93.444C326.984,93.491 326.982,93.732 326.982,93.732C326.977,94.372 327.465,94.84 328.036,94.783C328.539,94.789 329.357,94.207 329.362,93.636L329.323,93.3C329.044,93.531 328.693,93.7 328.245,93.786C328.12,93.81 327.991,93.811 327.866,93.787" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M330.367,90.214C330.366,90.226 330.366,90.237 330.365,90.249C330.367,90.222 330.37,90.197 330.372,90.17C330.37,90.185 330.367,90.2 330.367,90.214" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M328.759,91.86C328.628,91.808 328.195,91.793 328.051,91.624C327.899,91.786 327.461,91.736 327.326,91.771C327.27,91.785 327.193,91.92 327.115,92.089C327.306,92.431 327.556,92.687 328.114,92.678C328.536,92.671 328.786,92.481 328.975,92.21C328.894,92.03 328.813,91.881 328.759,91.86" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M328.074,91.164C328.247,91.159 328.547,91.064 328.951,91.28C329.055,91.348 329.153,91.528 329.227,91.749C329.312,91.567 329.393,91.377 329.49,91.193C329.527,91.124 329.573,91.062 329.626,91.004C329.687,90.938 329.746,90.872 329.802,90.802C329.902,90.676 330.002,90.282 330.025,90.123C330.254,88.517 330.433,86.925 328.183,87.263C328.066,87.281 327.945,87.278 327.829,87.251C325.866,86.804 325.781,88.403 326.011,90.238C326.053,90.579 326.314,90.834 326.567,91.1C326.607,91.141 326.644,91.186 326.676,91.234C326.764,91.369 326.835,91.511 326.902,91.651C327.125,91.3 327.543,91.092 328.074,91.164" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DFDFDF" - android:fillType="nonZero" - android:pathData="M326.901,91.651C326.835,91.511 326.764,91.369 326.676,91.233C326.644,91.185 326.607,91.141 326.566,91.1C326.314,90.834 326.053,90.579 326.011,90.237C325.782,88.403 325.866,86.803 327.829,87.251C327.945,87.277 328.066,87.281 328.183,87.263C330.434,86.925 330.254,88.517 330.025,90.123C330.002,90.282 329.902,90.676 329.802,90.802C329.745,90.872 329.687,90.938 329.625,91.004C329.573,91.062 329.527,91.125 329.49,91.193C329.393,91.377 329.312,91.567 329.227,91.749C329.376,92.182 329.436,92.772 329.272,92.98C329.272,92.98 329.123,92.54 328.975,92.211C328.787,92.482 328.535,92.671 328.113,92.677C327.556,92.687 327.305,92.431 327.115,92.088C326.971,92.4 326.828,92.828 326.828,92.828C326.659,92.382 326.704,91.961 326.901,91.651M327.866,93.787C327.99,93.811 328.12,93.81 328.245,93.786C328.693,93.7 329.044,93.53 329.322,93.3C329.329,93.294 329.335,93.288 329.34,93.282C329.853,92.845 330.106,92.197 330.237,91.48C330.309,91.082 330.344,90.664 330.364,90.249C330.365,90.237 330.365,90.226 330.366,90.214C330.367,90.2 330.371,90.185 330.372,90.17C330.376,90.132 330.379,90.095 330.386,90.057C330.426,89.873 330.465,89.685 330.5,89.493C330.589,89.005 330.648,88.498 330.601,87.989L330.607,87.995C330.761,86.796 330.001,86.193 329.522,86.121C329.358,86.095 329.197,86.044 329.061,85.947C328.76,85.728 328.329,85.688 328.012,85.816C327.855,85.879 327.683,85.906 327.517,85.878C327.225,85.829 327.016,85.899 326.808,86.069C326.709,86.15 326.595,86.208 326.473,86.241C326.041,86.359 325.376,86.804 325.453,88.012C325.457,88.061 325.456,88.11 325.453,88.159C325.414,88.595 325.453,89.028 325.519,89.456C325.595,89.954 325.708,90.448 325.789,90.93C325.792,90.948 325.795,90.968 325.797,90.986C325.813,91.131 325.833,91.274 325.858,91.416C325.991,92.185 326.261,92.884 326.83,93.333C326.88,93.371 326.931,93.409 326.985,93.444C327.228,93.601 327.517,93.72 327.866,93.787" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#DFDFDF" - android:fillType="nonZero" - android:pathData="M327.115,92.088C327.193,91.92 327.271,91.785 327.326,91.771C327.461,91.736 327.899,91.786 328.052,91.624C328.195,91.794 328.628,91.808 328.759,91.86C328.813,91.881 328.894,92.03 328.975,92.211C329.122,92.54 329.272,92.98 329.272,92.98C329.436,92.772 329.376,92.182 329.228,91.749C329.153,91.528 329.054,91.348 328.952,91.28C328.548,91.064 328.247,91.159 328.075,91.164C327.543,91.092 327.125,91.3 326.901,91.651C326.704,91.961 326.658,92.382 326.829,92.828C326.829,92.828 326.972,92.4 327.115,92.088" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M315.769,102.55C315.738,102.348 315.671,102.298 315.341,102.294L315.022,102.29C314.554,102.332 313.61,102.123 313.82,102.696C313.82,102.696 313.88,103.115 313.961,103.674C314.069,103.668 314.051,104.165 314.286,104.205C315.052,104.245 315.658,105.348 315.102,105.873C314.905,106.03 314.58,106.019 314.28,105.909C314.329,106.252 314.362,106.479 314.362,106.479C314.363,106.973 315.517,106.897 315.94,106.887C316.192,106.847 316.383,106.811 316.352,106.61L316.099,104.849L315.813,102.862L315.769,102.55Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M315.102,105.872C315.659,105.348 315.051,104.245 314.286,104.205C314.051,104.164 314.069,103.667 313.96,103.674C313.949,103.674 313.937,103.679 313.923,103.691C313.616,103.958 313.441,105.225 313.751,105.568C313.885,105.716 314.077,105.834 314.28,105.909C314.58,106.019 314.904,106.031 315.102,105.872" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M285.143,143.818C285.134,153.848 276.995,161.971 266.966,161.961C256.936,161.953 248.813,153.814 248.822,143.785C248.831,133.755 256.97,125.632 266.999,125.641C277.028,125.65 285.152,133.789 285.143,143.818" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M273.221,149.65C274.256,151.144 275.336,152.654 276.245,153.73C276.402,153.048 276.59,152.278 276.773,151.788C276.618,151.54 276.481,151.322 276.433,151.235C275.964,150.389 275.42,149.448 274.873,148.519C274.415,149.38 273.678,149.588 273.221,149.65" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#8C8C99" - android:fillType="nonZero" - android:pathData="M270.322,155.541C268.684,156.293 263.765,156.657 261.562,155.588C261.389,155.504 261.279,155.335 261.259,155.147C261.25,155.409 261.243,155.691 261.237,155.989C261.298,156.069 261.356,156.143 261.407,156.207C262.404,156.034 263.855,156.792 263.687,157.772C263.332,158.737 262.02,158.659 261.216,158.089C261.215,158.992 261.221,159.981 261.233,161.028C262.737,161.528 264.325,161.843 265.976,161.933C266.069,161.137 266.125,160.662 266.125,160.662C266.135,160.565 266.157,160.79 266.175,160.886C266.243,161.238 266.306,161.592 266.368,161.946C266.567,161.953 266.765,161.962 266.966,161.962C268.297,161.963 269.592,161.817 270.842,161.547C270.816,159.556 270.758,157.424 270.667,155.16C270.61,155.326 270.487,155.465 270.322,155.541" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M269.062,133.473C269.217,133.674 269.32,133.929 269.353,134.245C269.363,133.98 269.346,133.737 269.305,133.513C269.286,133.566 269.273,133.596 269.273,133.596C269.204,133.551 269.133,133.513 269.062,133.473" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M266.254,133.037C266.284,133.052 266.296,133.072 266.285,133.096C266.02,133.137 265.845,133.241 265.727,133.369C266.136,133.156 266.576,133.006 267.005,132.93C266.749,132.938 266.497,132.973 266.254,133.037" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M265.031,137.421C264.982,137.327 264.729,137.026 264.888,136.868C264.904,136.851 264.914,136.832 264.923,136.811C264.853,136.883 264.752,136.874 264.645,136.816C264.868,137.189 265.099,137.606 265.401,137.957C265.403,137.947 265.405,137.937 265.407,137.928C265.249,137.738 265.12,137.56 265.031,137.421" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M264.638,135.247C264.654,135.256 264.668,135.269 264.682,135.284C264.681,135.282 264.681,135.279 264.68,135.277C264.597,135.175 264.485,135.063 264.334,134.874C264.161,135.178 264.03,135.159 263.938,135.552C263.799,135.133 263.693,134.758 263.631,134.413C263.66,134.818 263.779,135.261 264.007,135.739C263.985,135.334 264.177,135.005 264.638,135.247" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M264.923,136.811C264.924,136.807 264.925,136.803 264.926,136.799C264.824,136.299 264.76,135.731 264.681,135.284C264.668,135.269 264.654,135.256 264.638,135.247C264.177,135.005 263.985,135.334 264.007,135.739C264.017,135.905 264.062,136.084 264.139,136.242C264.244,136.462 264.456,136.714 264.645,136.816C264.752,136.874 264.853,136.884 264.923,136.811" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M275.883,155.169C275.828,155.318 275.915,155.389 276.007,155.47C275.991,155.583 276.98,155.296 277.422,155.177C277.005,155.096 276.766,154.671 277.243,153.848C277.418,153.647 277.699,153.511 277.971,153.464C278.181,153.429 278.3,153.053 278.42,153.007C278.639,152.207 278.824,151.471 278.873,151.406C278.938,151.361 278.779,151.079 278.61,151.062L277.131,151.302C277.022,151.244 276.899,151.447 276.772,151.789C276.591,152.277 276.403,153.048 276.244,153.73C276.073,154.474 275.936,155.112 275.883,155.169" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M277.971,153.465C277.699,153.512 277.417,153.648 277.243,153.847C276.766,154.672 277.006,155.096 277.421,155.177C278.105,155.311 279.268,154.51 278.491,153.021C278.466,153.001 278.443,152.998 278.42,153.008C278.299,153.054 278.18,153.429 277.971,153.465" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M263.688,157.772C263.856,156.793 262.404,156.034 261.406,156.207C261.356,156.143 261.298,156.068 261.236,155.989C260.869,155.517 260.32,154.812 259.814,154.153C259.387,153.6 259.208,152.988 259.201,152.35C258.747,152.497 257.769,152.211 257.266,151.802C257.202,153.482 258.104,154.991 260.579,157.15C260.627,157.525 260.877,157.849 261.216,158.089C262.02,158.659 263.332,158.736 263.688,157.772" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B1DAEF" - android:fillType="nonZero" - android:pathData="M259.201,152.35C259.265,152.33 259.322,152.304 259.362,152.266C260.23,151.431 261.234,147.829 261.234,147.829L261.251,155.092C261.251,155.11 261.257,155.128 261.259,155.147C261.279,155.335 261.389,155.504 261.562,155.588C263.765,156.657 268.684,156.293 270.322,155.542C270.487,155.466 270.61,155.327 270.667,155.16C270.688,155.1 270.701,155.037 270.703,154.972L270.773,152.751C270.848,150.559 270.786,148.783 270.845,146.403L272.418,149.269C272.528,149.49 272.893,149.682 273.01,149.672C273.07,149.668 273.141,149.662 273.221,149.65C273.677,149.589 274.414,149.381 274.873,148.52C274.941,148.392 275.003,148.253 275.057,148.096C275.186,147.719 271.984,142.333 269.952,140.469C269.357,139.851 268.542,139.636 267.648,139.55C267.643,139.686 267.64,139.767 267.64,139.767C267.623,140.376 267.057,140.788 266.471,140.704C265.934,140.685 265.088,140.096 265.107,139.56C265.107,139.56 265.109,139.55 265.113,139.53C263.854,139.855 262.819,140.213 262.042,140.657C261.858,140.74 261.675,140.863 261.494,141.02C261.109,141.315 260.818,141.647 260.629,142.026C258.894,144.546 257.469,149.527 256.969,151.211C256.908,151.414 257.041,151.62 257.265,151.802C257.768,152.211 258.747,152.497 259.201,152.35" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M266.471,140.703C267.056,140.789 267.623,140.375 267.64,139.768C267.64,139.768 267.643,139.685 267.648,139.55C267.65,139.474 267.653,139.382 267.657,139.278C266.803,139.344 265.937,138.567 265.406,137.928C265.405,137.937 265.403,137.947 265.401,137.956C265.275,138.644 265.14,139.379 265.113,139.531C265.11,139.549 265.107,139.56 265.107,139.56C265.089,140.096 265.934,140.684 266.471,140.703" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M267.004,132.93C266.575,133.006 266.136,133.156 265.727,133.369C265.453,133.668 265.5,134.092 265.499,134.113C265.104,134.848 265.098,135.231 265.19,135.765L265.199,135.765C265.207,135.825 265.215,135.883 265.223,135.938C265.246,136.067 265.274,136.205 265.303,136.359C265.402,136.719 265.588,136.974 266.051,137.203C266.256,137.341 266.513,137.27 266.666,137.09C266.895,136.805 267.86,136.984 268.168,136.948C268.715,136.917 268.744,137.859 269.102,136.961C269.025,137.195 268.943,137.459 268.849,137.724C269.357,136.551 269.465,134.988 269.357,134.265C269.356,134.258 269.354,134.253 269.353,134.246C269.32,133.929 269.216,133.674 269.062,133.473C268.41,133.095 267.694,132.909 267.004,132.93" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M264.91,136.274C264.896,135.644 264.842,135.477 264.68,135.277C264.681,135.28 264.681,135.282 264.682,135.285C264.76,135.731 264.825,136.3 264.926,136.8C264.972,136.666 264.915,136.445 264.91,136.274" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CB8E75" - android:fillType="nonZero" - android:pathData="M268.236,137.688C268.271,137.561 268.358,137.299 268.145,137.29L267.043,137.272C266.854,137.267 266.841,137.497 266.887,137.625C267.02,138.218 268.084,138.311 268.236,137.688" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M267.043,137.273L268.145,137.289C268.359,137.299 268.27,137.561 268.236,137.688C268.083,138.31 267.02,138.218 266.887,137.626C266.842,137.497 266.854,137.266 267.043,137.273M264.335,134.874C264.485,135.063 264.597,135.174 264.68,135.277C264.842,135.477 264.896,135.644 264.91,136.274C264.915,136.445 264.973,136.666 264.927,136.8C264.925,136.804 264.925,136.807 264.924,136.811C264.914,136.832 264.904,136.852 264.887,136.867C264.729,137.026 264.982,137.327 265.031,137.421C265.12,137.561 265.249,137.738 265.406,137.928C265.937,138.566 266.803,139.343 267.657,139.277C267.661,139.277 267.665,139.277 267.669,139.277C268.23,139.228 268.584,138.477 268.85,137.724C268.943,137.46 269.026,137.195 269.102,136.961C268.743,137.86 268.715,136.917 268.169,136.948C267.86,136.984 266.895,136.805 266.665,137.09C266.513,137.271 266.255,137.341 266.051,137.203C265.589,136.974 265.402,136.719 265.303,136.359C265.275,136.205 265.247,136.067 265.223,135.939C265.214,135.882 265.207,135.825 265.2,135.764L265.19,135.764C265.098,135.232 265.103,134.848 265.499,134.113C265.499,134.092 265.453,133.668 265.727,133.37C265.845,133.241 266.02,133.136 266.284,133.096C266.297,133.072 266.284,133.053 266.255,133.037C266.497,132.973 266.749,132.938 267.004,132.93C267.694,132.91 268.41,133.095 269.062,133.473C269.133,133.513 269.204,133.552 269.273,133.597C269.273,133.597 269.286,133.565 269.305,133.513C269.454,133.122 270.024,131.434 269.07,130.995C268.457,130.712 267.545,130.667 266.881,130.999C266.188,131.345 265.663,131.11 265.1,131.486C263.73,132.419 263.422,133.243 263.631,134.412C263.694,134.758 263.798,135.133 263.937,135.551C264.029,135.159 264.161,135.177 264.335,134.874" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M308.905,73.557C308.896,83.586 300.758,91.709 290.728,91.7C280.699,91.691 272.576,83.553 272.584,73.523C272.594,63.493 280.731,55.37 290.761,55.38C300.791,55.389 308.914,63.527 308.905,73.557" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M293.338,77.944C293.852,78.313 294.467,78.736 294.799,78.891C295.234,79.093 296.352,79.373 296.982,79.524C297.212,79.185 297.506,78.738 297.802,78.316C297.072,77.974 295.897,77.409 295.433,77.099C294.878,76.729 293.728,75.702 293.006,75.045C293.221,75.927 293.353,76.909 293.338,77.944" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B96161" - android:fillType="nonZero" - android:pathData="M286.952,91.301C288.171,91.56 289.433,91.699 290.728,91.7C290.737,91.7 290.746,91.699 290.755,91.699C289.382,89.271 287.762,86.201 286.983,83.973L286.952,91.301Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M287.74,81.275L287.756,81.204L287.748,81.204L286.964,83.919C286.97,83.937 286.977,83.955 286.983,83.973C287.762,86.201 289.382,89.271 290.756,91.699C292.165,91.699 293.537,91.532 294.855,91.227C293.649,85.808 292.744,81.27 292.744,81.27L287.74,81.275Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M292.204,65.669C292.185,65.463 292.149,65.24 292.081,65.015C291.871,64.452 291.48,64.315 291.48,64.315C291.221,65.503 290.176,65.59 289.909,65.592L289.859,65.706C290.209,68.936 289.246,68.672 288.69,70.636C288.677,70.679 288.666,70.718 288.654,70.758L288.649,70.787L288.728,70.848C289.67,70.884 290.216,71.686 290.712,71.128C290.771,71.062 290.862,71.062 290.971,71.116L290.589,68.411C290.589,68.411 292.268,68.485 292.229,66.142C292.229,66.139 292.228,66.133 292.228,66.129C292.207,66.144 292.192,66.155 292.192,66.155C292.209,65.976 292.211,65.816 292.204,65.669" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M287.747,81.204L287.785,81.074L287.953,80.32C287.664,80.386 286.17,80.677 285.839,79.772L285.427,84.802C285.373,85.428 283.239,86.601 284.828,87.717C286.109,88.616 286.49,85.565 286.49,85.565L286.964,83.919L287.747,81.204Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B1DAEF" - android:fillType="nonZero" - android:pathData="M287.953,80.32L287.785,81.074L287.755,81.204L287.74,81.275L292.744,81.27C293.151,80.142 293.323,79.015 293.338,77.944C293.352,76.909 293.221,75.927 293.007,75.045C292.487,72.911 291.494,71.37 290.972,71.115C290.861,71.062 290.771,71.062 290.712,71.128C290.216,71.687 289.671,70.884 288.728,70.848C288.695,70.847 288.662,70.846 288.629,70.847C288.23,72.174 288.158,71.592 287.628,71.63C286.69,73.617 285.939,78.995 285.845,79.691C285.838,79.74 285.836,79.765 285.836,79.765C285.836,79.768 285.837,79.769 285.838,79.771C286.17,80.677 287.663,80.386 287.953,80.32" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#663014" - android:fillType="nonZero" - android:pathData="M288.628,70.847C288.637,70.818 288.646,70.788 288.654,70.758C288.667,70.718 288.677,70.679 288.69,70.637C289.247,68.672 290.209,68.936 289.859,65.706C289.855,65.667 289.852,65.63 289.848,65.591C289.848,65.591 289.87,65.592 289.909,65.592C290.176,65.59 291.221,65.503 291.48,64.315C291.48,64.315 291.871,64.452 292.081,65.015C292.146,65.189 292.192,65.405 292.204,65.669C292.211,65.816 292.209,65.976 292.192,66.155C292.192,66.155 292.207,66.144 292.228,66.129C292.424,65.984 293.359,65.174 292.637,63.305C292.637,63.305 292.46,62.415 291.212,62.445C291.212,62.445 289.224,60.664 287.354,62.178C285.484,63.691 286.76,65.205 286.76,65.205C286.76,65.205 284.267,67.461 285.128,70.518C285.128,70.518 286.048,72.506 287.117,71.824C287.326,71.689 287.491,71.639 287.628,71.63C288.159,71.591 288.23,72.174 288.628,70.847" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M296.574,80.08C296.475,80.194 296.528,80.287 296.582,80.39C296.515,80.51 298.135,80.76 298.173,80.788C298.252,80.861 298.547,80.517 298.903,80.036C298.872,79.916 298.946,79.685 299.07,79.43C299.229,79.101 299.348,78.96 299.598,78.868C299.662,78.844 299.702,78.849 299.721,78.875C300.121,78.29 300.455,77.789 300.513,77.752C300.586,77.734 300.541,77.429 300.397,77.356L298.999,77.067C298.853,76.896 298.328,77.565 297.802,78.316C297.506,78.738 297.212,79.185 296.982,79.524C296.771,79.839 296.617,80.059 296.574,80.08" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M299.598,78.868C299.348,78.96 299.229,79.101 299.07,79.43C298.946,79.685 298.871,79.916 298.903,80.036C298.913,80.071 298.93,80.098 298.958,80.111C299.086,80.173 299.158,80.003 299.347,79.737C299.515,79.501 299.806,78.988 299.721,78.875C299.701,78.849 299.662,78.844 299.598,78.868" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="nonZero" - android:pathData="M332.213,144.258C332.213,154.288 324.082,162.419 314.052,162.419C304.023,162.419 295.892,154.288 295.892,144.258C295.892,134.229 304.023,126.098 314.052,126.098C324.082,126.098 332.213,134.229 332.213,144.258" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M309.509,146.721L309.45,147.014L307.896,154.676C307.896,154.676 306.739,156.334 307.871,156.331C309.004,156.328 308.739,154.819 308.739,154.819L310.939,147.248C310.926,147.248 310.913,147.248 310.9,147.244L309.509,146.721Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="nonZero" - android:pathData="M316.65,152.6L310.533,152.704C310.524,152.704 310.517,152.7 310.51,152.699L310.495,152.812L311.093,162.175C311.867,162.302 312.659,162.378 313.463,162.404L313.677,155.435L314.105,162.417C314.887,162.415 315.655,162.359 316.412,162.262L316.663,152.598C316.658,152.598 316.655,152.6 316.65,152.6" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CBAB7D" - android:fillType="nonZero" - android:pathData="M312.86,142.924C312.956,143.045 313.092,143.191 313.252,143.303C313.093,143.185 312.956,143.039 312.86,142.924" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#CBAB7D" - android:fillType="nonZero" - android:pathData="M311.142,143.515L312.609,142.752C312.655,142.731 312.707,142.741 312.743,142.774C312.725,142.749 312.715,142.735 312.715,142.735L312.886,141.722C312.824,141.708 312.762,141.692 312.699,141.682C312.364,141.634 311.559,141.388 311.182,140.138C311.182,140.138 310.598,139.287 311.053,138.517C311.508,137.746 313.048,138.283 313.918,136.534C313.918,136.534 315.17,138.547 316.002,138.567C316.834,138.585 315.924,141.308 314.678,141.605C314.678,141.605 314.592,141.638 314.453,141.676L314.541,142.708C314.529,142.742 314.516,142.773 314.503,142.805C314.541,142.772 314.596,142.764 314.642,142.789L316.264,143.602C316.28,143.611 316.527,143.781 316.789,144.074C317.015,144.324 317.198,144.607 317.289,144.931L317.541,145.833C320.733,146.004 321.08,144.965 320.945,144.236C320.876,143.868 320.621,143.558 320.277,143.409C320.261,143.402 320.246,143.396 320.23,143.389C319.519,143.074 319.317,142.168 319.814,141.571C320.052,141.285 320.088,141.073 320.081,140.953C320.079,140.889 320.097,140.824 320.087,140.761C319.998,140.167 318.943,139.49 318.114,139.039C317.706,138.817 317.47,138.374 317.511,137.911C317.78,134.925 315.469,133.959 314.674,133.741C314.55,133.708 314.411,133.65 314.28,133.645C313.921,133.631 313.423,133.313 311.551,134.327C309.562,135.406 309.734,137.903 309.886,138.872C309.92,139.092 310.013,139.3 310.161,139.467C310.506,139.858 311.127,140.794 310.578,142.021C310.078,143.136 310.322,143.609 310.527,143.797C310.571,143.837 310.607,143.884 310.643,143.931C310.814,143.738 310.998,143.566 311.142,143.515" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M314.41,141.174L314.453,141.677C314.592,141.637 314.679,141.606 314.679,141.606C315.924,141.308 316.833,138.585 316.002,138.566C315.17,138.548 313.917,136.535 313.917,136.535C313.049,138.283 311.509,137.746 311.053,138.517C310.597,139.287 311.181,140.138 311.181,140.138C311.559,141.388 312.364,141.634 312.698,141.682C312.763,141.691 312.824,141.708 312.886,141.723L312.969,141.231C313.664,141.618 314.41,141.174 314.41,141.174" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B1DAEF" - android:fillType="nonZero" - android:pathData="M316.65,152.6C316.655,152.6 316.658,152.598 316.663,152.598C316.735,152.589 316.788,152.522 316.771,152.449L316.368,150.263L314.102,149.491C314.102,149.491 314.052,149.496 313.973,149.502L314,149.812C314.013,149.955 313.908,150.071 313.765,150.071L312.678,150.071C312.536,150.071 312.41,149.955 312.398,149.812L312.168,147.18C312.154,147.038 312.261,146.922 312.403,146.922L313.49,146.922C313.632,146.922 313.758,147.038 313.771,147.18L313.894,148.594C314.088,148.715 314.222,148.819 314.222,148.819L316.186,149.275L316.156,149.119L316.156,149.119C316.128,149.006 316.104,148.819 316.104,148.703L315.884,146.752C315.875,146.622 315.861,146.524 315.93,146.635L316.005,147.03C316.04,147.087 316.116,147.106 316.175,147.072L316.199,147.057L316.199,147.056L317.517,146.28L317.518,146.284L317.563,146.258C317.614,146.227 317.637,146.167 317.619,146.11L317.541,145.833L317.289,144.931C317.198,144.607 317.014,144.324 316.79,144.073C316.528,143.782 316.28,143.611 316.264,143.602L314.642,142.789C314.595,142.765 314.541,142.772 314.503,142.804C314.141,143.698 313.634,143.585 313.252,143.303C313.093,143.192 312.955,143.045 312.859,142.924C312.808,142.86 312.767,142.808 312.743,142.774C312.707,142.742 312.654,142.731 312.609,142.751L311.142,143.515C310.997,143.565 310.814,143.738 310.643,143.93C310.384,144.222 310.156,144.558 310.149,144.575L309.424,146.549C309.396,146.615 309.428,146.69 309.495,146.716L309.509,146.721L310.9,147.243C310.914,147.248 310.926,147.248 310.939,147.248C311.003,147.252 311.063,147.207 311.07,147.138L311.097,146.853C311.111,146.704 311.18,146.694 311.2,146.841L311.153,148.368C311.096,148.859 310.988,149.675 310.953,150.022L310.41,152.546C310.39,152.618 310.439,152.686 310.51,152.699C310.517,152.7 310.524,152.704 310.533,152.704L316.65,152.6Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="nonZero" - android:pathData="M312.5,148.946C312.384,147.795 313.363,148.263 313.895,148.595L313.771,147.18C313.758,147.038 313.633,146.922 313.49,146.922L312.403,146.922C312.261,146.922 312.155,147.038 312.168,147.18L312.398,149.813C312.41,149.955 312.536,150.071 312.679,150.071L313.765,150.071C313.908,150.071 314.014,149.955 314,149.813L313.973,149.503C313.605,149.531 312.561,149.557 312.5,148.946" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M316.198,147.056L316.198,147.058L316.734,149.402L316.186,149.275L314.222,148.819C314.222,148.819 314.088,148.716 313.895,148.595C313.363,148.263 312.384,147.796 312.5,148.945C312.561,149.557 313.605,149.531 313.973,149.503C314.053,149.496 314.102,149.49 314.102,149.49L316.368,150.263L317.344,150.596C317.71,150.721 318.081,150.423 318.036,150.039L317.564,146.623L317.518,146.285L317.518,146.28L316.198,147.056Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="nonZero" - android:pathData="M314.453,141.676L314.41,141.174C314.41,141.174 313.664,141.618 312.969,141.231L312.886,141.723L312.715,142.735C312.715,142.735 312.725,142.749 312.743,142.774C312.767,142.808 312.808,142.86 312.859,142.924C312.955,143.038 313.094,143.185 313.253,143.303C313.634,143.586 314.141,143.698 314.503,142.804C314.516,142.772 314.529,142.742 314.541,142.708L314.453,141.676Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="nonZero" - android:pathData="M300.639,112.362C300.639,117.846 296.192,122.292 290.708,122.292C285.224,122.292 280.778,117.846 280.778,112.362C280.778,106.877 285.224,102.431 290.708,102.431C296.192,102.431 300.639,106.877 300.639,112.362" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="nonZero" - android:pathData="M290.622,105.396C290.042,105.396 289.565,105.873 289.565,106.453L289.565,106.948C288.881,107.108 288.282,107.426 287.822,107.889C287.134,108.584 286.749,109.567 286.749,110.699L286.749,113.445C286.749,114.091 286.396,114.911 286.031,115.519L285.4,116.466C285.328,116.575 285.322,116.714 285.383,116.828C285.444,116.942 285.564,117.013 285.693,117.013L288.862,117.013C288.862,117.98 289.655,118.774 290.622,118.774C291.588,118.774 292.381,117.98 292.381,117.013L295.55,117.013C295.679,117.013 295.799,116.942 295.861,116.828C295.921,116.714 295.914,116.575 295.842,116.466L295.215,115.523L295.213,115.521C294.844,114.907 294.494,114.139 294.494,113.493L294.494,110.747C294.494,108.857 293.369,107.395 291.678,106.96L291.678,106.453C291.678,105.873 291.2,105.396 290.622,105.396" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> + <path + android:pathData="M67.73,119l-22.92,-0.07a0.87,0.87 0,0 0,-0.88 0.87l0,7.17a0.88,0.88 0,0 0,0.88 0.89l22.92,0.07a0.89,0.89 0,0 0,0.89 -0.88l0,-7.16a0.88,0.88 0,0 0,-0.88 -0.89" + android:fillColor="#b1bbc2" + android:fillType="evenOdd"/> + <path + android:pathData="M67.77,106.55l-22.91,-0.08a0.88,0.88 0,0 0,-0.89 0.88l0,7.17a0.87,0.87 0,0 0,0.88 0.88l22.91,0.08a0.88,0.88 0,0 0,0.89 -0.88l0,-7.17a0.87,0.87 0,0 0,-0.88 -0.88" + android:fillColor="#94a1ab" + android:fillType="evenOdd"/> + <path + android:pathData="M45.19,115.4h-0.5a0.81,0.81 0,0 1,-0.72 -0.76V107.4a0.88,0.88 0,0 1,0.82 -0.93c0.19,0 -0.12,0 0.07,0h0.33Z" + android:fillColor="#be0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M67.81,94.14l-22.92,-0.07A0.88,0.88 0,0 0,44 95l0,7.16a0.89,0.89 0,0 0,0.88 0.89l22.92,0.08a0.89,0.89 0,0 0,0.89 -0.88l0,-7.17a0.89,0.89 0,0 0,-0.88 -0.89" + android:fillColor="#748692" + android:fillType="evenOdd"/> + <path + android:pathData="M67.84,81.75l-22.91,-0.08a0.88,0.88 0,0 0,-0.89 0.88l0,7.17a0.87,0.87 0,0 0,0.88 0.88l22.91,0.08a0.88,0.88 0,0 0,0.89 -0.88l0,-7.17a0.87,0.87 0,0 0,-0.88 -0.88" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M49,87.35v-0.49h0.26v-0.37L49,86.49L49,85.07h-0.46l-1,1.5 0,0.29h0.93v0.49ZM48.54,86.49L48,86.49l0.47,-0.75 0,0ZM50.3,87.38a0.77,0.77 0,0 0,0.4 -0.1,0.61 0.61,0 0,0 0.27,-0.28 0.77,0.77 0,0 0,0.1 -0.4,0.84 0.84,0 0,0 -0.18,-0.56 0.57,0.57 0,0 0,-0.47 -0.21,0.62 0.62,0 0,0 -0.46,0.18 0.64,0.64 0,0 1,0.22 -0.43,0.79 0.79,0 0,1 0.5,-0.16h0v-0.37L50.6,85.05a1.2,1.2 0,0 0,-0.61 0.15,1 1,0 0,0 -0.4,0.44 1.4,1.4 0,0 0,-0.15 0.66h0v0.16a1,1 0,0 0,0.23 0.67A0.72,0.72 0,0 0,50.25 87.38ZM50.3,87.02a0.28,0.28 0,0 1,-0.25 -0.13,0.58 0.58,0 0,1 -0.09,-0.35h0L49.96,86.4a0.32,0.32 0,0 1,0.13 -0.15,0.36 0.36,0 0,1 0.2,-0.06 0.34,0.34 0,0 1,0.25 0.11,0.5 0.5,0 0,1 0.09,0.31 0.44,0.44 0,0 1,-0.09 0.29A0.29,0.29 0,0 1,50.24 87ZM52.13,87.38a0.88,0.88 0,0 0,0.41 -0.09,0.7 0.7,0 0,0 0.27,-0.27 0.87,0.87 0,0 0,0.09 -0.4,0.85 0.85,0 0,0 -0.18,-0.57 0.69,0.69 0,0 0,-0.51 -0.2,0.7 0.7,0 0,0 -0.35,0.09h0l0.06,-0.49h0.91v-0.38L51.49,85.07l-0.14,1.16 0.37,0.09 0,0a0.37,0.37 0,0 1,0.26 -0.09,0.34 0.34,0 0,1 0.27,0.11 0.4,0.4 0,0 1,0.1 0.3,0.54 0.54,0 0,1 -0.08,0.31 0.3,0.3 0,0 1,-0.24 0.11,0.36 0.36,0 0,1 -0.23,-0.08 0.32,0.32 0,0 1,-0.09 -0.22L51.3,86.76a0.58,0.58 0,0 0,0.11 0.34,0.55 0.55,0 0,0 0.28,0.24A0.79,0.79 0,0 0,52.07 87.38ZM53.96,87.38a0.82,0.82 0,0 0,0.56 -0.17,0.6 0.6,0 0,0 0.21,-0.48 0.52,0.52 0,0 0,-0.1 -0.33,0.56 0.56,0 0,0 -0.26,-0.22 0.66,0.66 0,0 0,0.23 -0.21,0.55 0.55,0 0,0 0.08,-0.29 0.59,0.59 0,0 0,-0.2 -0.47A0.73,0.73 0,0 0,53.9 85a0.78,0.78 0,0 0,-0.53 0.17,0.6 0.6,0 0,0 -0.2,0.47 0.48,0.48 0,0 0,0.09 0.29,0.56 0.56,0 0,0 0.22,0.21 0.62,0.62 0,0 0,-0.26 0.22,0.59 0.59,0 0,0 -0.1,0.33 0.6,0.6 0,0 0,0.21 0.48A0.84,0.84 0,0 0,53.9 87.38ZM53.96,86a0.26,0.26 0,0 1,-0.2 -0.08,0.32 0.32,0 0,1 -0.07,-0.22 0.31,0.31 0,0 1,0.07 -0.22,0.26 0.26,0 0,1 0.2,-0.08 0.28,0.28 0,0 1,0.2 0.08,0.38 0.38,0 0,1 0,0.44A0.28,0.28 0,0 1,53.9 86ZM53.96,87a0.32,0.32 0,0 1,-0.24 -0.09,0.36 0.36,0 0,1 -0.08,-0.24 0.29,0.29 0,0 1,0.31 -0.32,0.32 0.32,0 0,1 0.24,0.09 0.36,0.36 0,0 1,0.08 0.23,0.29 0.29,0 0,1 -0.08,0.24A0.3,0.3 0,0 1,53.9 87ZM56.09,87.33 L56.89,85.05h-0.52l-0.52,1.72 -0.52,-1.72h-0.52l0.79,2.28ZM57.58,87.33v-0.83h0.37l0.43,0.83h0.5v0l-0.49,-0.93a0.72,0.72 0,0 0,0.31 -0.25,0.75 0.75,0 0,0 0.1,-0.39 0.64,0.64 0,0 0,-0.22 -0.51,1 1,0 0,0 -0.63,-0.18L57,85.07v2.28ZM57.96,86.12h-0.38v-0.69h0.37a0.42,0.42 0,0 1,0.29 0.09,0.39 0.39,0 0,1 0,0.51 0.38,0.38 0,0 1,-0.27 0.09ZM59.78,87.33 L60.66,85.33v-0.25L59,85.08v0.37h1.13l-0.88,1.91ZM62.52,87.33L62.52,87h-1l0.52,-0.55A1.83,1.83 0,0 0,62.3 86a0.88,0.88 0,0 0,0.08 -0.34,0.59 0.59,0 0,0 -0.19,-0.48 0.79,0.79 0,0 0,-0.55 -0.17,0.8 0.8,0 0,0 -0.41,0.1 0.61,0.61 0,0 0,-0.28 0.27,0.7 0.7,0 0,0 -0.1,0.38h0.45a0.41,0.41 0,0 1,0.09 -0.28,0.3 0.3,0 0,1 0.24,-0.11 0.27,0.27 0,0 1,0.22 0.09,0.36 0.36,0 0,1 0.08,0.24 0.55,0.55 0,0 1,-0.07 0.23,2.2 2.2,0 0,1 -0.23,0.3h0l-0.74,0.78v0.31ZM63.67,87.33a1,1 0,0 0,0.61 -0.16,0.56 0.56,0 0,0 0.22,-0.47 0.57,0.57 0,0 0,-0.18 -0.44,1.47 1.47,0 0,0 -0.59,-0.3 1.75,1.75 0,0 1,-0.33 -0.15,0.22 0.22,0 0,1 -0.11,-0.18 0.22,0.22 0,0 1,0.09 -0.19,0.46 0.46,0 0,1 0.27,-0.08 0.41,0.41 0,0 1,0.28 0.09,0.3 0.3,0 0,1 0.1,0.24h0.47a0.64,0.64 0,0 0,-0.11 -0.36,0.71 0.71,0 0,0 -0.29,-0.25 1.18,1.18 0,0 0,-0.88 0,0.64 0.64,0 0,0 -0.3,0.23 0.52,0.52 0,0 0,-0.1 0.33,0.63 0.63,0 0,0 0.39,0.56 2.06,2.06 0,0 0,0.38 0.16,1 1,0 0,1 0.34,0.15 0.23,0.23 0,0 1,0.1 0.2,0.2 0.2,0 0,1 -0.1,0.19 0.4,0.4 0,0 1,-0.26 0.07c-0.3,0 -0.45,-0.12 -0.45,-0.38h-0.47a0.71,0.71 0,0 0,0.11 0.39,0.8 0.8,0 0,0 0.33,0.27A1.28,1.28 0,0 0,63.61 87.38Z" + android:fillColor="#fff"/> + <path + android:pathData="M48.58,99.82v-0.63l0,-1.07 0.62,1.7h0.32l0.62,-1.7L50,99.19v0.63h0.47L50.47,97.53h-0.62l-0.58,1.66 -0.59,-1.66h-0.61v2.29ZM51.98,99.82L51.98,97.53h0l-1,0.34v0.37l0.55,-0.17v1.75ZM53.44,99.82a0.9,0.9 0,0 0,0.59 -0.18,0.61 0.61,0 0,0 0.22,-0.49 0.58,0.58 0,0 0,-0.09 -0.33,0.56 0.56,0 0,0 -0.29,-0.2 0.64,0.64 0,0 0,0.25 -0.21,0.43 0.43,0 0,0 0.1,-0.29 0.57,0.57 0,0 0,-0.21 -0.47,0.83 0.83,0 0,0 -0.57,-0.18 1,1 0,0 0,-0.38 0.08,0.75 0.75,0 0,0 -0.27,0.23 0.57,0.57 0,0 0,-0.09 0.32h0.45a0.23,0.23 0,0 1,0.09 -0.19,0.3 0.3,0 0,1 0.21,-0.07 0.28,0.28 0,0 1,0.23 0.08,0.25 0.25,0 0,1 0.08,0.21 0.3,0.3 0,0 1,-0.08 0.23,0.33 0.33,0 0,1 -0.26,0.09h-0.24v0.35h0.24c0.25,0 0.38,0.11 0.38,0.34a0.3,0.3 0,0 1,-0.09 0.23,0.35 0.35,0 0,1 -0.26,0.08 0.31,0.31 0,0 1,-0.23 -0.08,0.24 0.24,0 0,1 -0.1,-0.21h-0.45a0.6,0.6 0,0 0,0.21 0.48A0.87,0.87 0,0 0,53.44 99.85ZM54.89,99.82L55,99.82a1.09,1.09 0,0 0,0.8 -0.35,1.33 1.33,0 0,0 0.29,-0.9h0v-0.16a1.42,1.42 0,0 0,-0.1 -0.49,0.73 0.73,0 0,0 -0.28,-0.32 0.68,0.68 0,0 0,-0.4 -0.12,0.74 0.74,0 0,0 -0.39,0.11 0.71,0.71 0,0 0,-0.28 0.29,0.91 0.91,0 0,0 -0.09,0.41 0.82,0.82 0,0 0,0.18 0.56,0.6 0.6,0 0,0 0.48,0.21 0.61,0.61 0,0 0,0.42 -0.17,0.59 0.59,0 0,1 -0.64,0.55h-0.1ZM55.32,98.71a0.29,0.29 0,0 1,-0.24 -0.12,0.56 0.56,0 0,1 -0.08,-0.3 0.63,0.63 0,0 1,0.08 -0.32,0.28 0.28,0 0,1 0.23,-0.12 0.25,0.25 0,0 1,0.23 0.13,0.58 0.58,0 0,1 0.09,0.35h0v0.19a0.31,0.31 0,0 1,-0.12 0.14A0.36,0.36 0,0 1,55.32 98.73ZM57.18,99.83a0.67,0.67 0,0 0,0.57 -0.25,1.18 1.18,0 0,0 0.2,-0.73h0v-0.42a1.1,1.1 0,0 0,-0.21 -0.7,0.67 0.67,0 0,0 -0.57,-0.25 0.7,0.7 0,0 0,-0.57 0.25,1.18 1.18,0 0,0 -0.2,0.73h0v0.42a1.1,1.1 0,0 0,0.21 0.7A0.67,0.67 0,0 0,57.18 99.85ZM57.18,99.46a0.26,0.26 0,0 1,-0.25 -0.13,0.91 0.91,0 0,1 -0.07,-0.42h0v-0.55a0.78,0.78 0,0 1,0.08 -0.39,0.26 0.26,0 0,1 0.23,-0.12 0.28,0.28 0,0 1,0.25 0.13,0.86 0.86,0 0,1 0.07,0.41h0L57.49,99a0.8,0.8 0,0 1,-0.07 0.39A0.25,0.25 0,0 1,57.18 99.48ZM58.58,99.8 L58.74,99.33h0.82l0.16,0.47h0.5l-0.86,-2.29h-0.43l-0.85,2.29ZM59.43,98.95h-0.57l0.29,-0.86ZM60.9,99.8v-0.63l0,-1.07 0.61,1.7h0.33l0.61,-1.7 0,1.07v0.63h0.48L62.93,97.53h-0.62l-0.58,1.66 -0.59,-1.66h-0.62v2.29ZM64.72,99.8v-0.38h-1L63.72,97.53h-0.47v2.29Z" + android:fillColor="#fff"/> + <path + android:pathData="M48.32,112.28v-0.93h0.9L49.22,111h-0.9v-0.59h1L49.32,110L47.84,110v2.28ZM50.08,112.28v-0.65l0.24,-0.26 0.59,0.91h0.56L50.63,111l0.81,-1h-0.58l-0.58,0.75 -0.2,0.29v-1L49.6,110.04v2.28ZM52.26,112.28a0.86,0.86 0,0 0,0.39 -0.09,0.68 0.68,0 0,0 0.27,-0.26 0.71,0.71 0,0 0,0.1 -0.39h0L53.02,110h-0.47v1.58a0.43,0.43 0,0 1,-0.08 0.27,0.26 0.26,0 0,1 -0.21,0.09 0.3,0.3 0,0 1,-0.23 -0.08,0.44 0.44,0 0,1 -0.07,-0.25h-0.47a0.69,0.69 0,0 0,0.2 0.52A0.83,0.83 0,0 0,52.26 112.32ZM53.7,112.28h0.11a1.13,1.13 0,0 0,0.8 -0.35,1.33 1.33,0 0,0 0.29,-0.9h0v-0.17a1.41,1.41 0,0 0,-0.1 -0.48,0.83 0.83,0 0,0 -0.28,-0.33 0.75,0.75 0,0 0,-0.4 -0.11,0.73 0.73,0 0,0 -0.39,0.1 0.78,0.78 0,0 0,-0.28 0.29,1 1,0 0,0 -0.09,0.42 0.84,0.84 0,0 0,0.18 0.56,0.6 0.6,0 0,0 0.48,0.21 0.58,0.58 0,0 0,0.42 -0.18,0.59 0.59,0 0,1 -0.64,0.56h-0.1ZM54.13,111.17a0.29,0.29 0,0 1,-0.24 -0.12,0.57 0.57,0 0,1 -0.08,-0.31 0.59,0.59 0,0 1,0.08 -0.31,0.29 0.29,0 0,1 0.23,-0.13 0.26,0.26 0,0 1,0.23 0.13,0.64 0.64,0 0,1 0.09,0.36h0L54.44,111a0.29,0.29 0,0 1,-0.12 0.13A0.29,0.29 0,0 1,54.13 111.2ZM55.54,112.28h0.11a1.13,1.13 0,0 0,0.81 -0.35,1.33 1.33,0 0,0 0.28,-0.9h0v-0.17a1.06,1.06 0,0 0,-0.1 -0.48,0.8 0.8,0 0,0 -0.27,-0.33 0.81,0.81 0,0 0,-0.8 0,0.69 0.69,0 0,0 -0.27,0.29 0.87,0.87 0,0 0,-0.1 0.42,0.84 0.84,0 0,0 0.18,0.56 0.61,0.61 0,0 0,0.49 0.21,0.57 0.57,0 0,0 0.41,-0.18 0.59,0.59 0,0 1,-0.64 0.56h-0.1ZM56,111.2a0.26,0.26 0,0 1,-0.24 -0.12,0.5 0.5,0 0,1 -0.09,-0.31 0.52,0.52 0,0 1,0.09 -0.31,0.27 0.27,0 0,1 0.22,-0.13 0.29,0.29 0,0 1,0.24 0.13,0.64 0.64,0 0,1 0.09,0.36h0L56.31,111a0.49,0.49 0,0 1,-0.12 0.13A0.33,0.33 0,0 1,56 111.2ZM57.86,112.32a0.92,0.92 0,0 0,0.41 -0.1,0.78 0.78,0 0,0 0.27,-0.27 0.87,0.87 0,0 0,0.09 -0.4,0.76 0.76,0 0,0 -0.19,-0.56 0.64,0.64 0,0 0,-0.51 -0.21,0.69 0.69,0 0,0 -0.34,0.09h0l0,-0.49h0.91L58.5,110L57.25,110l-0.13,1.16 0.36,0.09 0.05,0a0.35,0.35 0,0 1,0.26 -0.08,0.33 0.33,0 0,1 0.27,0.1 0.45,0.45 0,0 1,0.1 0.3,0.48 0.48,0 0,1 -0.09,0.31 0.27,0.27 0,0 1,-0.23 0.11,0.34 0.34,0 0,1 -0.23,-0.08 0.32,0.32 0,0 1,-0.1 -0.22h-0.45a0.72,0.72 0,0 0,0.11 0.35,0.63 0.63,0 0,0 0.28,0.23A0.86,0.86 0,0 0,57.84 112.32ZM59.64,112.32a0.93,0.93 0,0 0,0.59 -0.19,0.61 0.61,0 0,0 0.22,-0.49 0.51,0.51 0,0 0,-0.1 -0.32,0.61 0.61,0 0,0 -0.28,-0.21 0.69,0.69 0,0 0,0.25 -0.2,0.52 0.52,0 0,0 0.09,-0.29 0.63,0.63 0,0 0,-0.2 -0.48,0.9 0.9,0 0,0 -0.57,-0.17 0.92,0.92 0,0 0,-0.38 0.08,0.6 0.6,0 0,0 -0.27,0.22 0.53,0.53 0,0 0,-0.1 0.32h0.45a0.21,0.21 0,0 1,0.09 -0.18,0.33 0.33,0 0,1 0.22,-0.08 0.34,0.34 0,0 1,0.23 0.08,0.29 0.29,0 0,1 0.08,0.22 0.36,0.36 0,0 1,-0.08 0.23,0.38 0.38,0 0,1 -0.26,0.08h-0.24v0.36h0.24c0.25,0 0.38,0.11 0.38,0.34a0.29,0.29 0,0 1,-0.1 0.22,0.33 0.33,0 0,1 -0.25,0.09 0.41,0.41 0,0 1,-0.24 -0.08,0.29 0.29,0 0,1 -0.09,-0.21h-0.46a0.58,0.58 0,0 0,0.22 0.48A0.84,0.84 0,0 0,59.62 112.32ZM61.52,112.32a0.68,0.68 0,0 0,0.58 -0.26,1.13 1.13,0 0,0 0.19,-0.72h0v-0.42a1.13,1.13 0,0 0,-0.2 -0.71,0.69 0.69,0 0,0 -0.57,-0.24 0.67,0.67 0,0 0,-0.57 0.25,1.12 1.12,0 0,0 -0.2,0.72h0v0.42a1.11,1.11 0,0 0,0.2 0.71A0.7,0.7 0,0 0,61.5 112.32ZM61.52,111.95a0.24,0.24 0,0 1,-0.24 -0.14,0.84 0.84,0 0,1 -0.08,-0.41h0v-0.56a0.86,0.86 0,0 1,0.08 -0.38,0.26 0.26,0 0,1 0.24,-0.12 0.25,0.25 0,0 1,0.24 0.13,0.82 0.82,0 0,1 0.08,0.41h0v0.54a0.83,0.83 0,0 1,-0.08 0.4A0.25,0.25 0,0 1,61.5 112ZM64.14,112.28v-0.36h-1l0.52,-0.55A1.83,1.83 0,0 0,64 111a0.75,0.75 0,0 0,0.09 -0.34,0.6 0.6,0 0,0 -0.2,-0.48 0.82,0.82 0,0 0,-0.55 -0.17,0.8 0.8,0 0,0 -0.41,0.1 0.66,0.66 0,0 0,-0.28 0.27,0.7 0.7,0 0,0 -0.1,0.38L63,110.76a0.47,0.47 0,0 1,0.08 -0.28,0.31 0.31,0 0,1 0.25,-0.11 0.28,0.28 0,0 1,0.22 0.09,0.36 0.36,0 0,1 0.07,0.24 0.49,0.49 0,0 1,-0.07 0.24,2 2,0 0,1 -0.22,0.29h0l-0.74,0.78v0.31Z" + android:fillColor="#fff"/> + <path + android:pathData="M47.72,124.75v-1h0.92v1h0.47v-2.28h-0.47v0.92h-0.92v-0.92h-0.47v2.28ZM49.86,124.75 L50.01,124.28h0.83l0.16,0.47h0.5l-0.86,-2.28h-0.43l-0.85,2.28ZM50.71,123.9h-0.57l0.28,-0.86ZM52.37,124.78a0.92,0.92 0,0 0,0.59 -0.18,0.6 0.6,0 0,0 0.22,-0.49 0.6,0.6 0,0 0,-0.09 -0.33,0.56 0.56,0 0,0 -0.29,-0.2 0.72,0.72 0,0 0,0.25 -0.21,0.47 0.47,0 0,0 0.09,-0.28 0.57,0.57 0,0 0,-0.2 -0.48,0.85 0.85,0 0,0 -0.57,-0.18 0.92,0.92 0,0 0,-0.38 0.08,0.62 0.62,0 0,0 -0.27,0.23 0.51,0.51 0,0 0,-0.1 0.32h0.46a0.22,0.22 0,0 1,0.08 -0.19,0.32 0.32,0 0,1 0.22,-0.07 0.34,0.34 0,0 1,0.23 0.08,0.29 0.29,0 0,1 0.08,0.21 0.34,0.34 0,0 1,-0.08 0.23,0.34 0.34,0 0,1 -0.26,0.09h-0.24v0.35h0.24c0.25,0 0.38,0.12 0.38,0.34a0.28,0.28 0,0 1,-0.1 0.23,0.33 0.33,0 0,1 -0.25,0.09 0.36,0.36 0,0 1,-0.24 -0.09,0.26 0.26,0 0,1 -0.09,-0.21h-0.46a0.61,0.61 0,0 0,0.22 0.48A0.86,0.86 0,0 0,52.37 124.78ZM54.83,124.78v-0.49h0.26v-0.37h-0.26v-1.42h-0.45l-1,1.5 0,0.29h0.94v0.49ZM54.38,123.92h-0.5l0.47,-0.75 0,-0.06ZM56.3,124.81a1.72,1.72 0,0 0,0.52 -0.08,1 1,0 0,0 0.36,-0.24h0v-0.91h-0.9v0.35h0.43v0.39a0.52,0.52 0,0 1,-0.38 0.11,0.46 0.46,0 0,1 -0.4,-0.18 0.89,0.89 0,0 1,-0.14 -0.54h0v-0.15a0.9,0.9 0,0 1,0.13 -0.54,0.47 0.47,0 0,1 0.66,-0.08 0.44,0.44 0,0 1,0.14 0.28h0.46a0.82,0.82 0,0 0,-0.28 -0.56,1 1,0 0,0 -1.14,-0.06 0.77,0.77 0,0 0,-0.33 0.38,1.35 1.35,0 0,0 -0.12,0.59h0v0.16a1.34,1.34 0,0 0,0.13 0.58,0.82 0.82,0 0,0 0.34,0.37A1,1 0,0 0,56.3 124.78ZM58.41,124.81a0.87,0.87 0,0 0,0.64 -0.22,0.75 0.75,0 0,0 0.24,-0.59h0v-1.5h-0.48L58.81,124a0.36,0.36 0,0 1,-0.4 0.41,0.42 0.42,0 0,1 -0.3,-0.1A0.45,0.45 0,0 1,58 124h0v-1.5h-0.47L57.53,124a0.74,0.74 0,0 0,0.24 0.58A0.89,0.89 0,0 0,58.41 124.78ZM60.05,124.81 L60.49,124.01 60.93,124.81h0.55l-0.69,-1.15 0.67,-1.13h-0.54l-0.43,0.78 -0.43,-0.78h-0.54l0.67,1.13 -0.69,1.15ZM62.42,124.81a0.88,0.88 0,0 0,0.41 -0.09,0.73 0.73,0 0,0 0.27,-0.28 0.8,0.8 0,0 0,0.09 -0.39,0.83 0.83,0 0,0 -0.18,-0.57 0.7,0.7 0,0 0,-0.52 -0.2,0.69 0.69,0 0,0 -0.34,0.09h0l0.06,-0.5h0.9v-0.37L61.83,122.5l-0.13,1.16 0.36,0.09 0,0a0.36,0.36 0,0 1,0.26 -0.09,0.37 0.37,0 0,1 0.27,0.1 0.45,0.45 0,0 1,0.1 0.3,0.51 0.51,0 0,1 -0.09,0.32 0.27,0.27 0,0 1,-0.23 0.11,0.34 0.34,0 0,1 -0.23,-0.08 0.41,0.41 0,0 1,-0.1 -0.23h-0.45a0.8,0.8 0,0 0,0.11 0.35,0.81 0.81,0 0,0 0.28,0.24A1,1 0,0 0,62.42 124.78ZM64.58,124.81v-2.29h0l-0.94,0.34v0.37l0.54,-0.17v1.75Z" + android:fillColor="#fff"/> + <path + android:pathData="M45.23,90.6h-0.5a0.8,0.8 0,0 1,-0.71 -0.77V82.6a0.86,0.86 0,0 1,0.81 -0.93h0.4Z" + android:fillColor="#be0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M45.24,103h-0.32a1.08,1.08 0,0 1,-0.18 0,0.8 0.8,0 0,1 -0.72,-0.76V95a0.86,0.86 0,0 1,0.82 -0.92h0.4Z" + android:fillColor="#be0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M80.61,104a1.81,1.81 0,1 1,-1.81 -1.81A1.81,1.81 0,0 1,80.61 104" + android:fillColor="#a6b4bc" + android:fillType="evenOdd"/> + <path + android:pathData="M93.3,103.94a1.85,1.85 0,1 1,-1.85 -1.85,1.84 1.84,0 0,1 1.85,1.85" + android:fillColor="#a6b4bc" + android:fillType="evenOdd"/> + <path + android:pathData="M182.39,138.17H120.66c-2.61,0 -4.73,-2.57 -4.73,-5.73V68.05c0,-3.17 2.12,-5.73 4.73,-5.73h61.73c2.61,0 4.73,2.56 4.73,5.73v64.39c0,3.16 -2.12,5.73 -4.73,5.73" + android:fillColor="#94a1ab" + android:fillType="evenOdd"/> + <path + android:pathData="M177.66,116a2.14,2.14 0,1 0,2.14 -2.14,2.14 2.14,0 0,0 -2.14,2.14" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M169.11,116a2.14,2.14 0,1 0,2.13 -2.14,2.13 2.13,0 0,0 -2.13,2.14" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M160.55,116a2.14,2.14 0,1 0,2.14 -2.14,2.14 2.14,0 0,0 -2.14,2.14" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M177.7,95.48a2.14,2.14 0,1 0,1.68 -1.68,2.14 2.14,0 0,0 -1.68,1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M169.15,95.48a2.14,2.14 0,1 0,1.68 -1.68,2.14 2.14,0 0,0 -1.68,1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M160.59,95.48a2.14,2.14 0,1 0,1.68 -1.68,2.15 2.15,0 0,0 -1.68,1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M123.4,80h30.48a1.34,1.34 0,0 0,1.33 -1.33V72.82a1.33,1.33 0,0 0,-1.33 -1.33H123.4a1.32,1.32 0,0 0,-1.33 1.33v5.89A1.33,1.33 0,0 0,123.4 80" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M177.7,75.34a2.14,2.14 0,1 0,1.68 -1.68,2.14 2.14,0 0,0 -1.68,1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M169.15,75.34a2.14,2.14 0,1 0,1.68 -1.68,2.14 2.14,0 0,0 -1.68,1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M160.59,75.34a2.14,2.14 0,1 0,1.68 -1.68,2.14 2.14,0 0,0 -1.68,1.68" + android:fillColor="#dce1e5" + android:fillType="evenOdd"/> + <path + android:pathData="M123.67,100.21h30.48a1.32,1.32 0,0 0,1.33 -1.33V93a1.33,1.33 0,0 0,-1.33 -1.33H123.67A1.34,1.34 0,0 0,122.34 93v5.89a1.33,1.33 0,0 0,1.33 1.33" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M123.67,119.74h30.48a1.33,1.33 0,0 0,1.33 -1.33v-5.89a1.32,1.32 0,0 0,-1.33 -1.33H123.67a1.33,1.33 0,0 0,-1.33 1.33v5.89a1.34,1.34 0,0 0,1.33 1.33" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M90.83,146c1.6,-17.76 24.86,-16 26.62,-15.34 4.92,-11.22 21.56,-12.52 27.37,-8.37a21.92,21.92 0,0 1,10.66 -9.81c12.33,-5.71 34.16,-8.16 46.83,16.75 19.81,-0.4 21.45,16 21.8,16.77H90.83Z" + android:fillColor="#d8ecf9" + android:fillType="evenOdd"/> + <path + android:pathData="M106.54,103.91a1.85,1.85 0,1 1,-1.85 -1.84,1.85 1.85,0 0,1 1.85,1.84" + android:fillColor="#a6b4bc" + android:fillType="evenOdd"/> + <path + android:pathData="M199.34,104a1.81,1.81 0,1 1,-1.81 -1.81,1.81 1.81,0 0,1 1.81,1.81" + android:fillColor="#a6b4bc" + android:fillType="evenOdd"/> + <path + android:pathData="M212,103.94a1.85,1.85 0,1 1,-1.85 -1.85,1.84 1.84,0 0,1 1.85,1.85" + android:fillColor="#a6b4bc" + android:fillType="evenOdd"/> + <path + android:pathData="M225.27,103.91a1.85,1.85 0,1 1,-1.85 -1.84,1.85 1.85,0 0,1 1.85,1.84" + android:fillColor="#a6b4bc" + android:fillType="evenOdd"/> + <path + android:pathData="M46.83,112.27H20.22a6.31,6.31 0,0 0,-6.33 6.29v64.08a6.3,6.3 0,0 0,6.33 6.29H46.83a6.3,6.3 0,0 0,6.33 -6.29V118.56a6.31,6.31 0,0 0,-6.33 -6.29" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <group> + <clip-path + android:pathData="M12.64,110.4l41.14,0l0,80.4l-41.14,0l0,-80.4z"/> + <path + android:pathData="M47.15,112.59A4.43,4.43 0,0 1,51.58 117v67.21a4.42,4.42 0,0 1,-4.43 4.4L19.27,188.61a4.42,4.42 0,0 1,-4.43 -4.4L14.84,117a4.43,4.43 0,0 1,4.43 -4.41ZM47.15,110.4L19.27,110.4a6.61,6.61 0,0 0,-6.63 6.6v67.21a6.61,6.61 0,0 0,6.63 6.59L47.15,190.8a6.61,6.61 0,0 0,6.63 -6.59L53.78,117a6.61,6.61 0,0 0,-6.63 -6.6Z" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + </group> + <path + android:pathData="M48.08,160.48l-29.61,0.15a0.79,0.79 0,0 1,-0.79 -0.79l-0.12,-23.37a0.79,0.79 0,0 1,0.78 -0.79L48,135.53a0.78,0.78 0,0 1,0.79 0.78l0.12,23.37a0.8,0.8 0,0 1,-0.78 0.8" + android:fillColor="#efefef" + android:fillType="evenOdd"/> + <path + android:pathData="M38.49,150.49A5.54,5.54 0,1 1,36.17 143a5.53,5.53 0,0 1,2.32 7.47" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M39.35,152.89c-0.12,0.2 -0.56,0.88 -0.87,0 -0.4,-1.09 -1.26,-0.85 -1.26,-0.85l-0.79,0.11 1.67,-1.88a2.41,2.41 0,0 0,0.2 1.13,1 1,0 0,0 0.71,0.48c0.33,0 1,0 0.34,1" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M30.26,155.19c-0.22,-0.08 -1,-0.35 -0.23,-0.84a1.57,1.57 0,0 0,0.68 -1.68l-0.28,-0.75 2.2,1.21a2.38,2.38 0,0 0,-1.05 0.45,1.65 1.65,0 0,0 -0.44,1.06c0.06,0.32 0.18,0.94 -0.88,0.55" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M35.88,152.39s-0.44,0.23 -0.3,1.23a10,10 0,0 0,0.54 1.69c0,0.13 0.11,0.16 0.22,0.24s0.64,0.57 -0.28,0.83 -1.12,0.14 -1,-0.32a1.32,1.32 0,0 0,0.09 -0.65,4 4,0 0,0 -1,-2.21c-0.76,-0.53 -0.5,-0.37 -0.5,-0.37l1.64,-1.24Z" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M32,140.74c0.3,-0.05 0.63,-0.15 0.49,0.38a1.33,1.33 0,0 0,0 0.52,1.19 1.19,0 0,0 0.51,0.92l0.25,0.2 -1.69,0.15a0.76,0.76 0,0 0,0.22 -0.69c0,-0.18 -0.06,-0.58 -0.26,-0.73s-0.58,-0.6 0.52,-0.75" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M29.33,146a0.41,0.41 0,0 1,-0.17 -0.42,1.05 1.05,0 0,0 -0.37,-1.19 6.23,6.23 0,0 0,-1.61 -1c-0.58,-0.07 -0.95,-0.09 -0.32,-1s0.95,-0.81 1,-0.16a0.77,0.77 0,0 0,0.14 0.39c0.3,0.41 1.44,1.52 2.2,1.53 0.24,0 0,1.22 0,1.22 -0.05,0.31 -0.86,0.61 -0.86,0.61" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M25.55,147.4c0.08,-0.69 0.37,-1 1,-0.6 1.07,0.74 2.28,-0.34 2.28,-0.34l0.23,-0.64 -0.25,3a3.3,3.3 0,0 0,-0.95 -0.87,2.29 2.29,0 0,0 -1.31,-0.07c-0.38,0.16 -1.07,0.38 -1,-0.48" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M30.23,151.36a1.19,1.19 0,0 0,-1.61 0,12.07 12.07,0 0,0 -1.11,0.9s-0.75,1.53 -1.55,0.31 -0.14,-1.5 0.73,-1.3c0,0 1.8,-0.5 2.1,-1.48s0.14,-0.72 0.14,-0.72L31,150.73Z" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M34.28,142.78a1.15,1.15 0,0 0,1.33 -0.83c0.21,-0.52 0.38,-1.1 0.45,-1.31a1.1,1.1 0,0 0,0.06 -0.48c0,-0.29 0.06,-0.77 1,-0.3s0.72,0.82 0.37,1a1.07,1.07 0,0 0,-0.37 0.27,3.52 3.52,0 0,0 -0.94,2.31c0.22,1 0.23,0.69 0.23,0.69l-2.24,-0.24Z" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M40.34,144c0.14,0.19 0.6,0.86 -0.29,0.82a1.56,1.56 0,0 0,-1.54 1l-0.2,0.78 -1.09,-2.27a2.38,2.38 0,0 0,1.12 0.25,1.73 1.73,0 0,0 1,-0.61c0.13,-0.3 0.39,-0.87 1,0.06" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M38.73,147.32a1,1 0,0 0,1.18 0.81,11.27 11.27,0 0,1 1.16,0 2.38,2.38 0,0 0,0.71 -0.07c0.26,-0.18 0.76,-0.41 0.68,0.54 -0.06,0.8 -0.25,1.11 -0.63,0.8a3.66,3.66 0,0 0,-1 -0.36,2.58 2.58,0 0,0 -1.91,0.09c-0.76,0.54 -0.52,0.35 -0.52,0.35l-0.6,-2Z" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M269.35,99.61a18,18 0,1 1,-18 -18,18 18,0 0,1 18,18" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M247.52,107c-0.07,-0.28 -0.14,-0.57 -0.2,-0.87 -4.51,0.73 -6.38,5 -5.61,8.62 0.35,0.23 0.72,0.45 1.09,0.66 -1.16,-3.37 0.41,-7.71 4.72,-8.41" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M255,110.28h-0.87a6.71,6.71 0,0 1,-0.94 7.21c0.37,0 0.73,-0.09 1.09,-0.14a7.69,7.69 0,0 0,0.72 -7.06" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M251,108.58c-0.58,0 -1.11,0 -1.57,0.06 0.17,0.89 0.1,1.58 -0.47,1.51h-0.06a0.87,0.87 0,0 0,0.3 0l4.91,0.08H255l2,0v-0.13h0.68l-0.54,-1.28a36.63,36.63 0,0 1,-6.08 -0.32" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M248.12,109a0.12,0.12 0,0 0,0 0.1c0.15,0.4 0.24,0.83 0.67,1a2.37,2.37 0,0 1,-0.65 -1.12" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M254.13,105.78c-1.25,1.19 -3.83,2.4 -4.94,1.74a2.53,2.53 0,0 0,1.83 1.06,36.68 36.68,0 0,0 6.08,0.32l-1.36,-3.2c-0.37,0 -0.94,0 -1.61,0.08" + android:fillColor="#3e6883" + android:fillType="evenOdd"/> + <path + android:pathData="M258.59,106.51c-0.47,-0.09 -1.2,-0.35 -2,-0.62l3.52,8.29 0.39,0.93a17.92,17.92 0,0 0,1.58 -1l-1.63,-5.88a3.14,3.14 0,0 0,-1.81 -1.68" + android:fillColor="#3e6883" + android:fillType="evenOdd"/> + <path + android:pathData="M250.7,95.24l0.22,-0.63a4.25,4.25 0,0 1,-1.41 -0.63h0c-0.18,0.34 -0.45,0.83 -0.59,1.08a1.1,1.1 0,0 1,0.54 -0.15,2.33 2.33,0 0,1 1.24,0.33" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M251.94,90.78a0.22,0.22 0,0 0,-0.26 0.13,2.29 2.29,0 0,1 -1.16,1.15c-0.32,-0.83 -1.13,-0.5 -0.85,0.36 0.1,0.3 0.63,0.74 0.54,1a1.15,1.15 0,0 1,-0.7 0.59,4.25 4.25,0 0,0 1.41,0.63l0.9,0.3c0.93,0.34 2,-2.21 1.51,-3.75a5,5 0,0 0,-0.27 -0.62,1 1,0 0,1 -1.12,0.24" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M250.21,93.39c0.09,-0.23 -0.44,-0.67 -0.54,-1 -0.28,-0.86 0.53,-1.19 0.85,-0.36a2.29,2.29 0,0 0,1.16 -1.15,0.22 0.22,0 0,1 0.26,-0.13 1,1 0,0 0,1.12 -0.24,0.88 0.88,0 0,0 -0.65,-1.48c-0.26,-0.31 -2.84,-1.87 -4.43,0.49 -0.46,0.7 -0.29,2.34 0.35,3.53l0.06,0.1c0.24,0.31 0.67,0.86 0.82,0.86a1.33,1.33 0,0 0,0.3 -0.06h0a1.15,1.15 0,0 0,0.7 -0.59" + android:fillColor="#663014" + android:fillType="evenOdd"/> + <path + android:pathData="M254.71,104.71c-0.16,-0.72 -0.33,-1.48 -0.51,-2.26l-0.77,0a1.84,1.84 0,0 1,-1.53 -0.78l-3.08,-3.19c-0.77,-1.28 1,-3.36 2.27,-2.09l2.38,3.38c-0.67,-2.07 -1.54,-3.85 -2.77,-4.56a2.33,2.33 0,0 0,-1.24 -0.33,1.1 1.1,0 0,0 -0.54,0.15 5.09,5.09 0,0 0,-1.82 4.37c0,0.15 0.05,0.32 0.08,0.5 0.45,1.32 0.9,3.12 1.28,4.73a39.68,39.68 0,0 1,6.25 0" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M249.19,107.52c1.11,0.66 3.68,-0.55 4.94,-1.74a37.86,37.86 0,0 1,-5.37 0.16c0.13,0.57 0.25,1.08 0.36,1.5 0,0 0,0 0,0l0.06,0" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M259.71,100.32a0.2,0.2 0,0 1,0.11 0c0.1,-0.72 0.21,-1.43 0.21,-1.43 0.13,-0.44 -0.33,-0.24 -0.54,-0.25h-0.15c-0.16,0 -0.19,0.06 -0.22,0.22l-0.27,1.74h0.24Z" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M258.3,101.88c0.27,0 1.07,0.53 1.32,0.26l0.59,-0.5c0.37,-0.35 0,-1.38 -0.39,-1.35a0.23,0.23 0,0 0,-0.11 0l-0.62,0.26h-0.63l-0.17,1.18Z" + android:fillColor="#ffc1af" + android:fillType="evenOdd"/> + <path + android:pathData="M248.82,98.51l3.08,3.19a1.81,1.81 0,0 0,1.53 0.77l0.77,0 4,-0.13 0.08,-0.56 0.17,-1.18 0,-0.3 -4.73,-0.06 -0.3,-0.42 -2.38,-3.38c-1.28,-1.27 -3,0.82 -2.27,2.09" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M248.46,104.66c0.1,0.45 0.2,0.88 0.3,1.28a37.86,37.86 0,0 0,5.37 -0.16c0.67,0 1.24,-0.08 1.61,-0.08l0,-0.11 0.6,-0.25 0.16,0.36c0.55,0 1.23,0.08 1.24,-0.47s-0.95,-0.44 -1.55,-0.52a7.2,7.2 0,0 1,-1.44 0,39.68 39.68,0 0,0 -6.25,0" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M248.12,109a2.37,2.37 0,0 0,0.65 1.12,0.28 0.28,0 0,0 0.15,0H249c0.57,0.07 0.64,-0.62 0.47,-1.51a2.07,2.07 0,0 0,0 -0.22,8.25 8.25,0 0,1 -0.29,-1c-0.11,-0.42 -0.23,-0.93 -0.36,-1.5 -0.1,-0.4 -0.2,-0.83 -0.3,-1.28 -0.38,-1.61 -0.83,-3.41 -1.28,-4.73 -0.36,-1.06 -0.72,-1.81 -1.05,-1.93 0,0 -0.62,-0.45 -0.42,0.46 0.26,0.49 0.88,4.48 1.61,7.67 0.06,0.3 0.13,0.59 0.2,0.87a18.15,18.15 0,0 0,0.6 2" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M257.64,110.18H257v6.26a2.1,2.1 0,0 1,0.75 0l0.06,0V110.5Z" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M247.64,113.38a0.83,0.83 0,0 0,1.66 0,0.83 0.83,0 0,0 -1.66,0" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M257,116.44a1.83,1.83 0,0 0,-1 0.54c0.59,-0.16 1.17,-0.35 1.74,-0.56a2.1,2.1 0,0 0,-0.75 0" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M256.54,105.89l-0.08,-0.19 -0.16,-0.36 -0.6,0.25 0,0.11 1.36,3.2 0.54,1.28 0.14,0.32 2.1,4.94 0.57,-0.33 -0.4,-0.93Z" + android:fillColor="#6a7f90" + android:fillType="evenOdd"/> + <path + android:pathData="M342.69,99.23a18,18 0,1 1,-18 -18,18 18,0 0,1 18,18" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M322.86,91.17c-0.08,-0.47 -0.19,-1 -0.27,-1.45h0c0.11,-0.14 -0.41,1.65 0.33,1.92h0a3.18,3.18 0,0 1,-0.06 -0.43,0.13 0.13,0 0,1 0,-0.06" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M327.39,90.42v0.08a9.89,9.89 0,0 1,-0.13 1.22h0c0.55,-0.2 0.4,-1.82 0.33,-1.92a0.15,0.15 0,0 0,-0.11 0c0,0.19 -0.07,0.38 -0.11,0.56s0,0.07 0,0.11" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M320.46,110.59v0c0,1.51 0.05,3.7 0.19,6.18a18,18 0,0 0,4.05 0.47c0.3,0 0.59,0 0.88,0 0,-0.1 0,-0.2 0,-0.3a0.09,0.09 0,0 1,0.17 0s0,0.11 0,0.3a18.27,18.27 0,0 0,4.76 -0.94,41.46 41.46,0 0,0 -0.48,-6c-0.7,1.57 -9.28,1.57 -9.62,0.35" + android:fillColor="#8c8c99" + android:fillType="evenOdd"/> + <path + android:pathData="M332.5,109.42l-0.66,0.1a0.35,0.35 0,0 1,-0.29 -0.12,4.12 4.12,0 0,0 -0.11,2c0.09,0.53 0.88,1.39 1.45,0.74a3.16,3.16 0,0 0,-0.11 -2.87,0.4 0.4,0 0,1 -0.28,0.16" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M330.08,110.24s0,-0.07 0,-0.11a40.48,40.48 0,0 0,-0.69 -8.31c0.57,2.45 1.62,6.66 2,7.37a0.8,0.8 0,0 0,0.15 0.21,0.35 0.35,0 0,0 0.29,0.12l0.66,-0.1a0.4,0.4 0,0 0,0.28 -0.16,0.37 0.37,0 0,0 0.1,-0.25 29.74,29.74 0,0 0,-1 -7.51c-0.3,-1.35 -1.41,-5.79 -4.31,-7.5a5,5 0,0 0,-1.19 -0.5,0 0,0 0,1 0,0l0,0.33c0,0.57 -0.82,1.15 -1.32,1.14a1,1 0,0 1,-1 -1v-0.29l-0.15,-0.11a6.2,6.2 0,0 0,-2.4 1.37c-0.91,0.83 -2.11,2.7 -3.33,3.9A16.68,16.68 0,0 1,313 103l0.28,2a16.09,16.09 0,0 0,5.39 -2.77,19.15 19.15,0 0,0 1.93,-1.82c0.34,-0.34 -0.45,2 -0.12,10.19v0c0.34,1.22 8.92,1.22 9.62,-0.35" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M324.91,94a2.26,2.26 0,0 1,-0.87 -0.34V94a1,1 0,0 0,1 1c0.5,0 1.31,-0.57 1.31,-1.14l0,-0.33a2.3,2.3 0,0 1,-1.07 0.48,0.81 0.81,0 0,1 -0.38,0" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M327.39,90.47v0a0.22,0.22 0,0 1,0 -0.08,0.09 0.09,0 0,0 0,0" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M325.8,92.1c-0.13,-0.06 -0.56,-0.07 -0.7,-0.24 -0.15,0.16 -0.59,0.11 -0.72,0.15s-0.13,0.14 -0.21,0.31a1,1 0,0 0,1 0.59,1 1,0 0,0 0.85,-0.47 0.85,0.85 0,0 0,-0.21 -0.34" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M325.12,91.41a1.33,1.33 0,0 1,0.87 0.11,1 1,0 0,1 0.27,0.47c0.09,-0.18 0.17,-0.37 0.26,-0.55a0.85,0.85 0,0 1,0.14 -0.19l0.17,-0.2a2,2 0,0 0,0.22 -0.67c0.23,-1.59 0.41,-3.17 -1.82,-2.84a0.82,0.82 0,0 1,-0.35 0c-1.95,-0.44 -2,1.14 -1.8,3a1.59,1.59 0,0 0,0.55 0.85,1.71 1.71,0 0,1 0.11,0.14c0.08,0.13 0.15,0.27 0.22,0.41a1.13,1.13 0,0 1,1.16 -0.48" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M324,91.89c-0.07,-0.14 -0.14,-0.28 -0.22,-0.41a1.71,1.71 0,0 0,-0.11 -0.14,1.59 1.59,0 0,1 -0.55,-0.85c-0.23,-1.82 -0.15,-3.4 1.8,-3a0.82,0.82 0,0 0,0.35 0c2.23,-0.33 2,1.25 1.82,2.84a2,2 0,0 1,-0.22 0.67l-0.17,0.2a0.85,0.85 0,0 0,-0.14 0.19c-0.09,0.18 -0.17,0.37 -0.26,0.55a1.65,1.65 0,0 1,0.05 1.21s-0.15,-0.43 -0.3,-0.76a1,1 0,0 1,-0.85 0.46,1 1,0 0,1 -1,-0.58c-0.14,0.31 -0.28,0.73 -0.28,0.73a1.26,1.26 0,0 1,0.07 -1.16m1,2.11a0.81,0.81 0,0 0,0.38 0,2.3 2.3,0 0,0 1.07,-0.48v0a2.92,2.92 0,0 0,0.89 -1.78,9.69 9.69,0 0,0 0.13,-1.22v-0.08s0,-0.07 0,-0.11 0.08,-0.37 0.11,-0.56a5.27,5.27 0,0 0,0.1 -1.49h0a1.55,1.55 0,0 0,-1.08 -1.86,0.92 0.92,0 0,1 -0.45,-0.17 1.14,1.14 0,0 0,-1 -0.13,0.93 0.93,0 0,1 -0.49,0.06 0.79,0.79 0,0 0,-0.7 0.19,0.84 0.84,0 0,1 -0.34,0.17 1.52,1.52 0,0 0,-1 1.76,0.71 0.71,0 0,1 0,0.14 5.59,5.59 0,0 0,0.07 1.29c0.07,0.49 0.19,1 0.27,1.45a0.13,0.13 0,0 0,0 0.06,3.18 3.18,0 0,0 0.06,0.43 2.89,2.89 0,0 0,1 1.89l0.15,0.11a2.26,2.26 0,0 0,0.87 0.34" + android:fillColor="#dfdfdf" + android:fillType="evenOdd"/> + <path + android:pathData="M324.17,92.32c0.08,-0.16 0.15,-0.3 0.21,-0.31s0.57,0 0.72,-0.15c0.14,0.17 0.57,0.18 0.7,0.24a0.85,0.85 0,0 1,0.21 0.34c0.15,0.33 0.3,0.76 0.3,0.76a1.65,1.65 0,0 0,-0.05 -1.21,1 1,0 0,0 -0.27,-0.47 1.33,1.33 0,0 0,-0.87 -0.11,1.13 1.13,0 0,0 -1.16,0.48 1.26,1.26 0,0 0,-0.07 1.16s0.14,-0.42 0.28,-0.73" + android:fillColor="#dfdfdf" + android:fillType="evenOdd"/> + <path + android:pathData="M312.94,102.68c0,-0.2 -0.1,-0.25 -0.43,-0.25h-0.31c-0.47,0 -1.4,-0.16 -1.19,0.4l0.14,1c0.1,0 0.09,0.49 0.32,0.53 0.76,0 1.36,1.13 0.81,1.65a0.89,0.89 0,0 1,-0.82 0c0.05,0.33 0.08,0.56 0.08,0.56 0,0.49 1.15,0.41 1.57,0.4 0.25,0 0.43,-0.07 0.4,-0.27l-0.25,-1.74 -0.28,-2Z" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M312.28,106c0.55,-0.52 0,-1.61 -0.81,-1.65 -0.23,0 -0.22,-0.53 -0.32,-0.53a0.05,0.05 0,0 0,0 0,2 2,0 0,0 -0.17,1.86 1.47,1.47 0,0 0,0.52 0.34,0.89 0.89,0 0,0 0.82,0" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M282.61,143.54a18,18 0,1 1,-18 -18,18 18,0 0,1 18,18" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M270.81,149.31c1,1.48 2.09,3 3,4a18.86,18.86 0,0 1,0.53 -1.92l-0.34,-0.55c-0.46,-0.83 -1,-1.77 -1.54,-2.69a2.08,2.08 0,0 1,-1.64 1.12" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M267.94,155.15c-1.62,0.74 -6.49,1.1 -8.67,0a0.54,0.54 0,0 1,-0.3 -0.43c0,0.26 0,0.53 0,0.83a2.65,2.65 0,0 1,0.17 0.22c1,-0.18 2.43,0.57 2.26,1.54 -0.35,1 -1.65,0.88 -2.45,0.32 0,0.89 0,1.87 0,2.91a18.2,18.2 0,0 0,4.7 0.9c0.09,-0.79 0.14,-1.26 0.14,-1.26s0,0.12 0.05,0.22c0.07,0.35 0.13,0.7 0.19,1.05h0.6a17.91,17.91 0,0 0,3.83 -0.41q0,-3 -0.17,-6.32a0.7,0.7 0,0 1,-0.34 0.38" + android:fillColor="#8c8c99" + android:fillType="evenOdd"/> + <path + android:pathData="M266.69,133.3a1.48,1.48 0,0 1,0.29 0.76,3.3 3.3,0 0,0 -0.05,-0.72l0,0.08 -0.21,-0.12" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M263.91,132.86s0,0 0,0.06a1,1 0,0 0,-0.55 0.27,4.38 4.38,0 0,1 1.26,-0.43 3.66,3.66 0,0 0,-0.74 0.1" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M262.7,137.21c-0.05,-0.1 -0.3,-0.4 -0.14,-0.55 0,0 0,0 0,-0.06a0.22,0.22 0,0 1,-0.27 0,7.9 7.9,0 0,0 0.75,1.13v0c-0.15,-0.19 -0.28,-0.37 -0.37,-0.5" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M262.31,135.05l0,0h0c-0.08,-0.1 -0.19,-0.21 -0.34,-0.4 -0.17,0.3 -0.3,0.29 -0.39,0.67a9.21,9.21 0,0 1,-0.31 -1.12,3.61 3.61,0 0,0 0.38,1.31c0,-0.4 0.17,-0.73 0.62,-0.49" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M262.59,136.6h0c-0.1,-0.5 -0.17,-1.06 -0.25,-1.5l0,0c-0.45,-0.24 -0.64,0.09 -0.62,0.49a1.38,1.38 0,0 0,0.63 1.07c0.11,0 0.2,0.06 0.27,0" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M273.44,154.78c-0.05,0.15 0,0.22 0.13,0.3s1,-0.18 1.4,-0.29c-0.41,-0.08 -0.65,-0.51 -0.18,-1.32a1.27,1.27 0,0 1,0.72 -0.38c0.21,0 0.33,-0.41 0.45,-0.45 0.21,-0.79 0.4,-1.52 0.45,-1.59s-0.1,-0.32 -0.26,-0.34l-1.47,0.24c-0.11,-0.06 -0.23,0.14 -0.35,0.48a18.86,18.86 0,0 0,-0.53 1.92,10.74 10.74,0 0,1 -0.36,1.43" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M275.51,153.09a1.27,1.27 0,0 0,-0.72 0.38c-0.47,0.82 -0.23,1.24 0.18,1.32 0.68,0.13 1.83,-0.66 1.06,-2.14a0.06,0.06 0,0 0,-0.07 0c-0.12,0 -0.24,0.41 -0.45,0.45" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M261.37,157.36c0.17,-1 -1.27,-1.73 -2.26,-1.55l-0.17,-0.22 -1.4,-1.82a2.87,2.87 0,0 1,-0.61 -1.78,2.67 2.67,0 0,1 -1.92,-0.55c-0.06,1.67 0.83,3.16 3.28,5.3a1.44,1.44 0,0 0,0.63 0.93c0.8,0.56 2.1,0.64 2.45,-0.31" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M256.93,152a0.42,0.42 0,0 0,0.16 -0.09c0.86,-0.82 1.85,-4.39 1.85,-4.39l0,7.19a0.13,0.13 0,0 0,0 0.06,0.52 0.52,0 0,0 0.3,0.43c2.18,1.06 7.05,0.7 8.67,0a0.7,0.7 0,0 0,0.34 -0.38,1.06 1.06,0 0,0 0,-0.19l0.07,-2.2c0.07,-2.17 0,-3.93 0.07,-6.28l1.55,2.84a1,1 0,0 0,0.59 0.4l0.21,0a2.08,2.08 0,0 0,1.64 -1.12,4.4 4.4,0 0,0 0.18,-0.42c0.12,-0.37 -3.05,-5.7 -5.06,-7.55a3.49,3.49 0,0 0,-2.28 -0.91v0.22a1,1 0,0 1,-1.15 0.93c-0.53,0 -1.37,-0.61 -1.35,-1.14v0a12.66,12.66 0,0 0,-3 1.12,2.12 2.12,0 0,0 -0.54,0.36 3,3 0,0 0,-0.86 1c-1.72,2.5 -3.13,7.43 -3.62,9.1 -0.06,0.2 0.07,0.4 0.29,0.58a2.67,2.67 0,0 0,1.92 0.55" + android:fillColor="#b1daef" + android:fillType="evenOdd"/> + <path + android:pathData="M264.13,140.46a1,1 0,0 0,1.15 -0.93v-0.22c0,-0.07 0,-0.16 0,-0.27a3.1,3.1 0,0 1,-2.23 -1.33v0c-0.13,0.68 -0.26,1.4 -0.29,1.55v0c0,0.53 0.81,1.12 1.35,1.14" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M264.65,132.76a4.28,4.28 0,0 0,-1.26 0.43,1.06 1.06,0 0,0 -0.23,0.74 2.17,2.17 0,0 0,-0.3 1.64h0c0,0.06 0,0.11 0,0.17s0.05,0.26 0.08,0.41a1.23,1.23 0,0 0,0.74 0.84,0.46 0.46,0 0,0 0.61,-0.11c0.23,-0.28 1.18,-0.11 1.49,-0.14 0.54,0 0.57,0.9 0.92,0 -0.07,0.23 -0.16,0.49 -0.25,0.76a7.44,7.44 0,0 0,0.5 -3.43v0a1.48,1.48 0,0 0,-0.29 -0.76,3.79 3.79,0 0,0 -2,-0.54" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M262.58,136.07c0,-0.62 -0.07,-0.79 -0.23,-1h0c0.07,0.44 0.14,1 0.24,1.5a1.87,1.87 0,0 0,0 -0.52" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M265.87,137.47c0,-0.13 0.13,-0.39 -0.09,-0.39l-1.09,0c-0.18,0 -0.2,0.22 -0.15,0.35 0.13,0.58 1.18,0.68 1.33,0.06" + android:fillColor="#cb8e75" + android:fillType="evenOdd"/> + <path + android:pathData="M264.69,137.06h1.09c0.22,0 0.13,0.27 0.09,0.4 -0.15,0.62 -1.2,0.52 -1.33,-0.06 -0.05,-0.13 0,-0.36 0.15,-0.35M262,134.68c0.15,0.19 0.26,0.3 0.34,0.4s0.22,0.37 0.23,1a1.87,1.87 0,0 1,0 0.52h0s0,0 0,0.06c-0.16,0.15 0.09,0.45 0.14,0.55s0.22,0.31 0.37,0.5A3.1,3.1 0,0 0,265.3 139h0c0.56,0 0.91,-0.79 1.17,-1.53 0.09,-0.27 0.18,-0.53 0.25,-0.76 -0.35,0.89 -0.38,0 -0.92,0 -0.31,0 -1.26,-0.14 -1.49,0.14a0.46,0.46 0,0 1,-0.61 0.11,1.23 1.23,0 0,1 -0.74,-0.84c0,-0.15 -0.06,-0.29 -0.08,-0.41a1,1 0,0 1,0 -0.17h0a2.17,2.17 0,0 1,0.3 -1.64,1.06 1.06,0 0,1 0.23,-0.74 1,1 0,0 1,0.55 -0.27s0,0 0,-0.06a3.66,3.66 0,0 1,0.74 -0.1,3.79 3.79,0 0,1 2,0.54l0.21,0.12 0,-0.08c0.15,-0.39 0.71,-2.06 -0.23,-2.5a2.69,2.69 0,0 0,-2.17 0c-0.68,0.34 -1.2,0.11 -1.76,0.48 -1.36,0.92 -1.66,1.74 -1.46,2.9a9.21,9.21 0,0 0,0.31 1.12c0.09,-0.38 0.22,-0.37 0.39,-0.67" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <group> + <clip-path + android:pathData="M270.18,55.98l35.96,0l0,35.96l-35.96,0l0,-35.96z"/> + <path + android:pathData="M306.14,74a18,18 0,1 1,-18 -18,18 18,0 0,1 18,18" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + </group> + <path + android:pathData="M290.73,78.32a13.18,13.18 0,0 0,1.44 0.93,16.36 16.36,0 0,0 2.17,0.63c0.22,-0.33 0.51,-0.78 0.81,-1.19a23.92,23.92 0,0 1,-2.35 -1.21,29.68 29.68,0 0,1 -2.4,-2 11.78,11.78 0,0 1,0.33 2.87" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M284.41,91.54a17.61,17.61 0,0 0,3.73 0.4h0a55.09,55.09 0,0 1,-3.73 -7.65Z" + android:fillColor="#b96161" + android:fillType="evenOdd"/> + <path + android:pathData="M285.18,81.62l0,-0.07h0l-0.77,2.68a0.14,0.14 0,0 0,0 0.06,55.09 55.09,0 0,0 3.73,7.65 18.11,18.11 0,0 0,4.06 -0.47c-1.19,-5.37 -2.09,-9.86 -2.09,-9.86Z" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M289.61,66.16a3.16,3.16 0,0 0,-0.13 -0.64,1.12 1.12,0 0,0 -0.59,-0.7 1.55,1.55 0,0 1,-1.56 1.27l-0.05,0.11c0.35,3.2 -0.6,2.94 -1.15,4.88l0,0.12v0l0.07,0.06c0.94,0 1.48,0.83 2,0.28 0.06,-0.07 0.15,-0.07 0.25,0L288,68.88s1.66,0.07 1.62,-2.25h0l0,0a4,4 0,0 0,0 -0.48" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M285.19,81.54l0,-0.12 0.17,-0.75c-0.29,0.07 -1.77,0.35 -2.1,-0.54l-0.4,5c-0.06,0.62 -2.17,1.78 -0.6,2.88 1.27,0.89 1.65,-2.13 1.65,-2.13l0.47,-1.63Z" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M285.4,80.67l-0.17,0.75 0,0.12v0.08h4.95a10.31,10.31 0,0 0,0.59 -3.29,11.78 11.78,0 0,0 -0.33,-2.87c-0.52,-2.12 -1.5,-3.64 -2,-3.89 -0.1,-0.06 -0.19,-0.06 -0.25,0 -0.49,0.55 -1,-0.24 -2,-0.28h-0.1c-0.39,1.31 -0.46,0.74 -1,0.78 -0.92,2 -1.67,7.29 -1.76,8a0.42,0.42 0,0 0,0 0.07h0c0.33,0.89 1.81,0.61 2.1,0.54" + android:fillColor="#b1daef" + android:fillType="evenOdd"/> + <path + android:pathData="M286.06,71.29l0,-0.09a0.56,0.56 0,0 1,0 -0.12c0.55,-1.94 1.5,-1.68 1.15,-4.88v-0.11h0.06a1.55,1.55 0,0 0,1.56 -1.27,1.12 1.12,0 0,1 0.59,0.7 2.12,2.12 0,0 1,0.13 0.64,4 4,0 0,1 0,0.48l0,0c0.19,-0.14 1.12,-1 0.4,-2.8 0,0 -0.17,-0.88 -1.41,-0.85 0,0 -2,-1.76 -3.82,-0.26s-0.59,3 -0.59,3A5.58,5.58 0,0 0,282.6 71s0.91,2 2,1.3a1,1 0,0 1,0.5 -0.19c0.53,0 0.6,0.53 1,-0.78" + android:fillColor="#663014" + android:fillType="evenOdd"/> + <path + android:pathData="M293.93,80.43c-0.1,0.12 0,0.21 0,0.31s1.54,0.37 1.57,0.39 0.38,-0.27 0.73,-0.74a1.13,1.13 0,0 1,0.16 -0.6c0.16,-0.33 0.28,-0.47 0.53,-0.56 0.06,0 0.1,0 0.12,0a11.63,11.63 0,0 1,0.78 -1.11c0.07,0 0,-0.32 -0.11,-0.39l-1.39,-0.29c-0.14,-0.17 -0.66,0.49 -1.18,1.24 -0.3,0.41 -0.59,0.86 -0.81,1.19a3.68,3.68 0,0 1,-0.41 0.55" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M296.93,79.23c-0.25,0.09 -0.37,0.23 -0.53,0.56a1.13,1.13 0,0 0,-0.16 0.6s0,0.06 0.05,0.07 0.2,-0.1 0.39,-0.37 0.45,-0.74 0.37,-0.85 -0.06,0 -0.12,0" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M329.22,144a18,18 0,1 1,-18 -18,18 18,0 0,1 18,18" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M306.74,146.41l-0.06,0.29 -1.54,7.59s-1.14,1.64 0,1.64 0.86,-1.5 0.86,-1.5l2.17,-7.49h0Z" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M313.81,152.23l-6.06,0.11h0l0,0.11 0.6,9.27a18,18 0,0 0,2.34 0.23l0.22,-6.9 0.42,6.91a17.23,17.23 0,0 0,2.28 -0.15l0.25,-9.57h0" + android:fillColor="#c66a61" + android:fillType="evenOdd"/> + <path + android:pathData="M310.06,142.65a2,2 0,0 0,0.38 0.38,2.27 2.27,0 0,1 -0.38,-0.38" + android:fillColor="#cbab7d" + android:fillType="evenOdd"/> + <path + android:pathData="M308.36,143.24l1.45,-0.76a0.11,0.11 0,0 1,0.13 0l0,0 0.17,-1 -0.18,0a1.9,1.9 0,0 1,-1.51 -1.52,1.64 1.64,0 0,1 -0.12,-1.61c0.45,-0.76 2,-0.23 2.83,-2 0,0 1.24,2 2.07,2s-0.08,2.71 -1.31,3l-0.23,0.07 0.09,1 0,0.1a0.12,0.12 0,0 1,0.14 0l1.61,0.81a2.61,2.61 0,0 1,0.52 0.46,2.2 2.2,0 0,1 0.49,0.85l0.25,0.89c3.16,0.17 3.51,-0.85 3.37,-1.58a1.14,1.14 0,0 0,-0.66 -0.82l0,0a1.16,1.16 0,0 1,-0.41 -1.8,0.92 0.92,0 0,0 0.27,-0.61c0,-0.06 0,-0.13 0,-0.19 -0.09,-0.59 -1.13,-1.26 -1.95,-1.7a1.15,1.15 0,0 1,-0.6 -1.12,3.73 3.73,0 0,0 -2.81,-4.13 1.7,1.7 0,0 0,-0.39 -0.09c-0.35,0 -0.85,-0.33 -2.7,0.67s-1.8,3.54 -1.65,4.5a1.23,1.23 0,0 0,0.27 0.59,2.28 2.28,0 0,1 0.42,2.53c-0.5,1.1 -0.26,1.57 -0.05,1.76a0.69,0.69 0,0 1,0.11 0.13,1.46 1.46,0 0,1 0.5,-0.41" + android:fillColor="#cbab7d" + android:fillType="evenOdd"/> + <path + android:pathData="M311.59,140.92l0,0.5 0.23,-0.07c1.23,-0.3 2.13,-3 1.31,-3s-2.07,-2 -2.07,-2c-0.86,1.73 -2.38,1.2 -2.83,2a1.64,1.64 0,0 0,0.12 1.61,1.9 1.9,0 0,0 1.51,1.52l0.18,0 0.08,-0.48a1.56,1.56 0,0 0,1.43 -0.06" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M313.81,152.23h0a0.12,0.12 0,0 0,0.11 -0.15l-0.4,-2.16 -2.24,-0.76h-0.13l0,0.3a0.24,0.24 0,0 1,-0.24 0.26h-1.07a0.28,0.28 0,0 1,-0.28 -0.26l-0.23,-2.6a0.23,0.23 0,0 1,0.23 -0.26h1.08a0.3,0.3 0,0 1,0.28 0.26l0.12,1.4c0.19,0.12 0.32,0.22 0.32,0.22l2,0.45 0,-0.15h0a1.92,1.92 0,0 1,-0.05 -0.41l-0.22,-1.94c0,-0.12 0,-0.22 0.05,-0.11l0.07,0.39a0.13,0.13 0,0 0,0.17 0h0l1.31,-0.77h0l0,0a0.12,0.12 0,0 0,0.06 -0.14l-0.08,-0.28 -0.25,-0.89a2.2,2.2 0,0 0,-0.49 -0.85,2.61 2.61,0 0,0 -0.52,-0.46l-1.61,-0.81a0.14,0.14 0,0 0,-0.14 0c-0.36,0.89 -0.86,0.78 -1.24,0.5a2,2 0,0 1,-0.38 -0.38,1 1,0 0,1 -0.12,-0.14 0.11,0.11 0,0 0,-0.13 0l-1.45,0.76a1.46,1.46 0,0 0,-0.5 0.41,5.58 5.58,0 0,0 -0.49,0.64l-0.72,2a0.14,0.14 0,0 0,0.07 0.17h0l1.38,0.52h0a0.12,0.12 0,0 0,0.13 -0.11l0,-0.29c0,-0.14 0.08,-0.15 0.1,0l0,1.51c-0.06,0.49 -0.17,1.3 -0.2,1.64l-0.54,2.5a0.12,0.12 0,0 0,0.1 0.15h0Z" + android:fillColor="#b1daef" + android:fillType="evenOdd"/> + <path + android:pathData="M309.7,148.62c-0.11,-1.14 0.85,-0.68 1.38,-0.35l-0.12,-1.4a0.29,0.29 0,0 0,-0.28 -0.26H309.6a0.23,0.23 0,0 0,-0.23 0.26l0.23,2.6a0.28,0.28 0,0 0,0.28 0.26H311a0.24,0.24 0,0 0,0.24 -0.26l0,-0.3c-0.37,0 -1.4,0.05 -1.46,-0.55" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M313.36,146.75h0l0.53,2.32 -0.54,-0.13 -2,-0.45s-0.13,-0.1 -0.32,-0.22c-0.53,-0.33 -1.49,-0.79 -1.38,0.35 0.06,0.6 1.09,0.58 1.46,0.55h0.13l2.24,0.76 1,0.33a0.52,0.52 0,0 0,0.68 -0.55l-0.47,-3.38 0,-0.34h0Z" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M311.63,141.42l0,-0.5a1.56,1.56 0,0 1,-1.43 0.06l-0.08,0.48 -0.17,1 0,0a1,1 0,0 0,0.12 0.14,2 2,0 0,0 0.39,0.38c0.37,0.28 0.87,0.39 1.23,-0.5a0.36,0.36 0,0 0,0 -0.09Z" + android:fillColor="#f6b893" + android:fillType="evenOdd"/> + <path + android:pathData="M298,112.39a9.84,9.84 0,1 1,-9.84 -9.83,9.85 9.85,0 0,1 9.84,9.83" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + <path + android:pathData="M288,105.5a1,1 0,0 0,-1.05 1V107a3.5,3.5 0,0 0,-1.72 0.94,3.83 3.83,0 0,0 -1.07,2.78v2.72a4.5,4.5 0,0 1,-0.71 2l-0.62,0.94a0.36,0.36 0,0 0,0 0.36,0.35 0.35,0 0,0 0.31,0.18h3.14a1.74,1.74 0,1 0,3.48 0h3.14a0.37,0.37 0,0 0,0.31 -0.18,0.36 0.36,0 0,0 0,-0.36l-0.62,-0.94h0a4.4,4.4 0,0 1,-0.71 -2V110.8a3.7,3.7 0,0 0,-2.79 -3.75v-0.51a1,1 0,0 0,-1 -1" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M56.63,104.71m-6.21,0a6.21,6.21 0,1 1,12.42 0a6.21,6.21 0,1 1,-12.42 0" + android:fillColor="#fff"/> + <path + android:pathData="M56.49,100a8,8 0,0 1,-3.16 1.11,0.32 0.32,0 0,0 -0.3,0.31v4.89a2.15,2.15 0,0 0,1 1.84c1.06,0.63 2.21,1.23 2.49,1.37a0.13,0.13 0,0 0,0.12 0c0.27,-0.14 1.42,-0.74 2.48,-1.37a2.15,2.15 0,0 0,1 -1.84v-4.89a0.32,0.32 0,0 0,-0.3 -0.31A8,8 0,0 1,56.76 100a0.22,0.22 0,0 0,-0.13 0,0.23 0.23,0 0,0 -0.14,0" + android:fillColor="#657887" + android:fillType="evenOdd"/> + <path + android:pathData="M56.56,102.81c0.34,0 0.63,0.42 0.67,0.93H55.89c0,-0.51 0.32,-0.93 0.67,-0.93m-1.18,0.93h-0.22a0.54,0.54 0,0 0,-0.53 0.54v1.85a0.54,0.54 0,0 0,0.53 0.54H58a0.54,0.54 0,0 0,0.53 -0.54v-1.85a0.54,0.54 0,0 0,-0.53 -0.54h-0.22a1.2,1.2 0,1 0,-2.35 0" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M56,104.94a0.49,0.49 0,0 0,0.26 0.43v0.55a0.13,0.13 0,0 0,0.14 0.13h0.25a0.13,0.13 0,0 0,0.14 -0.13v-0.55a0.5,0.5 0,0 0,0.27 -0.43,0.51 0.51,0 0,0 -0.53,-0.5 0.51,0.51 0,0 0,-0.53 0.5" + android:fillColor="#657887" + android:fillType="evenOdd"/> </vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_main_header.xml b/Corona-Warn-App/src/main/res/drawable/ic_main_header.xml index 7eb6941f8c2c11270db47b374d5d2b7e2f0dcded..3f5232bebd581f19aa0218808e1a335cb28ff81a 100644 --- a/Corona-Warn-App/src/main/res/drawable/ic_main_header.xml +++ b/Corona-Warn-App/src/main/res/drawable/ic_main_header.xml @@ -1,136 +1,136 @@ <vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt" - android:width="120dp" + android:width="114dp" android:height="40dp" - android:viewportWidth="120" + android:viewportWidth="114" android:viewportHeight="40"> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M41.017,24.195l1.177,0l1.52,4.737l1.999,-4.889l0.063,0l2.01,4.889l1.489,-4.737l1.104,0l-2.478,7.52l-0.063,0l-2.093,-5.173l-2.145,5.173l-0.052,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M54.95,30.23L52.076,30.23L51.524,31.616L50.399,31.616L53.502,24.042L53.565,24.042L56.678,31.616L55.502,31.616L54.95,30.23ZM52.482,29.205L54.543,29.205L53.523,26.607L52.482,29.205Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M59.303,31.616L58.188,31.616L58.188,24.195L60.458,24.195C62.114,24.195 63.062,25.145 63.062,26.552C63.062,27.589 62.572,28.331 61.687,28.67L63.395,31.616L62.177,31.616L60.594,28.877L60.458,28.877L59.303,28.877L59.303,31.616L59.303,31.616ZM60.417,27.873C61.468,27.873 61.906,27.436 61.906,26.552C61.906,25.658 61.458,25.232 60.417,25.232L59.303,25.232L59.303,27.873L60.417,27.873Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M66.186,26.738l0,4.878l-1.041,0l0,-7.531l0.083,0l4.54,4.988l0,-4.878l1.041,0l0,7.53l-0.083,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M73.065,27.655l1.916,0l0,0.993l-1.916,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M80.724,30.23L77.85,30.23L77.298,31.616L76.173,31.616L79.276,24.042L79.339,24.042L82.452,31.616L81.276,31.616L80.724,30.23ZM78.256,29.205L80.318,29.205L79.297,26.607L78.256,29.205Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M85.077,31.616L83.963,31.616L83.963,24.195L86.212,24.195C87.867,24.195 88.815,25.156 88.815,26.596C88.815,28.069 87.857,28.997 86.212,28.997L85.077,28.997L85.077,31.616L85.077,31.616ZM86.17,27.96C87.222,27.96 87.659,27.502 87.659,26.596C87.659,25.679 87.211,25.232 86.17,25.232L85.077,25.232L85.077,27.96L86.17,27.96Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M91.658,31.616L90.544,31.616L90.544,24.195L92.793,24.195C94.449,24.195 95.396,25.156 95.396,26.596C95.396,28.069 94.438,28.997 92.793,28.997L91.658,28.997L91.658,31.616L91.658,31.616ZM92.751,27.96C93.803,27.96 94.24,27.502 94.24,26.596C94.24,25.679 93.793,25.232 92.751,25.232L91.658,25.232L91.658,27.96L92.751,27.96Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M41.074,13.46C41.074,9.996 43.661,7.445 46.942,7.445C49.073,7.445 50.544,8.29 51.542,9.72L50.155,10.72C49.394,9.669 48.413,9.117 46.891,9.117C44.608,9.117 42.951,10.979 42.951,13.46C42.951,15.994 44.642,17.804 46.959,17.804C48.447,17.804 49.546,17.235 50.409,16.097L51.812,17.08C50.629,18.683 49.124,19.475 46.891,19.475C43.611,19.475 41.074,16.925 41.074,13.46Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M53.419,13.46C53.419,9.996 56.057,7.445 59.355,7.445C62.652,7.445 65.29,9.996 65.29,13.46C65.29,16.925 62.652,19.475 59.355,19.475C56.057,19.475 53.419,16.925 53.419,13.46ZM63.413,13.46C63.413,10.979 61.739,9.117 59.355,9.117C56.97,9.117 55.296,10.979 55.296,13.46C55.296,15.942 56.97,17.804 59.355,17.804C61.739,17.804 63.413,15.942 63.413,13.46Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M69.721,19.32L67.912,19.32L67.912,7.601L71.598,7.601C74.287,7.601 75.826,9.1 75.826,11.323C75.826,12.961 75.031,14.133 73.594,14.667L76.367,19.32L74.389,19.32L71.818,14.994L71.598,14.994L69.721,14.994L69.721,19.32L69.721,19.32ZM71.531,13.409C73.239,13.409 73.949,12.719 73.949,11.323C73.949,9.91 73.222,9.238 71.531,9.238L69.721,9.238L69.721,13.409L71.531,13.409L71.531,13.409Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M78.143,13.46C78.143,9.996 80.781,7.445 84.079,7.445C87.376,7.445 90.014,9.996 90.014,13.46C90.014,16.925 87.376,19.475 84.079,19.475C80.781,19.475 78.143,16.925 78.143,13.46ZM88.137,13.46C88.137,10.979 86.463,9.117 84.079,9.117C81.694,9.117 80.02,10.979 80.02,13.46C80.02,15.942 81.694,17.804 84.079,17.804C86.463,17.804 88.137,15.942 88.137,13.46Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M94.306,11.616l0,7.704l-1.691,0l0,-11.892l0.135,0l7.373,7.876l0,-7.704l1.691,0l0,11.892l-0.135,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#404040" - android:fillType="nonZero" - android:pathData="M110.964,17.131L106.296,17.131L105.4,19.32L103.574,19.32L108.613,7.359L108.715,7.359L113.771,19.32L111.86,19.32L110.964,17.131ZM106.956,15.511L110.304,15.511L108.647,11.409L106.956,15.511Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillType="nonZero" - android:pathData="M24.389,25.873L24.389,29.004L24.544,29.16L24.61,29.104C25.069,29.358 25.38,29.846 25.38,30.408C25.38,31.232 24.714,31.899 23.893,31.899C23.072,31.899 22.406,31.232 22.406,30.408C22.406,29.759 22.82,29.209 23.397,29.004L23.397,26.131L23.552,26.028L23.397,25.873C22.127,25.768 20.971,25.263 20.052,24.484L17.843,26.698C18.107,27.252 18.012,27.935 17.554,28.394C16.973,28.976 16.032,28.976 15.451,28.394C14.87,27.812 14.87,26.868 15.451,26.286C15.908,25.827 16.59,25.731 17.142,25.996L19.351,23.782C18.621,22.917 18.133,21.842 17.99,20.659L18.121,20.585L17.966,20.429L14.842,20.429C14.638,21.008 14.088,21.423 13.441,21.423C12.62,21.423 11.954,20.756 11.954,19.932C11.954,19.109 12.62,18.442 13.441,18.442C14.088,18.442 14.638,18.857 14.842,19.435L14.997,19.591L15.149,19.435L17.966,19.435C18.071,18.162 18.574,17.003 19.351,16.083L17.142,13.869C16.59,14.133 15.908,14.037 15.451,13.579C14.87,12.996 14.87,12.053 15.451,11.47C16.032,10.888 16.973,10.888 17.554,11.47C18.012,11.929 18.107,12.612 17.843,13.166L20.052,15.38C20.971,14.601 22.127,14.097 23.397,13.992L23.397,11.079L23.552,11.016L23.397,10.86C22.82,10.655 22.406,10.105 22.406,9.456C22.406,8.633 23.072,7.966 23.893,7.966C24.714,7.966 25.38,8.633 25.38,9.456C25.38,10.105 24.966,10.655 24.389,10.86L24.389,13.992L24.544,14.147L24.665,14.021C25.999,14.195 27.193,14.811 28.098,15.717L36.513,7.283C33.283,4.046 28.821,2.044 23.893,2.044C14.036,2.044 6.046,10.053 6.046,19.932C6.046,29.812 14.036,37.82 23.893,37.82C28.821,37.82 33.283,35.818 36.513,32.581L28.098,24.147C27.131,25.116 25.833,25.753 24.389,25.873Z" - android:strokeWidth="1" - android:strokeColor="#00000000"> - <aapt:attr name="android:fillColor"> - <gradient - android:endX="21.2795" - android:endY="31.824244" - android:startX="21.2795" - android:startY="2.8311005" - android:type="linear"> - <item - android:color="#FF59112B" - android:offset="0.5" /> - <item - android:color="#FFBC1200" - android:offset="1" /> - </gradient> - </aapt:attr> - </path> - <path - android:fillType="nonZero" - android:pathData="M24.544,26.028L24.544,29.16C25.121,29.365 25.535,29.915 25.535,30.564C25.535,31.387 24.87,32.055 24.048,32.055C23.227,32.055 22.561,31.387 22.561,30.564C22.561,29.915 22.975,29.365 23.552,29.16L23.552,26.028C22.282,25.923 21.126,25.419 20.208,24.64L17.999,26.854C18.262,27.408 18.167,28.091 17.709,28.55C17.129,29.132 16.187,29.132 15.606,28.55C15.025,27.968 15.025,27.024 15.606,26.442C16.064,25.983 16.745,25.887 17.298,26.151L19.507,23.937C18.729,23.017 18.226,21.858 18.121,20.585L14.997,20.585C14.793,21.163 14.244,21.579 13.596,21.579C12.775,21.579 12.109,20.911 12.109,20.088C12.109,19.265 12.775,18.597 13.596,18.597C14.244,18.597 14.793,19.012 14.997,19.591L18.121,19.591C18.226,18.318 18.729,17.159 19.507,16.238L17.298,14.024C16.745,14.289 16.064,14.193 15.606,13.734C15.025,13.152 15.025,12.208 15.606,11.626C16.187,11.044 17.129,11.044 17.709,11.626C18.167,12.085 18.262,12.768 17.999,13.322L20.208,15.536C21.126,14.757 22.282,14.253 23.552,14.147L23.552,11.016C22.975,10.811 22.561,10.261 22.561,9.612C22.561,8.789 23.227,8.121 24.048,8.121C24.87,8.121 25.535,8.789 25.535,9.612C25.535,10.261 25.121,10.811 24.544,11.016L24.544,14.147C25.989,14.267 27.287,14.904 28.254,15.873L36.668,7.439C33.438,4.202 28.977,2.2 24.048,2.2C14.192,2.2 6.201,10.209 6.201,20.088C6.201,29.967 14.192,37.976 24.048,37.976C28.977,37.976 33.438,35.974 36.668,32.737L28.254,24.303C27.287,25.272 25.989,25.909 24.544,26.028Z" - android:strokeWidth="1" - android:strokeColor="#00000000"> - <aapt:attr name="android:fillColor"> - <gradient - android:endX="21.434502" - android:endY="2.2" - android:startX="21.434502" - android:startY="37.976" - android:type="linear"> - <item - android:color="#FFBC1200" - android:offset="0" /> - <item - android:color="#FF80CDEC" - android:offset="0.67" /> - <item - android:color="#FFBDE0F9" - android:offset="1" /> - </gradient> - </aapt:attr> - </path> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M35.072,24.195l1.177,0l1.52,4.737l1.999,-4.889l0.063,0l2.01,4.889l1.489,-4.737l1.104,0l-2.478,7.52l-0.063,0l-2.093,-5.173l-2.145,5.173l-0.052,0z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M49.005,30.23L46.131,30.23L45.579,31.616L44.455,31.616L47.558,24.042L47.62,24.042L50.734,31.616L49.557,31.616L49.005,30.23ZM46.537,29.205L48.599,29.205L47.578,26.607L46.537,29.205Z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M53.358,31.616L52.244,31.616L52.244,24.195L54.514,24.195C56.169,24.195 57.117,25.145 57.117,26.552C57.117,27.589 56.628,28.331 55.742,28.67L57.45,31.616L56.232,31.616L54.649,28.877L54.514,28.877L53.358,28.877L53.358,31.616L53.358,31.616ZM54.472,27.873C55.524,27.873 55.961,27.436 55.961,26.552C55.961,25.658 55.513,25.232 54.472,25.232L53.358,25.232L53.358,27.873L54.472,27.873Z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M60.241,26.738l0,4.878l-1.041,0l0,-7.531l0.083,0l4.54,4.988l0,-4.878l1.041,0l0,7.53l-0.083,0z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M67.12,27.655l1.916,0l0,0.993l-1.916,0z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M74.779,30.23L71.905,30.23L71.353,31.616L70.229,31.616L73.332,24.042L73.394,24.042L76.508,31.616L75.331,31.616L74.779,30.23ZM72.311,29.205L74.373,29.205L73.353,26.607L72.311,29.205Z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M79.132,31.616L78.018,31.616L78.018,24.195L80.267,24.195C81.923,24.195 82.87,25.156 82.87,26.596C82.87,28.069 81.912,28.997 80.267,28.997L79.132,28.997L79.132,31.616L79.132,31.616ZM80.226,27.96C81.277,27.96 81.715,27.502 81.715,26.596C81.715,25.679 81.267,25.232 80.226,25.232L79.132,25.232L79.132,27.96L80.226,27.96Z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M85.713,31.616L84.599,31.616L84.599,24.195L86.849,24.195C88.504,24.195 89.452,25.156 89.452,26.596C89.452,28.069 88.494,28.997 86.849,28.997L85.713,28.997L85.713,31.616L85.713,31.616ZM86.807,27.96C87.858,27.96 88.296,27.502 88.296,26.596C88.296,25.679 87.848,25.232 86.807,25.232L85.713,25.232L85.713,27.96L86.807,27.96Z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M35.129,13.46C35.129,9.996 37.717,7.445 40.997,7.445C43.128,7.445 44.599,8.29 45.597,9.72L44.211,10.72C43.449,9.669 42.469,9.117 40.947,9.117C38.664,9.117 37.006,10.979 37.006,13.46C37.006,15.994 38.697,17.804 41.014,17.804C42.502,17.804 43.602,17.235 44.464,16.097L45.868,17.08C44.684,18.683 43.179,19.475 40.947,19.475C37.666,19.475 35.129,16.925 35.129,13.46Z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M47.474,13.46C47.474,9.996 50.112,7.445 53.41,7.445C56.708,7.445 59.346,9.996 59.346,13.46C59.346,16.925 56.708,19.475 53.41,19.475C50.112,19.475 47.474,16.925 47.474,13.46ZM57.469,13.46C57.469,10.979 55.795,9.117 53.41,9.117C51.026,9.117 49.351,10.979 49.351,13.46C49.351,15.942 51.026,17.804 53.41,17.804C55.795,17.804 57.469,15.942 57.469,13.46Z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M63.777,19.32L61.967,19.32L61.967,7.601L65.654,7.601C68.343,7.601 69.882,9.1 69.882,11.323C69.882,12.961 69.087,14.133 67.649,14.667L70.423,19.32L68.444,19.32L65.874,14.994L65.654,14.994L63.777,14.994L63.777,19.32L63.777,19.32ZM65.586,13.409C67.294,13.409 68.004,12.719 68.004,11.323C68.004,9.91 67.277,9.238 65.586,9.238L63.777,9.238L63.777,13.409L65.586,13.409L65.586,13.409Z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M72.198,13.46C72.198,9.996 74.836,7.445 78.134,7.445C81.432,7.445 84.07,9.996 84.07,13.46C84.07,16.925 81.432,19.475 78.134,19.475C74.836,19.475 72.198,16.925 72.198,13.46ZM82.193,13.46C82.193,10.979 80.518,9.117 78.134,9.117C75.75,9.117 74.075,10.979 74.075,13.46C74.075,15.942 75.75,17.804 78.134,17.804C80.518,17.804 82.193,15.942 82.193,13.46Z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M88.362,11.616l0,7.704l-1.691,0l0,-11.892l0.135,0l7.373,7.876l0,-7.704l1.691,0l0,11.892l-0.135,0z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillColor="#404040" + android:fillType="nonZero" + android:pathData="M105.019,17.131L100.352,17.131L99.455,19.32L97.629,19.32L102.669,7.359L102.77,7.359L107.826,19.32L105.916,19.32L105.019,17.131ZM101.011,15.511L104.36,15.511L102.702,11.409L101.011,15.511Z" + android:strokeWidth="1" + android:strokeColor="#00000000" /> + <path + android:fillType="nonZero" + android:pathData="M18.444,25.873L18.444,29.004L18.599,29.16L18.665,29.104C19.124,29.358 19.436,29.846 19.436,30.408C19.436,31.232 18.77,31.899 17.948,31.899C17.127,31.899 16.461,31.232 16.461,30.408C16.461,29.759 16.875,29.209 17.453,29.004L17.453,26.131L17.608,26.028L17.453,25.873C16.183,25.768 15.026,25.263 14.108,24.484L11.899,26.698C12.163,27.252 12.067,27.935 11.609,28.394C11.029,28.976 10.087,28.976 9.506,28.394C8.925,27.812 8.925,26.868 9.506,26.286C9.964,25.827 10.645,25.731 11.198,25.996L13.407,23.782C12.677,22.917 12.189,21.842 12.045,20.659L12.177,20.585L12.022,20.429L8.897,20.429C8.693,21.008 8.144,21.423 7.497,21.423C6.675,21.423 6.009,20.756 6.009,19.932C6.009,19.109 6.675,18.442 7.497,18.442C8.144,18.442 8.693,18.857 8.897,19.435L9.053,19.591L9.204,19.435L12.022,19.435C12.126,18.162 12.63,17.003 13.407,16.083L11.198,13.869C10.645,14.133 9.964,14.037 9.506,13.579C8.925,12.996 8.925,12.053 9.506,11.47C10.087,10.888 11.029,10.888 11.609,11.47C12.067,11.929 12.163,12.612 11.899,13.166L14.108,15.38C15.026,14.601 16.183,14.097 17.453,13.992L17.453,11.079L17.608,11.016L17.453,10.86C16.875,10.655 16.461,10.105 16.461,9.456C16.461,8.633 17.127,7.966 17.948,7.966C18.77,7.966 19.436,8.633 19.436,9.456C19.436,10.105 19.021,10.655 18.444,10.86L18.444,13.992L18.599,14.147L18.721,14.021C20.054,14.195 21.249,14.811 22.154,15.717L30.568,7.283C27.338,4.046 22.877,2.044 17.948,2.044C8.092,2.044 0.101,10.053 0.101,19.932C0.101,29.812 8.092,37.82 17.948,37.82C22.877,37.82 27.338,35.818 30.568,32.581L22.154,24.147C21.187,25.116 19.889,25.753 18.444,25.873Z" + android:strokeWidth="1" + android:strokeColor="#00000000"> + <aapt:attr name="android:fillColor"> + <gradient + android:endX="15.334498" + android:endY="31.824244" + android:startX="15.334498" + android:startY="2.8311005" + android:type="linear"> + <item + android:color="#FF59112B" + android:offset="0.5" /> + <item + android:color="#FFBC1200" + android:offset="1" /> + </gradient> + </aapt:attr> + </path> + <path + android:fillType="nonZero" + android:pathData="M18.599,26.028L18.599,29.16C19.177,29.365 19.591,29.915 19.591,30.564C19.591,31.387 18.925,32.055 18.104,32.055C17.282,32.055 16.616,31.387 16.616,30.564C16.616,29.915 17.031,29.365 17.608,29.16L17.608,26.028C16.338,25.923 15.181,25.419 14.263,24.64L12.054,26.854C12.318,27.408 12.222,28.091 11.765,28.55C11.184,29.132 10.242,29.132 9.661,28.55C9.081,27.968 9.081,27.024 9.661,26.442C10.119,25.983 10.8,25.887 11.353,26.151L13.562,23.937C12.785,23.017 12.282,21.858 12.177,20.585L9.053,20.585C8.848,21.163 8.299,21.579 7.652,21.579C6.83,21.579 6.165,20.911 6.165,20.088C6.165,19.265 6.83,18.597 7.652,18.597C8.299,18.597 8.848,19.012 9.053,19.591L12.177,19.591C12.282,18.318 12.785,17.159 13.562,16.238L11.353,14.024C10.8,14.289 10.119,14.193 9.661,13.734C9.081,13.152 9.081,12.208 9.661,11.626C10.242,11.044 11.184,11.044 11.765,11.626C12.222,12.085 12.318,12.768 12.054,13.322L14.263,15.536C15.181,14.757 16.338,14.253 17.608,14.147L17.608,11.016C17.031,10.811 16.616,10.261 16.616,9.612C16.616,8.789 17.282,8.121 18.104,8.121C18.925,8.121 19.591,8.789 19.591,9.612C19.591,10.261 19.177,10.811 18.599,11.016L18.599,14.147C20.044,14.267 21.342,14.904 22.309,15.873L30.723,7.439C27.494,4.202 23.032,2.2 18.104,2.2C8.247,2.2 0.257,10.209 0.257,20.088C0.257,29.967 8.247,37.976 18.104,37.976C23.032,37.976 27.494,35.974 30.723,32.737L22.309,24.303C21.342,25.272 20.044,25.909 18.599,26.028Z" + android:strokeWidth="1" + android:strokeColor="#00000000"> + <aapt:attr name="android:fillColor"> + <gradient + android:endX="15.490001" + android:endY="2.2" + android:startX="15.490001" + android:startY="37.976" + android:type="linear"> + <item + android:color="#FFBC1200" + android:offset="0" /> + <item + android:color="#FF80CDEC" + android:offset="0.67" /> + <item + android:color="#FFBDE0F9" + android:offset="1" /> + </gradient> + </aapt:attr> + </path> </vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_invalid.xml b/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_invalid.xml index e500c0fdc7f4d3c8214f2c21732db747712594c1..99ec42e2ccf9bec97ad9bab187d085256a312734 100644 --- a/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_invalid.xml +++ b/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_invalid.xml @@ -1,123 +1,75 @@ <vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="110dp" - android:height="139dp" - android:viewportWidth="110" - android:viewportHeight="139"> - <group> - <clip-path android:pathData="M0,0.5h110v137.5h-110z" /> - <group> - <clip-path android:pathData="M0,31.317l29.332,0l0,75.732l-29.332,0z" /> - <path - android:fillColor="#F7B994" - android:fillType="evenOdd" - android:pathData="M29.189,102.631C28.93,95.276 28.842,87.929 28.374,80.569C27.402,65.247 25.82,49.974 24.512,34.679C17.714,33.152 12.97,32.123 12.97,32.123C12.97,32.123 0.469,28.888 0.011,35.376C-0.447,41.864 13.617,46.265 13.617,46.265L14.766,46.357L22.271,49.899L15.369,55.893C15.369,55.893 3.617,70.11 4.191,75.225C4.765,80.34 11.097,79.955 11.097,79.955C11.097,79.955 4.409,84.666 7.388,88.531C9.571,91.365 14.258,92.859 14.258,92.859C14.258,92.859 8.148,97.942 10.538,103.435C11.59,105.853 18.336,107.049 18.336,107.049L29.332,106.222C28.671,102.825 29.054,106.051 29.189,102.631" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#B2DBF0" - android:fillType="evenOdd" - android:pathData="M80.447,123.054L40.099,130.544C35.99,131.307 32.04,128.593 31.277,124.484L12.59,23.816C11.827,19.706 14.54,15.756 18.65,14.993L58.997,7.503C63.107,6.74 67.057,9.454 67.82,13.563L86.507,114.231C87.27,118.341 84.556,122.291 80.447,123.054" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M80.447,123.054L40.1,130.544C35.99,131.307 32.04,128.594 31.277,124.484L12.59,23.816C11.828,19.706 14.541,15.756 18.65,14.993L58.998,7.503C63.107,6.741 67.057,9.454 67.821,13.564L86.507,114.232C87.27,118.341 84.557,122.291 80.447,123.054" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <clip-path android:pathData="M80.447,123.054L40.1,130.544C35.99,131.307 32.04,128.594 31.277,124.484L12.59,23.816C11.828,19.706 14.541,15.756 18.65,14.993L58.998,7.503C63.107,6.741 67.057,9.454 67.821,13.564L86.507,114.232C87.27,118.341 84.557,122.291 80.447,123.054" /> - <path - android:fillColor="#F7A8A8" - android:fillType="nonZero" - android:pathData="M37.749,84.887C37.051,85.022 36.373,84.565 36.238,83.867C36.192,83.631 36.221,83.378 36.326,83.093L45.994,56.919C46.11,56.607 46.394,56.067 47.007,55.948C47.619,55.829 48.085,56.223 48.308,56.47L67.077,77.115C67.282,77.34 67.404,77.564 67.45,77.8C67.586,78.498 67.129,79.176 66.431,79.311L37.749,84.887Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C74343" - android:fillType="nonZero" - android:pathData="M47.089,56.37C47.494,56.291 47.828,56.579 47.991,56.758L57.375,67.081L66.759,77.404C66.91,77.57 66.998,77.726 67.029,77.882C67.119,78.347 66.814,78.799 66.349,78.89L37.667,84.465C37.202,84.555 36.75,84.25 36.66,83.785C36.629,83.629 36.652,83.451 36.73,83.241L41.563,70.154L46.397,57.068C46.482,56.841 46.683,56.449 47.089,56.37M46.925,55.526C46.257,55.656 45.813,56.173 45.592,56.77C35.923,82.943 45.592,56.77 35.923,82.943C35.808,83.256 35.748,83.597 35.816,83.949C35.997,84.881 36.899,85.49 37.831,85.308C38.568,85.165 65.72,79.887 66.513,79.733C67.445,79.552 68.053,78.65 67.872,77.718C67.804,77.366 67.62,77.072 67.396,76.826C48.627,56.18 67.396,76.826 48.627,56.18C48.198,55.709 47.592,55.396 46.925,55.526L46.925,55.526Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B33C3C" - android:fillType="nonZero" - android:pathData="M38.34,68.964l0.156,-0.423l-4.707,0.342l-0.327,0.886l4.707,-0.342z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B33C3C" - android:fillType="nonZero" - android:pathData="M41.368,60.763l-3.481,-2.975l-0.317,0.859l3.481,2.976z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B33C3C" - android:fillType="nonZero" - android:pathData="M39.635,65.454l0.298,-0.807l-4.088,-1.333l-0.298,0.807z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B33C3C" - android:fillType="nonZero" - android:pathData="M59.919,64.769l-0.303,-0.334l4.493,-1.446l0.635,0.699l-4.493,1.446z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B33C3C" - android:fillType="nonZero" - android:pathData="M54.039,58.3l2.113,-4.062l0.616,0.678l-2.113,4.063z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B33C3C" - android:fillType="nonZero" - android:pathData="M57.403,62.001l-0.579,-0.637l3.291,-2.767l0.579,0.637z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#36404D" - android:fillType="nonZero" - android:pathData="M51.188,77.459m-1.687,0.328a1.719,1.719 102.009,1 1,3.374 -0.656a1.719,1.719 102.009,1 1,-3.374 0.656" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#36404D" - android:fillType="nonZero" - android:pathData="M48.565,63.962C47.632,64.143 47.013,64.987 47.18,65.847C47.292,66.422 49.551,73.532 49.561,73.562C49.686,73.939 50.1,74.169 50.532,74.085C50.964,74.001 51.262,73.632 51.237,73.236C51.235,73.205 50.666,65.767 50.554,65.191C50.387,64.331 49.497,63.781 48.565,63.962Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <path - android:fillColor="#00000000" - android:fillType="evenOdd" - android:pathData="M80.447,123.054L40.099,130.544C35.99,131.307 32.04,128.593 31.277,124.484L12.59,23.816C11.827,19.706 14.54,15.756 18.65,14.993L58.997,7.503C63.107,6.74 67.057,9.454 67.82,13.563L86.507,114.231C87.27,118.341 84.556,122.291 80.447,123.054Z" - android:strokeWidth="3.65317057" - android:strokeColor="#4A4A4A" /> - <path - android:fillColor="#F7B994" - android:fillType="evenOdd" - android:pathData="M112.067,79.514C106.964,71.546 94.698,43.176 90.954,41.266C90.954,41.266 86.926,26.501 78.024,25.687C78.024,25.687 74.56,13.377 73.603,13.405C72.646,13.433 67.862,13.573 66.747,19.726C65.632,25.88 68.112,36.95 74.059,39.87C74.059,39.87 87.621,110.329 87.663,110.542C88.759,116.021 88.394,116.387 88.029,118.579C100.223,120.946 117.475,127.179 117.475,127.179L117.475,87.482C117.272,87.482 115.469,84.826 112.067,79.514Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F7B994" - android:fillType="evenOdd" - android:pathData="M15.331,79.49L28.706,77.825C28.706,77.825 35.668,74.978 34.9,70.593C33.962,65.242 27.964,65.071 27.964,65.071L17.228,65.412L15.331,79.49Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F7B994" - android:fillType="evenOdd" - android:pathData="M15.574,92.517C15.574,92.517 26.441,92.738 29.954,91.868C32.309,91.286 41.268,88.623 37.98,82.412C35.426,77.587 31.032,76.862 29.04,77.569C25.409,78.857 18.174,78.612 18.174,78.612L15.574,92.517Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F7B994" - android:fillType="evenOdd" - android:pathData="M18.253,106.888C18.253,106.888 29.45,106.477 33.596,106.158C35.765,105.991 42.364,102.87 41.268,99.217C39.23,92.423 32.987,91.925 31.039,92.276C27.808,92.858 22.442,91.698 22.442,91.698L18.253,106.888Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> + android:width="110.25dp" + android:height="140dp" + android:viewportWidth="110.25" + android:viewportHeight="140"> + <group> + <clip-path + android:pathData="M0.21,31.02l29.33,0l0,75.74l-29.33,0l0,-75.74z"/> + <path + android:pathData="M16.25,32.5l-3.07,-0.67S0.68,28.6 0.22,35.08 13.82,46 13.82,46l1.15,0.09 4.2,2 0.71,3.82 -4.3,3.74S3.82,69.82 4.4,74.93s6.9,4.73 6.9,4.73 -6.68,4.71 -3.71,8.58c2.19,2.83 6.87,4.33 6.87,4.33s-6.11,5.08 -3.72,10.57c1.06,2.42 7.8,3.62 7.8,3.62l11.25,-0.65C29.2,102.59 16.72,35.19 16.25,32.5Z" + android:fillColor="#f7b994" + android:fillType="evenOdd"/> + </group> + <group> + <clip-path + android:pathData="M0.21,0.21h110v140h-110z"/> + <path + android:pathData="M80.65,122.76l-40.34,7.49a7.58,7.58 0,0 1,-8.83 -6.06L12.8,23.52a7.56,7.56 0,0 1,6.06 -8.82L59.2,7.21A7.58,7.58 0,0 1,68 13.27L86.71,113.94A7.56,7.56 0,0 1,80.65 122.76Z" + android:strokeWidth="3.65" + android:fillColor="#FFFFFF" + android:strokeColor="#4a4a4a"/> + </group> + <group> + <clip-path + android:pathData="M34.45,51.97l36.56,0l0,33.73l-36.56,0l0,-33.73z"/> + <path + android:pathData="M36.39,85.67a1.65,1.65 0,0 1,-1.76 -0.75,1.5 1.5,0 0,1 -0.05,-1.33L46.14,53.12a1.51,1.51 0,0 1,2.71 -0.5l21.71,24.3A1.52,1.52 0,0 1,71 78.18a1.66,1.66 0,0 1,-1.37 1.33Z" + android:fillColor="#bf0f2d" + android:fillType="evenOdd"/> + </group> + <group> + <clip-path + android:pathData="M34.45,51.97l36.56,0l0,33.73l-36.56,0l0,-33.73z"/> + <path + android:pathData="M51.63,75.19A2,2 0,1 1,50 77.53a2,2 0,0 1,1.61 -2.34" + android:fillColor="#fff" + android:fillType="evenOdd"/> + </group> + <path + android:pathData="M49.07,61.37a1.93,1.93 0,0 0,-1.63 2.19c0.12,0.67 2.69,9 2.7,9a1,1 0,0 0,1.13 0.62,1 1,0 0,0 0.83,-1s-0.59,-8.73 -0.71,-9.4a2,2 0,0 0,-2.32 -1.46" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <group> + <clip-path + android:pathData="M0.21,0.21h110v140h-110z"/> + <path + android:pathData="M110.2,75.64c-5.8,-10.69 -15.74,-33 -19,-34.67 0,0 -4,-14.76 -12.93,-15.58 0,0 -3.46,-12.31 -4.42,-12.28s-5.74,0.17 -6.86,6.32 1.37,17.23 7.32,20.15l13.6,70.67c1.1,5.48 0.73,5.84 0.37,8a199,199 0,0 1,22 6C110.27,114.74 110.27,81.64 110.2,75.64Z" + android:fillColor="#f7b994" + android:fillType="evenOdd"/> + </group> + <group> + <clip-path + android:pathData="M0.21,0.21h110v140h-110z"/> + <path + android:pathData="M15.54,79.2l13.37,-1.67s7,-2.84 6.2,-7.23c-0.94,-5.35 -6.94,-5.52 -6.94,-5.52l-10.74,0.34Z" + android:fillColor="#f7b994" + android:fillType="evenOdd"/> + </group> + <group> + <clip-path + android:pathData="M0.21,0.21h110v140h-110z"/> + <path + android:pathData="M15.78,92.23s10.87,0.22 14.38,-0.65c2.36,-0.59 11.31,-3.25 8,-9.46 -2.56,-4.83 -6.95,-5.55 -8.94,-4.84 -3.63,1.28 -10.87,1 -10.87,1Z" + android:fillColor="#f7b994" + android:fillType="evenOdd"/> + </group> + <group> + <clip-path + android:pathData="M0.21,0.21h110v140h-110z"/> + <path + android:pathData="M18.46,106.6s11.2,-0.42 15.34,-0.73c2.17,-0.17 8.77,-3.29 7.67,-7A9.38,9.38 0,0 0,31.25 92c-3.24,0.59 -8.6,-0.57 -8.6,-0.57Z" + android:fillColor="#f7b994" + android:fillType="evenOdd"/> + </group> </vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_untested.xml b/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_untested.xml index 689a88108c7dec55b5de90394f13c4b5a3e287f1..b6561105231c33c6507d7ada4e55d99381f7cb58 100644 --- a/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_untested.xml +++ b/Corona-Warn-App/src/main/res/drawable/ic_main_illustration_untested.xml @@ -1,92 +1,41 @@ <vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="110dp" - android:height="139dp" - android:viewportWidth="110" - android:viewportHeight="139"> - <group> - <clip-path android:pathData="M0,0.5h110v137.5h-110z" /> - <group> - <clip-path android:pathData="M0,31.317l29.332,0l0,75.732l-29.332,0z" /> - <path - android:fillColor="#F7B994" - android:fillType="evenOdd" - android:pathData="M29.189,102.631C28.93,95.276 28.842,87.929 28.374,80.569C27.402,65.247 25.82,49.974 24.512,34.679C17.714,33.152 12.97,32.123 12.97,32.123C12.97,32.123 0.469,28.888 0.011,35.376C-0.447,41.864 13.617,46.265 13.617,46.265L14.766,46.357L22.271,49.899L15.369,55.893C15.369,55.893 3.617,70.11 4.191,75.225C4.765,80.34 11.097,79.955 11.097,79.955C11.097,79.955 4.409,84.666 7.388,88.531C9.571,91.365 14.258,92.859 14.258,92.859C14.258,92.859 8.148,97.942 10.538,103.435C11.59,105.853 18.336,107.049 18.336,107.049L29.332,106.222C28.671,102.825 29.054,106.051 29.189,102.631" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - </group> - <group> - <clip-path android:pathData="M0,0.5h110v137.5h-110z" /> - <path - android:fillColor="#B2DBF0" - android:fillType="evenOdd" - android:pathData="M80.447,123.054L40.099,130.544C35.99,131.307 32.04,128.593 31.277,124.484L12.59,23.816C11.827,19.706 14.54,15.756 18.65,14.993L58.997,7.503C63.107,6.74 67.057,9.454 67.82,13.563L86.507,114.231C87.27,118.341 84.556,122.291 80.447,123.054" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <group> - <clip-path android:pathData="M0,0.5h110v137.5h-110z" /> - <path - android:fillColor="#B2DBF0" - android:fillType="evenOdd" - android:pathData="M80.447,123.054L40.1,130.544C35.99,131.307 32.04,128.594 31.277,124.484L12.59,23.816C11.828,19.706 14.541,15.756 18.65,14.993L58.998,7.503C63.107,6.741 67.057,9.454 67.821,13.564L86.507,114.232C87.27,118.341 84.557,122.291 80.447,123.054" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <group> - <clip-path android:pathData="M80.447,123.054L40.1,130.544C35.99,131.307 32.04,128.594 31.277,124.484L12.59,23.816C11.828,19.706 14.541,15.756 18.65,14.993L58.998,7.503C63.107,6.741 67.057,9.454 67.821,13.564L86.507,114.232C87.27,118.341 84.557,122.291 80.447,123.054" /> - <path - android:fillAlpha="0.25" - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M27.154,50.785L27.154,58.717L31.119,58.717L31.119,62.93C23.142,63.719 15.938,66.786 10.051,71.604L7.077,68.63L9.803,65.904L4.228,60.328L-6.926,71.48L-1.349,77.056L1.377,74.33L4.352,77.304C-0.466,83.191 -3.532,90.395 -4.324,98.37L-8.537,98.37L-8.537,94.405L-16.467,94.405L-16.467,110.267L-8.537,110.267L-8.537,106.302L-4.324,106.302C-3.532,114.343 -0.404,121.592 4.475,127.492L1.377,130.344L-1.349,127.616L-6.926,133.194L4.228,144.346L9.803,138.77L7.077,136.042L10.051,132.946C15.954,137.794 23.127,140.954 31.119,141.744L31.119,145.957L27.154,145.957L27.154,153.887L43.014,153.887L43.014,145.957L39.049,145.957L39.049,141.744C47.041,140.954 54.215,137.794 60.117,132.946L60.241,132.946L63.091,136.042L60.365,138.77L65.941,144.346L77.095,133.194L71.518,127.616L68.791,130.344L65.695,127.492C65.708,127.462 65.678,127.401 65.695,127.369C70.542,121.468 73.702,114.294 74.492,106.302L78.705,106.302L78.705,110.267L86.635,110.267L86.635,94.405L78.705,94.405L78.705,98.37L74.492,98.37C73.702,90.395 70.634,83.191 65.817,77.304L68.791,74.33L71.518,77.056L77.095,71.48L65.941,60.328L60.365,65.904L63.091,68.63L60.117,71.604C54.23,66.786 47.028,63.719 39.049,62.93L39.049,58.717L43.014,58.717L43.014,50.785L27.154,50.785ZM35.084,70.612C52.651,70.612 66.808,84.772 66.808,102.337C66.808,119.902 52.651,134.06 35.084,134.06C17.519,134.06 3.36,119.902 3.36,102.337C3.36,84.772 17.519,70.612 35.084,70.612L35.084,70.612ZM25.17,79.164C21.888,79.164 19.222,81.828 19.222,85.111C19.222,88.395 21.888,91.059 25.17,91.059C28.453,91.059 31.119,88.395 31.119,85.111C31.119,81.828 28.453,79.164 25.17,79.164L25.17,79.164ZM44.998,79.164C41.715,79.164 39.049,81.828 39.049,85.111C39.049,88.395 41.715,91.059 44.998,91.059C48.282,91.059 50.948,88.395 50.948,85.111C50.948,81.828 48.282,79.164 44.998,79.164L44.998,79.164ZM15.257,96.389C11.973,96.389 9.308,99.053 9.308,102.337C9.308,105.62 11.973,108.285 15.257,108.285C18.541,108.285 21.204,105.62 21.204,102.337C21.204,99.053 18.541,96.389 15.257,96.389L15.257,96.389ZM35.084,96.389C31.8,96.389 29.137,99.053 29.137,102.337C29.137,105.62 31.8,108.285 35.084,108.285C38.368,108.285 41.032,105.62 41.032,102.337C41.032,99.053 38.368,96.389 35.084,96.389L35.084,96.389ZM54.913,96.389C51.628,96.389 48.964,99.053 48.964,102.337C48.964,105.62 51.628,108.285 54.913,108.285C58.197,108.285 60.86,105.62 60.86,102.337C60.86,99.053 58.197,96.389 54.913,96.389L54.913,96.389ZM25.17,113.613C21.888,113.613 19.222,116.277 19.222,119.562C19.222,122.846 21.888,125.51 25.17,125.51C28.453,125.51 31.119,122.846 31.119,119.562C31.119,116.277 28.453,113.613 25.17,113.613L25.17,113.613ZM44.998,113.613C41.715,113.613 39.049,116.277 39.049,119.562C39.049,122.846 41.715,125.51 44.998,125.51C48.282,125.51 50.948,122.846 50.948,119.562C50.948,116.277 48.282,113.613 44.998,113.613L44.998,113.613Z" - android:strokeWidth="1" - android:strokeAlpha="0.25" - android:strokeColor="#00000000" /> - </group> - </group> - <group> - <clip-path android:pathData="M0,0.5h110v137.5h-110z" /> - <path - android:fillColor="#00000000" - android:fillType="evenOdd" - android:pathData="M80.447,123.054L40.099,130.544C35.99,131.307 32.04,128.593 31.277,124.484L12.59,23.816C11.827,19.706 14.54,15.756 18.65,14.993L58.997,7.503C63.107,6.74 67.057,9.454 67.82,13.563L86.507,114.231C87.27,118.341 84.556,122.291 80.447,123.054Z" - android:strokeWidth="3.65317057" - android:strokeColor="#4A4A4A" /> - </group> - <group> - <clip-path android:pathData="M0,0.5h110v137.5h-110z" /> - <path - android:fillColor="#F7B994" - android:fillType="evenOdd" - android:pathData="M112.067,79.514C106.964,71.546 94.698,43.176 90.954,41.266C90.954,41.266 86.926,26.501 78.024,25.687C78.024,25.687 74.56,13.377 73.603,13.405C72.646,13.433 67.862,13.573 66.747,19.726C65.632,25.88 68.112,36.95 74.059,39.87C74.059,39.87 87.621,110.329 87.663,110.542C88.759,116.021 88.394,116.387 88.029,118.579C100.223,120.946 117.475,127.179 117.475,127.179L117.475,87.482C117.272,87.482 115.469,84.826 112.067,79.514Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <group> - <clip-path android:pathData="M0,0.5h110v137.5h-110z" /> - <path - android:fillColor="#F7B994" - android:fillType="evenOdd" - android:pathData="M15.331,79.49L28.706,77.825C28.706,77.825 35.668,74.978 34.9,70.593C33.962,65.242 27.964,65.071 27.964,65.071L17.228,65.412L15.331,79.49Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <group> - <clip-path android:pathData="M0,0.5h110v137.5h-110z" /> - <path - android:fillColor="#F7B994" - android:fillType="evenOdd" - android:pathData="M15.574,92.517C15.574,92.517 26.441,92.738 29.954,91.868C32.309,91.286 41.268,88.623 37.98,82.412C35.426,77.587 31.032,76.862 29.04,77.569C25.409,78.857 18.174,78.612 18.174,78.612L15.574,92.517Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <group> - <clip-path android:pathData="M0,0.5h110v137.5h-110z" /> - <path - android:fillColor="#F7B994" - android:fillType="evenOdd" - android:pathData="M18.253,106.888C18.253,106.888 29.45,106.477 33.596,106.158C35.765,105.991 42.364,102.87 41.268,99.217C39.23,92.423 32.987,91.925 31.039,92.276C27.808,92.858 22.442,91.698 22.442,91.698L18.253,106.888Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> + android:width="110.28dp" + android:height="140dp" + android:viewportWidth="110.28" + android:viewportHeight="140"> + <path + android:pathData="M80.65,122.76l-40.34,7.49a7.58,7.58 0,0 1,-8.83 -6.06L12.8,23.52a7.56,7.56 0,0 1,6.05 -8.82h0L59.2,7.21A7.58,7.58 0,0 1,68 13.27L86.71,113.94a7.56,7.56 0,0 1,-6 8.82h0" + android:fillColor="#b2dbf0" + android:fillType="evenOdd"/> + <path + android:pathData="M79.14,91c-0.62,0.41 -3.42,0.41 -4.18,0.41 -1.17,-0.07 -3.28,-0.13 -6.84,-0.07A7.65,7.65 0,0 1,63.41 90a33.4,33.4 0,0 0,-2.54 -13.6,9.24 9.24,0 0,1 8.77,-5.35c5.24,0.23 2.51,-3.79 1.74,-4.95h0c-3.65,-5.64 -5.22,-2.17 -6,-0.37s-4.41,3.43 -5.72,3.68a7.17,7.17 0,0 1,-2.78 -0.15A33.42,33.42 0,0 0,46 59.87l-0.35,-0.17a28.5,28.5 0,0 1,5.35 -10A6,6 0,0 1,53.23 48c2.09,-0.86 4.08,-2.47 -2.22,-5.86 -5.44,-2.91 -5.9,0.06 -5.76,1.85a7.29,7.29 0,0 1,-0.38 2.93c-0.42,1.26 -1.41,4.87 -2.66,8a10,10 0,0 1,-1.6 2.76,32.42 32.42,0 0,0 -16.46,-0.73 6.8,6.8 0,0 1,-1.27 -3.63,8.19 8.19,0 0,1 0.26,-3c0.85,-3 -1.15,-2.43 -2.93,-2.18 -6.52,0.9 -2.71,3.94 -1.5,4.8s-0.23,2.72 0,3.77a4.23,4.23 0,0 1,-0.09 2C21.15,72 29.17,115.3 31,122.33a33.27,33.27 0,0 0,4.9 -0.39c1.76,1.71 3.22,5.29 4.11,8.39 0.47,1.64 3.68,0 5,-0.26a33.54,33.54 0,0 1,-1.74 -6.17,13.08 13.08,0 0,1 0,-4 31.85,31.85 0,0 0,8.65 -5.28c0.61,-0.14 5.1,-1 7.3,5.26 1.81,5.14 4.34,0.94 5.08,-0.26v0.08c3.59,-5.81 -0.09,-6 -2,-6s-3.43,-1.76 -4.15,-2.93a7.19,7.19 0,0 1,-0.8 -2.13,33.68 33.68,0 0,0 2.39,-4h-0.06a33.19,33.19 0,0 0,2.79 -7.41c3,-2 8.05,-1.2 11.11,-0.43 1.43,0.35 4.77,1.23 5.91,2.15 2.24,1.8 3.36,0 3.72,-4.74C83.64,88.54 80.67,89.9 79.14,91Z" + android:strokeAlpha="0.26" + android:fillColor="#fff" + android:fillType="evenOdd" + android:fillAlpha="0.26"/> + <path + android:pathData="M16.25,32.5l-3.07,-0.67S0.68,28.6 0.22,35.08 13.82,46 13.82,46l1.15,0.09 4.2,2 0.71,3.82 -4.3,3.74S3.82,69.82 4.4,74.93s6.9,4.73 6.9,4.73 -6.68,4.71 -3.71,8.58c2.19,2.83 6.87,4.33 6.87,4.33s-6.11,5.08 -3.72,10.57c1.06,2.42 7.8,3.62 7.8,3.62l11.25,-0.65C29.2,102.59 16.72,35.19 16.25,32.5Z" + android:fillColor="#f7b994" + android:fillType="evenOdd"/> + <path + android:pathData="M80.65,122.76l-40.34,7.49a7.58,7.58 0,0 1,-8.83 -6.06L12.8,23.52a7.56,7.56 0,0 1,6.05 -8.82h0L59.2,7.21A7.58,7.58 0,0 1,68 13.27L86.71,113.94a7.56,7.56 0,0 1,-6 8.82Z" + android:strokeWidth="3.65" + android:fillColor="#00000000" + android:strokeColor="#4a4a4a"/> + <path + android:pathData="M110.2,75.64C104.4,65 94.46,42.64 91.2,41c0,0 -4,-14.76 -12.93,-15.58 0,0 -3.46,-12.31 -4.42,-12.28s-5.74,0.17 -6.86,6.32 1.37,17.23 7.32,20.15l13.6,70.67c1.1,5.48 0.73,5.84 0.37,8a199.19,199.19 0,0 1,22 6C110.27,114.74 110.27,81.64 110.2,75.64Z" + android:fillColor="#f7b994" + android:fillType="evenOdd"/> + <path + android:pathData="M15.54,79.2l13.37,-1.67s7,-2.84 6.2,-7.23c-0.94,-5.35 -6.94,-5.52 -6.94,-5.52l-10.74,0.34Z" + android:fillColor="#f7b994" + android:fillType="evenOdd"/> + <path + android:pathData="M15.78,92.23s10.87,0.22 14.38,-0.65c2.36,-0.59 11.31,-3.25 8,-9.46 -2.56,-4.83 -6.95,-5.55 -8.94,-4.84 -3.63,1.28 -10.87,1 -10.87,1Z" + android:fillColor="#f7b994" + android:fillType="evenOdd"/> + <path + android:pathData="M18.46,106.6s11.2,-0.42 15.34,-0.73c2.17,-0.17 8.77,-3.29 7.67,-7A9.38,9.38 0,0 0,31.25 92c-3.24,0.59 -8.6,-0.57 -8.6,-0.57Z" + android:fillColor="#f7b994" + android:fillType="evenOdd"/> </vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_off.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_off.xml index 14306fc0305b7ce6c54ac56b7dbaadc6532c853b..909604effb66916e4cece8b24529479908ebe425 100644 --- a/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_off.xml +++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_illustration_notification_off.xml @@ -1,290 +1,122 @@ <vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="360dp" + android:width="360.11dp" android:height="220dp" - android:viewportWidth="360" + android:viewportWidth="360.11" android:viewportHeight="220"> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M216.594,150.161C216.586,150.109 215.691,144.795 215.152,139.02C214.426,131.248 214.454,126.265 215.493,123.928L215.922,124.071C213.487,129.546 217.255,149.926 217.289,150.131L216.594,150.161Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M215.603,144.717C214.136,144.717 212.166,143.593 209.813,141.624C207.978,140.088 206.554,138.496 206.54,138.48L206.766,138.28C206.822,138.342 212.355,144.406 215.737,144.137L215.845,144.708C215.766,144.714 215.685,144.717 215.603,144.717" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M217.921,147.733C216.895,147.733 216.236,147.681 216.223,147.679L216.307,147.117C216.415,147.127 227.128,148.209 230.098,142.788L230.365,142.933C229.092,145.254 226.238,146.81 222.111,147.433C220.516,147.674 219.01,147.733 217.921,147.733" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#E8F5FF" - android:fillType="evenOdd" - android:pathData="M231.894,150.678C274.558,150.678 293.144,123.768 332.978,128.863C342.447,130.074 354.471,133.857 367.975,144.468L367.975,174.24L-7.025,176.32L-7.025,142.32C4.975,137.32 8.975,139.32 21.975,142.32C65.473,152.358 115.977,126.356 139.478,125.446C141.673,125.361 143.79,125.321 145.826,125.321C196.599,125.317 199.027,150.678 231.894,150.678" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <group> - <clip-path android:pathData="M145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.974,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.448,130.074 332.979,128.863L332.979,128.863C293.145,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.029,150.679 196.601,125.321 145.836,125.321L145.836,125.321C145.833,125.321 145.829,125.321 145.826,125.321L145.826,125.321Z" /> - <path - android:fillColor="#E8F5FF" - android:fillType="evenOdd" - android:pathData="M-106.558,182.459l508.41,0l0,-63.805l-508.41,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - </group> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <group> - <clip-path android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.974,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.32L367.974,174.24L367.974,144.468C354.471,133.858 342.448,130.074 332.979,128.863L332.979,128.863C293.145,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.84,125.321 145.836,125.321L145.836,125.321Z" /> - <path - android:fillColor="#E8F5FF" - android:fillType="evenOdd" - android:pathData="M-76.862,176.204l445.453,0l0,-52.545l-445.453,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - </group> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <group> - <clip-path android:pathData="M145.836,125.321C145.834,125.321 145.828,125.321 145.826,125.321L145.826,125.321C143.791,125.321 141.673,125.362 139.479,125.446L139.479,125.446C115.978,126.356 65.474,152.359 21.975,142.32L21.975,142.32C8.974,139.321 4.975,137.321 -7.025,142.32L-7.025,142.32L-7.025,176.203L14.061,176.203L367.974,174.24L367.974,144.468C354.471,133.858 342.448,130.074 332.979,128.863L332.979,128.863C293.145,123.769 274.558,150.679 231.895,150.679L231.895,150.679C199.031,150.679 196.595,125.323 145.839,125.321L145.839,125.321C145.836,125.321 145.839,125.321 145.836,125.321L145.836,125.321Z" /> - <path - android:fillColor="#E8F5FF" - android:fillType="evenOdd" - android:pathData="M-112,188.509l519.179,0l0,-75.7l-519.179,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - </group> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <group> - <clip-path android:pathData="M107.572,166.86C71.657,166.86 56.009,149.308 22.475,152.631L22.475,152.631C14.505,153.421 4.383,155.889 -6.985,162.81L-6.985,162.81L-6.985,182.23L367.496,183.319L367.496,168.991C365.607,168.134 363.733,167.4 361.949,166.848L361.949,166.848C361.949,166.848 324.155,154.936 282.301,165.129L282.301,165.129C246.451,173.867 205.155,150.995 185.371,150.402L185.371,150.402C183.525,150.346 181.741,150.32 180.028,150.32L180.028,150.32C137.286,150.318 135.242,166.86 107.572,166.86L107.572,166.86Z" /> - <path - android:fillColor="#D8ECF9" - android:fillType="evenOdd" - android:pathData="M-39.99,191.537l437.066,0l0,-49.378l-437.066,0z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> - </group> - <group> - <clip-path android:pathData="M0,0h360v220h-360z" /> - <path - android:fillColor="#F6B893" - android:fillType="evenOdd" - android:pathData="M159.279,63.618C159.279,63.618 167.286,71.109 170.314,73.132C172.826,74.809 181.105,78.56 181.105,78.56L177.546,82.265C177.546,82.265 170.27,80.644 168.031,79.601C165.736,78.532 159.658,73.893 159.658,73.893L159.279,63.618Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="evenOdd" - android:pathData="M121.247,188.632L118.356,194.122C117.958,194.878 118.224,195.814 118.961,196.244C122.455,198.281 132.006,203.487 136.129,202.084C136.706,201.887 136.849,201.132 136.4,200.718C133.769,198.298 125.591,190.573 126.224,188.676L121.247,188.632Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B96161" - android:fillType="evenOdd" - android:pathData="M120.981,189.144L126.571,189.889L154.217,126.053L139.819,97.136L139.652,136.717C139.652,136.717 126.812,162.241 124.762,172.254C122.739,182.141 120.981,189.144 120.981,189.144" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#C66A61" - android:fillType="evenOdd" - android:pathData="M138.915,87.901L160.61,88.191C160.61,88.191 179.412,182.49 186.933,188.854L182.883,191.747C182.883,191.747 159.742,160.217 161.767,139.968C161.767,139.968 133.13,93.976 138.915,87.901" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="evenOdd" - android:pathData="M154.225,51.624L152.832,41.767C152.832,41.767 158.892,42.036 158.752,33.581C158.726,32.014 158.617,29.332 157.17,27.299L152.832,26.017L148.118,36.731L145.83,50.348L150.689,54.088L154.761,53.981L154.225,51.624Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="evenOdd" - android:pathData="M182.883,191.747L183.775,197.888C183.898,198.733 184.663,199.333 185.514,199.247C189.536,198.839 200.322,197.429 202.831,193.868C203.182,193.369 202.852,192.674 202.247,192.604C198.695,192.195 187.538,190.761 186.932,188.854L182.883,191.747Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="evenOdd" - android:pathData="M134.196,100.94L135.706,82.488L143.506,84.716L138.031,103.693C138.031,103.693 136.654,114.708 132.032,111.462C126.296,107.434 133.999,103.202 134.196,100.94" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B1DAEF" - android:fillType="evenOdd" - android:pathData="M135.671,82.757C135.671,82.757 135.683,82.664 135.707,82.488C136.117,79.465 139.97,51.87 144.291,50.759C148.861,49.584 151.186,53.93 153.276,51.579C155.365,49.228 167.657,68.68 160.61,88.191L142.547,88.208L148.6,61.077L143.507,84.716C143.507,84.716 136.977,86.414 135.671,82.757" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#663014" - android:fillType="evenOdd" - android:pathData="M158.617,33.624C158.617,33.624 163.117,30.838 160.224,23.338C160.224,23.338 159.581,20.124 155.081,20.231C155.081,20.231 147.903,13.803 141.153,19.267C134.403,24.731 139.01,30.196 139.01,30.196C139.01,30.196 130.01,38.338 133.117,49.374C133.117,49.374 136.439,56.553 140.296,54.088C144.153,51.624 143.939,56.981 145.974,49.803C148.01,42.624 151.546,43.696 150.153,31.588C150.153,31.588 154.974,31.91 156.046,26.981C156.046,26.981 159.153,28.053 158.617,33.624" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#4A4A4A" - android:fillType="evenOdd" - android:pathData="M174.465,85.015C174.224,85.446 180.07,86.345 180.209,86.451C181.008,87.202 188.119,75.833 188.657,75.49C188.921,75.426 188.759,74.325 188.238,74.061L183.193,73.016C182.092,71.733 175.058,83.594 174.435,83.895C174.078,84.306 174.269,84.64 174.465,85.015" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#F6B893" - android:fillType="evenOdd" - android:pathData="M185.353,79.517C186.606,79.055 185.192,81.609 184.448,82.657C183.768,83.615 183.507,84.231 183.044,84.007C182.581,83.783 182.871,82.733 183.446,81.546C184.021,80.358 184.453,79.849 185.353,79.517" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B8E0FA" - android:fillType="evenOdd" - android:pathData="M289.647,143.193C289.647,143.193 275.845,123.938 285.558,121.552C295.27,119.167 294.589,131.095 301.064,126.664C307.539,122.234 296.137,101.587 311.549,99.542C330.6,97.014 316.155,116.923 314.812,121.816C314.526,122.856 314.83,123.986 315.644,124.694C317.304,126.138 322.675,126.507 330.713,121.552C343.153,113.884 334.292,149.498 310.947,150.52C310.947,150.52 296.293,150.861 289.647,143.193" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M308.297,150.626C308.287,150.54 307.976,141.877 307.692,132.288C307.308,119.383 309.324,108.938 311.874,105.282L312.383,105.799C306.407,114.37 309.579,150.215 309.621,150.559L308.297,150.626Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M308.527,144.519C308.482,144.505 304.033,143.113 299.377,140.488C295.061,138.054 289.675,134.03 288.533,128.683L288.834,128.393C290.967,138.374 308.346,143.275 308.522,143.329L308.527,144.519Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M308.463,141.134L308.351,139.967C308.521,139.914 325.377,135.176 328.18,127.815L328.549,128.127C327.34,131.301 323.587,134.455 317.395,137.504C312.803,139.765 308.506,141.12 308.463,141.134" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B8E0FA" - android:fillType="evenOdd" - android:pathData="M39.967,60.324C34.448,60.474 31.29,68.901 31.026,72.903C29.901,90.032 20.129,102.25 21.033,128.933C21.627,146.416 27.345,164.38 33.393,167.524C45.038,173.58 52.851,160.093 54.166,147.514C55.481,134.936 56.269,116.64 47.592,93.771C42.775,81.072 51.018,60.022 39.967,60.324" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M39.532,169.676C38.503,164.926 36.195,141.121 36.135,115.351C36.097,99.704 36.887,83.326 39.295,70.034L39.943,70.16C37.544,83.409 36.756,99.743 36.793,115.351C36.853,141.068 39.152,164.797 40.176,169.526L39.532,169.676Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M36.82,139.765C36.844,139.723 44.426,126.334 45.595,120.937L46.238,121.089C45.048,126.59 37.413,140.073 37.389,140.116L36.82,139.765Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M36.203,109.494C36.186,109.472 29.654,101.151 30.093,94.944L30.691,94.996C30.273,100.922 36.642,109.03 36.659,109.052L36.203,109.494Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#B8E0FA" - android:fillType="evenOdd" - android:pathData="M64.086,170.605C69.328,166.699 73.886,159.852 74.565,143.816C75.243,127.778 73.913,123.845 70.163,122.444C66.414,121.044 63.466,123.039 61.363,128.223C59.26,133.408 58.38,138.837 56.332,140.581C54.284,142.326 42.57,152.046 45.871,163.061C49.173,174.076 58.688,173.186 64.086,170.605" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M52.684,171.636C54.725,168.818 59.139,160.881 62.746,151.791C65.166,145.695 67.226,139.075 67.968,133.125L67.458,133.059C66.72,138.967 64.673,145.543 62.268,151.603C58.678,160.65 54.293,168.538 52.267,171.335L52.684,171.636Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M59.734,158.59C59.342,158.886 67.846,155.446 70.248,150.852L69.808,150.618C67.496,155.04 59.872,157.952 59.85,157.961L59.734,158.59Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M55.587,166.996C55.578,166.976 52.442,159.996 52.701,155.332L52.227,155.32C51.961,160.126 55.149,167.221 55.158,167.241L55.587,166.996Z" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#D8ECF9" - android:fillType="evenOdd" - android:pathData="M268.96,24.18C266.689,24.64 263.882,26.714 263.977,27.321C264.01,27.533 271.093,27.332 278.373,27.321C289.35,27.303 294.838,27.321 295.537,27.321L309.378,27.321C310.459,27.321 308.477,23.758 307.717,23.133C306.404,22.051 304.412,21.576 302.734,22.086C300.436,22.784 300.479,24.798 298.305,25.227C296.886,25.507 295.362,24.947 294.429,24.18C293.007,23.011 293.598,21.888 292.214,20.515C291.245,19.554 289.981,19.112 288.339,19.469C286.422,19.885 286.678,19.992 283.909,22.086C282.937,22.821 281.887,24.934 280.034,25.227C275.005,26.02 272.907,23.38 268.96,24.18" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#D8ECF9" - android:fillType="evenOdd" - android:pathData="M8.725,38.32L38.177,38.32C37.044,36.768 35.923,36.277 35.109,36.117C33.106,35.723 32.26,37.186 28.973,37.218C28.389,37.224 26.946,37.227 25.291,36.668C24.31,36.336 24.283,36.154 22.837,35.566C21.643,35.08 20.594,34.653 19.156,34.465C18.058,34.32 17.234,34.381 16.088,34.465C14.787,34.56 13.985,34.625 13.02,35.015C12.305,35.305 11.853,35.631 11.18,36.117C10.53,36.586 9.644,37.301 8.725,38.32" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#D8ECF9" - android:fillType="evenOdd" - android:pathData="M96.763,28.32L59.829,28.32C61.25,26.032 62.655,25.309 63.676,25.073C66.188,24.492 67.248,26.649 71.371,26.696C72.104,26.705 73.913,26.709 75.988,25.885C77.219,25.396 77.253,25.128 79.065,24.261C80.563,23.545 81.879,22.916 83.682,22.638C85.059,22.425 86.092,22.514 87.53,22.638C89.16,22.778 90.167,22.874 91.377,23.449C92.274,23.876 92.84,24.356 93.685,25.073C94.5,25.764 95.611,26.819 96.763,28.32" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M227.525,41.676L196.322,41.676C195.77,41.676 195.322,41.228 195.322,40.676L195.322,40.463C195.322,39.91 195.77,39.463 196.322,39.463L227.525,39.463C228.077,39.463 228.525,39.91 228.525,40.463L228.525,40.676C228.525,41.228 228.077,41.676 227.525,41.676" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#BF0F2D" - android:fillType="evenOdd" - android:pathData="M218.977,48.911C218.977,59.302 210.553,67.726 200.162,67.726C189.771,67.726 181.348,59.302 181.348,48.911C181.348,38.52 189.771,30.096 200.162,30.096C210.553,30.096 218.977,38.52 218.977,48.911" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M200.62,40.378C199.881,40.378 199.272,40.986 199.272,41.725L199.272,42.357C198.399,42.562 197.636,42.967 197.048,43.558C196.171,44.444 195.68,45.699 195.68,47.143L195.68,50.646C195.68,51.47 195.229,52.516 194.764,53.291L193.959,54.5C193.868,54.639 193.859,54.816 193.936,54.961C194.015,55.107 194.167,55.198 194.332,55.198L198.374,55.198C198.374,56.431 199.387,57.444 200.62,57.444C201.853,57.444 202.865,56.431 202.865,55.198L206.907,55.198C207.072,55.198 207.225,55.107 207.304,54.961C207.381,54.816 207.372,54.639 207.281,54.5L206.479,53.296L206.477,53.295C206.007,52.511 205.56,51.532 205.56,50.707L205.56,47.204C205.56,44.794 204.125,42.927 201.967,42.373L201.967,41.725C201.967,40.986 201.358,40.378 200.62,40.378" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#FFFFFF" - android:fillType="evenOdd" - android:pathData="M191.684,55.735L208.641,41.506" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#00000000" - android:fillType="evenOdd" - android:pathData="M191.684,55.735L208.641,41.506" - android:strokeWidth="2" - android:strokeColor="#BF0F2D" - android:strokeLineCap="round" /> - <path - android:fillColor="#BF0F2D" - android:fillType="evenOdd" - android:pathData="M192.181,56.314L209.138,42.086" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - <path - android:fillColor="#00000000" - android:fillType="evenOdd" - android:pathData="M192.181,56.314L209.138,42.086" - android:strokeWidth="1" - android:strokeColor="#FFFFFF" - android:strokeLineCap="round" /> - <path - android:fillColor="#BF0F2D" - android:fillType="evenOdd" - android:pathData="M198.502,63.562L188.727,68.913C188.186,69.373 187.435,68.913 187.435,68.122L186.328,59.135C186.328,58.598 187.801,59.135 188.252,59.135L197.683,59.135C198.479,59.135 199.149,63.012 198.502,63.562" - android:strokeWidth="1" - android:strokeColor="#00000000" /> - </group> + <path + android:pathData="M231.36,151.25c42.67,0 61.25,-26.91 101.09,-21.81a66.57,66.57 0,0 1,27.66 10.38c-0.11,4.74 -0.23,35 -0.23,35L0,176.85s0,-31.24 0,-36.45c6.9,-1.48 11.59,0.22 21.43,2.49 43.5,10 94,-16 117.51,-16.87 2.19,-0.09 4.31,-0.13 6.34,-0.13C196.07,125.89 198.49,151.25 231.36,151.25Z" + android:fillColor="#e8f5ff" + android:fillType="evenOdd"/> + <path + android:pathData="M107,167.43c-35.92,0 -51.56,-17.55 -85.1,-14.23A66.66,66.66 0,0 0,0 159.33c0,4.23 0,23.49 0,23.49l360,1.05s0,-12.82 0,-16.86c-7.25,-2 -41.14,-10.34 -78.22,-1.31 -35.85,8.74 -77.15,-14.13 -96.93,-14.73 -1.85,-0.05 -3.63,-0.08 -5.34,-0.08C136.75,150.89 134.71,167.43 107,167.43Z" + android:fillColor="#d8ecf9" + android:fillType="evenOdd"/> + <path + android:pathData="M289.06,143.77s-13.8,-19.26 -4.09,-21.65 9,9.55 15.51,5.12 -4.93,-25.08 10.49,-27.13c19,-2.52 4.6,17.39 3.26,22.28a2.82,2.82 0,0 0,0.83 2.88c1.66,1.44 7,1.81 15.07,-3.15 12.44,-7.66 3.58,27.95 -19.77,29C310.36,151.09 295.71,151.43 289.06,143.77Z" + android:fillColor="#b8e0fa"/> + <path + android:pathData="M307.71,151.2c0,-0.09 -0.32,-8.75 -0.6,-18.34 -0.38,-12.91 1.63,-23.35 4.18,-27l0.51,0.52c-6,8.57 -2.8,44.42 -2.76,44.76Z" + android:fillColor="#fff"/> + <path + android:pathData="M307.94,145.09a52.58,52.58 0,0 1,-9.15 -4c-4.31,-2.43 -9.7,-6.46 -10.84,-11.8l0.3,-0.3c2.14,10 19.51,14.89 19.69,14.94Z" + android:fillColor="#fff"/> + <path + android:pathData="M307.88,141.71l-0.11,-1.17c0.17,0 17,-4.79 19.83,-12.15l0.37,0.31c-1.21,3.17 -5,6.33 -11.16,9.38A72.46,72.46 0,0 1,307.88 141.71Z" + android:fillColor="#fff"/> + <path + android:pathData="M39.39,60.9c-5.52,0.15 -8.68,8.57 -8.95,12.57 -1.12,17.13 -10.89,29.35 -10,56C21,147 26.76,165 32.81,168.1c11.65,6.05 19.46,-7.44 20.77,-20S55.69,117.21 47,94.34c-4.82,-12.7 3.43,-33.75 -7.62,-33.44" + android:fillColor="#b8e0fa" + android:fillType="evenOdd"/> + <path + android:pathData="M39,170.25c-1,-4.75 -3.34,-28.56 -3.4,-54.33 0,-15.64 0.76,-32 3.16,-45.31l0.65,0.12C37,84 36.17,100.32 36.21,115.92c0.06,25.72 2.36,49.45 3.38,54.18Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M36.24,140.34s7.6,-13.43 8.77,-18.83l0.65,0.15c-1.19,5.5 -8.83,19 -8.85,19Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M35.62,110.07s-6.55,-8.35 -6.11,-14.55l0.6,0c-0.42,5.92 6,14 6,14.05Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M63.5,171.18c5.25,-3.91 9.8,-10.76 10.48,-26.79s-0.65,-20 -4.4,-21.37 -6.7,0.59 -8.8,5.77 -3,10.62 -5,12.36S42,152.62 45.29,163.63s12.82,10.13 18.21,7.55" + android:fillColor="#b8e0fa" + android:fillType="evenOdd"/> + <path + android:pathData="M52.1,172.21c2,-2.82 6.46,-10.76 10.06,-19.85a80,80 0,0 0,5.23 -18.66l-0.51,-0.07a79.62,79.62 0,0 1,-5.19 18.55c-3.59,9 -8,16.93 -10,19.73Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M59.15,159.16c-0.39,0.3 8.11,-3.14 10.52,-7.74l-0.44,-0.23c-2.32,4.42 -9.94,7.33 -10,7.34Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M55,167.57s-3.14,-7 -2.88,-11.67h-0.48c-0.26,4.81 2.93,11.9 2.94,11.92Z" + android:fillColor="#fff" + android:fillType="evenOdd"/> + <path + android:pathData="M268.38,24.75c-2.27,0.46 -5.08,2.54 -5,3.14 0,0.21 7.11,0 14.39,0 11,0 16.47,0 17.16,0H308.8c1.08,0 -0.91,-3.56 -1.66,-4.19a5.62,5.62 0,0 0,-5 -1c-2.3,0.7 -2.25,2.71 -4.43,3.14a4.9,4.9 0,0 1,-3.87 -1.05c-1.43,-1.17 -0.83,-2.29 -2.22,-3.66A4,4 0,0 0,287.76 20c-1.92,0.42 -1.66,0.52 -4.43,2.62 -1,0.73 -2,2.85 -3.88,3.14C274.42,26.59 272.32,24 268.38,24.75Z" + android:fillColor="#d8ecf9"/> + <path + android:pathData="M8.14,38.89H37.59a5,5 0,0 0,-3.06 -2.2c-2,-0.39 -2.85,1.07 -6.14,1.1a10.86,10.86 0,0 1,-3.68 -0.55c-1,-0.33 -1,-0.51 -2.45,-1.1A13.94,13.94 0,0 0,18.57 35a13,13 0,0 0,-3.06 0,9.15 9.15,0 0,0 -3.07,0.55 7.8,7.8 0,0 0,-1.84 1.1A15.57,15.57 0,0 0,8.14 38.89Z" + android:fillColor="#d8ecf9"/> + <path + android:pathData="M96.18,28.89H59.25c1.42,-2.29 2.82,-3 3.84,-3.24 2.52,-0.59 3.58,1.57 7.7,1.62a12,12 0,0 0,4.62 -0.81c1.23,-0.49 1.26,-0.76 3.07,-1.63a15.91,15.91 0,0 1,4.62 -1.62,15 15,0 0,1 3.85,0 10.13,10.13 0,0 1,3.84 0.81,9.85 9.85,0 0,1 2.31,1.63A20.56,20.56 0,0 1,96.18 28.89Z" + android:fillColor="#d8ecf9"/> + <path + android:pathData="M159.32,64.07s8,7.48 11,9.5c2.5,1.67 10.13,5.18 10.13,5.18l-2.92,3.94s-7.26,-1.62 -9.49,-2.66 -8.36,-5.7 -8.36,-5.7Z" + android:fillColor="#f6b893"/> + <path + android:pathData="M121.36,188.86l-2.89,5.48a1.6,1.6 0,0 0,0.6 2.12c3.49,2 13,7.23 17.14,5.83a0.81,0.81 0,0 0,0.27 -1.36c-2.62,-2.42 -10.79,-10.13 -10.16,-12Z" + android:fillColor="#4a4a4a"/> + <path + android:pathData="M121.09,189.38l5.58,0.74 27.6,-63.72L139.9,97.53 139.73,137s-12.82,25.48 -14.86,35.48S121.09,189.38 121.09,189.38Z" + android:fillColor="#b96161"/> + <path + android:pathData="M139,88.31l21.66,0.29s18.77,94.13 26.28,100.49L182.88,192s-23.1,-31.47 -21.08,-51.68C161.8,140.29 133.22,94.38 139,88.31Z" + android:fillColor="#c66a61"/> + <path + android:pathData="M154.28,52.1l-1.39,-9.84s6,0.27 5.9,-8.17c0,-1.56 -0.13,-4.24 -1.57,-6.27l-5.54,-1.77 -3.5,11.19 -3.33,13.57 5.9,3.75 4.06,-0.11Z" + android:fillColor="#f6b893"/> + <path + android:pathData="M182.88,192l0.89,6.13a1.6,1.6 0,0 0,1.74 1.36c4,-0.41 14.78,-1.81 17.28,-5.37a0.8,0.8 0,0 0,-0.58 -1.26c-3.54,-0.41 -14.68,-1.84 -15.28,-3.74Z" + android:fillColor="#4a4a4a"/> + <path + android:pathData="M134.28,101.33l1.51,-18.42 7.79,2.22 -5.47,19s-1.37,11 -6,7.75C126.4,107.81 134.09,103.59 134.28,101.33Z" + android:fillColor="#f6b893"/> + <path + android:pathData="M153.33,52.06c-2.09,2.34 -4.41,-2 -9,-0.82 -4.31,1.11 -8.16,28.65 -8.57,31.67 0,0.18 0,0.27 0,0.27 1.18,3.29 6.59,2.24 7.64,2l-0.77,3.44 18,0C167.68,69.13 155.41,49.71 153.33,52.06Z" + android:fillColor="#b1daef"/> + <path + android:pathData="M158.8,34.16s4.35,-2.81 1.46,-10.29c0,0 -0.64,-3.21 -5.13,-3.11 0,0 -7.16,-6.41 -13.9,-1s-2.14,10.91 -2.14,10.91 -9,8.13 -5.88,19.15c0,0 3.31,7.16 7.16,4.7S144,57.45 146,50.28s5.56,-6.09 4.17,-18.18a5.69,5.69 0,0 0,5.88 -4.6S158.65,28.71 158.8,34.16Z" + android:fillColor="#663014"/> + <path + android:pathData="M174.73,85.45a32.94,32.94 0,0 0,5.52 1.71,1.17 1.17,0 0,0 1.26,-0.46c1.62,-3.07 6.48,-10.55 6.79,-11s0.3,-0.62 -0.13,-0.9 -4.17,-1.28 -5.3,-1.61c-0.38,-0.11 -0.72,0.5 -0.84,0.65 -1.88,2.24 -7,10 -7.33,10.49S174.36,85.25 174.73,85.45Z" + android:fillColor="#4a4a4a" + android:fillType="evenOdd"/> + <path + android:pathData="M185.6,79.42c1.54,-0.32 -0.41,2.61 -1.15,3.66s-1.3,1.9 -1.76,1.68 -0.09,-1.72 0.49,-2.91A4.26,4.26 0,0 1,185.6 79.42Z" + android:fillColor="#f6b893"/> + <path + android:pathData="M199.58,49.48m-18.81,0a18.81,18.81 0,1 1,37.62 0a18.81,18.81 0,1 1,-37.62 0" + android:fillColor="#bf0f2d"/> + <path + android:pathData="M200,41a1.36,1.36 0,0 0,-1.35 1.35v0.63a4.5,4.5 0,0 0,-2.22 1.2,5 5,0 0,0 -1.37,3.58v3.51a5.74,5.74 0,0 1,-0.92 2.64l-0.8,1.21a0.47,0.47 0,0 0,0 0.46,0.46 0.46,0 0,0 0.4,0.24h4a2.25,2.25 0,1 0,4.49 0h4a0.45,0.45 0,0 0,0.38 -0.7l-0.8,-1.2h0a5.53,5.53 0,0 1,-0.92 -2.59v-3.5a4.8,4.8 0,0 0,-3.6 -4.84V42.3A1.35,1.35 0,0 0,200 41Z" + android:fillColor="#fff"/> + <path + android:pathData="M191.1,56.31L208.06,42.08" + android:strokeWidth="2" + android:fillColor="#fff" + android:strokeColor="#bf0f2d" + android:strokeLineCap="round"/> + <path + android:strokeWidth="1" + android:pathData="M191.6,56.89L208.56,42.66" + android:fillColor="#bf0f2d" + android:strokeColor="#fff" + android:strokeLineCap="round"/> + <path + android:pathData="M197.92,64.13l-9.78,5.36c-0.54,0.45 -1.29,0 -1.29,-0.8l-1.1,-9c0,-0.54 1.47,0 1.92,0h9.43C197.9,59.71 198.57,63.58 197.92,64.13Z" + android:fillColor="#bf0f2d"/> </vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_settings_notification_circle.xml b/Corona-Warn-App/src/main/res/drawable/ic_settings_notification_circle.xml new file mode 100644 index 0000000000000000000000000000000000000000..883d65c56a2e0ab7e0e608f3a24a9c1fbe429d41 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_settings_notification_circle.xml @@ -0,0 +1,18 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="40dp" + android:height="40dp" + android:viewportWidth="40" + android:viewportHeight="40"> + <path + android:pathData="M20,0L20,0A20,20 0,0 1,40 20L40,20A20,20 0,0 1,20 40L20,40A20,20 0,0 1,0 20L0,20A20,20 0,0 1,20 0z" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M20,10C19.172,10 18.5,10.672 18.5,11.5L18.5,12.1953C15.9132,12.8621 14,15.2048 14,18L14,24L12,26L12,27L18.2695,27C18.0934,27.3039 18.0005,27.6488 18,28C18,29.1046 18.8954,30 20,30C21.1046,30 22,29.1046 22,28C21.9989,27.6486 21.9053,27.3037 21.7285,27L28,27L28,26L26,24L26,18C26,15.2048 24.0868,12.8621 21.5,12.1953L21.5,11.5C21.5,10.672 20.828,10 20,10ZM20,14C22.206,14 24,15.794 24,18L24,24L24,24.8281L24.1719,25L15.8281,25L16,24.8281L16,24L16,18C16,15.794 17.794,14 20,14Z" + android:strokeWidth="1" + android:fillColor="#007FAD" + android:fillType="nonZero" + android:strokeColor="#00000000"/> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_submission_illustration_hotline.xml b/Corona-Warn-App/src/main/res/drawable/ic_submission_illustration_hotline.xml new file mode 100644 index 0000000000000000000000000000000000000000..580c4fc2057cf51916c6e56321e165aa81fa44f1 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_submission_illustration_hotline.xml @@ -0,0 +1,96 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="360dp" + android:height="220dp" + android:viewportWidth="360" + android:viewportHeight="220"> + <group> + <clip-path + android:pathData="M0,0h360v220h-360z"/> + <path + android:pathData="M273.5,161.612C273.889,158.044 274.5,155.612 274.5,155.612L255.5,153.612C255.5,153.612 254.641,161.2 254.5,164.612L273.5,161.612Z" + android:strokeWidth="1" + android:fillColor="#F3B590" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M236.462,62.523C236.462,62.523 234.831,95.377 211.781,85.648C209.393,84.639 206.501,83.612 203.9,81.165C199.289,76.825 192.501,68.612 194.331,49.473C196.001,32.01 213.47,19.77 227.141,35.926C240.813,52.083 242.676,58.297 240.813,60.037C238.949,61.777 236.462,62.523 236.462,62.523" + android:strokeWidth="1" + android:fillColor="#F3B590" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M207.02,103.767C207.02,103.767 205.443,101.86 207.105,96.006C207.125,95.938 207.112,95.822 207.188,95.725C208.39,94.188 209.977,86.817 211.333,84.432L229.589,81.198C229.589,81.198 229.344,90.307 231.462,97.121C232.601,100.785 230.443,104.377 228.195,105.879C222.929,109.396 211.689,113.366 207.02,103.767" + android:strokeWidth="1" + android:fillColor="#F3B590" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M186.891,143.043C186.891,143.043 178.5,200.612 166.5,198.612C161.05,197.704 143.46,186.756 129.241,171.964C120.419,162.789 116.584,159.285 115.02,157.172C111.088,151.859 95.638,147.71 98.966,139.277C100.127,136.335 106.281,133.665 112.109,136.985C117.811,140.233 121.27,146.481 121.553,147.512C122.389,150.562 129.108,155.933 134.883,160.252C140.58,164.514 158.09,174.252 158.09,174.252C159.097,175.093 160.633,174.683 161.081,173.449C163.735,166.146 165.63,144.616 165.813,143.903C166.037,143.036 186.891,143.043 186.891,143.043" + android:strokeWidth="1" + android:fillColor="#F3B590" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <group> + <clip-path + android:pathData="M162.478,95.804l113.459,0l0,110.029l-113.459,0z"/> + <path + android:pathData="M231.647,97.474C231.647,97.474 230.335,101.311 226.5,103.612C216.5,109.612 208.5,102.612 207.603,98.661L207.094,95.804C207.094,95.804 179.414,102.261 171.337,111.99C167.5,116.612 165.5,119.612 162.5,148.612C162.191,151.596 165.209,153.182 166.5,153.612C171.273,155.203 181.731,154.025 184.99,153.476C185.799,153.34 186.444,152.736 186.638,151.938L187.751,147.373L189.5,137.612L188.153,205.182L248.846,205.833L253.5,140.612L254.52,154.074C254.599,155.12 255.326,155.991 256.335,156.277C261.203,157.655 272.895,155.97 274.898,155.648C275.496,155.553 275.935,155.043 275.938,154.437C275.956,148.516 275.647,119.08 267.665,112.46C258.777,105.09 231.647,97.474 231.647,97.474" + android:strokeWidth="1" + android:fillColor="#898995" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + </group> + <path + android:pathData="M255.5,156.612C254.668,159.914 253.944,170.157 253.5,174.612C252.608,183.573 251.457,191.975 250.754,191.887C249.35,191.711 207.885,198.489 203.5,197.612C198.5,196.612 201.5,196.612 196.5,195.612C186.5,193.612 175.5,197.612 179.5,205.612C180.552,207.716 184.5,208.612 192.5,207.612C198.122,206.909 205.457,205.677 208.5,205.612C215.537,205.462 253.577,207.13 261.162,205.669C265.07,204.916 268.504,192.053 270.5,179.612C271.609,172.704 273.003,166.173 273.5,161.612L255.5,156.612Z" + android:strokeWidth="1" + android:fillColor="#F3B590" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M223.5,45.612C225.781,47.893 225.264,50.376 227.5,52.612C230.5,55.612 238.778,55.769 239.787,49.574C239.829,49.317 239.59,55.707 239.665,55.956C240.562,58.928 237.428,58.192 236.462,62.523C236.341,63.069 235.513,69.269 235.426,69.642C234.603,73.137 234.086,74.458 234.086,74.458C237.968,73.736 251.6,54.089 247.551,42.958C243.557,31.981 234.767,25.766 230.17,23.572C230.056,23.518 219.538,20.284 216.5,20.612C215.473,20.723 206.515,22.498 205.525,23.372C205.397,23.485 205.236,23.543 205.069,23.573C203.553,23.849 197.739,24.818 194.937,24.028C194.266,23.839 193.611,24.365 193.702,25.056C193.799,25.799 193.946,26.619 194.166,27.261C194.369,27.856 193.929,28.475 193.301,28.497C190.346,28.599 184.47,28.47 183.633,28.47C182.726,28.47 184.194,31.155 186.221,32.931C186.904,33.529 186.466,34.638 185.559,34.601C185.537,34.6 185.515,34.599 185.493,34.598C184.742,34.563 184.25,35.362 184.622,36.015C186.639,39.559 189.683,47.988 195.5,47.612C202.083,47.187 214.5,36.612 223.5,45.612" + android:strokeWidth="1" + android:fillColor="#352525" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M216.5,73.612C216.5,73.612 210.061,73.594 209.865,76.717C209.67,79.839 216.329,77.564 217.5,75.612C217.5,75.612 227.5,72.612 236.894,60.129C236.894,60.129 246.075,62.084 245.773,52.908C245.5,44.612 242.5,43.612 239.5,43.612C239.5,43.612 237.5,31.612 230.5,23.612C225.844,18.291 218.577,15.738 212.5,17.612C208.454,18.86 204.5,23.612 204.5,23.612C204.5,23.612 207.857,23.001 209.82,22.454C211.584,21.963 213.538,21.035 216.745,21.319C223.173,21.887 225.385,23.725 227.152,25.413C230.5,28.612 235.5,36.612 236.992,44.419C236.992,44.419 230.356,47.932 235.918,58.373C235.918,58.373 233.5,61.612 229.5,65.612C225.5,69.612 217.927,73.73 216.5,73.612" + android:strokeWidth="1" + android:fillColor="#C36A61" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <group> + <clip-path + android:pathData="M83,9.4l79.69,0l0,71.289l-79.69,0z"/> + <path + android:pathData="M161.679,77.391L156.832,62.702C156.611,62.033 156.678,61.312 157.023,60.697C159.004,57.158 164.393,44.605 162.157,34.175C159.732,22.87 146.747,6.486 116.161,9.845C85.575,13.205 83.094,40.548 83.094,40.548C83.094,40.548 81.288,54.163 93.453,64.618C105.391,74.878 124.803,76.632 138.99,72.971C139.517,72.835 140.068,72.87 140.57,73.079L158.333,80.49C160.316,81.318 162.353,79.43 161.679,77.391" + android:strokeWidth="1" + android:fillColor="#E7E7E7" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + </group> + <path + android:pathData="M150.847,34.203L141.384,34.203C140.677,34.203 140.103,34.735 140.103,35.393L140.103,50.265C140.103,50.922 140.677,51.455 141.384,51.455L150.847,51.455C151.554,51.455 152.128,50.922 152.128,50.265L152.128,35.393C152.128,34.735 151.554,34.203 150.847,34.203" + android:strokeWidth="1" + android:fillColor="#657887" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M135.522,34.203L126.06,34.203C125.353,34.203 124.779,34.735 124.779,35.393L124.779,50.265C124.779,50.922 125.353,51.455 126.06,51.455L135.522,51.455C136.229,51.455 136.803,50.922 136.803,50.265L136.803,35.393C136.803,34.735 136.229,34.203 135.522,34.203" + android:strokeWidth="1" + android:fillColor="#657887" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M120.197,34.203L110.735,34.203C110.028,34.203 109.454,34.735 109.454,35.393L109.454,50.265C109.454,50.922 110.028,51.455 110.735,51.455L120.197,51.455C120.904,51.455 121.478,50.922 121.478,50.265L121.478,35.393C121.478,34.735 120.904,34.203 120.197,34.203" + android:strokeWidth="1" + android:fillColor="#657887" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M104.873,34.203L95.41,34.203C94.703,34.203 94.129,34.735 94.129,35.393L94.129,50.265C94.129,50.922 94.703,51.455 95.41,51.455L104.873,51.455C105.58,51.455 106.154,50.922 106.154,50.265L106.154,35.393C106.154,34.735 105.58,34.203 104.873,34.203" + android:strokeWidth="1" + android:fillColor="#657887" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/layout/fragment_information.xml b/Corona-Warn-App/src/main/res/layout/fragment_information.xml index 959f7754c12bf20bcbb4fe9a7026d42dead1f637..edef7239dd82bf11429e50628af9cdf1fdf4ff45 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_information.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_information.xml @@ -112,14 +112,21 @@ <TextView android:id="@+id/information_version" style="@style/body2Medium" - android:layout_width="wrap_content" + android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" android:layout_marginTop="@dimen/spacing_small" android:text="@{FormatterInformationHelper.formatVersion()}" app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintStart_toStartOf="parent" + app:layout_constraintStart_toStartOf="@+id/guideline_body" app:layout_constraintTop_toBottomOf="@+id/information_legal" /> + <androidx.constraintlayout.widget.Guideline + android:id="@+id/guideline_body" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + app:layout_constraintGuide_begin="@dimen/guideline_body_title_padding" /> + </androidx.constraintlayout.widget.ConstraintLayout> </ScrollView> diff --git a/Corona-Warn-App/src/main/res/layout/fragment_information_legal.xml b/Corona-Warn-App/src/main/res/layout/fragment_information_legal.xml index 0394c277723883f0adaf1d4c28a1d89caae46ccf..8a22098c9a0f54d711301609d23b7214579b8f9c 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_information_legal.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_information_legal.xml @@ -65,16 +65,26 @@ app:layout_constraintStart_toEndOf="@+id/guideline_start" app:layout_constraintTop_toBottomOf="@+id/information_legal_header_details" /> + <include + android:id="@+id/information_legal_divider_contact" + layout="@layout/include_divider" + android:layout_width="@dimen/match_constraint" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_small" + app:layout_constraintEnd_toEndOf="@+id/guideline_end" + app:layout_constraintStart_toStartOf="@+id/guideline_start" + app:layout_constraintTop_toBottomOf="@+id/information_legal_body_publisher" /> + <TextView android:id="@+id/information_legal_headline_contact" - style="@style/headline6" + style="@style/headline5" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="@dimen/spacing_small" android:text="@string/information_legal_headline_contact" app:layout_constraintEnd_toStartOf="@+id/guideline_end" app:layout_constraintStart_toEndOf="@+id/guideline_start" - app:layout_constraintTop_toBottomOf="@+id/information_legal_body_publisher" /> + app:layout_constraintTop_toBottomOf="@+id/information_legal_divider_contact" /> <TextView android:id="@+id/information_legal_subtitle_contact" @@ -87,16 +97,26 @@ app:layout_constraintStart_toEndOf="@+id/guideline_start" app:layout_constraintTop_toBottomOf="@+id/information_legal_headline_contact" /> + <include + android:id="@+id/information_legal_divider_taxid" + layout="@layout/include_divider" + android:layout_width="@dimen/match_constraint" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_small" + app:layout_constraintEnd_toEndOf="@+id/guideline_end" + app:layout_constraintStart_toStartOf="@+id/guideline_start" + app:layout_constraintTop_toBottomOf="@+id/information_legal_subtitle_contact" /> + <TextView android:id="@+id/information_legal_headline_taxid" - style="@style/headline6" + style="@style/headline5" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="@dimen/spacing_small" android:text="@string/information_legal_headline_taxid" app:layout_constraintEnd_toStartOf="@+id/guideline_end" app:layout_constraintStart_toEndOf="@+id/guideline_start" - app:layout_constraintTop_toBottomOf="@+id/information_legal_subtitle_contact" /> + app:layout_constraintTop_toBottomOf="@+id/information_legal_divider_taxid" /> <TextView android:id="@+id/information_legal_subtitle_taxid" diff --git a/Corona-Warn-App/src/main/res/layout/fragment_main.xml b/Corona-Warn-App/src/main/res/layout/fragment_main.xml index f402de1c7dc1e1b86abd87b7c15e6b3b4c7fd802..c51004e8bc01c5ebb10d807317695787fee7a098 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_main.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_main.xml @@ -129,7 +129,7 @@ layout="@layout/include_risk_card" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_normal" + android:layout_marginTop="@dimen/spacing_small" android:visibility="@{FormatterSubmissionHelper.formatShowRiskStatusCard(submissionViewModel.deviceUiState)}" app:layout_constraintEnd_toStartOf="@+id/guideline_card_end" app:layout_constraintStart_toStartOf="@+id/guideline_card_start" @@ -144,7 +144,7 @@ layout="@layout/include_submission_status_card_unregistered" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_normal" + android:layout_marginTop="@dimen/spacing_small" android:visibility="@{FormatterSubmissionHelper.formatSubmissionStatusCardUnregisteredVisible(submissionViewModel.deviceRegistered)}" app:layout_constraintEnd_toStartOf="@+id/guideline_card_end" app:layout_constraintStart_toStartOf="@+id/guideline_card_start" @@ -155,7 +155,7 @@ layout="@layout/include_submission_status_card_content" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_normal" + android:layout_marginTop="@dimen/spacing_small" android:visibility="@{FormatterSubmissionHelper.formatSubmissionStatusCardContentVisible(submissionViewModel.deviceUiState)}" app:deviceUIState="@{submissionViewModel.deviceUiState}" app:layout_constraintEnd_toStartOf="@+id/guideline_card_end" @@ -167,7 +167,7 @@ layout="@layout/include_submission_status_card_fetching" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_normal" + android:layout_marginTop="@dimen/spacing_small" android:visibility="@{FormatterSubmissionHelper.formatSubmissionStatusCardFetchingVisible(submissionViewModel.deviceRegistered, submissionViewModel.uiStateState)}" app:layout_constraintEnd_toStartOf="@+id/guideline_card_end" app:layout_constraintStart_toStartOf="@+id/guideline_card_start" @@ -178,7 +178,7 @@ layout="@layout/include_submission_status_card_positive" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_normal" + android:layout_marginTop="@dimen/spacing_small" android:visibility="@{FormatterSubmissionHelper.formatShowSubmissionStatusPositiveCard(submissionViewModel.deviceUiState)}" app:layout_constraintEnd_toStartOf="@+id/guideline_card_end" app:layout_constraintStart_toStartOf="@+id/guideline_card_start" @@ -190,7 +190,7 @@ layout="@layout/include_submission_status_card_done" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_normal" + android:layout_marginTop="@dimen/spacing_small" android:visibility="@{FormatterSubmissionHelper.formatShowSubmissionDoneCard(submissionViewModel.deviceUiState)}" app:layout_constraintEnd_toStartOf="@+id/guideline_card_end" app:layout_constraintStart_toStartOf="@+id/guideline_card_start" @@ -208,7 +208,7 @@ layout="@layout/include_main_card" android:layout_width="0dp" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_normal" + android:layout_marginTop="@dimen/spacing_small" app:body="@{@string/main_about_body}" app:headline="@{@string/main_about_headline}" app:icon="@{@drawable/ic_main_about}" diff --git a/Corona-Warn-App/src/main/res/layout/fragment_main_overview.xml b/Corona-Warn-App/src/main/res/layout/fragment_main_overview.xml index 64ac4e6f2f6dbffd55ecfd5b9f737d658290e738..d37251f915ff65264495f5ce6c8914c2d49c4126 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_main_overview.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_main_overview.xml @@ -99,6 +99,7 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="@dimen/spacing_small" + app:hideDivider="@{true}" app:iconStart="@{@drawable/ic_main_overview_circle}" app:iconTint="@{@color/colorSemanticHighRisk}" app:layout_constraintEnd_toEndOf="parent" @@ -111,6 +112,7 @@ layout="@layout/include_row" android:layout_width="0dp" android:layout_height="wrap_content" + app:hideDivider="@{true}" app:iconStart="@{@drawable/ic_main_overview_circle}" app:iconTint="@{@color/colorSemanticLowRisk}" app:layout_constraintEnd_toEndOf="parent" @@ -123,6 +125,7 @@ layout="@layout/include_row" android:layout_width="0dp" android:layout_height="wrap_content" + app:hideDivider="@{true}" app:iconStart="@{@drawable/ic_main_overview_circle}" app:iconTint="@{@color/colorSemanticNeutralRisk}" app:layout_constraintEnd_toEndOf="parent" diff --git a/Corona-Warn-App/src/main/res/layout/fragment_risk_details.xml b/Corona-Warn-App/src/main/res/layout/fragment_risk_details.xml index 943f04f8b9a6072aa1ff2e7003881502d58ef8b9..2289e51a0df681254bd27a7615555c06732f5a21 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_risk_details.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_risk_details.xml @@ -120,7 +120,7 @@ style="@style/headline5" android:layout_width="0dp" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_large" + android:layout_marginTop="@dimen/spacing_medium" android:focusable="false" android:text="@string/risk_details_headline_behavior" app:layout_constraintEnd_toStartOf="@+id/guideline_end" @@ -258,7 +258,7 @@ android:id="@+id/risk_details_button" android:layout_width="match_parent" android:layout_height="wrap_content" - android:background="@color/colorSurface1" + android:background="@color/colorBackground" android:paddingStart="@dimen/spacing_normal" android:paddingTop="@dimen/spacing_small" android:paddingEnd="@dimen/spacing_normal" diff --git a/Corona-Warn-App/src/main/res/layout/fragment_settings_notifications.xml b/Corona-Warn-App/src/main/res/layout/fragment_settings_notifications.xml index 475ce156714a527c518ffa48981be302db8924b2..a85d1f4a1e2f3fdbb9237d913e4d83dba711dd3d 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_settings_notifications.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_settings_notifications.xml @@ -57,9 +57,9 @@ <include android:id="@+id/settings_switch_row_notifications_risk" layout="@layout/include_settings_switch_row" - android:layout_marginTop="@dimen/spacing_tiny" android:layout_width="0dp" android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_tiny" android:visibility="@{FormatterHelper.formatVisibility(settingsViewModel.isNotificationsEnabled())}" app:enabled="@{true}" app:layout_constraintEnd_toEndOf="parent" @@ -86,16 +86,19 @@ app:subtitle="@{@string/settings_notifications_subtitle_update_test}" /> <include - android:id="@+id/settings_navigation_row_system" - layout="@layout/include_navigation_row" - android:layout_width="0dp" + android:id="@+id/settings_notifications_card" + layout="@layout/include_tracing_status_card" + android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_normal" + android:layout_marginTop="@dimen/spacing_small" android:visibility="@{FormatterHelper.formatVisibilityInverted(settingsViewModel.isNotificationsEnabled())}" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toBottomOf="@+id/settings_switch_row_notifications_test" - app:subtitle="@{@string/settings_notifications_button_open_settings}" /> + app:body="@{@string/settings_notifications_body_inactive}" + app:buttonText="@{@string/settings_notifications_button_open_settings}" + app:headline="@{@string/settings_notifications_headline_card}" + app:icon="@{@drawable/ic_settings_notification_circle}" + app:layout_constraintEnd_toStartOf="@+id/guideline_card_end" + app:layout_constraintStart_toStartOf="@+id/guideline_card_start" + app:layout_constraintTop_toBottomOf="@+id/settings_switch_row_notifications_test" /> <androidx.constraintlayout.widget.Guideline android:id="@+id/guideline_start" @@ -111,6 +114,8 @@ android:orientation="vertical" app:layout_constraintGuide_end="@dimen/guideline_end" /> + <include layout="@layout/merge_guidelines_card" /> + </androidx.constraintlayout.widget.ConstraintLayout> </ScrollView> diff --git a/Corona-Warn-App/src/main/res/layout/fragment_settings_reset.xml b/Corona-Warn-App/src/main/res/layout/fragment_settings_reset.xml index 9ce4584a3526ce59d90e414c9ab9d4f518ac464a..1c5c5143cf9349676ea8e6c4c96c8da6adb86fab 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_settings_reset.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_settings_reset.xml @@ -51,7 +51,6 @@ android:layout_height="wrap_content" android:layout_marginTop="@dimen/spacing_medium" app:body="@{@string/settings_reset_body_keys}" - app:buttonText="@{@string/settings_tracing_status_connection_button}" app:headline="@{@string/settings_reset_headline_keys}" app:icon="@{@drawable/ic_settings_reset_circle}" app:layout_constraintEnd_toStartOf="@+id/guideline_card_end" diff --git a/Corona-Warn-App/src/main/res/layout/fragment_submission_positive_other_warning.xml b/Corona-Warn-App/src/main/res/layout/fragment_submission_positive_other_warning.xml index 9d7c44dc6f31a213e364c820d12c18d37c2168af..6a827d2f8e5c48e27577668edc96297294858e6c 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_submission_positive_other_warning.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_submission_positive_other_warning.xml @@ -26,8 +26,10 @@ android:layout_height="@dimen/match_constraint" app:layout_constraintBottom_toTopOf="@+id/guideline_action" app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toBottomOf="@+id/submission_positive_other_warning_header" /> + app:layout_constraintHorizontal_bias="0.0" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/submission_positive_other_warning_header" + app:layout_constraintVertical_bias="0.0" /> <Button android:id="@+id/submission_positive_other_warning_button_next" diff --git a/Corona-Warn-App/src/main/res/layout/include_information_details.xml b/Corona-Warn-App/src/main/res/layout/include_information_details.xml index 6e97b1bac62e622b2eb8c1eed05c7bce85347cd3..066967d1109e929fd8e1218e1db7d4c51949352d 100644 --- a/Corona-Warn-App/src/main/res/layout/include_information_details.xml +++ b/Corona-Warn-App/src/main/res/layout/include_information_details.xml @@ -52,7 +52,7 @@ android:layout_marginTop="@dimen/spacing_small" android:text="@{headline}" android:visibility="@{FormatterHelper.formatVisibilityText(headline)}" - app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintEnd_toEndOf="@id/guideline_end" app:layout_constraintStart_toStartOf="@id/guideline_start" app:layout_constraintTop_toTopOf="parent" tools:text="@string/settings_title" /> diff --git a/Corona-Warn-App/src/main/res/layout/include_risk_card.xml b/Corona-Warn-App/src/main/res/layout/include_risk_card.xml index fcdb5d1f831e3e9d80a74ca120f679cedde44856..9c50cbc7028d3ad1b509b4c0f603f4fdc9864e5f 100644 --- a/Corona-Warn-App/src/main/res/layout/include_risk_card.xml +++ b/Corona-Warn-App/src/main/res/layout/include_risk_card.xml @@ -102,7 +102,7 @@ layout="@layout/include_risk_card_row" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_normal" + android:layout_marginTop="@dimen/spacing_small" android:visibility="@{FormatterHelper.formatVisibilityText(FormatterRiskHelper.formatRiskSavedRisk(tracingViewModel.riskLevel, tracingViewModel.riskLevelScoreLastSuccessfulCalculated))}" app:body="@{FormatterRiskHelper.formatRiskSavedRisk(tracingViewModel.riskLevel, tracingViewModel.riskLevelScoreLastSuccessfulCalculated)}" app:icon="@{@drawable/ic_risk_card_saved_risk}" @@ -130,7 +130,7 @@ layout="@layout/include_risk_card_row" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_small" + android:layout_marginTop="@dimen/spacing_tiny" android:visibility="@{FormatterHelper.formatVisibilityText(FormatterRiskHelper.formatRiskContactLast(tracingViewModel.riskLevel, tracingViewModel.daysSinceLastExposure))}" app:body="@{FormatterRiskHelper.formatRiskContactLast(tracingViewModel.riskLevel, tracingViewModel.daysSinceLastExposure)}" app:icon="@{@drawable/ic_risk_card_calendar}" @@ -143,7 +143,7 @@ android:id="@+id/risk_card_row_saved_days" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_small" + android:layout_marginTop="@dimen/spacing_tiny" android:visibility="@{FormatterHelper.formatVisibilityText(FormatterRiskHelper.formatRiskActiveTracingDaysInRetentionPeriod(tracingViewModel.riskLevel, showDetails, tracingViewModel.activeTracingDaysInRetentionPeriod))}" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" @@ -192,7 +192,7 @@ layout="@layout/include_risk_card_row" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:layout_marginTop="@dimen/spacing_small" + android:layout_marginTop="@dimen/spacing_tiny" android:visibility="@{FormatterHelper.formatVisibilityText(FormatterRiskHelper.formatTimeFetched(tracingViewModel.riskLevel, tracingViewModel.riskLevelScoreLastSuccessfulCalculated, tracingViewModel.lastTimeDiagnosisKeysFetched))}" app:body="@{FormatterRiskHelper.formatTimeFetched(tracingViewModel.riskLevel, tracingViewModel.riskLevelScoreLastSuccessfulCalculated, tracingViewModel.lastTimeDiagnosisKeysFetched)}" app:icon="@{@drawable/ic_risk_card_time_fetched}" diff --git a/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_row.xml b/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_row.xml index 998500069a06e589d79e5484ece529f75c0af0ab..a58fad41380b545768d741874b60ad24e9d947c6 100644 --- a/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_row.xml +++ b/Corona-Warn-App/src/main/res/layout/include_risk_details_behavior_row.xml @@ -54,7 +54,7 @@ style="@style/subtitle" android:layout_width="0dp" android:layout_height="wrap_content" - android:layout_marginStart="@dimen/spacing_normal" + android:layout_marginStart="@dimen/spacing_small" android:focusable="false" android:text="@{body}" app:layout_constraintBottom_toBottomOf="parent" diff --git a/Corona-Warn-App/src/main/res/layout/include_row.xml b/Corona-Warn-App/src/main/res/layout/include_row.xml index 8dede7fa24580dd8988417c100610913c6ce54fe..385fc741f7fc0f03d1b7e6a9328c50b94101227e 100644 --- a/Corona-Warn-App/src/main/res/layout/include_row.xml +++ b/Corona-Warn-App/src/main/res/layout/include_row.xml @@ -26,6 +26,10 @@ name="iconStart" type="android.graphics.drawable.Drawable" /> + <variable + name="hideDivider" + type="Boolean" /> + </data> <androidx.constraintlayout.widget.ConstraintLayout @@ -91,6 +95,7 @@ layout="@layout/include_divider" android:layout_width="0dp" android:layout_height="@dimen/card_divider" + android:visibility="@{FormatterHelper.formatVisibilityInverted(hideDivider)}" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="@id/settings_guideline_divider" app:layout_constraintTop_toBottomOf="@+id/main_row" /> diff --git a/Corona-Warn-App/src/main/res/layout/include_setting_row.xml b/Corona-Warn-App/src/main/res/layout/include_setting_row.xml index 5399abbc76317ddaedabb6fb3222b54c53ebfcd9..a4898edb99d23ff8abb6532c917de9b4506cf6d8 100644 --- a/Corona-Warn-App/src/main/res/layout/include_setting_row.xml +++ b/Corona-Warn-App/src/main/res/layout/include_setting_row.xml @@ -43,7 +43,7 @@ <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/settings_row" - style="@style/row" + style="@style/rowSettings" android:layout_width="0dp" android:layout_height="wrap_content" app:layout_constraintEnd_toEndOf="parent" @@ -58,7 +58,7 @@ android:src="@{icon}" android:tint="@{color}" app:layout_constraintBottom_toBottomOf="@id/settings_row_header" - app:layout_constraintStart_toStartOf="parent" + app:layout_constraintStart_toStartOf="@+id/guideline_icon" app:layout_constraintTop_toTopOf="@id/settings_row_header" /> <androidx.constraintlayout.widget.ConstraintLayout @@ -108,7 +108,14 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" - app:layout_constraintGuide_begin="@dimen/guideline_body_title" /> + app:layout_constraintGuide_begin="@dimen/guideline_start_divider" /> + + <androidx.constraintlayout.widget.Guideline + android:id="@+id/guideline_icon" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + app:layout_constraintGuide_begin="@dimen/guideline_back" /> </androidx.constraintlayout.widget.ConstraintLayout> diff --git a/Corona-Warn-App/src/main/res/layout/include_submission_contact.xml b/Corona-Warn-App/src/main/res/layout/include_submission_contact.xml index 29a3a7bb1eb7b4a8f025a16188cd3ba9d6f29ebd..f056bcddc369d5177d44aaaeedc1e92d09d558bd 100644 --- a/Corona-Warn-App/src/main/res/layout/include_submission_contact.xml +++ b/Corona-Warn-App/src/main/res/layout/include_submission_contact.xml @@ -15,7 +15,7 @@ android:id="@+id/submission_contact_illustration" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:src="@drawable/ic_information_illustration_contact" + android:src="@drawable/ic_submission_illustration_hotline" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> diff --git a/Corona-Warn-App/src/main/res/values-night/colors.xml b/Corona-Warn-App/src/main/res/values-night/colors.xml index d3440a0be4c68276e3f5028a33a7b7a4142f0135..ef187bd95d27236c21cb24d16c7cdb3ca54f3b89 100644 --- a/Corona-Warn-App/src/main/res/values-night/colors.xml +++ b/Corona-Warn-App/src/main/res/values-night/colors.xml @@ -29,7 +29,7 @@ <color name="colorSemanticHighRiskPressed">#CA465C</color> <color name="colorSemanticLowRisk">#378250</color> <color name="colorSemanticLowRiskPressed">#378250</color> - <color name="colorSemanticNeutralRisk">#5D6E80</color> + <color name="colorSemanticNeutralRisk">#B8C8D9</color> <color name="colorSemanticNeutralRiskPressed">#556675</color> <color name="colorSemanticUnknownRisk">#232324</color> <color name="colorSemanticUnknownRiskPressed">#39393A</color> diff --git a/Corona-Warn-App/src/main/res/values/dimens.xml b/Corona-Warn-App/src/main/res/values/dimens.xml index 787274836fcc7979d9e4e705f109f175a772c3b0..5e5d81a76a4aa111d66d3a29f615af72a81f678f 100644 --- a/Corona-Warn-App/src/main/res/values/dimens.xml +++ b/Corona-Warn-App/src/main/res/values/dimens.xml @@ -41,6 +41,7 @@ <dimen name="guideline_action">72dp</dimen> <dimen name="guideline_action_large">150dp</dimen> <dimen name="guideline_body_title">45dp</dimen> + <dimen name="guideline_body_title_padding">69dp</dimen> <dimen name="guideline_back">14dp</dimen> <!-- guideline_start - button_icon_padding --> <dimen name="guideline_top_onboarding">64dp</dimen> <dimen name="guideline_top_submission">72dp</dimen> diff --git a/Corona-Warn-App/src/main/res/values/strings.xml b/Corona-Warn-App/src/main/res/values/strings.xml index 98dc9bbc859f9e67ff4862c4ac6bec79903d8561..1c35898140e6f7444be7ea5029e88a10419489f0 100644 --- a/Corona-Warn-App/src/main/res/values/strings.xml +++ b/Corona-Warn-App/src/main/res/values/strings.xml @@ -534,6 +534,8 @@ <string name="settings_notifications_body_active">Legen Sie fest, zu welchen Themen Sie informiert beiben möchten.</string> <!-- XTXT: settings(notification) - explains what the user has to do to activate settings --> <string name="settings_notifications_body_inactive">Um Benachrichtigungen zu aktivieren, müssen Sie Benachrichtigungen für die Corona-Warn-App in Ihren Geräte-Einstellungen zulassen.</string> + <!-- XHED: settings(notification) - card headline --> + <string name="settings_notifications_headline_card">Mitteilungen aktivieren</string> <!-- XHED: settings - notification headline on settings overview --> <string name="settings_notifications_subtitle_notification">Benachrichtigungen</string> <!-- XTXT: settings(notification) - next to a switch --> diff --git a/Corona-Warn-App/src/main/res/values/styles.xml b/Corona-Warn-App/src/main/res/values/styles.xml index 2fe0de82e1932f6a59a8319dc9da9d9f14a682f2..e4e112a37bdead8cacc4b9f3f883b0e2c25a29b5 100644 --- a/Corona-Warn-App/src/main/res/values/styles.xml +++ b/Corona-Warn-App/src/main/res/values/styles.xml @@ -104,6 +104,10 @@ <item name="android:textColor">@color/colorTextPrimary1</item> </style> + <style name="rowSettings" parent="@style/row"> + <item name="android:paddingStart">@dimen/match_constraint</item> + </style> + <!-- #################################### Card ###################################### --> @@ -136,7 +140,7 @@ <item name="android:layout_marginTop">@dimen/spacing_large</item> <item name="android:background">@color/colorSurface2</item> <item name="android:paddingStart">@dimen/guideline_start</item> - <item name="android:paddingTop">@dimen/spacing_normal</item> + <item name="android:paddingTop">@dimen/spacing_medium</item> <item name="android:paddingEnd">@dimen/guideline_end</item> <item name="android:paddingBottom">@dimen/spacing_normal</item> </style> diff --git a/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelperTest.kt b/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelperTest.kt index ae025d1ee907c427d421a0bab0fbadbc9c889b82..dabc590745968e1e8556be8031ae87ea4405e9b2 100644 --- a/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelperTest.kt +++ b/Corona-Warn-App/src/test/java/de/rki/coronawarnapp/util/formatter/FormatterSettingsHelperTest.kt @@ -111,7 +111,7 @@ class FormatterSettingsHelperTest { (formatText( bValue, R.string.settings_notifications_headline_active, - R.string.settings_notifications_headline_inactive + null )) ) ) @@ -124,7 +124,7 @@ class FormatterSettingsHelperTest { (formatText( bValue, R.string.settings_notifications_body_active, - R.string.settings_notifications_body_inactive + null )) ) )