diff --git a/Corona-Warn-App/src/device/java/de/rki/coronawarnapp/ui/main/MainFragment.kt b/Corona-Warn-App/src/device/java/de/rki/coronawarnapp/ui/main/MainFragment.kt index a6a339419ee9e366314f67cad85d81345bf607a4..07115907f88e7c577730ea5c4cfe484ea6ea303c 100644 --- a/Corona-Warn-App/src/device/java/de/rki/coronawarnapp/ui/main/MainFragment.kt +++ b/Corona-Warn-App/src/device/java/de/rki/coronawarnapp/ui/main/MainFragment.kt @@ -35,6 +35,7 @@ import kotlinx.coroutines.withContext * @see PopupMenu */ class MainFragment : Fragment(R.layout.fragment_main) { + private val tracingViewModel: TracingViewModel by activityViewModels() private val settingsViewModel: SettingsViewModel by activityViewModels() private val submissionViewModel: SubmissionViewModel by activityViewModels() @@ -45,11 +46,10 @@ class MainFragment : Fragment(R.layout.fragment_main) { binding.tracingViewModel = tracingViewModel binding.settingsViewModel = settingsViewModel binding.submissionViewModel = submissionViewModel - binding.lifecycleOwner = this setButtonOnClickListener() setContentDescription() - + checkShouldInteroperabilityBeOpened() showOneTimeTracingExplanationDialog() } @@ -159,6 +159,18 @@ class MainFragment : Fragment(R.layout.fragment_main) { popup.show() } + private fun checkShouldInteroperabilityBeOpened() { + if (!LocalData.isInteroperabilityShownAtLeastOnce) { + navigateToInteroperabilityFeature() + } + } + + private fun navigateToInteroperabilityFeature() { + findNavController().doNavigate( + MainFragmentDirections.actionMainFragmentToOnboardingDeltaInteroperabilityFragment() + ) + } + private fun showOneTimeTracingExplanationDialog() { // check if the dialog explaining the tracing time was already shown diff --git a/Corona-Warn-App/src/deviceForTesters/java/de/rki/coronawarnapp/ui/main/MainFragment.kt b/Corona-Warn-App/src/deviceForTesters/java/de/rki/coronawarnapp/ui/main/MainFragment.kt index 1ae185f1a87a56320eb6d204153c41c9c7feca0b..715f99a8e8d198f3eedfb49c65c9f64d049b96ea 100644 --- a/Corona-Warn-App/src/deviceForTesters/java/de/rki/coronawarnapp/ui/main/MainFragment.kt +++ b/Corona-Warn-App/src/deviceForTesters/java/de/rki/coronawarnapp/ui/main/MainFragment.kt @@ -48,7 +48,8 @@ class MainFragment : Fragment(R.layout.fragment_main) { binding.submissionViewModel = submissionViewModel setButtonOnClickListener() - + setContentDescription() + checkShouldInteroperabilityBeOpened() showOneTimeTracingExplanationDialog() } @@ -66,9 +67,10 @@ class MainFragment : Fragment(R.layout.fragment_main) { binding.mainScrollview.sendAccessibilityEvent(AccessibilityEvent.TYPE_ANNOUNCEMENT) } - override fun onStart() { - super.onStart() - binding.mainScrollview.sendAccessibilityEvent(AccessibilityEvent.TYPE_ANNOUNCEMENT) + private fun setContentDescription() { + binding.mainHeaderShare.buttonIcon.contentDescription = getString(R.string.button_share) + binding.mainHeaderOptionsMenu.buttonIcon.contentDescription = getString(R.string.button_menu) + binding.mainAbout.mainCard.contentDescription = getString(R.string.hint_external_webpage) } private fun setButtonOnClickListener() { @@ -168,6 +170,18 @@ class MainFragment : Fragment(R.layout.fragment_main) { popup.show() } + private fun checkShouldInteroperabilityBeOpened() { + if (!LocalData.isInteroperabilityShownAtLeastOnce) { + navigateToInteroperabilityFeature() + } + } + + private fun navigateToInteroperabilityFeature() { + findNavController().doNavigate( + MainFragmentDirections.actionMainFragmentToOnboardingDeltaInteroperabilityFragment() + ) + } + private fun showOneTimeTracingExplanationDialog() { // check if the dialog explaining the tracing time was already shown diff --git a/Corona-Warn-App/src/deviceForTesters/res/navigation/nav_graph.xml b/Corona-Warn-App/src/deviceForTesters/res/navigation/nav_graph.xml index 43fb6ab2caa3ce823f5a146236074240695ab3f8..2d006567962fc6d6b35f65b97edf25b6256a6038 100644 --- a/Corona-Warn-App/src/deviceForTesters/res/navigation/nav_graph.xml +++ b/Corona-Warn-App/src/deviceForTesters/res/navigation/nav_graph.xml @@ -44,6 +44,9 @@ <action android:id="@+id/action_mainFragment_to_testRiskLevelCalculation" app:destination="@id/testRiskLevelCalculation" /> + <action + android:id="@+id/action_mainFragment_to_onboardingDeltaInteroperabilityFragment" + app:destination="@id/onboardingDeltaInteroperabilityFragment" /> </fragment> <fragment @@ -85,7 +88,26 @@ android:id="@+id/settingsTracingFragment" android:name="de.rki.coronawarnapp.ui.settings.SettingsTracingFragment" android:label="@layout/fragment_settings_tracing" - tools:layout="@layout/fragment_settings_tracing" /> + tools:layout="@layout/fragment_settings_tracing"> + <action + android:id="@+id/action_settingsTracingFragment_to_interopCountryConfigurationFragment" + app:destination="@id/interopCountryConfigurationFragment" /> + </fragment> + + <fragment + android:id="@+id/onboardingDeltaInteroperabilityFragment" + android:name="de.rki.coronawarnapp.ui.onboarding.OnboardingDeltaInteroperabilityFragment" + android:label="OnboardingDeltaInteroperabilityFragment" /> + + <fragment + android:id="@+id/interopCountryConfigurationFragment" + android:name="de.rki.coronawarnapp.ui.interoperability.InteroperabilityConfigurationFragment" + android:label="InteropCountryConfigurationFragment" + tools:layout="@layout/fragment_interoperability_configuration"> + <action + android:id="@+id/action_interopCountryConfigurationFragment_to_settingTracingFragment" + app:destination="@id/settingsTracingFragment" /> + </fragment> <fragment android:id="@+id/settingsNotificationFragment" diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/service/applicationconfiguration/ApplicationConfigurationService.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/service/applicationconfiguration/ApplicationConfigurationService.kt index e9e3a09a8f8e9e0325da9b0802ad9ce71fe9d814..df4a14e30312cdcfb7dc11974a5b1c87483a4493 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/service/applicationconfiguration/ApplicationConfigurationService.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/service/applicationconfiguration/ApplicationConfigurationService.kt @@ -14,8 +14,8 @@ object ApplicationConfigurationService { .clearSupportedCountries() .addAllSupportedCountries( listOf( - "DE", "UK", "FR", "IT", "SP", "PL", "RO", "NL", - "BE", "CZ", "EL", "SE", "PT", "HU", "AT", "CH", "BG", "DK", "FI", "SK", + "DE", "UK", "FR", "IT", "ES", "PL", "RO", "NL", + "BE", "CZ", "SE", "PT", "HU", "AT", "CH", "BG", "DK", "FI", "SK", "NO", "IE", "HR", "SI", "LT", "LV", "EE", "CY", "LU", "MT", "IS" ) ) diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/LocalData.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/LocalData.kt index 48bc37e409fea1553cc046a816338afa94529ee2..9c50d1fa89b12a01725f3e335222fcfc9c042368 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/LocalData.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/LocalData.kt @@ -24,6 +24,9 @@ object LocalData { private const val PREFERENCE_GOOGLE_API_PROVIDE_DIAGNOSIS_KEYS_CALL_COUNT = "preference_google_api_provide_diagnosis_keys_call_count" + private const val PREFERENCE_INTEROPERABILITY_IS_USED_AT_LEAST_ONCE = + "preference_interoperability_is_used_at_least_once" + /**************************************************** * ONBOARDING DATA ****************************************************/ @@ -750,4 +753,21 @@ object LocalData { ****************************************************/ fun getSharedPreferenceInstance(): SharedPreferences = globalEncryptedSharedPreferencesInstance + + /**************************************************** + * INTEROPERABILITY + ****************************************************/ + + var isInteroperabilityShownAtLeastOnce: Boolean + get() { + return getSharedPreferenceInstance().getBoolean( + PREFERENCE_INTEROPERABILITY_IS_USED_AT_LEAST_ONCE, + false + ) + } + set(value) { + getSharedPreferenceInstance().edit { + putBoolean(PREFERENCE_INTEROPERABILITY_IS_USED_AT_LEAST_ONCE, value) + } + } } diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/interoperability/InteroperabilityRepository.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/interoperability/InteroperabilityRepository.kt new file mode 100644 index 0000000000000000000000000000000000000000..b42412000870fb8354ec7289b3c5e131760ffb9d --- /dev/null +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/storage/interoperability/InteroperabilityRepository.kt @@ -0,0 +1,28 @@ +package de.rki.coronawarnapp.storage.interoperability + +import de.rki.coronawarnapp.service.applicationconfiguration.ApplicationConfigurationService +import de.rki.coronawarnapp.storage.LocalData +import kotlinx.coroutines.runBlocking +import java.util.Locale +import javax.inject.Inject +import javax.inject.Singleton + +@Singleton +class InteroperabilityRepository @Inject constructor() { + + fun saveInteroperabilityUsed() { + LocalData.isInteroperabilityShownAtLeastOnce = true + } + + /** + * Gets all countries from @see ApplicationConfigurationService.asyncRetrieveApplicationConfiguration + * Also changes every country code to lower case + */ + fun getAllCountries(): List<String> { + return runBlocking { + ApplicationConfigurationService.asyncRetrieveApplicationConfiguration() + .supportedCountriesList + ?.map { it.toLowerCase(Locale.ROOT) } ?: listOf() + } + } +} diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/interoperability/InteroperabilityConfigurationFragment.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/interoperability/InteroperabilityConfigurationFragment.kt new file mode 100644 index 0000000000000000000000000000000000000000..309cda7d977ebeb9371c77d544f809ee18b35d63 --- /dev/null +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/interoperability/InteroperabilityConfigurationFragment.kt @@ -0,0 +1,43 @@ +package de.rki.coronawarnapp.ui.interoperability + +import android.os.Bundle +import android.view.View +import androidx.fragment.app.Fragment +import de.rki.coronawarnapp.R +import de.rki.coronawarnapp.databinding.FragmentInteroperabilityConfigurationBinding +import de.rki.coronawarnapp.ui.main.MainActivity +import de.rki.coronawarnapp.util.di.AutoInject +import de.rki.coronawarnapp.util.ui.observe2 +import de.rki.coronawarnapp.util.ui.viewBindingLazy +import de.rki.coronawarnapp.util.viewmodel.CWAViewModelFactoryProvider +import de.rki.coronawarnapp.util.viewmodel.cwaViewModels +import javax.inject.Inject + +class InteroperabilityConfigurationFragment : + Fragment(R.layout.fragment_interoperability_configuration), AutoInject { + + @Inject lateinit var viewModelFactory: CWAViewModelFactoryProvider.Factory + private val vm: InteroperabilityConfigurationFragmentViewModel by cwaViewModels { viewModelFactory } + + private val binding: FragmentInteroperabilityConfigurationBinding by viewBindingLazy() + + override fun onViewCreated(view: View, savedInstanceState: Bundle?) { + super.onViewCreated(view, savedInstanceState) + + vm.countryList.observe2(this) { + binding.countryData = it + } + + vm.saveInteroperabilityUsed() + + binding.interoperabilityConfigurationHeader.headerButtonBack.buttonIcon.setOnClickListener { + vm.onBackPressed() + } + + vm.navigateBack.observe2(this) { + if (it) { + (requireActivity() as MainActivity).goBack() + } + } + } +} diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/interoperability/InteroperabilityConfigurationFragmentModule.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/interoperability/InteroperabilityConfigurationFragmentModule.kt new file mode 100644 index 0000000000000000000000000000000000000000..caa2f41b1891c773674a1b293da29a01b552efa3 --- /dev/null +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/interoperability/InteroperabilityConfigurationFragmentModule.kt @@ -0,0 +1,18 @@ +package de.rki.coronawarnapp.ui.interoperability + +import dagger.Binds +import dagger.Module +import dagger.multibindings.IntoMap +import de.rki.coronawarnapp.util.viewmodel.CWAViewModel +import de.rki.coronawarnapp.util.viewmodel.CWAViewModelFactory +import de.rki.coronawarnapp.util.viewmodel.CWAViewModelKey + +@Module +abstract class InteroperabilityConfigurationFragmentModule { + @Binds + @IntoMap + @CWAViewModelKey(InteroperabilityConfigurationFragmentViewModel::class) + abstract fun testRiskLevelFragment( + factory: InteroperabilityConfigurationFragmentViewModel.Factory + ): CWAViewModelFactory<out CWAViewModel> +} diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/interoperability/InteroperabilityConfigurationFragmentViewModel.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/interoperability/InteroperabilityConfigurationFragmentViewModel.kt new file mode 100644 index 0000000000000000000000000000000000000000..405273f885960e1e94acb12f981c247eb3ebb8d6 --- /dev/null +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/interoperability/InteroperabilityConfigurationFragmentViewModel.kt @@ -0,0 +1,27 @@ +package de.rki.coronawarnapp.ui.interoperability + +import androidx.lifecycle.MutableLiveData +import com.squareup.inject.assisted.AssistedInject +import de.rki.coronawarnapp.storage.interoperability.InteroperabilityRepository +import de.rki.coronawarnapp.util.ui.SingleLiveEvent +import de.rki.coronawarnapp.util.viewmodel.CWAViewModel +import de.rki.coronawarnapp.util.viewmodel.SimpleCWAViewModelFactory + +class InteroperabilityConfigurationFragmentViewModel @AssistedInject constructor( + private val interoperabilityRepository: InteroperabilityRepository +) : CWAViewModel() { + + val countryList = MutableLiveData(interoperabilityRepository.getAllCountries()) + val navigateBack = SingleLiveEvent<Boolean>() + + fun onBackPressed() { + navigateBack.postValue(true) + } + + fun saveInteroperabilityUsed() { + interoperabilityRepository.saveInteroperabilityUsed() + } + + @AssistedInject.Factory + interface Factory : SimpleCWAViewModelFactory<InteroperabilityConfigurationFragmentViewModel> +} diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/main/MainActivityModule.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/main/MainActivityModule.kt index 4b2359e8d18c96e9babc903a38f5ae0490a1d8d9..689223bc1972be310d9440d3bc6653e299602c28 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/main/MainActivityModule.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/main/MainActivityModule.kt @@ -1,8 +1,12 @@ package de.rki.coronawarnapp.ui.main import dagger.Module +import dagger.android.ContributesAndroidInjector +import de.rki.coronawarnapp.ui.interoperability.InteroperabilityConfigurationFragment +import de.rki.coronawarnapp.ui.interoperability.InteroperabilityConfigurationFragmentModule +import de.rki.coronawarnapp.ui.onboarding.OnboardingDeltaInteroperabilityModule -@Module +@Module(includes = [OnboardingDeltaInteroperabilityModule::class]) abstract class MainActivityModule { // activity specific injection module for future dependencies @@ -10,4 +14,7 @@ abstract class MainActivityModule { // example: // @ContributesAndroidInjector // abstract fun mainFragment(): MainFragment + + @ContributesAndroidInjector(modules = [InteroperabilityConfigurationFragmentModule::class]) + abstract fun intertopConfigScreen(): InteroperabilityConfigurationFragment } diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivity.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivity.kt index 0e17e71226144c4da0f24ee5e76edb633ea3384a..6bf286800370e70f60b0f12b70a68b3c59f87d31 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivity.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivity.kt @@ -7,17 +7,21 @@ import androidx.appcompat.app.AppCompatActivity import androidx.fragment.app.Fragment import androidx.fragment.app.FragmentManager import androidx.lifecycle.LifecycleObserver +import dagger.android.AndroidInjector +import dagger.android.DispatchingAndroidInjector +import dagger.android.HasAndroidInjector import de.rki.coronawarnapp.R import de.rki.coronawarnapp.storage.LocalData import de.rki.coronawarnapp.ui.main.MainActivity import de.rki.coronawarnapp.util.di.AppInjector +import javax.inject.Inject /** * This activity holds all the onboarding fragments and isn't used after a successful onboarding flow. * * @see LocalData */ -class OnboardingActivity : AppCompatActivity(), LifecycleObserver { +class OnboardingActivity : AppCompatActivity(), LifecycleObserver, HasAndroidInjector { companion object { private val TAG: String? = OnboardingActivity::class.simpleName @@ -27,6 +31,9 @@ class OnboardingActivity : AppCompatActivity(), LifecycleObserver { } } + @Inject lateinit var dispatchingAndroidInjector: DispatchingAndroidInjector<Any> + override fun androidInjector(): AndroidInjector<Any> = dispatchingAndroidInjector + private val FragmentManager.currentNavigationFragment: Fragment? get() = primaryNavigationFragment?.childFragmentManager?.fragments?.first() diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivityModule.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivityModule.kt index f5d16d33887770efbad028f73b403195704ecf6e..f72ee0245bdc8735ee29d179214ccd1d86864531 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivityModule.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingActivityModule.kt @@ -1,6 +1,7 @@ package de.rki.coronawarnapp.ui.onboarding import dagger.Module +import dagger.android.ContributesAndroidInjector @Module internal abstract class OnboardingActivityModule { @@ -10,4 +11,7 @@ internal abstract class OnboardingActivityModule { // example: // @ContributesAndroidInjector // abstract fun onboardingFragment(): OnboardingFragment + + @ContributesAndroidInjector(modules = [OnboardingTracingModule::class]) + abstract fun onboardingScreen(): OnboardingTracingFragment } diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingDeltaInteroperabilityFragment.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingDeltaInteroperabilityFragment.kt new file mode 100644 index 0000000000000000000000000000000000000000..5568027510d86f2e6b2a790e6ea0d5fb02903ba7 --- /dev/null +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingDeltaInteroperabilityFragment.kt @@ -0,0 +1,44 @@ +package de.rki.coronawarnapp.ui.onboarding + +import android.os.Bundle +import android.view.View +import androidx.fragment.app.Fragment +import de.rki.coronawarnapp.R +import de.rki.coronawarnapp.databinding.FragmentOnboardingDeltaInteroperabilityBinding +import de.rki.coronawarnapp.ui.main.MainActivity +import de.rki.coronawarnapp.util.di.AutoInject +import de.rki.coronawarnapp.util.ui.observe2 +import de.rki.coronawarnapp.util.ui.viewBindingLazy +import de.rki.coronawarnapp.util.viewmodel.CWAViewModelFactoryProvider +import de.rki.coronawarnapp.util.viewmodel.cwaViewModels +import javax.inject.Inject + +class OnboardingDeltaInteroperabilityFragment : + Fragment(R.layout.fragment_onboarding_delta_interoperability), AutoInject { + + @Inject lateinit var viewModelFactory: CWAViewModelFactoryProvider.Factory + private val vm: OnboardingDeltaInteroperabilityFragmentViewModel by cwaViewModels { viewModelFactory } + + private val binding: FragmentOnboardingDeltaInteroperabilityBinding by viewBindingLazy() + + override fun onViewCreated(view: View, savedInstanceState: Bundle?) { + super.onViewCreated(view, savedInstanceState) + vm.countryList.observe2(this) { + binding.countryData = it + } + vm.saveInteroperabilityUsed() + + binding.onboardingButtonBack.buttonIcon.setOnClickListener { + vm.onBackPressed() + } + binding.onboardingButtonNext.setOnClickListener { + vm.onBackPressed() + } + + vm.navigateBack.observe2(this) { + if (it) { + (requireActivity() as MainActivity).goBack() + } + } + } +} diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingDeltaInteroperabilityFragmentViewModel.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingDeltaInteroperabilityFragmentViewModel.kt new file mode 100644 index 0000000000000000000000000000000000000000..069d6cba5d4a52af494a7e197c3509f584ecdad3 --- /dev/null +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingDeltaInteroperabilityFragmentViewModel.kt @@ -0,0 +1,27 @@ +package de.rki.coronawarnapp.ui.onboarding + +import androidx.lifecycle.MutableLiveData +import com.squareup.inject.assisted.AssistedInject +import de.rki.coronawarnapp.storage.interoperability.InteroperabilityRepository +import de.rki.coronawarnapp.util.ui.SingleLiveEvent +import de.rki.coronawarnapp.util.viewmodel.CWAViewModel +import de.rki.coronawarnapp.util.viewmodel.SimpleCWAViewModelFactory + +class OnboardingDeltaInteroperabilityFragmentViewModel @AssistedInject constructor( + private val interoperabilityRepository: InteroperabilityRepository +) : CWAViewModel() { + + val countryList = MutableLiveData(interoperabilityRepository.getAllCountries()) + val navigateBack = SingleLiveEvent<Boolean>() + + fun onBackPressed() { + navigateBack.postValue(true) + } + + fun saveInteroperabilityUsed() { + interoperabilityRepository.saveInteroperabilityUsed() + } + + @AssistedInject.Factory + interface Factory : SimpleCWAViewModelFactory<OnboardingDeltaInteroperabilityFragmentViewModel> +} diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingDeltaInteroperabilityModule.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingDeltaInteroperabilityModule.kt new file mode 100644 index 0000000000000000000000000000000000000000..035c4f1bbeb6e6b8b069ec7564302b734384a0ab --- /dev/null +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingDeltaInteroperabilityModule.kt @@ -0,0 +1,23 @@ +package de.rki.coronawarnapp.ui.onboarding + +import dagger.Binds +import dagger.Module +import dagger.android.ContributesAndroidInjector +import dagger.multibindings.IntoMap +import de.rki.coronawarnapp.util.viewmodel.CWAViewModel +import de.rki.coronawarnapp.util.viewmodel.CWAViewModelFactory +import de.rki.coronawarnapp.util.viewmodel.CWAViewModelKey + +@Module +abstract class OnboardingDeltaInteroperabilityModule { + + @Binds + @IntoMap + @CWAViewModelKey(OnboardingDeltaInteroperabilityFragmentViewModel::class) + abstract fun interopOnBoardingDeltaScreenVM( + factory: OnboardingDeltaInteroperabilityFragmentViewModel.Factory + ): CWAViewModelFactory<out CWAViewModel> + + @ContributesAndroidInjector + abstract fun interopOnBoardingDeltaScreen(): OnboardingDeltaInteroperabilityFragment +} diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingTracingFragment.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingTracingFragment.kt index de87c54f4b510af006247f8b04779729b210f72b..2b2698e0b6fabbc0fbc11fb0fd84b741d01e8bdd 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingTracingFragment.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingTracingFragment.kt @@ -6,19 +6,18 @@ import android.view.View import android.view.accessibility.AccessibilityEvent import androidx.appcompat.app.AlertDialog import androidx.fragment.app.Fragment -import androidx.lifecycle.lifecycleScope import androidx.navigation.fragment.findNavController import de.rki.coronawarnapp.R import de.rki.coronawarnapp.databinding.FragmentOnboardingTracingBinding -import de.rki.coronawarnapp.exception.ExceptionCategory -import de.rki.coronawarnapp.exception.reporting.report -import de.rki.coronawarnapp.nearby.InternalExposureNotificationClient import de.rki.coronawarnapp.nearby.InternalExposureNotificationPermissionHelper -import de.rki.coronawarnapp.storage.LocalData import de.rki.coronawarnapp.ui.doNavigate import de.rki.coronawarnapp.util.DialogHelper +import de.rki.coronawarnapp.util.di.AutoInject +import de.rki.coronawarnapp.util.ui.observe2 import de.rki.coronawarnapp.util.ui.viewBindingLazy -import kotlinx.coroutines.launch +import de.rki.coronawarnapp.util.viewmodel.CWAViewModelFactoryProvider +import de.rki.coronawarnapp.util.viewmodel.cwaViewModels +import javax.inject.Inject /** * This fragment ask the user if he wants to enable tracing. @@ -27,15 +26,14 @@ import kotlinx.coroutines.launch * @see AlertDialog */ class OnboardingTracingFragment : Fragment(R.layout.fragment_onboarding_tracing), - InternalExposureNotificationPermissionHelper.Callback { - - companion object { - private val TAG: String? = OnboardingTracingFragment::class.simpleName - } + InternalExposureNotificationPermissionHelper.Callback, AutoInject { private lateinit var internalExposureNotificationPermissionHelper: InternalExposureNotificationPermissionHelper private val binding: FragmentOnboardingTracingBinding by viewBindingLazy() + @Inject lateinit var viewModelFactory: CWAViewModelFactoryProvider.Factory + private val vm: OnboardingTracingFragmentViewModel by cwaViewModels { viewModelFactory } + override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) { internalExposureNotificationPermissionHelper.onResolutionComplete( requestCode, @@ -52,12 +50,16 @@ class OnboardingTracingFragment : Fragment(R.layout.fragment_onboarding_tracing) override fun onViewCreated(view: View, savedInstanceState: Bundle?) { super.onViewCreated(view, savedInstanceState) setButtonOnClickListener() + vm.countryList.observe2(this) { + binding.countryData = it + } + vm.saveInteroperabilityUsed() } override fun onResume() { super.onResume() binding.onboardingTracingContainer.sendAccessibilityEvent(AccessibilityEvent.TYPE_ANNOUNCEMENT) - resetTracing() + vm.resetTracing() } private fun setButtonOnClickListener() { @@ -68,7 +70,7 @@ class OnboardingTracingFragment : Fragment(R.layout.fragment_onboarding_tracing) showCancelDialog() } binding.onboardingButtonBack.buttonIcon.setOnClickListener { - (activity as OnboardingActivity).goBack() + (requireActivity() as OnboardingActivity).goBack() } } @@ -99,23 +101,4 @@ class OnboardingTracingFragment : Fragment(R.layout.fragment_onboarding_tracing) OnboardingTracingFragmentDirections.actionOnboardingTracingFragmentToOnboardingTestFragment() ) } - - private fun resetTracing() { - // Reset tracing state in onboarding - lifecycleScope.launch { - try { - if (InternalExposureNotificationClient.asyncIsEnabled()) { - InternalExposureNotificationClient.asyncStop() - // Reset initial activation timestamp - LocalData.initialTracingActivationTimestamp(0L) - } - } catch (exception: Exception) { - exception.report( - ExceptionCategory.EXPOSURENOTIFICATION, - TAG, - null - ) - } - } - } } diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingTracingFragmentViewModel.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingTracingFragmentViewModel.kt new file mode 100644 index 0000000000000000000000000000000000000000..fe4a26a2be813ee5b03a5cd0cac4b2ae0c9c6ed4 --- /dev/null +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingTracingFragmentViewModel.kt @@ -0,0 +1,50 @@ +package de.rki.coronawarnapp.ui.onboarding + +import androidx.lifecycle.MutableLiveData +import androidx.lifecycle.viewModelScope +import com.squareup.inject.assisted.AssistedInject +import de.rki.coronawarnapp.exception.ExceptionCategory +import de.rki.coronawarnapp.exception.reporting.report +import de.rki.coronawarnapp.nearby.InternalExposureNotificationClient +import de.rki.coronawarnapp.storage.LocalData +import de.rki.coronawarnapp.storage.interoperability.InteroperabilityRepository +import de.rki.coronawarnapp.util.viewmodel.CWAViewModel +import de.rki.coronawarnapp.util.viewmodel.SimpleCWAViewModelFactory +import kotlinx.coroutines.launch + +class OnboardingTracingFragmentViewModel @AssistedInject constructor( + private val interoperabilityRepository: InteroperabilityRepository +) : CWAViewModel() { + + val countryList = MutableLiveData(interoperabilityRepository.getAllCountries()) + + fun saveInteroperabilityUsed() { + interoperabilityRepository.saveInteroperabilityUsed() + } + + // Reset tracing state in onboarding + fun resetTracing() { + viewModelScope.launch { + try { + if (InternalExposureNotificationClient.asyncIsEnabled()) { + InternalExposureNotificationClient.asyncStop() + // Reset initial activation timestamp + LocalData.initialTracingActivationTimestamp(0L) + } + } catch (exception: Exception) { + exception.report( + ExceptionCategory.EXPOSURENOTIFICATION, + TAG, + null + ) + } + } + } + + @AssistedInject.Factory + interface Factory : SimpleCWAViewModelFactory<OnboardingTracingFragmentViewModel> + + companion object { + private val TAG: String? = OnboardingTracingFragmentViewModel::class.simpleName + } +} diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingTracingModule.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingTracingModule.kt new file mode 100644 index 0000000000000000000000000000000000000000..078a969a21856150d43932533eb7fa68b5aeb06d --- /dev/null +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/onboarding/OnboardingTracingModule.kt @@ -0,0 +1,23 @@ +package de.rki.coronawarnapp.ui.onboarding + +import dagger.Binds +import dagger.Module +import dagger.android.ContributesAndroidInjector +import dagger.multibindings.IntoMap +import de.rki.coronawarnapp.util.viewmodel.CWAViewModel +import de.rki.coronawarnapp.util.viewmodel.CWAViewModelFactory +import de.rki.coronawarnapp.util.viewmodel.CWAViewModelKey + +@Module +abstract class OnboardingTracingModule { + + @Binds + @IntoMap + @CWAViewModelKey(OnboardingTracingFragmentViewModel::class) + abstract fun onboardingScreenVM( + factory: OnboardingTracingFragmentViewModel.Factory + ): CWAViewModelFactory<out CWAViewModel> + + @ContributesAndroidInjector + abstract fun onboardingScreen(): OnboardingFragment +} 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 ce4ac665155a1d61dafea75d6212d1781b64a929..5cba2de2b865b10ae138723a20ea626852ed598b 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 @@ -11,7 +11,6 @@ import de.rki.coronawarnapp.ui.main.MainActivity import de.rki.coronawarnapp.ui.viewmodel.SettingsViewModel import de.rki.coronawarnapp.ui.viewmodel.TracingViewModel import de.rki.coronawarnapp.util.ExternalActionHelper -import de.rki.coronawarnapp.util.IGNORE_CHANGE_TAG import de.rki.coronawarnapp.util.ui.viewBindingLazy /** @@ -60,9 +59,9 @@ class SettingsNotificationFragment : Fragment(R.layout.fragment_settings_notific val goBack = binding.settingsNotificationsHeader.headerButtonBack.buttonIcon // Update Risk - updateRiskNotificationSwitch.setOnCheckedChangeListener { _, _ -> + updateRiskNotificationSwitch.setOnCheckedChangeListener { view, _ -> // Make sure that listener is called by user interaction - if (updateRiskNotificationSwitch.tag != IGNORE_CHANGE_TAG) { + if (view.isPressed) { settingsViewModel.toggleNotificationsRiskEnabled() } } @@ -71,9 +70,9 @@ class SettingsNotificationFragment : Fragment(R.layout.fragment_settings_notific if (updateRiskNotificationRow.isEnabled) settingsViewModel.toggleNotificationsRiskEnabled() } // Update Test - updateTestNotificationSwitch.setOnCheckedChangeListener { _, _ -> + updateTestNotificationSwitch.setOnCheckedChangeListener { view, _ -> // Make sure that listener is called by user interaction - if (updateTestNotificationSwitch.tag != IGNORE_CHANGE_TAG) { + if (view.isPressed) { settingsViewModel.toggleNotificationsTestEnabled() } } 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 fef4caab8e27b670b2590a0116ab71de215eb934..7f496e7d23977b22ce93e18b1feecdfa7b676150 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 @@ -7,6 +7,7 @@ import android.view.accessibility.AccessibilityEvent import androidx.fragment.app.Fragment import androidx.fragment.app.activityViewModels import androidx.lifecycle.lifecycleScope +import androidx.navigation.fragment.findNavController import de.rki.coronawarnapp.R import de.rki.coronawarnapp.databinding.FragmentSettingsTracingBinding import de.rki.coronawarnapp.exception.ExceptionCategory @@ -14,13 +15,14 @@ import de.rki.coronawarnapp.exception.reporting.report import de.rki.coronawarnapp.nearby.InternalExposureNotificationClient import de.rki.coronawarnapp.nearby.InternalExposureNotificationPermissionHelper import de.rki.coronawarnapp.storage.LocalData +import de.rki.coronawarnapp.ui.doNavigate import de.rki.coronawarnapp.ui.main.MainActivity import de.rki.coronawarnapp.ui.viewmodel.SettingsViewModel import de.rki.coronawarnapp.ui.viewmodel.TracingViewModel import de.rki.coronawarnapp.util.DialogHelper import de.rki.coronawarnapp.util.ExternalActionHelper -import de.rki.coronawarnapp.util.IGNORE_CHANGE_TAG import de.rki.coronawarnapp.util.formatter.formatTracingSwitchEnabled +import de.rki.coronawarnapp.util.ui.observe2 import de.rki.coronawarnapp.util.ui.viewBindingLazy import de.rki.coronawarnapp.worker.BackgroundWorkScheduler import kotlinx.coroutines.launch @@ -50,6 +52,13 @@ class SettingsTracingFragment : Fragment(R.layout.fragment_settings_tracing), super.onViewCreated(view, savedInstanceState) binding.tracingViewModel = tracingViewModel binding.settingsViewModel = settingsViewModel + + tracingViewModel.navigateToInteroperability.observe2(this) { + if (it) { + navigateToInteroperability() + } + } + setButtonOnClickListener() } @@ -82,11 +91,14 @@ class SettingsTracingFragment : Fragment(R.layout.fragment_settings_tracing), val back = binding.settingsTracingHeader.headerButtonBack.buttonIcon val bluetooth = binding.settingsTracingStatusBluetooth.tracingStatusCardButton val location = binding.settingsTracingStatusLocation.tracingStatusCardButton + val interoperability = binding.settingsInteroperabilityRow.settingsPlainRow + internalExposureNotificationPermissionHelper = InternalExposureNotificationPermissionHelper(this, this) - switch.setOnCheckedChangeListener { _, _ -> + switch.setOnCheckedChangeListener { view, _ -> + // Make sure that listener is called by user interaction - if (switch.tag != IGNORE_CHANGE_TAG) { + if (view.isPressed) { startStopTracing() // Focus on the body text after to announce the tracing status for accessibility reasons binding.settingsTracingSwitchRow.settingsSwitchRowHeaderBody @@ -117,6 +129,17 @@ class SettingsTracingFragment : Fragment(R.layout.fragment_settings_tracing), location.setOnClickListener { ExternalActionHelper.toMainSettings(requireContext()) } + interoperability.setOnClickListener { + tracingViewModel.onInteroperabilitySettingPressed() + } + } + + private fun navigateToInteroperability() { + findNavController() + .doNavigate( + SettingsTracingFragmentDirections + .actionSettingsTracingFragmentToInteropCountryConfigurationFragment() + ) } private fun startStopTracing() { diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/view/CountryList.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/view/CountryList.kt new file mode 100644 index 0000000000000000000000000000000000000000..48325e2631b2f3b628d01eeef6b36c4a4d8417aa --- /dev/null +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/view/CountryList.kt @@ -0,0 +1,82 @@ +package de.rki.coronawarnapp.ui.view + +import android.content.Context +import android.util.AttributeSet +import android.view.View +import android.widget.ImageView +import android.widget.LinearLayout +import android.widget.TextView +import androidx.core.content.res.ResourcesCompat +import de.rki.coronawarnapp.R +import java.text.Collator +import java.util.Locale + +class CountryList(context: Context, attrs: AttributeSet) : + LinearLayout(context, attrs) { + + private var _list: List<String>? = null + var list: List<String>? + get() { + return _list?.map { it.toLowerCase(Locale.ROOT) } + } + set(value) { + _list = value + buildList() + } + + init { + orientation = VERTICAL + } + + /** + * Cleans the view and rebuilds the list of countries. Presets already selected countries + */ + private fun buildList() { + this.removeAllViews() + list + ?.map { countryCode -> + val countryNameResourceId = context.resources.getIdentifier( + "country_name_$countryCode", + "string", + context.packageName + ) + Pair(countryCode, context.getString(countryNameResourceId)) + } + ?.sortedWith(Comparator { a, b -> + Collator.getInstance().compare(a.second, b.second) + }) + ?.forEachIndexed { index, country -> + inflate(context, R.layout.view_country_list_entry, this) + val child = this.getChildAt(index) + this.setEntryValues(child, country.first, country.second) + } + } + + /** + * Sets the values of the views of each entry in the list + * @param entry the view of the current entry + * @param countryCode needed to determine which country is used for the current entry + * @param selected sets the status of the switch for the current entry + */ + private fun setEntryValues( + entry: View, + countryCode: String, + countryName: String + ) { + + // get drawable (flag of country) resource if dynamically based on country code + val countryFlagImageDrawableId = context.resources.getIdentifier( + "ic_country_$countryCode", + "drawable", + context.packageName + ) + + val countryFlagDrawable = ResourcesCompat + .getDrawable(context.resources, countryFlagImageDrawableId, null) + + entry.findViewById<ImageView>(R.id.country_list_entry_image) + .setImageDrawable(countryFlagDrawable) + + entry.findViewById<TextView>(R.id.country_list_entry_label).text = countryName + } +} diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/viewmodel/TracingViewModel.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/viewmodel/TracingViewModel.kt index 2d94bf11de0709c02724cfa33f0960eddeece327..74e830a17996947e0b55a0ba8c84063021209822 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/viewmodel/TracingViewModel.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/ui/viewmodel/TracingViewModel.kt @@ -19,6 +19,7 @@ import de.rki.coronawarnapp.transaction.RetrieveDiagnosisKeysTransaction import de.rki.coronawarnapp.transaction.RiskLevelTransaction import de.rki.coronawarnapp.ui.riskdetails.DefaultRiskDetailPresenter import de.rki.coronawarnapp.util.ConnectivityHelper +import de.rki.coronawarnapp.util.ui.SingleLiveEvent import kotlinx.coroutines.launch import org.joda.time.DateTime import org.joda.time.DateTimeZone @@ -62,6 +63,9 @@ class TracingViewModel : ViewModel() { val additionalInformationVisibility = MediatorLiveData<Int>() val informationBodyNoticeVisibility = MediatorLiveData<Int>() + // event for interoperability navigation + val navigateToInteroperability = SingleLiveEvent<Boolean>() + init { additionalInformationVisibility.addSource(riskLevel) { additionalInformationVisibility.value = @@ -125,7 +129,7 @@ class TracingViewModel : ViewModel() { // check if the keys were not already retrieved today val keysWereNotRetrievedToday = LocalData.lastTimeDiagnosisKeysFromServerFetch() == null || - currentDate.withTimeAtStartOfDay() != lastFetch.withTimeAtStartOfDay() + currentDate.withTimeAtStartOfDay() != lastFetch.withTimeAtStartOfDay() // check if the network is enabled to make the server fetch val isNetworkEnabled = @@ -240,4 +244,8 @@ class TracingViewModel : ViewModel() { fun refreshLastSuccessfullyCalculatedScore() { RiskLevelRepository.refreshLastSuccessfullyCalculatedScore() } + + fun onInteroperabilitySettingPressed() { + navigateToInteroperability.postValue(true) + } } diff --git a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/di/ApplicationComponent.kt b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/di/ApplicationComponent.kt index 03340dbfbb1ba4e43a4da4ed8f984fde8755b4c5..62e8b840288f10ea5cf4f2e3334d15f252c789a8 100644 --- a/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/di/ApplicationComponent.kt +++ b/Corona-Warn-App/src/main/java/de/rki/coronawarnapp/util/di/ApplicationComponent.kt @@ -5,13 +5,13 @@ import dagger.Component import dagger.android.AndroidInjector import dagger.android.support.AndroidSupportInjectionModule import de.rki.coronawarnapp.CoronaWarnApplication -import de.rki.coronawarnapp.nearby.NearbyModule import de.rki.coronawarnapp.diagnosiskeys.DiagnosisKeysModule import de.rki.coronawarnapp.diagnosiskeys.download.KeyFileDownloader import de.rki.coronawarnapp.diagnosiskeys.server.AppConfigServer import de.rki.coronawarnapp.diagnosiskeys.storage.KeyCacheRepository import de.rki.coronawarnapp.http.HttpModule import de.rki.coronawarnapp.http.ServiceFactory +import de.rki.coronawarnapp.nearby.NearbyModule import de.rki.coronawarnapp.receiver.ReceiverBinder import de.rki.coronawarnapp.risk.RiskModule import de.rki.coronawarnapp.service.ServiceBinder diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_at.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_at.xml new file mode 100644 index 0000000000000000000000000000000000000000..028f4bce528ca468d128f9afe097f065a8a2ec8c --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_at.xml @@ -0,0 +1,22 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l24,0l0,16l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.4545l24,0l0,5.4545l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_be.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_be.xml new file mode 100644 index 0000000000000000000000000000000000000000..58e34fc7783cfd92b9efc76e3fb9ca75c1f9c4e6 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_be.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M8.1818,0l7.6364,0l0,16l-7.6364,0z" + android:strokeWidth="1" + android:fillColor="#FFC107" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M15.8182,0l8.1818,0l0,16l-8.1818,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M-0,0l8.1818,0l0,16l-8.1818,0z" + android:strokeWidth="1" + android:fillColor="#424242" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_bg.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..c6e11f13d9a73afb9a46b2af1fe5e9e2b1ffc5c6 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_bg.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,10.6667l24,0l0,5.3333l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.3333l24,0l0,5.3333l-24,0z" + android:strokeWidth="1" + android:fillColor="#43A047" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,-0l24,0l0,5.3333l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_ch.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_ch.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a3ac8aac8d33378c6e98ad263e034787cda35f2 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_ch.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="16dp" + android:height="16dp" + android:viewportWidth="16" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h16v16h-16z"/> + <path + android:pathData="M0,0l16,0l0,16l-16,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.3636,3.2727l3.2727,0l0,9.8182l-3.2727,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.0909,6.5455l9.8182,0l0,3.2727l-9.8182,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_cy.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_cy.xml new file mode 100644 index 0000000000000000000000000000000000000000..2541d70822e21b1b0cd55cd4d863ec1308aa98b5 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_cy.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l23.9776,0l0,16l-23.9776,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M19.6372,2C19.4938,2.0284 19.2679,2.0987 19.161,2.1538C19.0928,2.1887 19.1207,2.2531 19.0187,2.2831C18.8943,2.3202 18.7939,2.3164 18.6794,2.3507C18.333,2.4538 18.1574,2.6862 17.8628,2.8373C17.6359,2.9535 17.3288,2.912 17.1936,2.9889C17.0032,3.0969 16.8723,3.2873 16.6661,3.3991C16.4048,3.5409 16.1599,3.6751 15.8763,3.7711C15.5768,3.8725 15.3232,3.9347 15.0167,3.9565C14.6659,3.9811 14.4652,4.2233 14.1396,4.2985C14.1074,4.1802 13.3056,4.3967 13.1545,4.4136C12.7514,4.4595 12.3347,4.406 11.9539,4.3607C11.6185,4.3209 11.2525,4.2445 10.9165,4.2549C10.7316,4.2609 10.6121,4.2827 10.4256,4.2211C10.2292,4.1562 10.0388,4.0067 9.8294,3.9533C9.9216,4.4071 10.0148,4.8762 9.813,5.342C9.5479,5.9556 9.1503,5.6671 8.7036,5.5149C8.3523,5.3955 8.1527,5.4358 7.8538,5.5547C7.8227,5.5673 7.7507,5.5667 7.7338,5.5738C7.6476,5.612 7.6972,5.5902 7.605,5.6704C7.4147,5.8362 7.3803,6.0855 7.1883,6.2551C6.9538,6.4624 6.7018,6.5087 6.4312,6.3495C6.2398,6.2365 6.0668,5.8716 6.0047,6.2322C5.9676,6.4487 6.1623,6.5595 6.219,6.7509C6.2474,6.8469 6.1972,6.9713 6.2092,7.0204C6.231,7.1093 6.2938,7.2135 6.3227,7.3002C6.3456,7.37 6.291,7.3995 6.3325,7.5004C6.3788,7.6133 6.4879,7.6493 6.5403,7.7093C6.6685,7.856 6.6914,7.91 6.7563,8.144C6.8141,8.3507 6.8288,8.3704 7.011,8.4876C7.0852,8.5351 7.1845,8.624 7.2745,8.6671C7.3656,8.7107 7.359,8.6502 7.4474,8.6742C7.8118,8.7735 8.1968,9.0909 8.5918,9.0909C8.7963,9.0909 8.943,9.0145 9.111,8.9785C9.3461,8.9284 9.5392,8.9551 9.7487,9.0587C9.7612,9.2278 10.0399,9.4444 9.9314,9.6369C10.0612,9.6222 10.1741,9.6031 10.2974,9.5971C10.5887,9.5829 10.4556,9.7067 10.3912,9.4509C10.2941,9.0647 10.5396,8.8656 10.9083,8.7331C11.3256,8.5831 11.7919,8.7096 12.1607,8.6098C12.5108,8.5149 12.9118,8.3202 13.2385,8.1805C13.3607,8.1282 13.4512,7.9776 13.5799,7.9405C13.749,7.892 13.7801,7.9591 13.8952,7.874C13.953,7.8315 14.0408,7.6465 14.061,7.5838C14.1292,7.37 14.0152,7.1442 14.2296,6.9762C14.3659,6.8687 14.5547,6.8802 14.7216,6.8867C14.8285,6.8911 14.9507,6.8835 15.0527,6.9233C15.1356,6.956 15.2228,7.0831 15.2932,7.0984C15.4688,7.136 15.4825,7.0264 15.6156,6.9582C15.8905,6.8175 16.1485,6.7264 16.4332,6.8098C16.5718,6.8507 16.6748,6.9707 16.7359,6.8693C16.7354,6.8704 16.5385,6.5104 16.4665,6.4269C16.3154,6.2518 16.1185,6.2098 15.9723,6.0271C15.8741,5.9038 15.741,5.6458 15.5796,5.6191C15.6843,5.5504 15.5948,5.3404 15.6134,5.2013C15.6363,5.03 15.7492,4.7693 15.8883,4.6558C16.0754,4.5031 16.173,4.6313 16.3776,4.5822C16.5958,4.5298 16.5439,4.4556 16.6498,4.2789C16.9339,3.8049 17.4919,3.7438 17.9087,3.4553C18.0958,3.326 18.3548,3.1509 18.5196,3.0004C18.6521,2.8793 18.6565,2.7522 18.8218,2.6431C18.9881,2.5329 19.3956,2.4789 19.5101,2.3551C19.5848,2.2733 19.5668,2.0878 19.6372,2Z" + android:strokeWidth="1" + android:fillColor="#F57F17" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.4172,12.8464C11.4085,12.8524 11.2083,12.992 10.917,12.992L10.917,12.9925L10.9165,12.992C10.7245,12.992 10.5423,12.9271 10.3803,12.8311C10.5892,12.4809 11.1548,12.7133 11.4172,12.8464ZM9.9925,12.5616C9.9734,12.7973 10.1578,12.7973 10.1578,12.7973C10.2194,12.7973 10.2194,12.5584 9.9925,12.5616ZM11.5181,12.632L11.5181,12.632L11.5181,12.632C11.3523,12.2905 11.1412,11.9011 10.6978,11.9524L10.6972,11.9524C10.6748,12.3876 11.1516,12.5758 11.5181,12.632ZM10.5592,12.5327L10.5592,12.5327C10.6623,12.5327 10.7676,12.5224 10.8701,12.5082C10.6601,12.2944 10.3007,12.0936 9.9919,12.2453C10.0154,12.4885 10.3748,12.5327 10.5592,12.5327ZM8.9114,12.2305C9.0816,12.4095 9.3467,12.4929 9.5921,12.4929L9.5921,12.4935C9.8174,12.5104 9.891,12.4258 9.7481,12.2676C9.5779,12.0789 9.1132,12.1793 8.9114,12.2305ZM8.805,11.9049C8.7952,11.9731 8.8165,12.1176 8.9092,12.1176L8.9092,12.1176C8.991,12.0805 8.9256,11.8438 8.805,11.9049ZM10.4861,12.0795L10.4861,12.0795C10.5881,12.0205 10.5063,11.7675 10.353,11.8362C10.347,11.9224 10.3421,12.0205 10.4861,12.0795ZM8.8263,11.5673L8.8263,11.5673C8.9016,11.9316 9.4083,12.0336 9.7181,12.0451L9.7181,12.0451C9.4678,11.732 9.1754,11.4827 8.8263,11.5673ZM10.1785,11.9998L10.1785,11.9998L10.1785,11.9998C10.0852,11.7009 9.7863,11.2885 9.4018,11.4135C9.4874,11.7462 9.8561,11.9475 10.1785,11.9998ZM7.7888,11.5056C7.7588,11.7718 8.2667,11.8247 8.4276,11.8247L8.4276,11.8247C8.5383,11.8247 8.6479,11.8116 8.7543,11.7838C8.5399,11.4778 8.1368,11.4129 7.7888,11.5056ZM9.219,11.5165L9.219,11.5165C9.2976,11.4233 9.2392,11.2051 9.0859,11.2744C9.0521,11.4233 9.219,11.5165 9.219,11.5165ZM7.947,10.7349C7.7714,10.9373 8.4778,11.3911 8.6239,11.4287C8.5754,11.3125 8.1647,10.4851 7.947,10.7349ZM9.0139,11.414C8.9419,11.1658 8.7172,10.4175 8.3076,10.5653C8.4336,10.8876 8.6736,11.2662 9.0128,11.414C9.0128,11.414 9.0134,11.414 9.0139,11.414ZM7.803,11.1669C7.7927,11.2885 7.8854,11.3916 8.0054,11.3824C8.2536,11.3633 7.9858,11.1178 7.803,11.1669ZM7.8456,10.9885C7.833,10.6678 7.4032,10.5838 7.1534,10.574C7.1932,10.9062 7.3956,10.994 7.7179,10.994L7.7179,10.994C7.7605,10.9935 7.803,10.9918 7.8456,10.9885ZM8.0905,10.5953L8.0905,10.5953C8.1118,10.3449 8.1887,9.9718 7.887,9.854L7.8865,9.854C7.9219,10.1289 7.9132,10.3635 8.0905,10.5953L8.0905,10.5953ZM7.8123,10.5745C7.8123,10.5745 7.8854,10.5865 7.8854,10.4671C7.8854,10.3476 7.5783,9.6304 7.0923,9.6364C7.0868,9.9893 7.3405,10.5745 7.8123,10.5745ZM12.5845,12.8464C12.5932,12.8524 12.7934,12.992 13.0847,12.992L13.0847,12.9925L13.0852,12.992C13.2772,12.992 13.4594,12.9271 13.6214,12.8311C13.4125,12.4809 12.8468,12.7133 12.5845,12.8464ZM13.8439,12.7973C13.8439,12.7973 14.0283,12.7973 14.0092,12.5616C13.7823,12.5584 13.7823,12.7973 13.8439,12.7973ZM12.4836,12.632C12.8501,12.5758 13.3263,12.3876 13.3039,11.9524L13.3034,11.9524C12.861,11.9011 12.6494,12.29 12.4836,12.632L12.4836,12.632L12.4836,12.632ZM13.1316,12.5082C13.2341,12.5224 13.3388,12.5322 13.4425,12.5322L13.4425,12.5322C13.6268,12.5322 13.9868,12.4885 14.0098,12.2453C13.701,12.0936 13.3416,12.2944 13.1316,12.5082ZM14.2536,12.2676C14.1107,12.4258 14.1843,12.5104 14.4096,12.4935L14.4096,12.4929C14.655,12.4929 14.9201,12.4095 15.0903,12.2305C14.8885,12.1793 14.4238,12.0789 14.2536,12.2676ZM15.0919,12.1176L15.0919,12.1176C15.1852,12.1176 15.2065,11.9731 15.1961,11.9049C15.0761,11.8438 15.0107,12.0805 15.0919,12.1176ZM13.5156,12.0795C13.6596,12.0205 13.6547,11.9218 13.6487,11.8362C13.4954,11.7675 13.4136,12.0205 13.5156,12.0795L13.5156,12.0795ZM14.2836,12.0456L14.2836,12.0456C14.5934,12.0342 15.1001,11.9322 15.1759,11.5678L15.1754,11.5678C14.8263,11.4827 14.5339,11.732 14.2836,12.0456ZM14.5999,11.4135C14.2154,11.2885 13.9159,11.7009 13.8232,11.9993L13.8232,11.9993L13.8232,11.9993C14.1456,11.9475 14.5143,11.7462 14.5999,11.4135ZM15.2474,11.7833C15.3538,11.8111 15.4639,11.8242 15.5741,11.8242L15.5741,11.8242C15.735,11.8242 16.2434,11.7718 16.2128,11.5051C15.8648,11.4129 15.4618,11.4778 15.2474,11.7833ZM14.7827,11.5165C14.7827,11.5165 14.9496,11.4233 14.9158,11.2744C14.7619,11.2051 14.7036,11.4233 14.7827,11.5165L14.7827,11.5165ZM16.0547,10.7349C15.8376,10.4851 15.4263,11.3125 15.3778,11.4287C15.5234,11.3911 16.2303,10.9373 16.0547,10.7349ZM14.9878,11.414C14.9883,11.414 14.9883,11.414 14.9888,11.4135C15.3281,11.2656 15.5681,10.8871 15.6941,10.5647C15.285,10.4175 15.0598,11.1658 14.9878,11.414ZM15.9963,11.3824C16.1163,11.3916 16.209,11.2885 16.1987,11.1669C16.0159,11.1178 15.7481,11.3633 15.9963,11.3824ZM16.1561,10.9885C16.1987,10.9924 16.2412,10.994 16.2843,10.994L16.2843,10.994C16.6061,10.994 16.8085,10.9062 16.8488,10.574C16.5985,10.5838 16.1687,10.6678 16.1561,10.9885ZM15.9112,10.5953L15.9112,10.5953C16.0879,10.3635 16.0792,10.1289 16.1152,9.854L16.1147,9.854C15.8136,9.9718 15.8905,10.3449 15.9112,10.5953L15.9112,10.5953ZM16.1894,10.5745C16.6612,10.5745 16.9148,9.9893 16.9094,9.6364C16.4234,9.6304 16.1163,10.3476 16.1163,10.4671C16.1163,10.5865 16.1894,10.5745 16.1894,10.5745ZM12.1907,12.9064L12.3788,12.8305C12.2987,12.6762 12.1143,12.7509 12.0167,12.8611L12.0008,12.8649L12.0008,12.866L11.9845,12.8622C11.8868,12.752 11.703,12.6778 11.6228,12.8322L11.811,12.9075L11.8083,12.908L11.4216,13.2124C11.4903,13.2735 11.571,13.3351 11.6479,13.4545L11.6485,13.4545C11.7914,13.3815 11.9065,13.1436 12.0008,13.0024L12.0008,13.0018C12.0958,13.1431 12.2103,13.3809 12.3538,13.4545L12.3543,13.4545C12.4312,13.3351 12.5119,13.2735 12.5807,13.2124L12.1939,12.9075L12.1907,12.9064Z" + android:strokeWidth="1" + android:fillColor="#33691E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_cz.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_cz.xml new file mode 100644 index 0000000000000000000000000000000000000000..758f5fbc4f772ee9c57004ff37be8d3d58f1d97b --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_cz.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,8l24,0l0,8l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,0l24,0l0,8l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,0l0,16l12.5455,-7.9989z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_de.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_de.xml new file mode 100644 index 0000000000000000000000000000000000000000..d47f4299d446e9529719e292eaf6730d2f839b41 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_de.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,10.6667l24,0l0,5.3333l-24,0z" + android:strokeWidth="1" + android:fillColor="#FFC107" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.3333l24,0l0,5.3333l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,-0l24,0l0,5.3333l-24,0z" + android:strokeWidth="1" + android:fillColor="#424242" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_dk.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_dk.xml new file mode 100644 index 0000000000000000000000000000000000000000..a1ea40b27066e5fdb6e0e0493e18d1822aac4b7e --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_dk.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l24,0l0,16l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,6.5455l24,0l0,3.2727l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.6364,0l3.2727,0l0,16.3636l-3.2727,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_ee.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_ee.xml new file mode 100644 index 0000000000000000000000000000000000000000..d6bfddc90a2927f30fde5c115a794408f7dc3366 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_ee.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,10.9091l24,0l0,5l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.4545l24,0l0,5.4545l-24,0z" + android:strokeWidth="1" + android:fillColor="#424242" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,0l24,0l0,5.4545l-24,0z" + android:strokeWidth="1" + android:fillColor="#2196F3" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_es.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_es.xml new file mode 100644 index 0000000000000000000000000000000000000000..bd4a1ae813fbcd7151baea4e1f0f1e70e7ccf55b --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_es.xml @@ -0,0 +1,3412 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l24,0l0,16l-24,0z" + android:strokeWidth="1" + android:fillColor="#DD2C00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,4.2667l24,0l0,7.4667l-24,0z" + android:strokeWidth="1" + android:fillColor="#FFC107" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1493,7.0603C4.1493,7.0603 4.1317,7.0603 4.1227,7.0555C4.1131,7.0496 4.0853,7.0219 4.0853,7.0219L4.0613,7.0064L4.0405,6.9781C4.0405,6.9781 4.0165,6.9387 4.0267,6.9061C4.0379,6.8768 4.0565,6.8656 4.0752,6.856C4.0912,6.8453 4.1285,6.8352 4.1285,6.8352C4.1285,6.8352 4.1563,6.8229 4.1659,6.8197C4.1749,6.8197 4.2096,6.8101 4.2096,6.8101C4.2096,6.8101 4.2192,6.8053 4.2283,6.8027C4.2384,6.7973 4.2517,6.7973 4.2597,6.7941C4.2672,6.7941 4.2869,6.7888 4.2976,6.7877C4.3163,6.7867 4.344,6.7899 4.3536,6.7899C4.3627,6.7899 4.3957,6.7925 4.4096,6.7925C4.4219,6.7925 4.4693,6.7899 4.4837,6.7899C4.4971,6.7899 4.5061,6.7867 4.5221,6.7899C4.5376,6.7899 4.5632,6.7995 4.5723,6.8021C4.5787,6.8064 4.6251,6.8219 4.6421,6.8272C4.6597,6.8315 4.7013,6.8395 4.7205,6.8501C4.7397,6.8576 4.7509,6.8741 4.7605,6.8875C4.7707,6.8997 4.7723,6.9147 4.7755,6.9216C4.7792,6.9312 4.7797,6.952 4.7755,6.9589C4.7717,6.9685 4.7595,6.9883 4.7595,6.9883L4.7371,7.0208L4.7104,7.0427C4.7104,7.0427 4.6907,7.0613 4.6763,7.0592C4.6608,7.056 4.5061,7.0299 4.4059,7.0299C4.3072,7.0315 4.1488,7.0603 4.1493,7.0603" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6784,7.0656C4.6784,7.0656 4.6773,7.0656 4.6757,7.0656C4.6731,7.0656 4.6661,7.0645 4.6539,7.0613C4.6037,7.0528 4.4875,7.0352 4.4064,7.0352C4.3125,7.0352 4.16,7.0635 4.1504,7.0656C4.1504,7.0656 4.1499,7.0656 4.1493,7.0656L4.1493,7.0656C4.1488,7.0656 4.1483,7.0656 4.1483,7.0656C4.1429,7.0656 4.1291,7.0656 4.12,7.0571C4.1104,7.0528 4.0821,7.0277 4.0821,7.0267L4.0587,7.0085C4.0581,7.0085 4.0576,7.0075 4.0571,7.0075L4.0368,6.9797C4.0352,6.9781 4.0101,6.9387 4.0224,6.9056C4.0347,6.8736 4.0539,6.8624 4.0725,6.8528C4.0901,6.8427 4.1253,6.832 4.1269,6.832C4.128,6.8309 4.1563,6.8187 4.1664,6.8171C4.1744,6.8155 4.2037,6.8069 4.2091,6.8059C4.2107,6.8053 4.2192,6.8016 4.2283,6.7963C4.2352,6.7941 4.2416,6.7941 4.2485,6.7931C4.2533,6.7925 4.2571,6.7925 4.2597,6.7915C4.2608,6.7899 4.2635,6.7899 4.2667,6.7899C4.2757,6.7867 4.2891,6.7813 4.2981,6.7813C4.3104,6.7813 4.3259,6.7813 4.3376,6.7835C4.3445,6.7845 4.3509,6.7856 4.3541,6.7856C4.3584,6.7856 4.3675,6.7861 4.3781,6.7867C4.3893,6.7877 4.4021,6.7888 4.4107,6.7888C4.4171,6.7888 4.4325,6.7867 4.4469,6.7856C4.4629,6.7835 4.4773,6.7824 4.4848,6.7824C4.4885,6.7824 4.4928,6.7824 4.4971,6.7813C4.5056,6.7813 4.5136,6.7813 4.5232,6.7824C4.5387,6.7856 4.5669,6.7936 4.5739,6.7989C4.5824,6.8021 4.6267,6.8176 4.6448,6.824C4.6507,6.8272 4.6592,6.8272 4.6693,6.8304C4.6885,6.8336 4.7109,6.84 4.7232,6.8437C4.7445,6.8549 4.7568,6.8709 4.7653,6.8832C4.7733,6.8939 4.776,6.9035 4.7781,6.9125C4.7792,6.9147 4.7792,6.9179 4.7808,6.9189C4.7851,6.9301 4.7851,6.9525 4.7808,6.9616C4.776,6.9691 4.7627,6.9899 4.7627,6.9899L4.7408,7.024C4.7408,7.0251 4.7408,7.0261 4.7408,7.0261L4.7131,7.0459C4.7125,7.048 4.6955,7.0656 4.6784,7.0656L4.6784,7.0656ZM4.4064,7.0283C4.4875,7.0283 4.6059,7.0448 4.656,7.0533C4.6667,7.0549 4.6747,7.0565 4.6773,7.0565C4.6784,7.0565 4.6784,7.0565 4.6784,7.0565C4.6896,7.0565 4.7035,7.0453 4.7077,7.0411L4.7344,7.0203L4.7552,6.9861C4.7557,6.9861 4.7685,6.968 4.7723,6.9579C4.7749,6.9525 4.7749,6.9328 4.7723,6.9253C4.7712,6.9211 4.7696,6.9189 4.7691,6.9157C4.7664,6.9072 4.7632,6.8981 4.7573,6.8907C4.7483,6.8784 4.7381,6.8645 4.7195,6.8549C4.7072,6.8491 4.6853,6.8437 4.6667,6.8411C4.6571,6.8379 4.648,6.8347 4.6416,6.8325C4.6256,6.8283 4.5792,6.8117 4.5696,6.8075C4.5632,6.8032 4.536,6.7952 4.5221,6.7941C4.5131,6.7925 4.5051,6.7936 4.4971,6.7936C4.4928,6.7936 4.488,6.7941 4.4843,6.7941C4.4773,6.7941 4.4619,6.7952 4.4469,6.7952C4.4315,6.7952 4.4165,6.7963 4.4101,6.7963C4.4016,6.7963 4.3888,6.7952 4.3771,6.7952C4.3669,6.7952 4.3579,6.7952 4.3536,6.7952C4.3504,6.7952 4.344,6.7952 4.3355,6.7941C4.3243,6.7936 4.3099,6.7909 4.2976,6.7925C4.2907,6.7925 4.2773,6.7952 4.2688,6.7984C4.2661,6.8 4.2624,6.8005 4.2603,6.8016C4.2571,6.8027 4.2533,6.8037 4.2496,6.8037C4.2432,6.8037 4.2357,6.8037 4.2309,6.8069C4.2219,6.8091 4.2123,6.8165 4.2123,6.8165C4.2123,6.8165 4.2117,6.8165 4.2112,6.8165C4.2096,6.8165 4.176,6.8251 4.1664,6.8277C4.1595,6.8288 4.1376,6.8373 4.1291,6.8411C4.1285,6.8411 4.0939,6.8523 4.0757,6.8597C4.0565,6.8704 4.0405,6.8811 4.0309,6.9077C4.0197,6.9371 4.0432,6.9755 4.0432,6.9755L4.0635,7.0037L4.0859,7.0192C4.0939,7.0288 4.1157,7.0464 4.1237,7.0533C4.1307,7.056 4.1419,7.0565 4.1477,7.0565C4.1541,7.0555 4.3088,7.0283 4.4064,7.0283Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.3621,6.8395C4.3621,6.792 4.3824,6.7531 4.4085,6.7531C4.4347,6.7531 4.4549,6.792 4.4549,6.8395C4.4549,6.8843 4.4347,6.9227 4.4085,6.9227C4.3824,6.9227 4.3621,6.8843 4.3621,6.8395" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4085,6.928C4.3792,6.928 4.3568,6.8896 4.3568,6.8395C4.3568,6.7904 4.3792,6.7499 4.4085,6.7499C4.4379,6.7499 4.4597,6.7904 4.4597,6.8395C4.4597,6.8896 4.4379,6.928 4.4085,6.928ZM4.4085,6.7573C4.3851,6.7573 4.3659,6.7947 4.3659,6.8395C4.3659,6.8821 4.3845,6.9184 4.4085,6.9184C4.4315,6.9184 4.4501,6.8821 4.4501,6.8395C4.4501,6.7947 4.4315,6.7573 4.4085,6.7573Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.3877,6.8395C4.3877,6.7947 4.3973,6.7605 4.4101,6.7605C4.4219,6.7605 4.4315,6.7947 4.4315,6.8395C4.4315,6.8811 4.4219,6.9157 4.4101,6.9157C4.3973,6.9157 4.3877,6.8811 4.3877,6.8395" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4101,6.92C4.3925,6.92 4.384,6.88 4.384,6.84C4.384,6.7973 4.3925,6.7568 4.4101,6.7568C4.4272,6.7568 4.4352,6.7995 4.4352,6.84C4.4347,6.8795 4.4256,6.92 4.4101,6.92ZM4.4101,6.7659C4.4037,6.7659 4.392,6.7909 4.392,6.84C4.392,6.8859 4.4037,6.9125 4.4101,6.9125C4.4155,6.9125 4.4261,6.8859 4.4261,6.84C4.4256,6.7904 4.4155,6.7659 4.4101,6.7659Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.3787,6.7499C4.3787,6.7323 4.3909,6.7195 4.4101,6.7195C4.4261,6.7195 4.4416,6.7317 4.4416,6.7499C4.4416,6.7653 4.4261,6.7781 4.4101,6.7781C4.3909,6.7781 4.3787,6.7659 4.3787,6.7499" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4315,6.7408l0,0.0165l-0.0491,0l0,-0.0165l0.016,0l0,-0.0459l-0.0208,0l0,-0.0187l0.0208,0l0,-0.0203l0.0208,0l0,0.0197l0.0213,0l0,0.0187l-0.0213,0l0,0.0459l0.0123,0" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4357,6.7648L4.3776,6.7648L4.3776,6.7323L4.3936,6.7323L4.3936,6.6997L4.3717,6.6997L4.3717,6.6693L4.3936,6.6693L4.3936,6.6517L4.424,6.6517L4.424,6.6693L4.4443,6.6693L4.4443,6.6997L4.424,6.6997L4.424,6.7323L4.4352,6.7323L4.4352,6.7648L4.4357,6.7648ZM4.3877,6.7531L4.4251,6.7531L4.4251,6.7435L4.4139,6.7435L4.4139,6.6901L4.4352,6.6901L4.4352,6.68L4.4139,6.68L4.4139,6.6597L4.4037,6.6597L4.4037,6.68L4.3824,6.68L4.3824,6.6901L4.4037,6.6901L4.4037,6.7435L4.3877,6.7435L4.3877,6.7531Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4528,6.7408l0,0.0165l-0.0864,0l0,-0.0165l0.032,0l0,-0.0459l-0.0208,0l0,-0.0187l0.0208,0l0,-0.0203l0.0208,0l0,0.0197l0.0213,0l0,0.0187l-0.0213,0l0,0.0459l0.0336,0" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4571,6.7648L4.3621,6.7648L4.3621,6.7323L4.3941,6.7323L4.3941,6.6997L4.3723,6.6997L4.3723,6.6693L4.3941,6.6693L4.3941,6.6517L4.4245,6.6517L4.4245,6.6693L4.4448,6.6693L4.4448,6.6997L4.4245,6.6997L4.4245,6.7323L4.4576,6.7323L4.4576,6.7648L4.4571,6.7648ZM4.3723,6.7531L4.4475,6.7531L4.4475,6.7435L4.4139,6.7435L4.4139,6.6901L4.4352,6.6901L4.4352,6.68L4.4139,6.68L4.4139,6.6597L4.4037,6.6597L4.4037,6.68L4.3824,6.68L4.3824,6.6901L4.4037,6.6901L4.4037,6.7435L4.3723,6.7435L4.3723,6.7531Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4101,6.7824C4.3893,6.7824 4.3733,6.7685 4.3733,6.7499C4.3733,6.7323 4.3851,6.7195 4.4005,6.7157L4.4021,6.7264C4.3915,6.7285 4.3819,6.7387 4.3819,6.7504C4.3819,6.7648 4.3941,6.7755 4.4101,6.7755C4.424,6.7755 4.4357,6.7648 4.4357,6.7504C4.4357,6.7397 4.4288,6.7285 4.4165,6.7264L4.4192,6.7173C4.4352,6.72 4.4443,6.7333 4.4443,6.7504C4.4443,6.768 4.4288,6.7824 4.4101,6.7824Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4101,7.0555L4.2475,7.0555L4.2432,7.0155L4.2347,6.9739L4.2267,6.9205C4.1813,6.8635 4.1408,6.8235 4.1269,6.832C4.1301,6.8197 4.1344,6.8133 4.1429,6.8069C4.1819,6.7829 4.2651,6.8405 4.3264,6.9328C4.3312,6.9429 4.3376,6.9525 4.3419,6.9589L4.4757,6.9589C4.4805,6.9525 4.4864,6.9435 4.4917,6.9328C4.5531,6.84 4.6357,6.7829 4.6747,6.8069C4.6843,6.8133 4.6875,6.8192 4.6912,6.832C4.6779,6.8235 4.6368,6.8635 4.5909,6.9205L4.584,6.9739L4.5749,7.0155L4.5712,7.0555L4.4101,7.0555" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.5765,7.0581L4.2427,7.0581L4.2379,7.0155L4.2315,6.9749L4.2224,6.9227C4.1765,6.8635 4.144,6.8352 4.1317,6.8352C4.1312,6.8352 4.1301,6.8352 4.1291,6.8352L4.1189,6.8421L4.1221,6.8309C4.1259,6.8187 4.1312,6.8091 4.1408,6.8043C4.1472,6.8005 4.1552,6.7973 4.1632,6.7973C4.2091,6.7973 4.2779,6.8528 4.3301,6.9317C4.336,6.9403 4.3408,6.9483 4.344,6.9557L4.4741,6.9557C4.4784,6.9483 4.4827,6.9403 4.488,6.9317C4.5408,6.8528 4.6096,6.7973 4.6549,6.7973C4.6635,6.7973 4.6725,6.8005 4.6784,6.8043C4.6875,6.8091 4.6923,6.8181 4.6965,6.8309L4.7003,6.8421L4.6901,6.8352C4.6896,6.8352 4.688,6.8352 4.688,6.8352C4.6757,6.8352 4.6432,6.8635 4.5968,6.9237L4.5877,6.9744L4.5813,7.0155L4.5765,7.0581ZM4.2501,7.0523L4.5691,7.0523L4.5723,7.016L4.5792,6.9723L4.5877,6.9189C4.6043,6.8981 4.6576,6.8309 4.6848,6.8283C4.6827,6.8197 4.6789,6.816 4.6736,6.8123C4.6688,6.8075 4.6624,6.8075 4.6544,6.8075C4.6123,6.8075 4.5467,6.8608 4.496,6.9376C4.4896,6.9461 4.4848,6.9547 4.4805,6.9627L4.4784,6.9659L4.3397,6.9659L4.3376,6.9627C4.3344,6.9547 4.3291,6.9461 4.3221,6.9376C4.272,6.8603 4.2059,6.8075 4.1632,6.8075C4.1557,6.8075 4.1499,6.8075 4.1445,6.8123C4.1392,6.816 4.1355,6.8203 4.1333,6.8283C4.1605,6.8309 4.2139,6.8981 4.2304,6.9189L4.2309,6.92L4.2389,6.9733L4.2469,7.016L4.2501,7.0523Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.5285,6.9584L4.5216,6.9547C4.5813,6.8645 4.6539,6.8075 4.688,6.8283L4.6827,6.8336C4.6576,6.8197 4.5904,6.8656 4.5285,6.9584ZM4.2912,6.9584C4.2288,6.8656 4.1616,6.8197 4.1365,6.8336L4.1312,6.8283C4.1648,6.8075 4.2373,6.8645 4.2971,6.9547L4.2912,6.9584Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1691,7.128C4.1627,7.1072 4.1499,7.0923 4.1499,7.0923C4.2155,7.072 4.3067,7.0592 4.4091,7.0592C4.5104,7.0592 4.6037,7.0715 4.6688,7.0923C4.6688,7.0923 4.6613,7.1045 4.6507,7.1221C4.6453,7.1328 4.6373,7.1515 4.6379,7.1515C4.5781,7.1328 4.5024,7.1221 4.408,7.1221C4.3136,7.1221 4.2229,7.1328 4.1755,7.1536C4.1771,7.1531 4.1728,7.1408 4.1691,7.128L4.1691,7.128" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1787,7.1557L4.1755,7.1531L4.1723,7.1531C4.1723,7.1509 4.1691,7.1408 4.1643,7.1307L4.1627,7.1237L4.1627,7.1237C4.1563,7.1072 4.1461,7.0944 4.1456,7.0944L4.1413,7.0901L4.1472,7.088C4.2165,7.0667 4.3093,7.0555 4.4085,7.0555C4.5077,7.0555 4.6,7.0667 4.6693,7.088L4.6747,7.0901L4.672,7.0933C4.672,7.0933 4.6656,7.1067 4.6549,7.1259C4.6496,7.1333 4.6437,7.1493 4.6427,7.152L4.6389,7.1509L4.6373,7.1547C4.5781,7.1365 4.5003,7.128 4.408,7.128C4.3685,7.128 4.3291,7.128 4.2933,7.1323C4.2933,7.1323 4.2923,7.1323 4.2912,7.1323C4.2448,7.1387 4.2043,7.1445 4.1787,7.1557ZM4.1755,7.1323C4.1776,7.1397 4.1787,7.1435 4.1797,7.1445C4.2288,7.128 4.3179,7.1184 4.4091,7.1184C4.5008,7.1184 4.5765,7.128 4.6363,7.1445C4.6384,7.1403 4.6416,7.1323 4.648,7.1195C4.6544,7.1083 4.6603,7.0997 4.6635,7.0944C4.5963,7.0768 4.5045,7.0651 4.4096,7.0651C4.3136,7.0651 4.2251,7.0757 4.1568,7.0944C4.1611,7.1019 4.1691,7.1141 4.1728,7.128L4.1755,7.1323L4.1755,7.1323Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4091,7.2123C4.4912,7.2123 4.5813,7.2 4.6155,7.1904C4.6379,7.1829 4.6501,7.1749 4.648,7.1632C4.6475,7.1568 4.6421,7.1525 4.6357,7.1499C4.5872,7.1323 4.4981,7.1216 4.4096,7.1216C4.3195,7.1216 4.2315,7.1323 4.1819,7.1499C4.1755,7.1531 4.1707,7.1573 4.1696,7.1632C4.1669,7.1744 4.1803,7.1829 4.2032,7.1904C4.2352,7.2 4.3264,7.2123 4.4091,7.2123" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4091,7.2155L4.4091,7.2155C4.3269,7.2155 4.2347,7.2032 4.2005,7.1947C4.1664,7.184 4.1627,7.1696 4.1653,7.1621C4.1664,7.1552 4.1728,7.1488 4.1797,7.1445C4.2315,7.128 4.3216,7.1184 4.4091,7.1184C4.4965,7.1184 4.5856,7.128 4.6379,7.1445C4.6453,7.1488 4.6507,7.1557 4.6528,7.1621C4.6533,7.1696 4.6517,7.184 4.616,7.1947C4.5813,7.2032 4.4912,7.2155 4.4091,7.2155ZM4.4091,7.128C4.3221,7.128 4.2336,7.1387 4.1829,7.1531C4.1787,7.1563 4.1744,7.1584 4.1733,7.1643C4.1728,7.1707 4.1829,7.1808 4.2037,7.1867C4.2379,7.1947 4.328,7.2069 4.4091,7.2069C4.4901,7.2069 4.5803,7.1947 4.6139,7.1867C4.6352,7.1808 4.6459,7.1707 4.6443,7.1643C4.6437,7.1579 4.6395,7.1557 4.6352,7.1531C4.584,7.1387 4.4949,7.128 4.4091,7.128Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6725,7.0555L4.6533,7.0373C4.6533,7.0373 4.6336,7.0485 4.6096,7.0448C4.5856,7.0405 4.5781,7.0133 4.5781,7.0133C4.5781,7.0133 4.5509,7.0341 4.5291,7.032C4.5067,7.0309 4.4939,7.0133 4.4939,7.0133C4.4939,7.0133 4.4688,7.0293 4.448,7.0277C4.4277,7.0267 4.4064,6.9995 4.4064,6.9995C4.4064,6.9995 4.3856,7.0277 4.3659,7.0277C4.3435,7.0309 4.3264,7.0101 4.3264,7.0101C4.3264,7.0101 4.3168,7.0309 4.2907,7.0341C4.2629,7.0405 4.2405,7.0155 4.2405,7.0155C4.2405,7.0155 4.2245,7.0405 4.2069,7.0448C4.1893,7.0533 4.1659,7.0352 4.1659,7.0352C4.1659,7.0352 4.1616,7.0448 4.1589,7.0507C4.1563,7.056 4.1477,7.0571 4.1477,7.0571L4.1536,7.0725C4.2192,7.0528 4.3088,7.0416 4.4096,7.0416C4.5099,7.0416 4.6,7.0528 4.6656,7.0725L4.6725,7.0555" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6688,7.0779L4.6661,7.0779C4.5973,7.0571 4.5067,7.0453 4.4101,7.0443C4.3131,7.0453 4.2235,7.0565 4.1563,7.0779L4.1515,7.0779L4.1424,7.0528L4.1477,7.0528C4.1499,7.0528 4.1541,7.0517 4.1552,7.0475C4.1573,7.0432 4.1616,7.0331 4.1616,7.0331L4.1627,7.0293L4.168,7.032C4.168,7.032 4.1835,7.0421 4.1973,7.0421C4.2,7.0421 4.2037,7.0421 4.2064,7.0405C4.2224,7.0341 4.2379,7.0123 4.2379,7.0123L4.2411,7.0069L4.2437,7.0112C4.2437,7.0112 4.2661,7.0341 4.2896,7.0309C4.3131,7.0277 4.3221,7.008 4.3221,7.0069L4.3248,7.0027L4.3301,7.0069C4.3301,7.0069 4.3445,7.0245 4.3627,7.0245C4.3627,7.0245 4.3637,7.0245 4.3653,7.0245C4.384,7.0213 4.4037,6.9963 4.4037,6.9952L4.4069,6.9925L4.4107,6.9952C4.4112,6.9963 4.4304,7.0203 4.4491,7.0235C4.4501,7.0235 4.4501,7.0235 4.4512,7.0235C4.4699,7.0235 4.4912,7.0069 4.4912,7.0069L4.4939,7.0059L4.4971,7.0091C4.4971,7.0091 4.5093,7.0277 4.5296,7.0277C4.5307,7.0277 4.5312,7.0277 4.5312,7.0277C4.5509,7.0277 4.5749,7.008 4.5749,7.008L4.5813,7.0043L4.5819,7.0112C4.5819,7.0117 4.5899,7.0384 4.6096,7.0405C4.632,7.0437 4.6496,7.032 4.6496,7.032L4.6528,7.0309L4.6747,7.0517L4.6784,7.0517L4.6773,7.056L4.6688,7.0779ZM4.4101,7.0384C4.5056,7.0384 4.5957,7.0491 4.664,7.0683L4.6688,7.0565L4.6528,7.0427C4.6475,7.0453 4.6352,7.0517 4.6192,7.0517C4.6165,7.0517 4.6128,7.0517 4.6101,7.0507C4.5904,7.0453 4.5803,7.0304 4.576,7.0203C4.5669,7.0288 4.5477,7.0411 4.5291,7.0389C4.5109,7.0368 4.4976,7.0251 4.4928,7.0192C4.4853,7.0235 4.4667,7.0325 4.448,7.0325C4.4315,7.0315 4.4144,7.016 4.4069,7.0075C4.4005,7.016 4.3835,7.0315 4.3664,7.0325C4.3653,7.0325 4.3637,7.0325 4.3632,7.0325C4.3477,7.0325 4.3355,7.0229 4.3291,7.0187C4.3227,7.0256 4.312,7.0357 4.2917,7.0411C4.2693,7.0443 4.2507,7.0288 4.2416,7.0203C4.2363,7.0288 4.224,7.0443 4.2101,7.0501C4.2064,7.0517 4.2021,7.0528 4.1979,7.0528C4.1861,7.0528 4.1744,7.0453 4.168,7.0427C4.1669,7.0453 4.1648,7.0507 4.1632,7.0539C4.16,7.056 4.1563,7.0571 4.1536,7.0592L4.1563,7.0683C4.2251,7.0491 4.3147,7.0384 4.4101,7.0384Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4101,6.968L4.4192,6.9696C4.4176,6.9728 4.4171,6.9781 4.4171,6.9819C4.4171,7.0027 4.4347,7.0176 4.4549,7.0176C4.4725,7.0176 4.4853,7.0064 4.4912,6.9925C4.4912,6.9931 4.4939,6.9792 4.496,6.9803C4.4976,6.9803 4.4976,6.9931 4.4976,6.9931C4.5003,7.0107 4.5163,7.0235 4.5349,7.0235C4.5557,7.0235 4.5723,7.0069 4.5723,6.9893C4.5723,6.9867 4.5723,6.984 4.5723,6.9819L4.584,6.9707L4.5909,6.9872C4.5877,6.9904 4.5867,6.9957 4.5867,7.0027C4.5867,7.0192 4.6032,7.0363 4.6219,7.0363C4.6341,7.0363 4.6459,7.0304 4.6523,7.0192L4.6592,7.0117L4.6592,7.0229C4.6592,7.0341 4.6645,7.0437 4.6757,7.0469C4.6757,7.0469 4.6891,7.048 4.7061,7.0336C4.7243,7.0192 4.7339,7.0075 4.7339,7.0075L4.7344,7.0229C4.7344,7.0229 4.7179,7.0523 4.7024,7.0603C4.6928,7.0645 4.68,7.0688 4.6693,7.0688C4.6587,7.0672 4.6507,7.0576 4.6464,7.048C4.6395,7.0523 4.6304,7.0555 4.6203,7.0555C4.5995,7.0555 4.5797,7.0443 4.5717,7.0272C4.5621,7.0379 4.5493,7.0427 4.5333,7.0427C4.5157,7.0427 4.4997,7.0352 4.4907,7.024C4.4811,7.0315 4.4683,7.0395 4.4533,7.0395C4.4347,7.0395 4.4187,7.0283 4.4096,7.0144C4.4,7.0283 4.3824,7.0395 4.3637,7.0395C4.3504,7.0395 4.3365,7.0309 4.3269,7.024C4.3168,7.0352 4.3013,7.0427 4.2848,7.0427C4.2688,7.0427 4.2549,7.0373 4.2448,7.0272C4.2379,7.0448 4.2192,7.056 4.1973,7.056C4.1877,7.056 4.1787,7.0528 4.1701,7.0485C4.1664,7.0581 4.1589,7.0677 4.1477,7.0693C4.1381,7.0693 4.1248,7.0651 4.1163,7.0608C4.1003,7.0523 4.0816,7.0235 4.0816,7.0235L4.0837,7.008C4.0837,7.008 4.0944,7.0192 4.1104,7.0341C4.1291,7.0485 4.1413,7.0475 4.1413,7.0475C4.1536,7.0443 4.1584,7.0352 4.1584,7.0235L4.1584,7.0123L4.1669,7.0197C4.1733,7.0309 4.1835,7.0368 4.1963,7.0368C4.2171,7.0368 4.2325,7.0197 4.2325,7.0032C4.2325,6.9957 4.232,6.9909 4.2299,6.9877L4.2347,6.9707L4.2459,6.9819C4.2459,6.984 4.2453,6.9867 4.2453,6.9893C4.2453,7.0069 4.2624,7.0235 4.2832,7.0235C4.3019,7.0235 4.3184,7.0112 4.3205,6.9931C4.3211,6.9931 4.3211,6.9803 4.3221,6.9803C4.3237,6.9792 4.3269,6.9931 4.3275,6.9925C4.3317,7.0064 4.3472,7.0176 4.3621,7.0176C4.3845,7.0176 4.4,7.0027 4.4,6.9819C4.4,6.9776 4.3995,6.9723 4.3989,6.9696L4.4101,6.968" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6752,7.0752C4.6731,7.0752 4.6725,7.0752 4.6693,7.0741C4.6597,7.072 4.6507,7.0656 4.6459,7.056C4.6379,7.0576 4.6293,7.0608 4.6213,7.0608C4.6005,7.0608 4.5819,7.0512 4.5728,7.0336C4.5616,7.0443 4.5477,7.0491 4.5344,7.0491C4.5179,7.0491 4.5019,7.0421 4.4917,7.0315C4.4811,7.0411 4.4683,7.0437 4.4544,7.0437C4.4379,7.0437 4.4203,7.0352 4.4107,7.0229C4.3984,7.0352 4.3824,7.0437 4.3648,7.0437C4.3515,7.0437 4.3387,7.0405 4.3285,7.0315C4.3173,7.0427 4.3013,7.0491 4.2859,7.0491C4.2709,7.0491 4.2576,7.0437 4.2475,7.0336C4.2379,7.0512 4.2187,7.0608 4.1984,7.0608C4.1888,7.0608 4.1808,7.0576 4.1733,7.056C4.1675,7.0661 4.1589,7.072 4.1488,7.0741C4.1488,7.0752 4.1456,7.0752 4.1445,7.0752C4.1328,7.0752 4.12,7.0683 4.1141,7.0656C4.0987,7.056 4.08,7.0283 4.0795,7.0283L4.0779,7.0251L4.0832,7L4.0891,7.0075C4.0896,7.0075 4.0992,7.0187 4.1147,7.0315C4.1307,7.0432 4.1403,7.0437 4.1429,7.0437C4.1552,7.0421 4.1552,7.0283 4.1552,7.024L4.1552,6.9989L4.1707,7.0187C4.1771,7.0283 4.1867,7.032 4.1968,7.032C4.2144,7.032 4.2288,7.0187 4.2288,7.0027C4.2288,6.9952 4.2272,6.9925 4.2261,6.9904L4.2245,6.9872L4.2347,6.9653L4.2523,6.9819L4.2523,6.9829C4.2523,6.9851 4.2523,6.9872 4.2523,6.9893C4.2523,7.0053 4.2672,7.0197 4.2859,7.0197C4.3024,7.0197 4.3168,7.0075 4.3184,6.9936L4.3184,6.9904C4.3184,6.9904 4.3184,6.9904 4.3184,6.9904C4.3189,6.9803 4.3195,6.9771 4.3243,6.9771L4.3243,6.9771C4.3275,6.9771 4.3296,6.9797 4.3317,6.9856L4.3317,6.9856L4.3333,6.9909C4.3381,7.0048 4.3509,7.0149 4.3648,7.0149C4.3835,7.0149 4.3995,6.9995 4.3995,6.9824C4.3995,6.9781 4.3995,6.9739 4.3968,6.9701L4.3957,6.9659L4.4123,6.9648L4.4277,6.9659L4.4251,6.9701C4.4251,6.9744 4.4245,6.9787 4.4245,6.9824C4.4245,6.9989 4.4395,7.0149 4.4576,7.0149C4.472,7.0149 4.4843,7.0048 4.4896,6.9909L4.4907,6.9867L4.4907,6.9867C4.4939,6.9797 4.4939,6.9771 4.4987,6.9771C4.5029,6.9771 4.5029,6.9808 4.5035,6.9893C4.5035,6.9904 4.5035,6.9904 4.5035,6.9904L4.504,6.9936C4.5061,7.0069 4.5205,7.0197 4.5376,7.0197C4.5563,7.0197 4.5707,7.0059 4.5707,6.9893C4.5707,6.9872 4.5707,6.9851 4.5707,6.9829L4.5701,6.9819L4.5877,6.9653L4.5979,6.9872L4.5973,6.9904C4.5952,6.9931 4.5947,6.9957 4.5947,7.0027C4.5947,7.0181 4.6091,7.032 4.6261,7.032C4.6368,7.032 4.6469,7.0277 4.6528,7.0187L4.6688,6.9989L4.6683,7.024C4.6683,7.0283 4.6699,7.0421 4.6816,7.0437C4.6827,7.0437 4.6944,7.0432 4.7088,7.0315C4.7264,7.0192 4.7355,7.0075 4.7355,7.0075L4.7419,6.9989L4.7451,7.0251L4.7435,7.0272C4.7424,7.0283 4.7264,7.0565 4.7088,7.0656C4.7008,7.0672 4.688,7.0752 4.6752,7.0752ZM4.6501,7.0432L4.6517,7.0469C4.6533,7.0533 4.6597,7.0645 4.6715,7.0656C4.672,7.0656 4.6736,7.0656 4.6752,7.0656C4.6837,7.0656 4.6939,7.0613 4.7003,7.0571C4.7125,7.0507 4.7285,7.0277 4.7317,7.0219L4.7317,7.0197C4.7259,7.0251 4.7195,7.0309 4.7099,7.0395C4.6939,7.0528 4.6816,7.0528 4.6773,7.0528L4.6752,7.0528C4.6635,7.0507 4.6565,7.0405 4.656,7.0245C4.6475,7.0341 4.6352,7.04 4.6224,7.04C4.6,7.04 4.5819,7.0235 4.5819,7.0027C4.5819,6.9941 4.5835,6.9904 4.5851,6.9872L4.5819,6.9792L4.5765,6.9851C4.5765,6.9861 4.5765,6.9872 4.5765,6.9893C4.5765,7.0091 4.5579,7.0277 4.5349,7.0277C4.5147,7.0277 4.4976,7.0155 4.4939,6.9963C4.4875,7.0117 4.472,7.0203 4.4544,7.0203C4.4315,7.0203 4.4123,7.0027 4.4123,6.9819C4.4123,6.9776 4.4123,6.9765 4.4123,6.9712L4.4096,6.9701L4.4043,6.9712C4.4053,6.9765 4.4053,6.9776 4.4053,6.9819C4.4053,7.0027 4.3861,7.0203 4.3621,7.0203C4.3461,7.0203 4.3307,7.0117 4.3248,6.9963C4.32,7.0149 4.3029,7.0277 4.2832,7.0277C4.2597,7.0277 4.2405,7.0091 4.2405,6.9893C4.2405,6.9872 4.2405,6.9861 4.2405,6.9851L4.2352,6.9792L4.232,6.9872C4.2341,6.9904 4.2347,6.9947 4.2347,7.0027C4.2347,7.0235 4.2171,7.04 4.1947,7.04C4.1813,7.04 4.1691,7.0336 4.1621,7.0245C4.1621,7.04 4.1536,7.0507 4.1413,7.0528L4.1413,7.0528C4.1381,7.0528 4.1248,7.0528 4.1077,7.0395C4.0981,7.0309 4.0912,7.024 4.0864,7.0197L4.0853,7.0219C4.0896,7.0283 4.1045,7.0512 4.1173,7.0571C4.1285,7.0645 4.1387,7.0672 4.1472,7.0656C4.1584,7.0645 4.1637,7.0533 4.1659,7.0469L4.168,7.0432L4.1717,7.0448C4.1792,7.0501 4.1872,7.0533 4.1968,7.0533C4.2155,7.0533 4.2341,7.0411 4.2405,7.0261L4.2432,7.0197L4.2475,7.0245C4.2571,7.0336 4.2693,7.0405 4.2843,7.0405C4.2997,7.0405 4.3136,7.032 4.3227,7.0208L4.3253,7.0187L4.3291,7.0197C4.3381,7.0299 4.3499,7.0331 4.3627,7.0331C4.3797,7.0331 4.3957,7.0277 4.4043,7.0144L4.4085,7.0069L4.4112,7.0144C4.4208,7.0277 4.4363,7.0331 4.4523,7.0331C4.4651,7.0331 4.4773,7.0293 4.4864,7.0197L4.4896,7.0187L4.4923,7.0208C4.5019,7.032 4.5173,7.0405 4.5323,7.0405C4.5456,7.0405 4.5584,7.0331 4.5675,7.0245L4.5728,7.0197L4.5749,7.0261C4.5824,7.0405 4.5995,7.0533 4.6192,7.0533C4.6277,7.0533 4.6357,7.0501 4.6437,7.0448L4.6501,7.0432Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4091,7.0592C4.3067,7.0592 4.2155,7.0715 4.1504,7.0923C4.1445,7.0939 4.1397,7.0907 4.1381,7.0864C4.1376,7.0821 4.1408,7.0779 4.1445,7.0757C4.2107,7.0555 4.3045,7.0421 4.4096,7.0421C4.5131,7.0421 4.608,7.0555 4.6741,7.0757C4.6789,7.0779 4.6821,7.0821 4.68,7.0864C4.6789,7.0907 4.6725,7.0939 4.6693,7.0923C4.6037,7.072 4.5104,7.0592 4.4091,7.0592" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6709,7.096C4.6693,7.096 4.6693,7.0949 4.6672,7.0949C4.5995,7.0773 4.5067,7.0656 4.4091,7.0656C4.3104,7.0656 4.2192,7.0768 4.1504,7.0949C4.1445,7.0981 4.1365,7.0939 4.1349,7.0885C4.1333,7.0832 4.1333,7.0811 4.1349,7.0779C4.1365,7.0747 4.1397,7.0704 4.1435,7.0693C4.2128,7.0496 4.3067,7.0379 4.4096,7.0379C4.5104,7.0379 4.6069,7.0501 4.6757,7.0693C4.6821,7.0725 4.6864,7.0805 4.6853,7.088C4.6816,7.0933 4.6763,7.096 4.6709,7.096ZM4.4091,7.056C4.5077,7.056 4.6,7.0672 4.6693,7.0885L4.6704,7.0885C4.672,7.0885 4.6747,7.0864 4.6747,7.0832C4.6752,7.0821 4.6741,7.0805 4.672,7.0795C4.6037,7.0571 4.5083,7.0459 4.4085,7.0448C4.3093,7.0459 4.2123,7.0571 4.1451,7.0795C4.1435,7.0795 4.1435,7.0811 4.1424,7.0821C4.1419,7.0821 4.1419,7.0821 4.1419,7.0832C4.1424,7.0864 4.1445,7.0885 4.1472,7.0885C4.2171,7.0672 4.3099,7.056 4.4091,7.056Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.3099,7.0949C4.3099,7.0907 4.3163,7.0827 4.3253,7.0827C4.3333,7.0827 4.3397,7.0912 4.3397,7.0949C4.3397,7.1051 4.3328,7.1093 4.3253,7.1093C4.3163,7.1093 4.3099,7.1045 4.3099,7.0949" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4101,7.1029L4.3776,7.1029C4.3717,7.1029 4.3664,7.0965 4.3664,7.0917C4.3664,7.0859 4.3717,7.0805 4.3776,7.0805L4.4443,7.0805C4.4507,7.0805 4.4544,7.0859 4.4544,7.0917C4.4544,7.0965 4.4507,7.1029 4.4443,7.1029L4.4101,7.1029" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4443,7.1072L4.3776,7.1072C4.3691,7.1072 4.3621,7.1008 4.3621,7.0923C4.3621,7.0821 4.3691,7.0784 4.3771,7.0784L4.4437,7.0784C4.4517,7.0784 4.4587,7.0827 4.4587,7.0923C4.4592,7.1008 4.4517,7.1072 4.4443,7.1072ZM4.3771,7.0853C4.3733,7.0853 4.3707,7.0896 4.3707,7.0923C4.3707,7.0949 4.3733,7.0981 4.3776,7.0981L4.4443,7.0981C4.4475,7.0981 4.4507,7.0949 4.4507,7.0923C4.4507,7.0896 4.448,7.0853 4.4443,7.0853L4.3771,7.0853Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.2459,7.1157L4.2224,7.1173C4.216,7.1184 4.2101,7.1157 4.2101,7.1072C4.2096,7.1029 4.2128,7.0965 4.2192,7.096L4.2421,7.0939L4.2661,7.0907C4.2725,7.0907 4.2784,7.0923 4.2784,7.0981C4.2789,7.1035 4.2752,7.1077 4.2688,7.1093L4.2459,7.1157" + android:strokeWidth="1" + android:fillColor="#058E6E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.2208,7.1211C4.2128,7.1211 4.2069,7.1157 4.2059,7.1077C4.2048,7.1061 4.2064,7.1035 4.208,7.0981C4.2101,7.0949 4.2139,7.0933 4.2187,7.0923L4.2661,7.0843C4.2661,7.0843 4.2667,7.0843 4.2683,7.0843C4.2752,7.0843 4.2816,7.0907 4.2832,7.0965C4.2848,7.1061 4.2784,7.1141 4.2699,7.1152L4.2224,7.12C4.2224,7.12 4.2219,7.1211 4.2208,7.1211ZM4.2683,7.0939L4.2192,7.1024C4.2181,7.1035 4.2165,7.1035 4.2155,7.1035C4.2139,7.1051 4.2133,7.1067 4.2139,7.1077C4.2144,7.1109 4.2181,7.1152 4.2224,7.1141L4.2688,7.1067C4.272,7.1061 4.2752,7.1035 4.2752,7.0992C4.2741,7.0949 4.2715,7.0939 4.2683,7.0939Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1504,7.1307l0.0112,-0.016l0.0224,0.0037l-0.0133,0.0181l-0.0203,-0.0059" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4784,7.0949C4.4784,7.0907 4.4848,7.0827 4.4928,7.0827C4.5003,7.0827 4.5067,7.0912 4.5067,7.0949C4.5067,7.1051 4.4997,7.1093 4.4928,7.1093C4.4848,7.1093 4.4784,7.1045 4.4784,7.0949" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.5723,7.1157L4.5957,7.1173C4.6016,7.1184 4.6069,7.1157 4.608,7.1072C4.6096,7.1029 4.6053,7.0965 4.5989,7.096L4.5749,7.0939L4.5509,7.0907C4.5451,7.0907 4.5397,7.0923 4.5387,7.0981C4.5376,7.1035 4.5419,7.1077 4.5477,7.1093L4.5723,7.1157" + android:strokeWidth="1" + android:fillColor="#058E6E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.5973,7.1211C4.5973,7.1211 4.5963,7.12 4.5947,7.12L4.5472,7.1157C4.544,7.1157 4.5397,7.1115 4.5376,7.1072C4.5349,7.1045 4.5349,7.1019 4.5349,7.0965C4.5355,7.0901 4.544,7.0821 4.552,7.0843L4.6,7.0923C4.6032,7.0933 4.6069,7.0949 4.6096,7.0981C4.6123,7.1035 4.6123,7.1061 4.6123,7.1077C4.6112,7.1157 4.6048,7.1211 4.5973,7.1211ZM4.5504,7.0939C4.5477,7.0939 4.544,7.0949 4.544,7.0992C4.5435,7.1013 4.544,7.1035 4.544,7.1035C4.5451,7.1051 4.5472,7.1061 4.5488,7.1067L4.5973,7.1141C4.6,7.1141 4.6037,7.1109 4.6037,7.1077C4.6037,7.1067 4.6037,7.1051 4.6037,7.1035C4.6021,7.1035 4.6005,7.1035 4.5984,7.1024L4.5504,7.0939L4.5504,7.0939Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6656,7.1312l-0.0091,-0.0165l-0.0224,0.0011l0.0101,0.0187l0.0213,-0.0032" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4091,7.1936C4.3264,7.1931 4.2523,7.1851 4.1952,7.1696C4.2517,7.1563 4.3264,7.1467 4.4091,7.1467C4.4912,7.1467 4.5664,7.1563 4.6224,7.1696C4.5664,7.1856 4.4912,7.1931 4.4091,7.1936" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4091,7.1968L4.4091,7.1968C4.3237,7.1968 4.2507,7.1904 4.1941,7.176C4.192,7.1749 4.1915,7.1728 4.1915,7.1696C4.1915,7.1685 4.192,7.1669 4.1941,7.1669C4.2539,7.1531 4.3291,7.1435 4.4091,7.1429C4.488,7.1429 4.5643,7.1531 4.6235,7.1669C4.6251,7.1669 4.6267,7.1685 4.6267,7.1696C4.6267,7.1728 4.6251,7.1749 4.6235,7.176C4.568,7.1904 4.4939,7.1968 4.4091,7.1968ZM4.2139,7.1696C4.2661,7.1819 4.3333,7.1893 4.4085,7.1904C4.4848,7.1893 4.5499,7.1819 4.6032,7.1696C4.5472,7.1573 4.4784,7.1531 4.4085,7.1531C4.3376,7.1531 4.2693,7.1573 4.2139,7.1696Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6688,7.0155C4.6699,7.0069 4.6688,7.0032 4.6635,7.0011C4.6597,6.9989 4.6533,7.0032 4.6512,7.0085C4.6496,7.016 4.6507,7.0208 4.6565,7.024C4.6597,7.0251 4.6661,7.0197 4.6688,7.0155" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.504,6.9824C4.5051,6.9781 4.5024,6.9701 4.4976,6.9701C4.4923,6.9701 4.488,6.9749 4.488,6.9813C4.4864,6.9888 4.4896,6.9936 4.4944,6.9936C4.4992,6.9947 4.5035,6.9904 4.504,6.9824" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.3136,6.9824C4.3125,6.9781 4.3157,6.9701 4.3216,6.9701C4.3253,6.9701 4.3312,6.9749 4.3317,6.9813C4.3317,6.9888 4.3291,6.9936 4.3248,6.9936C4.3189,6.9947 4.3152,6.9904 4.3136,6.9824" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1504,7.0155C4.1477,7.0069 4.1504,7.0032 4.1541,7.0011C4.16,6.9989 4.1648,7.0032 4.1664,7.0085C4.1691,7.016 4.1669,7.0208 4.1627,7.024C4.1573,7.0251 4.1525,7.0197 4.1504,7.0155" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4091,6.8896l-0.0299,0.0165l0.0219,0.0469l0.008,0.0043l0.0075,-0.0043l0.0219,-0.0469l-0.0293,-0.0165" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4091,6.9637L4.3979,6.9557L4.3744,6.9029L4.4091,6.8821L4.4443,6.9029L4.4192,6.9557L4.4091,6.9637ZM4.4043,6.9499L4.4085,6.9531L4.4123,6.9499L4.4309,6.9072L4.4085,6.8939L4.3845,6.9072L4.4043,6.9499Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.3445,6.9573l0.0139,0.0208l0.0453,-0.0123l0.0048,-0.0085l-0.0048,-0.0043l-0.0453,-0.0144l-0.0139,0.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.3563,6.9824L4.3397,6.9573L4.3563,6.9323L4.4064,6.9467L4.4133,6.9573L4.4064,6.9685L4.3563,6.9824ZM4.3504,6.9573L4.36,6.9728L4.4005,6.9595L4.4037,6.9573L4.4005,6.9557L4.36,6.944L4.3504,6.9573Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4725,6.9573l-0.0123,0.0208l-0.0464,-0.0123l-0.0037,-0.0085l0.0037,-0.0043l0.0459,-0.0144l0.0128,0.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.4613,6.9824l-0.0501,-0.0139l-0.0075,-0.0112l0.008,-0.0107l0.0501,-0.0144l0.0171,0.0251z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.2192,6.9072l-0.0219,0.0235l0.0283,0.0379l0.0091,0.0021l0.0048,-0.0053l0.0107,-0.0459l-0.0309,-0.0123" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.2347,6.9781l-0.0117,-0.0064l-0.032,-0.0411l0.0277,-0.0277l0.0357,0.0139l-0.0112,0.0517z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1723,6.9867l0.0165,0.0165l0.0416,-0.0235l0.0032,-0.008l-0.0053,-0.0048l-0.048,-0.0027l-0.008,0.0224" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1877,7.0075l-0.0213,-0.0197l0.0112,-0.0304l0.0517,0.0064l0.0096,0.0064l-0.0048,0.0123z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.2976,6.9605l-0.0096,0.0219l-0.0464,-0.0043l-0.0069,-0.0064l0.0027,-0.0064l0.0411,-0.0219l0.0192,0.0171" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.2912,6.9877l-0.0528,-0.0053l-0.0101,-0.0085l0.0064,-0.0112l0.0453,-0.024l0.0219,0.0208z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1259,6.992l-0.0037,0.0235l-0.0469,0.0043l-0.0069,-0.0043l0.0005,-0.0085l0.0363,-0.0293l0.0208,0.0144" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.0747,7.024l-0.0117,-0.0059l0.0032,-0.0123l0.0389,-0.0336l0.0267,0.0187l-0.0053,0.0283z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.2181,6.9717C4.2181,6.9653 4.2256,6.9573 4.2352,6.9573C4.2443,6.9573 4.2507,6.9659 4.2507,6.9717C4.2507,6.9813 4.2443,6.9893 4.2352,6.9893C4.2251,6.9893 4.2181,6.9813 4.2181,6.9717" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.5979,6.9072l0.0235,0.0235l-0.0299,0.0379l-0.0064,0.0021l-0.0064,-0.0053l-0.0096,-0.0459l0.0288,-0.0123" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.5824,6.9781l-0.0075,-0.0096l-0.0123,-0.0517l0.0368,-0.0139l0.0272,0.0277l-0.0331,0.0411z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6459,6.9867l-0.0176,0.0165l-0.0411,-0.0235l-0.0027,-0.008l0.0064,-0.0048l0.0464,-0.0027l0.0085,0.0224" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6293,7.0075l-0.0443,-0.0251l-0.0064,-0.0123l0.0096,-0.0064l0.0533,-0.0064l0.0096,0.0304z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.5216,6.9605l0.0085,0.0219l0.0475,-0.0043l0.0064,-0.0064l-0.0037,-0.0064l-0.0421,-0.0219l-0.0165,0.0171" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.5275,6.9877l-0.0112,-0.0283l0.0219,-0.0208l0.0453,0.024l0.0053,0.0112l-0.0101,0.0085z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6848,6.992l0.0037,0.0235l0.0475,0.0043l0.0075,-0.0043l-0.0027,-0.0085l-0.0347,-0.0293l-0.0213,0.0144" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.7376,7.024l-0.0528,-0.0053l-0.0043,-0.0283l0.0261,-0.0187l0.0395,0.0336l0.0021,0.0123z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.392,6.9573C4.392,6.9488 4.4,6.9424 4.4091,6.9424C4.4187,6.9424 4.4251,6.9493 4.4251,6.9573C4.4251,6.9653 4.4181,6.9739 4.4091,6.9739C4.4,6.9739 4.392,6.9659 4.392,6.9573" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.5675,6.9717C4.5675,6.9653 4.5755,6.9573 4.5851,6.9573C4.5941,6.9573 4.6005,6.9659 4.6005,6.9717C4.6005,6.9813 4.5941,6.9893 4.5851,6.9893C4.5755,6.9893 4.5675,6.9813 4.5675,6.9717" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.0629,7.0187C4.0629,7.0187 4.0507,7.0032 4.0411,6.9936C4.0336,6.9883 4.0176,6.9824 4.0176,6.9824C4.0176,6.9797 4.0272,6.9728 4.0379,6.9728C4.0437,6.9728 4.0491,6.976 4.0523,6.9797L4.0533,6.9728C4.0533,6.9728 4.0619,6.9749 4.0656,6.9824C4.0683,6.9936 4.0661,7.0075 4.0661,7.0075C4.0661,7.0075 4.0661,7.0155 4.0629,7.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.0629,7.0219C4.0603,7.0219 4.0603,7.0208 4.0544,7.0155C4.0501,7.0101 4.0432,7.0032 4.0379,6.9957C4.032,6.9931 4.0203,6.9893 4.016,6.9872L4.0128,6.9851L4.0128,6.9819C4.0128,6.9765 4.0251,6.9685 4.0379,6.9685C4.0411,6.9685 4.0459,6.9696 4.0496,6.9707L4.0501,6.9685L4.0539,6.9685C4.0544,6.9685 4.0651,6.9696 4.0688,6.9819C4.0736,6.9931 4.072,7.0069 4.0715,7.0069C4.0715,7.0091 4.0688,7.0171 4.0661,7.0192L4.0645,7.0213L4.0629,7.0213L4.0629,7.0219Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.0629,7.0096C4.0667,7.0064 4.0752,7.0075 4.0816,7.0128C4.088,7.0176 4.0891,7.0251 4.0848,7.0283C4.0816,7.0325 4.0725,7.0325 4.0667,7.0283C4.0608,7.0208 4.0597,7.0155 4.0629,7.0096" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.7493,7.0187C4.7499,7.0187 4.7627,7.0032 4.7717,6.9936C4.7787,6.9883 4.7941,6.9824 4.7941,6.9824C4.7941,6.9797 4.7851,6.9728 4.7749,6.9728C4.7691,6.9728 4.7632,6.976 4.76,6.9797L4.7579,6.9728C4.7579,6.9728 4.7504,6.9749 4.7461,6.9824C4.7419,6.9936 4.744,7.0075 4.744,7.0075C4.744,7.0075 4.7461,7.0155 4.7493,7.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.7493,7.0219L4.7493,7.0219L4.7472,7.0219L4.7461,7.0197C4.7419,7.0171 4.7413,7.0091 4.7413,7.0075C4.7408,7.0075 4.7381,6.9941 4.7413,6.9824C4.7472,6.9701 4.7563,6.9691 4.7563,6.9691L4.7611,6.9691L4.7621,6.9712C4.7653,6.9701 4.7691,6.9691 4.7739,6.9691C4.7845,6.9691 4.7973,6.9776 4.7973,6.9824L4.7973,6.9856L4.7941,6.9877C4.7899,6.9899 4.7776,6.9936 4.7733,6.9963C4.7675,7.0037 4.7595,7.0117 4.7552,7.016C4.752,7.0208 4.7515,7.0219 4.7493,7.0219Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.7504,7.0096C4.7456,7.0064 4.7381,7.0075 4.7317,7.0128C4.7253,7.0176 4.7237,7.0251 4.728,7.0283C4.7317,7.0325 4.7397,7.0325 4.7456,7.0283C4.7515,7.0208 4.7536,7.0155 4.7504,7.0096" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.0341,7.4032l0.7536,0l0,-0.1973l-0.7536,0z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.7941,7.4085L4.0272,7.4085L4.0272,7.1989L4.7941,7.1989L4.7941,7.4085ZM4.0411,7.3947L4.7813,7.3947L4.7813,7.2123L4.0411,7.2123L4.0411,7.3947Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1125,7.5333C4.1173,7.5323 4.1211,7.5323 4.1264,7.5323L4.6912,7.5323C4.6976,7.5323 4.7024,7.5323 4.7067,7.5344C4.688,7.528 4.6731,7.5115 4.6731,7.4907C4.6731,7.4699 4.688,7.4533 4.7077,7.4448C4.7035,7.4459 4.6971,7.448 4.6907,7.448L4.1264,7.448C4.1211,7.448 4.1157,7.4469 4.1104,7.4448L4.1136,7.4459C4.1349,7.4533 4.1456,7.4699 4.1456,7.4907C4.1456,7.5083 4.1328,7.528 4.1125,7.5333" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.7067,7.5424C4.7067,7.5424 4.7056,7.5424 4.7045,7.5408L4.7029,7.5408C4.6992,7.5408 4.6949,7.5408 4.6912,7.5408L4.1264,7.5408C4.1221,7.5408 4.12,7.5408 4.1179,7.5408C4.1157,7.5408 4.1157,7.5408 4.1147,7.5408C4.1109,7.5424 4.1072,7.5408 4.1061,7.5371C4.1056,7.5323 4.1061,7.5296 4.1093,7.528C4.1109,7.528 4.112,7.528 4.1125,7.528C4.128,7.5195 4.1381,7.5061 4.1381,7.4907C4.1381,7.4741 4.1285,7.4581 4.1141,7.4533C4.1125,7.4533 4.1099,7.4533 4.1088,7.4533C4.1056,7.4533 4.1035,7.448 4.104,7.4448C4.1051,7.4405 4.1083,7.4405 4.1125,7.4405L4.1173,7.4405C4.12,7.4405 4.1232,7.4405 4.1264,7.4405L4.6912,7.4405C4.6965,7.4405 4.7024,7.4405 4.7067,7.4405C4.7099,7.4384 4.7131,7.4405 4.7147,7.4437C4.7163,7.4448 4.7136,7.4512 4.7104,7.4533C4.6928,7.4576 4.6805,7.4741 4.6805,7.4907C4.6805,7.5072 4.6917,7.5211 4.7067,7.528C4.7072,7.528 4.7088,7.528 4.7099,7.528C4.7125,7.5307 4.7136,7.5323 4.7125,7.5387C4.712,7.5408 4.7099,7.5424 4.7067,7.5424ZM4.1376,7.5269L4.6811,7.5269C4.6725,7.5157 4.6667,7.5029 4.6667,7.4907C4.6667,7.4784 4.6725,7.4656 4.6816,7.4549L4.1381,7.4549C4.1477,7.4661 4.1525,7.4784 4.1525,7.4907C4.1525,7.5029 4.1472,7.5157 4.1376,7.5269Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1264,7.5323L4.6912,7.5323C4.7099,7.5323 4.7253,7.5445 4.7253,7.5573C4.7253,7.5739 4.7099,7.5856 4.6912,7.5856L4.1264,7.5856C4.1072,7.5856 4.0917,7.5744 4.0917,7.5573C4.0917,7.5445 4.1072,7.5323 4.1264,7.5323" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6912,7.592L4.1264,7.592C4.1035,7.592 4.0848,7.5781 4.0848,7.5573C4.0848,7.5408 4.1035,7.5269 4.1264,7.5269L4.6912,7.5269C4.7136,7.5269 4.7323,7.5403 4.7323,7.5573C4.7323,7.5781 4.7136,7.592 4.6912,7.592ZM4.1264,7.5408C4.1115,7.5408 4.0987,7.5483 4.0987,7.5573C4.0987,7.5696 4.1115,7.5781 4.1264,7.5781L4.6912,7.5781C4.7067,7.5781 4.7189,7.5696 4.7189,7.5573C4.7189,7.5477 4.7067,7.5408 4.6912,7.5408L4.1264,7.5408Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1264,7.4032L4.6912,7.4032C4.7104,7.4032 4.7259,7.4144 4.7259,7.4261C4.7259,7.4384 4.7104,7.448 4.6912,7.448L4.1264,7.448C4.1072,7.448 4.0917,7.4384 4.0917,7.4261C4.0917,7.4144 4.1072,7.4032 4.1264,7.4032" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6912,7.4549L4.1264,7.4549C4.1035,7.4549 4.0848,7.4427 4.0848,7.4261C4.0848,7.4085 4.1035,7.3947 4.1264,7.3947L4.6912,7.3947C4.7152,7.3947 4.7328,7.408 4.7328,7.4261C4.7328,7.4421 4.7152,7.4549 4.6912,7.4549ZM4.1264,7.4085C4.1099,7.4085 4.0987,7.4187 4.0987,7.4261C4.0987,7.4325 4.1099,7.4405 4.1264,7.4405L4.6912,7.4405C4.7083,7.4405 4.7195,7.432 4.7195,7.4261C4.7195,7.4181 4.7083,7.4085 4.6912,7.4085L4.1264,7.4085Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9376,10.728C4.8848,10.728 4.8379,10.7179 4.8037,10.6997C4.7701,10.6821 4.7243,10.6704 4.6731,10.6704C4.6224,10.6704 4.5749,10.6816 4.5408,10.6997C4.5061,10.7179 4.4597,10.728 4.408,10.728C4.3557,10.728 4.3093,10.7157 4.2747,10.6976C4.2411,10.6821 4.1968,10.6704 4.1467,10.6704C4.0955,10.6704 4.0496,10.6811 4.0155,10.6987C3.9813,10.7168 3.9344,10.728 3.8821,10.728L3.8821,10.8101C3.9344,10.8101 3.9813,10.7989 4.0155,10.7803C4.0496,10.7632 4.0955,10.7525 4.1467,10.7525C4.1968,10.7525 4.2405,10.7637 4.2747,10.7803C4.3093,10.7973 4.3557,10.8101 4.408,10.8101C4.4592,10.8101 4.5061,10.7989 4.5408,10.7808C4.5749,10.7653 4.6219,10.7525 4.6731,10.7525C4.7243,10.7525 4.7696,10.7648 4.8037,10.7808C4.8379,10.7995 4.8848,10.8101 4.9365,10.8101L4.9376,10.728" + android:strokeWidth="1" + android:fillColor="#005BBF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9435,10.8171L4.9365,10.8171C4.8848,10.8171 4.8379,10.8059 4.8005,10.7872C4.7664,10.7696 4.7221,10.7579 4.6736,10.7579C4.6256,10.7579 4.5792,10.7691 4.5445,10.7872C4.5072,10.8059 4.4603,10.8171 4.4091,10.8171C4.3595,10.8171 4.3104,10.8059 4.2731,10.7851C4.2384,10.7685 4.1947,10.7579 4.1483,10.7579C4.0981,10.7579 4.0544,10.7685 4.0197,10.7861C3.9824,10.8059 3.9344,10.8171 3.8837,10.8171L3.8763,10.8171L3.8763,10.7205L3.8827,10.7205C3.9312,10.7205 3.9787,10.712 4.0128,10.6933C4.0491,10.6747 4.0949,10.6651 4.1472,10.6651C4.1963,10.6651 4.2427,10.6747 4.2784,10.6928C4.3141,10.7109 4.36,10.7205 4.4085,10.7205C4.4565,10.7205 4.5035,10.712 4.5376,10.6933C4.5739,10.6768 4.6229,10.6651 4.6731,10.6651C4.7232,10.6651 4.7712,10.6757 4.8064,10.6933C4.8411,10.712 4.888,10.7205 4.9376,10.7205L4.9445,10.7205L4.9435,10.8171ZM4.1472,10.7445C4.1957,10.7445 4.2421,10.7557 4.2784,10.7739C4.3147,10.7936 4.36,10.8032 4.4085,10.8032C4.4565,10.8032 4.5035,10.7936 4.5376,10.776C4.5744,10.7573 4.6224,10.7445 4.6731,10.7445C4.7227,10.7445 4.7707,10.7568 4.8064,10.776C4.8411,10.7936 4.8827,10.8032 4.9296,10.8032L4.9307,10.7344C4.8816,10.7333 4.8352,10.7237 4.8,10.7056C4.7659,10.6885 4.7216,10.6779 4.6731,10.6779C4.6251,10.6779 4.5787,10.6891 4.544,10.7061C4.5077,10.7248 4.4597,10.7344 4.4085,10.7344C4.3584,10.7344 4.3099,10.7243 4.2725,10.7045C4.2384,10.6885 4.1941,10.6779 4.1477,10.6779C4.0976,10.6779 4.0539,10.6885 4.0192,10.7045C3.9851,10.7237 3.9381,10.7333 3.8896,10.7344L3.8896,10.8032C3.9349,10.8032 3.9797,10.792 4.0128,10.7749C4.0496,10.7563 4.0955,10.7445 4.1472,10.7445Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9376,10.8107C4.8848,10.8107 4.8379,10.8 4.8037,10.7813C4.7701,10.7659 4.7243,10.7531 4.6731,10.7531C4.6224,10.7531 4.5749,10.7653 4.5408,10.7813C4.5061,10.7989 4.4597,10.8107 4.408,10.8107C4.3557,10.8107 4.3093,10.7984 4.2747,10.7808C4.2411,10.7648 4.1968,10.7531 4.1467,10.7531C4.0955,10.7531 4.0496,10.7637 4.0155,10.7808C3.9813,10.7989 3.9344,10.8107 3.8821,10.8107L3.8821,10.8923C3.9344,10.8923 3.9813,10.8811 4.0155,10.8624C4.0496,10.8448 4.0955,10.8331 4.1467,10.8331C4.1968,10.8331 4.2405,10.8443 4.2747,10.8613C4.3093,10.8795 4.3557,10.8923 4.408,10.8923C4.4592,10.8923 4.5061,10.8811 4.5408,10.8635C4.5749,10.8448 4.6219,10.8331 4.6731,10.8331C4.7243,10.8331 4.7696,10.8443 4.8037,10.8635C4.8379,10.8811 4.8848,10.8923 4.9365,10.8923L4.9376,10.8107" + android:strokeWidth="1" + android:fillColor="#CCCCCC" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9435,10.8981L4.9365,10.8981C4.8848,10.8981 4.8379,10.8896 4.8005,10.8688C4.7664,10.8523 4.7221,10.8405 4.6736,10.8405C4.6256,10.8405 4.5792,10.8528 4.5445,10.8688C4.5072,10.8885 4.4603,10.8981 4.4091,10.8981C4.3595,10.8981 4.3104,10.8875 4.2731,10.8672C4.2384,10.8512 4.1947,10.8405 4.1483,10.8405C4.0981,10.8405 4.0544,10.8512 4.0197,10.8683C3.9829,10.8885 3.9349,10.8981 3.8837,10.8981L3.8763,10.8981L3.8763,10.8032L3.8827,10.8032C3.9312,10.8032 3.9787,10.7936 4.0128,10.7749C4.0496,10.7563 4.0955,10.7445 4.1472,10.7445C4.1963,10.7445 4.2427,10.7557 4.2784,10.7739C4.3147,10.7936 4.3605,10.8032 4.4085,10.8032C4.4565,10.8032 4.5035,10.7936 4.5376,10.776C4.5744,10.7573 4.6224,10.7445 4.6731,10.7445C4.7227,10.7445 4.7707,10.7568 4.8064,10.776C4.8411,10.7936 4.888,10.8032 4.9376,10.8032L4.9445,10.8032L4.9435,10.8981ZM4.1472,10.8283C4.1957,10.8283 4.2421,10.8389 4.2784,10.8565C4.3141,10.8752 4.36,10.8848 4.4085,10.8848C4.4565,10.8848 4.5035,10.8763 4.5376,10.8576C4.5744,10.84 4.6224,10.8283 4.6731,10.8283C4.7227,10.8283 4.7707,10.8395 4.8064,10.8576C4.8411,10.8752 4.8827,10.8837 4.9296,10.8848L4.9307,10.8176C4.8816,10.816 4.8352,10.8064 4.8,10.7877C4.7659,10.7701 4.7216,10.7584 4.6731,10.7584C4.6251,10.7584 4.5787,10.7696 4.544,10.7877C4.5067,10.8064 4.4597,10.8176 4.4085,10.8176C4.3589,10.8176 4.3099,10.8064 4.2725,10.7856C4.2384,10.7691 4.1941,10.7584 4.1477,10.7584C4.0976,10.7584 4.0539,10.7691 4.0192,10.7867C3.9845,10.8059 3.9381,10.816 3.8896,10.8176L3.8896,10.8848C3.9349,10.8837 3.9803,10.8741 4.0128,10.8565C4.0491,10.8384 4.0949,10.8283 4.1472,10.8283Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9376,10.8923C4.8848,10.8923 4.8379,10.8811 4.8037,10.8635C4.7701,10.8448 4.7243,10.8331 4.6731,10.8331C4.6224,10.8331 4.5749,10.8443 4.5408,10.8635C4.5061,10.8811 4.4597,10.8923 4.408,10.8923C4.3557,10.8923 4.3093,10.88 4.2747,10.8613C4.2411,10.8448 4.1968,10.8331 4.1467,10.8331C4.0955,10.8331 4.0496,10.8443 4.0155,10.8624C3.9813,10.8805 3.9344,10.8923 3.8821,10.8923L3.8821,10.9728C3.9344,10.9728 3.9813,10.9616 4.0155,10.9435C4.0496,10.9269 4.0955,10.9152 4.1467,10.9152C4.1968,10.9152 4.2405,10.9275 4.2747,10.9429C4.3093,10.9611 4.3557,10.9728 4.408,10.9728C4.4592,10.9728 4.5061,10.9621 4.5408,10.9445C4.5749,10.928 4.6219,10.9152 4.6731,10.9152C4.7243,10.9152 4.7696,10.9275 4.8037,10.9445C4.8379,10.9632 4.8848,10.9728 4.9365,10.9728L4.9376,10.8923" + android:strokeWidth="1" + android:fillColor="#005BBF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9435,10.9797L4.9365,10.9797C4.8848,10.9797 4.8379,10.9696 4.8005,10.9509C4.7669,10.9323 4.7227,10.9216 4.6736,10.9216C4.6256,10.9216 4.5792,10.9323 4.5445,10.9509C4.5077,10.9696 4.4603,10.9797 4.4091,10.9797C4.3589,10.9797 4.3104,10.9685 4.2731,10.9488C4.2384,10.9323 4.1947,10.9216 4.1483,10.9216C4.0981,10.9216 4.0544,10.9323 4.0197,10.9499C3.9829,10.9685 3.9355,10.9797 3.8837,10.9797L3.8763,10.9797L3.8763,10.8843L3.8827,10.8843C3.9312,10.8843 3.9787,10.8747 4.0128,10.856C4.0491,10.8384 4.0949,10.8277 4.1472,10.8277C4.1963,10.8277 4.2427,10.8384 4.2784,10.856C4.3147,10.8747 4.36,10.8843 4.4085,10.8843C4.4565,10.8843 4.5035,10.8757 4.5376,10.8571C4.5744,10.8395 4.6224,10.8277 4.6731,10.8277C4.7227,10.8277 4.7707,10.8389 4.8064,10.8571C4.8416,10.8757 4.888,10.8843 4.9376,10.8843L4.9445,10.8843L4.9435,10.9797ZM4.1472,10.9083C4.1952,10.9083 4.2421,10.9195 4.2784,10.9376C4.3141,10.9563 4.3595,10.9675 4.4085,10.9675C4.4565,10.9675 4.5035,10.9573 4.5376,10.9397C4.5744,10.92 4.6224,10.9083 4.6731,10.9083C4.7232,10.9083 4.7712,10.9195 4.8064,10.9397C4.8411,10.9563 4.8821,10.9659 4.9296,10.9659L4.9307,10.8981C4.8816,10.8971 4.8357,10.8875 4.8,10.8688C4.7659,10.8523 4.7216,10.8405 4.6731,10.8405C4.6251,10.8405 4.5787,10.8528 4.544,10.8688C4.5067,10.8885 4.4597,10.8981 4.4085,10.8981C4.3589,10.8981 4.3099,10.8875 4.2725,10.8672C4.2384,10.8512 4.1941,10.8405 4.1477,10.8405C4.0976,10.8405 4.0539,10.8512 4.0192,10.8683C3.9851,10.8875 3.9381,10.8971 3.8896,10.8981L3.8896,10.9659C3.9349,10.9659 3.9803,10.9557 4.0128,10.9387C4.0496,10.92 4.0955,10.9083 4.1472,10.9083Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9365,11.0549C4.8848,11.0549 4.8379,11.0437 4.8037,11.0272C4.7701,11.0075 4.7243,10.9968 4.6731,10.9968C4.6224,10.9968 4.5749,11.0075 4.5408,11.0272C4.5061,11.0437 4.4597,11.0549 4.408,11.0549C4.3557,11.0549 4.3093,11.0437 4.2747,11.0251C4.2411,11.0075 4.1968,10.9968 4.1467,10.9968C4.0955,10.9968 4.0496,11.0075 4.0155,11.0261C3.9813,11.0437 3.9344,11.0549 3.8821,11.0549L3.8821,10.9744C3.9344,10.9744 3.9813,10.9621 4.0155,10.944C4.0496,10.9275 4.0955,10.9157 4.1467,10.9157C4.1968,10.9157 4.2405,10.928 4.2747,10.9435C4.3093,10.9616 4.3557,10.9733 4.408,10.9733C4.4592,10.9733 4.5061,10.9627 4.5408,10.9451C4.5749,10.9285 4.6219,10.9157 4.6731,10.9157C4.7243,10.9157 4.7696,10.928 4.8037,10.9451C4.8379,10.9637 4.8848,10.9733 4.9376,10.9733L4.9365,11.0549" + android:strokeWidth="1" + android:fillColor="#CCCCCC" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9435,11.0613L4.9365,11.0613C4.8848,11.0613 4.8379,11.0517 4.8005,11.0309C4.7664,11.0155 4.7221,11.0043 4.6736,11.0043C4.6256,11.0043 4.5792,11.0155 4.5445,11.032C4.5077,11.0517 4.4603,11.0613 4.4091,11.0613C4.3595,11.0613 4.3104,11.0507 4.2731,11.0304C4.2389,11.0144 4.1947,11.0043 4.1483,11.0043C4.0981,11.0043 4.0544,11.0144 4.0197,11.0309C3.9824,11.0523 3.9349,11.0613 3.8827,11.0613L3.8763,11.0613L3.8763,10.9669L3.8827,10.9669C3.9307,10.9669 3.9787,10.9557 4.0128,10.9381C4.0496,10.9195 4.0949,10.9077 4.1472,10.9077C4.1952,10.9077 4.2421,10.9189 4.2784,10.9371C4.3141,10.9557 4.3595,10.9669 4.4085,10.9669C4.4565,10.9669 4.5035,10.9568 4.5376,10.9392C4.5744,10.9195 4.6224,10.9077 4.6731,10.9077C4.7232,10.9077 4.7712,10.9189 4.8064,10.9392C4.8411,10.9557 4.888,10.9669 4.9376,10.9669L4.9445,10.9669L4.9435,11.0613ZM4.1472,10.9904C4.1957,10.9904 4.2427,11.0016 4.2784,11.0187C4.3147,11.0384 4.36,11.048 4.4085,11.048C4.4565,11.048 4.5035,11.0395 4.5376,11.0197C4.5744,11.0032 4.6224,10.9904 4.6731,10.9904C4.7227,10.9904 4.7707,11.0027 4.8064,11.0197C4.8411,11.0384 4.8827,11.0469 4.9296,11.048L4.9307,10.9797C4.8816,10.9781 4.8347,10.9685 4.8,10.9509C4.7664,10.9323 4.7221,10.9216 4.6731,10.9216C4.6251,10.9216 4.5787,10.9323 4.544,10.9509C4.5072,10.9696 4.4597,10.9797 4.4085,10.9797C4.3584,10.9797 4.3099,10.9685 4.2725,10.9488C4.2379,10.9323 4.1941,10.9216 4.1477,10.9216C4.0976,10.9216 4.0539,10.9323 4.0192,10.9499C3.984,10.9685 3.9381,10.9797 3.8896,10.9808L3.8896,11.048C3.936,11.0469 3.9797,11.0373 4.0128,11.0197C4.0496,11.0021 4.0955,10.9904 4.1472,10.9904Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9365,11.1365C4.8848,11.1365 4.8379,11.1259 4.8037,11.1072C4.7701,11.0907 4.7243,11.0779 4.6731,11.0779C4.6224,11.0779 4.5749,11.0901 4.5408,11.1072C4.5061,11.1259 4.4597,11.1365 4.408,11.1365C4.3557,11.1365 4.3093,11.1243 4.2747,11.1061C4.2411,11.0907 4.1968,11.0779 4.1467,11.0779C4.0955,11.0779 4.0496,11.0901 4.0155,11.1072C3.9813,11.1248 3.9344,11.1365 3.8821,11.1365L3.8821,11.0565C3.9344,11.0565 3.9813,11.0443 4.0155,11.0261C4.0496,11.0075 4.0955,10.9968 4.1467,10.9968C4.1968,10.9968 4.2405,11.0075 4.2747,11.0251C4.3093,11.0432 4.3557,11.0549 4.408,11.0549C4.4592,11.0549 4.5061,11.0437 4.5408,11.0272C4.5749,11.0075 4.6219,10.9968 4.6731,10.9968C4.7243,10.9968 4.7696,11.0075 4.8037,11.0272C4.8379,11.0437 4.8848,11.0549 4.9371,11.0549L4.9365,11.1365" + android:strokeWidth="1" + android:fillColor="#005BBF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9435,11.144L4.9365,11.144C4.8848,11.144 4.8379,11.1328 4.8005,11.1147C4.7664,11.0949 4.7216,11.0853 4.6731,11.0853C4.6251,11.0853 4.5787,11.0949 4.544,11.1147C4.5067,11.1323 4.4597,11.144 4.4085,11.144C4.3589,11.144 4.3099,11.1328 4.2725,11.112C4.2379,11.0949 4.1941,11.0853 4.1477,11.0853C4.0976,11.0853 4.0539,11.0949 4.0192,11.1136C3.9819,11.1323 3.9344,11.144 3.8832,11.144L3.8763,11.144L3.8763,11.0491L3.8827,11.0491C3.9301,11.0491 3.9787,11.0395 4.0128,11.0197C4.0491,11.0021 4.0949,10.9904 4.1472,10.9904C4.1957,10.9904 4.2421,11.0016 4.2784,11.0187C4.3147,11.0384 4.36,11.048 4.4085,11.048C4.4565,11.048 4.5035,11.0395 4.5376,11.0197C4.5739,11.0032 4.6224,10.9904 4.6731,10.9904C4.7232,10.9904 4.7712,11.0027 4.8064,11.0197C4.8411,11.0395 4.888,11.048 4.9371,11.048L4.9445,11.048L4.9435,11.144ZM4.1472,11.072C4.1957,11.072 4.2421,11.0827 4.2784,11.1013C4.3152,11.12 4.3605,11.1301 4.4085,11.1301C4.4565,11.1301 4.5035,11.12 4.5376,11.1035C4.5744,11.0827 4.6224,11.072 4.6731,11.072C4.7232,11.072 4.7712,11.0827 4.8064,11.1035C4.8411,11.12 4.8832,11.1285 4.9296,11.1301L4.9301,11.0619C4.8816,11.0608 4.8357,11.0512 4.8,11.0315C4.7664,11.016 4.7221,11.0048 4.6731,11.0048C4.6251,11.0048 4.5787,11.016 4.544,11.0325C4.5072,11.0523 4.4597,11.0619 4.4085,11.0619C4.3589,11.0619 4.3099,11.0512 4.2725,11.0309C4.2379,11.0149 4.1941,11.0048 4.1477,11.0048C4.0976,11.0048 4.0539,11.0149 4.0192,11.0315C3.984,11.0512 3.9381,11.0619 3.8896,11.0629L3.8896,11.1301C3.9349,11.1285 3.9803,11.1189 4.0128,11.1024C4.0496,11.0821 4.0955,11.072 4.1472,11.072Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1125,10.3936C4.1147,10.4021 4.1168,10.4069 4.1168,10.4155C4.1168,10.4656 4.0747,10.5029 4.0224,10.5029L4.7979,10.5029C4.7461,10.5029 4.704,10.4656 4.704,10.4155C4.704,10.4069 4.704,10.4021 4.7067,10.3936C4.7019,10.3947 4.6965,10.3947 4.6912,10.3947L4.1264,10.3947C4.1221,10.3947 4.1163,10.3947 4.1125,10.3936" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.7979,10.5104L4.0224,10.5104C4.0192,10.5104 4.016,10.5072 4.016,10.5029C4.016,10.5008 4.0187,10.4955 4.0224,10.4955C4.0709,10.4955 4.1104,10.4592 4.1104,10.4155C4.1104,10.4091 4.1104,10.4053 4.1077,10.4011L4.1067,10.3947C4.1067,10.3936 4.1067,10.3904 4.1083,10.3904C4.1099,10.3883 4.1125,10.3872 4.1152,10.3883C4.1179,10.3904 4.1227,10.3904 4.1264,10.3904L4.6912,10.3904C4.6955,10.3904 4.7003,10.3904 4.7035,10.3883C4.7061,10.3872 4.7088,10.3883 4.7099,10.3904C4.7125,10.3904 4.7125,10.3936 4.7125,10.3947C4.7109,10.4032 4.7099,10.4069 4.7099,10.4155C4.7099,10.4592 4.7499,10.4955 4.7979,10.4955C4.8016,10.4955 4.8048,10.5008 4.8048,10.5029C4.8043,10.5072 4.8016,10.5104 4.7979,10.5104ZM4.0736,10.496L4.7477,10.496C4.7163,10.4816 4.6971,10.4512 4.6971,10.416C4.6971,10.4107 4.6976,10.4064 4.6976,10.4037C4.6955,10.4037 4.6944,10.4037 4.6912,10.4037L4.1264,10.4037C4.1253,10.4037 4.1237,10.4037 4.1221,10.4037C4.1221,10.4069 4.1232,10.4112 4.1232,10.416C4.1237,10.4512 4.1035,10.4811 4.0736,10.496Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1264,10.3435L4.6912,10.3435C4.7099,10.3435 4.7253,10.3547 4.7253,10.3701C4.7253,10.3824 4.7099,10.3952 4.6912,10.3952L4.1264,10.3952C4.1072,10.3952 4.0917,10.3829 4.0917,10.3701C4.0917,10.3547 4.1072,10.3435 4.1264,10.3435" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6912,10.4032L4.1264,10.4032C4.1035,10.4032 4.0848,10.3888 4.0848,10.3696C4.0848,10.352 4.1035,10.336 4.1264,10.336L4.6912,10.336C4.7136,10.336 4.7323,10.3515 4.7323,10.3696C4.7323,10.3888 4.7136,10.4032 4.6912,10.4032ZM4.1264,10.3499C4.1115,10.3499 4.0987,10.3573 4.0987,10.3696C4.0987,10.3808 4.1115,10.3904 4.1264,10.3904L4.6912,10.3904C4.7067,10.3904 4.7189,10.3803 4.7189,10.3696C4.7189,10.3573 4.7067,10.3499 4.6912,10.3499L4.1264,10.3499Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.0224,10.7029l0.7749,0l0,-0.2l-0.7749,0z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.8037,10.7072L4.016,10.7072L4.016,10.496L4.8037,10.496L4.8037,10.7072ZM4.0293,10.6949L4.7909,10.6949L4.7909,10.5104L4.0293,10.5104L4.0293,10.6949Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.9627,9.6448C3.8859,9.6896 3.8347,9.7323 3.8421,9.7563C3.8469,9.7781 3.8709,9.7931 3.9061,9.8155C3.9595,9.8528 3.9936,9.9205 3.9675,9.9531C4.0123,9.9157 4.0411,9.8624 4.0411,9.8032C4.0411,9.7387 4.0117,9.6811 3.9627,9.6448" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.9723,9.9573L3.9627,9.9488C3.9707,9.9403 3.9707,9.928 3.9691,9.9168C3.9653,9.8837 3.9376,9.8443 3.9024,9.8192L3.8987,9.8187C3.8656,9.7947 3.8416,9.7808 3.8363,9.7573C3.8229,9.72 3.9275,9.6571 3.96,9.6395L3.9627,9.6363L3.9659,9.6405C4.0187,9.6779 4.0475,9.7376 4.0475,9.8032C4.048,9.8624 4.0203,9.9189 3.9723,9.9573ZM3.9627,9.6533C3.8805,9.7003 3.8437,9.7408 3.8485,9.7536C3.8528,9.7723 3.8752,9.7877 3.9061,9.808L3.9093,9.8101C3.9477,9.8384 3.9781,9.8805 3.9819,9.9163C3.9829,9.9205 3.9829,9.9269 3.9824,9.9301C4.0155,9.8955 4.0341,9.8501 4.0341,9.8037C4.0347,9.7435 4.0091,9.6896 3.9627,9.6533Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1349,10.3104l0.5493,0l0,-2.6933l-0.5493,0z" + android:strokeWidth="1" + android:fillColor="#CCCCCC" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.5941,10.3072L4.5813,10.3072L4.5813,7.6197L4.5936,7.6197L4.5936,10.3072L4.5941,10.3072ZM4.5323,10.3072L4.5195,10.3072L4.5195,7.6197L4.5323,7.6197L4.5323,10.3072Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6912,10.3184L4.128,10.3184L4.128,7.6096L4.6912,7.6096L4.6912,10.3184ZM4.1413,10.3045L4.6779,10.3045L4.6779,7.6229L4.1413,7.6229L4.1413,10.3045Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.2459,8.6251C5.1253,8.5749 4.9227,8.5397 4.688,8.5307C4.6069,8.5312 4.5168,8.5397 4.4245,8.5547C4.0949,8.6075 3.8443,8.7408 3.8651,8.8459C3.8656,8.8501 3.8661,8.8549 3.8661,8.8565C3.8661,8.8565 3.7435,8.5787 3.7413,8.5685C3.7189,8.4491 3.9973,8.3035 4.3632,8.2427C4.4768,8.2235 4.5883,8.216 4.6853,8.2176C4.9195,8.2176 5.1227,8.2464 5.2448,8.2928L5.2459,8.6251" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.8661,8.8635C3.8635,8.8635 3.8613,8.8613 3.8597,8.8571C3.8395,8.8123 3.7365,8.5792 3.7349,8.5685C3.7296,8.5445 3.7376,8.5184 3.7563,8.4917C3.8293,8.3872 4.0725,8.2816 4.3611,8.2352C4.4624,8.2187 4.5696,8.2091 4.6693,8.2091L4.6853,8.2091C4.9099,8.2091 5.1195,8.2395 5.2475,8.2853C5.2496,8.2875 5.2512,8.2907 5.2512,8.2923L5.2533,8.6251C5.2533,8.6283 5.2512,8.6283 5.2501,8.6309C5.248,8.6315 5.2453,8.6315 5.2437,8.6315C5.12,8.5797 4.912,8.5451 4.688,8.5376C4.6043,8.5387 4.5136,8.5451 4.4256,8.5605C4.1696,8.6032 3.9531,8.6939 3.888,8.7856C3.8731,8.8075 3.8677,8.8283 3.8715,8.8448C3.8715,8.848 3.8725,8.8533 3.8725,8.8549C3.8731,8.8576 3.8725,8.8619 3.8693,8.864C3.8677,8.8635 3.8667,8.8635 3.8661,8.8635ZM4.6688,8.2229C4.5685,8.2229 4.4624,8.2325 4.3627,8.2491C4.0784,8.2949 3.8379,8.3957 3.7659,8.5003C3.7499,8.5232 3.7435,8.5451 3.7472,8.5659C3.7499,8.5765 3.8096,8.7157 3.8581,8.8203C3.8603,8.808 3.8667,8.7941 3.8773,8.7787C3.944,8.6827 4.1627,8.5909 4.4224,8.5472C4.5125,8.5328 4.6037,8.5253 4.688,8.5243C4.9083,8.5317 5.1131,8.5659 5.2389,8.616L5.2384,8.296C5.1109,8.2523 4.9051,8.2229 4.6853,8.2229L4.6688,8.2229Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1333,8.9637C3.9813,8.9531 3.8768,8.9104 3.8651,8.8459C3.8555,8.7947 3.9067,8.7408 3.9989,8.6907C4.0405,8.6939 4.0864,8.6997 4.1349,8.6997L4.1333,8.9637" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.1397,8.9696L4.1323,8.9696C3.9701,8.9573 3.8699,8.9141 3.8581,8.8475C3.848,8.7941 3.8976,8.7381 3.9957,8.6816L3.9973,8.6816L4.0128,8.6816C4.0501,8.688 4.0912,8.6928 4.1349,8.6928L4.1413,8.6928L4.1397,8.9696ZM4,8.6949C3.9083,8.7461 3.8624,8.8011 3.8709,8.8448C3.8811,8.9029 3.9765,8.944 4.1259,8.9563L4.1269,8.7061C4.0859,8.7056 4.0469,8.7019 4.0107,8.6955L4,8.6949Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6848,8.7573C4.7803,8.7696 4.8517,8.7947 4.888,8.824L4.8912,8.8299C4.9072,8.8656 4.824,8.9408 4.6848,9.0197L4.6848,8.7573" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.6779,9.0325L4.6789,8.7493L4.6859,8.7515C4.7819,8.7659 4.856,8.7909 4.8912,8.8192L4.8939,8.8203L4.8971,8.8288C4.9227,8.8816 4.7595,8.9851 4.688,9.0288L4.6779,9.0325ZM4.6912,8.7659L4.6912,9.0096C4.8507,8.9157 4.8955,8.8549 4.8848,8.8325L4.8816,8.8283C4.848,8.8032 4.7813,8.7781 4.6912,8.7659Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.7909,9.4821C3.7771,9.4405 3.9248,9.3531 4.1355,9.2747C4.2315,9.2405 4.3109,9.2043 4.4096,9.1611C4.7008,9.032 4.9163,8.8821 4.8907,8.8304L4.8875,8.8245C4.9029,8.8368 4.9269,9.1024 4.9269,9.1024C4.9531,9.1525 4.7557,9.2981 4.4869,9.4272C4.4005,9.4677 4.2192,9.5344 4.1339,9.5648C3.9803,9.6181 3.8277,9.7179 3.8416,9.7552L3.7909,9.4821" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.8427,9.7637C3.8405,9.7637 3.8379,9.7616 3.8368,9.7573C3.8357,9.7573 3.8352,9.7547 3.8352,9.7531L3.7851,9.4821C3.7669,9.4304 3.9477,9.3376 4.1339,9.2688C4.2213,9.2373 4.2949,9.2048 4.3813,9.1659L4.4064,9.1557C4.6597,9.0437 4.8597,8.9157 4.8848,8.8501C4.8869,8.8432 4.8869,8.8379 4.8848,8.8325L4.8816,8.8283C4.8805,8.8251 4.8816,8.8197 4.8837,8.8197C4.8853,8.8171 4.8896,8.8171 4.8912,8.8197C4.8933,8.8197 4.8944,8.8208 4.8955,8.8261L4.8971,8.8283C4.8976,8.8299 4.8987,8.8325 4.8997,8.8357C4.9131,8.8869 4.9285,9.0325 4.9344,9.1035C4.9381,9.1077 4.9381,9.1157 4.9349,9.1275C4.9131,9.1909 4.7259,9.32 4.4912,9.4325C4.4075,9.472 4.2288,9.5408 4.1365,9.5712C3.9877,9.6235 3.8485,9.7157 3.8475,9.7525L3.8485,9.7563C3.8496,9.7579 3.8469,9.7627 3.8432,9.7643C3.8443,9.7637 3.8437,9.7637 3.8427,9.7637ZM4.8923,8.8656C4.8539,8.9344 4.6603,9.0571 4.4128,9.1669L4.3867,9.1781C4.3003,9.2155 4.2256,9.2501 4.1381,9.2811C3.904,9.3669 3.7883,9.448 3.7979,9.4805C3.7979,9.4811 3.7979,9.4821 3.7979,9.4821L3.8443,9.728C3.8795,9.6779 4.016,9.6 4.1317,9.5584C4.2256,9.528 4.4032,9.4603 4.4853,9.4197C4.7141,9.3115 4.9019,9.1824 4.9227,9.1205C4.9237,9.1152 4.9237,9.1093 4.9221,9.1061C4.9216,9.1056 4.9211,9.1045 4.9211,9.1029C4.9131,9.0144 4.9008,8.9157 4.8923,8.8656Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.0965,8.4949C4.1632,8.4699 4.2069,8.4421 4.1856,8.3909C4.1728,8.3563 4.1381,8.3493 4.0853,8.3685L3.9941,8.4021L4.0763,8.6059C4.0853,8.6021 4.0944,8.5957 4.104,8.5941C4.1131,8.5909 4.1227,8.5888 4.1323,8.5835L4.0965,8.4949L4.0965,8.4949ZM4.0565,8.3957L4.0789,8.3893C4.0987,8.3808 4.1205,8.3904 4.1301,8.4155C4.1376,8.432 4.1349,8.4528 4.1125,8.4683C4.1061,8.4709 4.0971,8.4763 4.0896,8.4784L4.0565,8.3957M4.3109,8.3115C4.3013,8.3157 4.2912,8.3173 4.2816,8.3189C4.2725,8.32 4.2629,8.3211 4.2523,8.3232L4.3003,8.5344L4.4475,8.5061C4.4464,8.5029 4.4437,8.4955 4.4437,8.4933C4.4416,8.4896 4.4421,8.4821 4.4416,8.4784C4.416,8.4869 4.3877,8.4949 4.3536,8.5024L4.3109,8.3115M4.608,8.4949C4.6357,8.4181 4.6693,8.344 4.704,8.2688C4.6976,8.2699 4.6917,8.2699 4.6853,8.2699C4.6789,8.2699 4.6731,8.2699 4.6667,8.2699C4.6491,8.3259 4.6272,8.3797 4.6043,8.4325C4.576,8.3824 4.5445,8.3323 4.5221,8.2816C4.5104,8.2827 4.4981,8.2827 4.4869,8.2848C4.4757,8.2859 4.4635,8.2859 4.4512,8.2859C4.4949,8.3563 4.5355,8.4256 4.5749,8.4955C4.5797,8.4955 4.5856,8.4955 4.5915,8.4944C4.5973,8.4939 4.6027,8.4939 4.608,8.4949M4.9184,8.3312C4.9232,8.32 4.9291,8.3104 4.9349,8.3019C4.9259,8.2933 4.9013,8.2821 4.8725,8.2795C4.8133,8.2736 4.7787,8.3008 4.7739,8.3371C4.7653,8.4144 4.8853,8.4069 4.8811,8.4571C4.8789,8.4795 4.8549,8.4896 4.8304,8.4853C4.8032,8.4821 4.7824,8.4683 4.7787,8.4448L4.7717,8.4448C4.7675,8.4571 4.7621,8.4699 4.7557,8.4821C4.7728,8.4944 4.7968,8.5029 4.8187,8.5029C4.88,8.5093 4.9269,8.4843 4.9323,8.4448C4.9397,8.3707 4.8176,8.368 4.8229,8.3259C4.8251,8.3072 4.8384,8.2944 4.8699,8.2976C4.8923,8.3019 4.9072,8.3131 4.9131,8.3307L4.9184,8.3312" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.456,6.9989C9.456,6.9989 9.4315,7.0261 9.4133,7.0283C9.3947,7.0325 9.3723,7.0139 9.3723,7.0139C9.3723,7.0139 9.3557,7.0299 9.3355,7.0336C9.3157,7.0411 9.2885,7.0117 9.2885,7.0117C9.2885,7.0117 9.2688,7.0411 9.2512,7.0453C9.2347,7.0539 9.2139,7.0379 9.2139,7.0379C9.2139,7.0379 9.2059,7.0512 9.192,7.0576C9.1856,7.0608 9.1755,7.0565 9.1755,7.0565L9.1541,7.0443L9.1317,7.0192L9.1099,7.0107C9.1099,7.0107 9.1003,6.9797 9.1003,6.9755C9.0992,6.9691 9.0976,6.9563 9.0976,6.9563C9.0928,6.9328 9.1264,6.9077 9.1755,6.8965C9.2032,6.8912 9.2267,6.8912 9.2443,6.8955C9.2635,6.8816 9.3045,6.8693 9.3541,6.8693C9.3973,6.8693 9.4352,6.8789 9.456,6.8928C9.4763,6.8789 9.5147,6.8693 9.5584,6.8693C9.6069,6.8693 9.6475,6.8811 9.6667,6.8955C9.6848,6.8912 9.7083,6.8912 9.736,6.8965C9.7851,6.9077 9.8187,6.9328 9.8139,6.9563C9.8139,6.9563 9.8128,6.9691 9.8112,6.9755C9.8107,6.9803 9.8005,7.0107 9.8005,7.0107L9.7792,7.0192L9.7568,7.0443L9.7365,7.0565C9.7365,7.0565 9.7259,7.0608 9.72,7.0576C9.7067,7.0512 9.6976,7.0379 9.6976,7.0379C9.6976,7.0379 9.6768,7.0533 9.6597,7.0453C9.6427,7.0411 9.6235,7.0117 9.6235,7.0117C9.6235,7.0117 9.5963,7.0411 9.5755,7.0336C9.5563,7.0299 9.5397,7.0139 9.5397,7.0139C9.5397,7.0139 9.5168,7.0325 9.4987,7.0283C9.4805,7.0261 9.456,6.9989 9.456,6.9989" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7259,7.0645C9.7232,7.0645 9.7205,7.0635 9.7195,7.0624C9.7077,7.056 9.7008,7.048 9.6976,7.0437C9.6912,7.0448 9.6811,7.0533 9.6693,7.0533C9.6667,7.0533 9.6624,7.0523 9.6587,7.0501C9.6443,7.0437 9.6288,7.0283 9.6229,7.0187C9.616,7.0261 9.5979,7.0405 9.5813,7.0405C9.5792,7.0405 9.5771,7.0405 9.576,7.0395C9.5595,7.0341 9.5451,7.024 9.5397,7.0187C9.5323,7.0245 9.5136,7.0363 9.4981,7.032C9.4821,7.0304 9.4635,7.0133 9.4565,7.0053C9.448,7.0133 9.4293,7.0304 9.4133,7.032C9.3979,7.0363 9.3792,7.024 9.3728,7.0187C9.3664,7.024 9.3525,7.0341 9.336,7.0395C9.3355,7.0405 9.3317,7.0405 9.3301,7.0405C9.3136,7.0405 9.2955,7.0261 9.288,7.0187C9.2816,7.0283 9.2661,7.0437 9.2528,7.0501C9.2491,7.0523 9.2448,7.0533 9.2416,7.0533C9.2304,7.0533 9.2192,7.0448 9.2139,7.0437C9.2101,7.048 9.2037,7.056 9.1931,7.0624C9.1851,7.0656 9.1733,7.0603 9.1728,7.0592L9.1504,7.0448L9.1285,7.0219L9.1061,7.0155L9.1061,7.0123C9.1045,7.0069 9.096,6.9808 9.0944,6.976C9.0939,6.9696 9.0917,6.9563 9.0917,6.9563C9.0875,6.9312 9.1221,6.9029 9.1733,6.8933C9.2,6.8864 9.2245,6.8864 9.2437,6.8907C9.2651,6.8752 9.3061,6.8656 9.3536,6.8656C9.3941,6.8656 9.432,6.872 9.4555,6.8869C9.4784,6.872 9.5157,6.8656 9.5579,6.8656C9.6032,6.8656 9.6453,6.8752 9.6667,6.8907C9.6859,6.8864 9.7104,6.8864 9.7371,6.8933C9.7877,6.9035 9.8224,6.9312 9.8187,6.9563L9.816,6.976C9.8144,6.9813 9.8064,7.0075 9.8043,7.0123L9.8037,7.0155L9.7813,7.0219L9.7589,7.0459L9.7381,7.0581C9.7381,7.0592 9.7323,7.0645 9.7259,7.0645ZM9.7008,7.0309L9.7024,7.0336C9.7024,7.0347 9.7104,7.0459 9.7227,7.0533C9.7227,7.0533 9.7237,7.0549 9.7253,7.0549C9.7285,7.0549 9.7333,7.0533 9.7349,7.0533L9.7536,7.0411L9.7776,7.016L9.7973,7.0075C9.8,6.9968 9.8059,6.9781 9.8064,6.9739L9.8096,6.9547C9.8123,6.9344 9.7792,6.9115 9.7344,6.9029C9.7093,6.8944 9.6843,6.8944 9.6667,6.9019L9.6651,6.9029L9.6624,6.9008C9.6437,6.8821 9.6032,6.8725 9.5579,6.8725C9.5157,6.8725 9.4784,6.8821 9.4576,6.8944L9.4555,6.8965L9.4533,6.8944C9.4309,6.8821 9.3936,6.8725 9.3531,6.8725C9.3072,6.8725 9.2656,6.8821 9.2469,6.9008L9.2453,6.9029L9.2432,6.9019C9.2251,6.8944 9.2005,6.8944 9.1749,6.9029C9.1312,6.9115 9.0971,6.9344 9.1003,6.9547C9.1003,6.9547 9.1029,6.9685 9.1029,6.9739C9.104,6.9781 9.1099,6.9968 9.1131,7.0075L9.1344,7.016L9.1563,7.0411L9.1765,7.0533C9.1781,7.0533 9.1851,7.056 9.1877,7.0533C9.2005,7.0459 9.2085,7.0347 9.2085,7.0336L9.2107,7.0309L9.2149,7.0325C9.2155,7.0325 9.2283,7.0427 9.2405,7.0427C9.2432,7.0427 9.2469,7.0427 9.2485,7.0411C9.264,7.0347 9.2821,7.0085 9.2827,7.0075L9.2853,7.0048L9.2896,7.0075C9.2901,7.0075 9.312,7.0309 9.3291,7.0309C9.3307,7.0309 9.3312,7.0309 9.3333,7.0299C9.3515,7.0261 9.3669,7.0085 9.3675,7.0085L9.3701,7.0064L9.3733,7.0075C9.3739,7.0085 9.3947,7.0283 9.4101,7.0251C9.424,7.0197 9.4437,7.0032 9.4507,6.9947L9.4523,6.9947L9.4555,6.9947L9.4576,6.9947C9.4581,6.9947 9.4805,7.0197 9.4981,7.0251C9.5147,7.0283 9.5349,7.0085 9.5349,7.0075L9.5381,7.0064L9.5408,7.0085C9.5408,7.0085 9.5563,7.0261 9.5744,7.0299C9.5765,7.0309 9.5765,7.0309 9.5787,7.0309C9.5952,7.0309 9.6176,7.0075 9.6181,7.0075L9.6224,7.0048L9.6256,7.0075C9.6256,7.0085 9.6437,7.0347 9.6597,7.0411C9.6613,7.0427 9.664,7.0427 9.6672,7.0427C9.68,7.0427 9.6933,7.0325 9.6939,7.0325L9.7008,7.0309Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4085,6.856C9.4085,6.8197 9.4293,6.7904 9.4544,6.7904C9.4805,6.7904 9.5008,6.8197 9.5008,6.856C9.5008,6.8928 9.4805,6.9216 9.4544,6.9216C9.4293,6.9221 9.4085,6.8933 9.4085,6.856" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4549,6.928C9.4267,6.928 9.4043,6.8944 9.4043,6.856C9.4043,6.8171 9.4267,6.784 9.4549,6.784C9.4832,6.784 9.5067,6.8171 9.5067,6.856C9.5067,6.8949 9.4832,6.928 9.4549,6.928ZM9.4549,6.7936C9.4325,6.7936 9.4133,6.8208 9.4133,6.856C9.4133,6.8901 9.432,6.9184 9.4549,6.9184C9.4795,6.9184 9.4981,6.8901 9.4981,6.856C9.4981,6.8208 9.4789,6.7936 9.4549,6.7936Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4352,6.856C9.4352,6.8219 9.4443,6.7947 9.456,6.7947C9.4672,6.7947 9.4773,6.8219 9.4773,6.856C9.4773,6.8901 9.4677,6.9168 9.456,6.9168C9.4443,6.9173 9.4352,6.8907 9.4352,6.856" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.456,6.92C9.4384,6.92 9.4299,6.8885 9.4299,6.8565C9.4299,6.8251 9.4389,6.7909 9.456,6.7909C9.4725,6.7909 9.4816,6.8235 9.4816,6.8565C9.4816,6.8896 9.4731,6.92 9.456,6.92ZM9.456,6.8C9.4485,6.8 9.4379,6.8197 9.4379,6.856C9.4379,6.8901 9.4485,6.9131 9.456,6.9131C9.4629,6.9131 9.4725,6.8901 9.4725,6.856C9.4731,6.8197 9.4635,6.8 9.456,6.8Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.216,7.128C9.2091,7.1072 9.1957,7.0923 9.1957,7.0923C9.2619,7.072 9.3541,7.0592 9.4555,7.0592C9.5568,7.0592 9.6501,7.0715 9.7168,7.0923C9.7168,7.0923 9.7083,7.1045 9.6981,7.1221C9.6923,7.1328 9.6859,7.1515 9.6859,7.1515C9.6261,7.1328 9.5499,7.1221 9.4555,7.1221C9.3611,7.1221 9.2704,7.1328 9.2235,7.1536C9.2235,7.1531 9.2197,7.1408 9.216,7.128L9.216,7.128" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.2229,7.1563L9.2229,7.1531L9.2229,7.1531L9.2197,7.1531C9.2192,7.1509 9.2171,7.1429 9.2107,7.1307L9.2091,7.1237L9.2096,7.1237C9.2027,7.1072 9.1925,7.0944 9.192,7.0944L9.1883,7.0901L9.1947,7.088C9.2635,7.0667 9.3573,7.0555 9.4555,7.0555C9.5547,7.0555 9.648,7.0667 9.7168,7.088L9.7232,7.0901L9.7019,7.1253C9.6976,7.1317 9.6907,7.1483 9.6901,7.1515L9.6864,7.1504L9.6848,7.1541C9.6256,7.136 9.5483,7.1275 9.4555,7.1275C9.3637,7.1275 9.2736,7.1387 9.2261,7.1552L9.2256,7.1557L9.2229,7.1557L9.2229,7.1563ZM9.2219,7.1323C9.2235,7.1397 9.2256,7.1435 9.2256,7.1445C9.2757,7.128 9.3637,7.1184 9.4549,7.1184C9.5467,7.1184 9.6229,7.128 9.6821,7.1445C9.6843,7.1403 9.6885,7.1323 9.6944,7.1195L9.7093,7.0944C9.6416,7.0757 9.5504,7.0651 9.4549,7.0651C9.36,7.0651 9.2704,7.0757 9.2027,7.0944C9.2064,7.1019 9.2144,7.1141 9.2187,7.128L9.2219,7.1323L9.2219,7.1323Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4555,7.2123C9.5381,7.2123 9.6293,7.2 9.6624,7.1904C9.6848,7.1829 9.6981,7.1749 9.6949,7.1632C9.6949,7.1568 9.6885,7.1525 9.6827,7.1499C9.6336,7.1323 9.5451,7.1216 9.456,7.1216C9.3669,7.1216 9.2784,7.1323 9.2299,7.1499C9.2229,7.1531 9.2176,7.1573 9.2176,7.1632C9.2144,7.1744 9.2272,7.1829 9.2496,7.1904C9.2821,7.2 9.3728,7.2123 9.4555,7.2123" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4555,7.2155L9.4555,7.2155C9.3728,7.2155 9.2821,7.2032 9.248,7.1947C9.2128,7.184 9.2107,7.1696 9.2117,7.1621C9.2133,7.1552 9.2192,7.1488 9.2261,7.1445C9.2795,7.128 9.3685,7.1184 9.456,7.1184C9.5435,7.1184 9.6325,7.128 9.6843,7.1445C9.6923,7.1488 9.6981,7.1557 9.6997,7.1621C9.7013,7.1696 9.6987,7.184 9.664,7.1947C9.6293,7.2032 9.5376,7.2155 9.4555,7.2155ZM9.4555,7.128C9.3696,7.128 9.28,7.1387 9.2293,7.1531C9.2251,7.1563 9.2208,7.1584 9.2197,7.1643C9.2192,7.1707 9.2293,7.1808 9.2512,7.1867C9.2848,7.1947 9.3744,7.2069 9.456,7.2069C9.5371,7.2069 9.6272,7.1947 9.6608,7.1867C9.6827,7.1808 9.6923,7.1707 9.6912,7.1643C9.6901,7.1579 9.6859,7.1557 9.6811,7.1531C9.6309,7.1387 9.5419,7.128 9.4555,7.128Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6549,6.8853C9.6549,6.8779 9.6624,6.8699 9.6699,6.8699C9.6795,6.8699 9.6853,6.8784 9.6853,6.8853C9.6853,6.8939 9.6789,6.9008 9.6699,6.9008C9.6624,6.9008 9.6549,6.8939 9.6549,6.8853" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8069,6.9893C9.8059,6.9893 9.8048,6.9893 9.8043,6.9893C9.8027,6.9872 9.8011,6.9829 9.8021,6.9819C9.8069,6.9696 9.8096,6.9579 9.8096,6.9467C9.8096,6.8944 9.7685,6.8544 9.7184,6.8544C9.7029,6.8544 9.688,6.8571 9.6736,6.8656C9.6725,6.8683 9.6699,6.8672 9.6677,6.8656C9.6667,6.8635 9.6672,6.8592 9.6693,6.8571C9.6843,6.8507 9.7008,6.8448 9.7179,6.8448C9.7728,6.8448 9.8181,6.8907 9.8181,6.9467C9.8181,6.96 9.816,6.9728 9.8101,6.9851C9.8107,6.9888 9.8075,6.9893 9.8069,6.9893ZM9.64,6.9184L9.632,6.9147C9.6373,6.9045 9.6405,6.8949 9.6405,6.8864C9.6405,6.8501 9.6021,6.8197 9.5552,6.8197C9.5355,6.8197 9.5168,6.8261 9.5019,6.8341L9.4981,6.8277C9.5136,6.8165 9.5344,6.8112 9.5552,6.8112C9.6075,6.8112 9.6491,6.8448 9.6491,6.8864C9.6485,6.8949 9.6453,6.9072 9.64,6.9184Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7195,7.0555L9.6997,7.0373C9.6997,7.0373 9.6805,7.0485 9.6565,7.0448C9.632,7.0405 9.6251,7.0133 9.6251,7.0133C9.6251,7.0133 9.5973,7.0341 9.5749,7.032C9.5531,7.0309 9.5397,7.0133 9.5397,7.0133C9.5397,7.0133 9.5163,7.0293 9.4939,7.0277C9.4731,7.0267 9.4533,6.9995 9.4533,6.9995C9.4533,6.9995 9.4315,7.0277 9.4112,7.0277C9.3909,7.0309 9.3728,7.0101 9.3728,7.0101C9.3728,7.0101 9.3627,7.0309 9.3371,7.0341C9.3099,7.0405 9.2875,7.0155 9.2875,7.0155C9.2875,7.0155 9.272,7.0405 9.2533,7.0448C9.2347,7.0533 9.2117,7.0352 9.2117,7.0352C9.2117,7.0352 9.2075,7.0448 9.2048,7.0507C9.2021,7.056 9.1936,7.0571 9.1936,7.0571L9.2,7.0725C9.2661,7.0528 9.3547,7.0416 9.4555,7.0416C9.5563,7.0416 9.6475,7.0528 9.7125,7.0725L9.7195,7.0555" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7168,7.0779L9.712,7.0779C9.6448,7.0571 9.5541,7.0453 9.456,7.0443C9.3605,7.0453 9.2693,7.0565 9.2021,7.0779L9.1979,7.0779L9.1883,7.0528L9.1947,7.0528C9.1957,7.0528 9.2011,7.0517 9.2016,7.0475C9.2043,7.0432 9.2085,7.0331 9.2085,7.0331L9.2107,7.0293L9.2149,7.032C9.2149,7.032 9.2304,7.0421 9.2448,7.0421C9.248,7.0421 9.2512,7.0421 9.2533,7.0405C9.2699,7.0341 9.2843,7.0123 9.2843,7.0123L9.2869,7.0069L9.2917,7.0112C9.2917,7.0112 9.3136,7.0331 9.3365,7.0309C9.3605,7.0277 9.3696,7.0069 9.3696,7.0069L9.3728,7.0027L9.3765,7.0069C9.3765,7.0069 9.3925,7.0267 9.4112,7.0245C9.4304,7.0213 9.4507,6.9963 9.4507,6.9952L9.4539,6.9925L9.4565,6.9952C9.4565,6.9963 9.4757,7.0203 9.4944,7.0235C9.496,7.0235 9.4971,7.0235 9.4971,7.0235C9.5157,7.0235 9.5371,7.0069 9.5376,7.0069L9.5408,7.0059L9.5429,7.0091C9.5435,7.0091 9.5557,7.0277 9.5755,7.0277C9.576,7.0277 9.5771,7.0277 9.5781,7.0277C9.5968,7.0277 9.6219,7.008 9.6219,7.008L9.6267,7.0043L9.6277,7.0112C9.6277,7.0117 9.6352,7.0384 9.6555,7.0405C9.6779,7.0437 9.6965,7.032 9.6965,7.032L9.6992,7.0309L9.72,7.0517L9.7243,7.0517L9.7168,7.0779ZM9.456,7.0384C9.552,7.0384 9.6421,7.0491 9.7104,7.0683L9.7147,7.0565L9.6992,7.0427C9.6944,7.0453 9.6821,7.0517 9.6667,7.0517C9.6635,7.0517 9.6597,7.0517 9.656,7.0507C9.6363,7.0453 9.6261,7.0304 9.6224,7.0203C9.6128,7.0288 9.5941,7.0411 9.5755,7.0389C9.5573,7.0368 9.544,7.0251 9.5387,7.0192C9.5317,7.0235 9.5125,7.0325 9.4944,7.0325C9.4768,7.0315 9.4603,7.016 9.4539,7.0075C9.4469,7.016 9.4293,7.0315 9.4123,7.0325C9.4107,7.0325 9.4101,7.0325 9.4091,7.0325C9.3941,7.0325 9.3803,7.0229 9.3744,7.0187C9.3691,7.0256 9.3579,7.0357 9.3381,7.0411C9.3163,7.0437 9.2965,7.0288 9.288,7.0203C9.2821,7.0288 9.2699,7.0443 9.2555,7.0501C9.2523,7.0517 9.248,7.0528 9.2443,7.0528C9.232,7.0528 9.2203,7.0453 9.2139,7.0427C9.2133,7.0453 9.2107,7.0507 9.2096,7.0539C9.2069,7.0571 9.2043,7.0581 9.2005,7.0603L9.2037,7.0693C9.2731,7.0491 9.3611,7.0384 9.456,7.0384Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.2229,6.8853C9.2229,6.8779 9.2299,6.8699 9.2384,6.8699C9.248,6.8699 9.2544,6.8784 9.2544,6.8853C9.2544,6.8939 9.248,6.9008 9.2384,6.9008C9.2299,6.9008 9.2229,6.8939 9.2229,6.8853" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1029,6.9893C9.1008,6.9893 9.0997,6.9883 9.0981,6.9851C9.0939,6.9728 9.0917,6.9589 9.0917,6.9467C9.0917,6.8907 9.1355,6.8448 9.192,6.8448C9.2075,6.8448 9.2256,6.8512 9.24,6.8571C9.2421,6.8592 9.2427,6.8635 9.2421,6.8656C9.2411,6.8672 9.2384,6.8683 9.2357,6.8656C9.2224,6.8571 9.2075,6.8544 9.192,6.8544C9.1413,6.8544 9.1003,6.8944 9.1003,6.9467C9.1003,6.9579 9.1024,6.9696 9.1072,6.9819C9.1072,6.984 9.1072,6.9872 9.1045,6.9893C9.104,6.9893 9.104,6.9893 9.1029,6.9893ZM9.2699,6.9173C9.2651,6.9072 9.2603,6.896 9.2603,6.8864C9.2603,6.8448 9.3019,6.8112 9.3541,6.8112C9.3755,6.8112 9.3947,6.8171 9.4117,6.8277L9.4069,6.8341C9.3915,6.8256 9.3728,6.8197 9.3541,6.8197C9.3072,6.8197 9.2693,6.8501 9.2693,6.8864C9.2693,6.8949 9.2725,6.9029 9.2784,6.9125L9.2699,6.9173Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4565,6.968L9.4661,6.9696C9.464,6.9728 9.4635,6.9781 9.4635,6.9819C9.4635,7.0027 9.4811,7.0176 9.5008,7.0176C9.5184,7.0176 9.5323,7.0064 9.5376,6.9925C9.5381,6.9931 9.5413,6.9792 9.5419,6.9803C9.544,6.9803 9.5435,6.9931 9.544,6.9931C9.5461,7.0107 9.5627,7.0235 9.5813,7.0235C9.6016,7.0235 9.6187,7.0069 9.6187,6.9893C9.6187,6.9867 9.6187,6.984 9.6187,6.9819L9.6299,6.9707L9.6363,6.9872C9.6341,6.9904 9.6325,6.9957 9.6325,7.0027C9.6325,7.0192 9.6491,7.0363 9.6688,7.0363C9.6811,7.0363 9.6923,7.0304 9.6987,7.0192L9.7067,7.0117L9.7067,7.0229C9.7067,7.0341 9.7115,7.0437 9.7227,7.0469C9.7227,7.0469 9.736,7.048 9.7541,7.0336C9.7723,7.0192 9.7819,7.0075 9.7819,7.0075L9.7819,7.0229C9.7819,7.0229 9.7653,7.0523 9.7493,7.0603C9.7413,7.0645 9.7275,7.0688 9.7168,7.0688C9.7067,7.0672 9.6981,7.0576 9.6944,7.048C9.6864,7.0523 9.6773,7.0555 9.6672,7.0555C9.6464,7.0555 9.6267,7.0443 9.6192,7.0272C9.6101,7.0379 9.5963,7.0427 9.5797,7.0427C9.5632,7.0427 9.5477,7.0352 9.5381,7.024C9.5291,7.0315 9.5152,7.0395 9.5008,7.0395C9.4821,7.0395 9.4656,7.0283 9.456,7.0144C9.4464,7.0283 9.4293,7.0395 9.4107,7.0395C9.3968,7.0395 9.3835,7.0309 9.3733,7.024C9.3632,7.0352 9.3483,7.0427 9.3323,7.0427C9.3157,7.0427 9.3013,7.0373 9.2917,7.0272C9.2848,7.0437 9.2656,7.0555 9.2448,7.0555C9.2347,7.0555 9.2261,7.0523 9.2171,7.048C9.2139,7.0576 9.2053,7.0672 9.1947,7.0688C9.184,7.0688 9.1707,7.0645 9.1627,7.0603C9.1467,7.0517 9.1285,7.0229 9.1285,7.0229L9.1301,7.0075C9.1301,7.0075 9.1403,7.0187 9.1573,7.0336C9.176,7.048 9.1888,7.0469 9.1888,7.0469C9.2005,7.0437 9.2048,7.0347 9.2048,7.0229L9.2048,7.0117L9.2133,7.0192C9.2203,7.0304 9.2299,7.0363 9.2421,7.0363C9.2629,7.0363 9.2795,7.0192 9.2795,7.0027C9.2795,6.9952 9.2773,6.9904 9.2752,6.9872L9.2816,6.9707L9.2928,6.9819C9.2923,6.984 9.2923,6.9867 9.2923,6.9893C9.2923,7.0069 9.3099,7.0235 9.3296,7.0235C9.3483,7.0235 9.3648,7.0112 9.3669,6.9931C9.368,6.9931 9.3675,6.9803 9.3696,6.9803C9.3707,6.9792 9.3733,6.9931 9.3744,6.9925C9.3792,7.0064 9.3941,7.0176 9.4107,7.0176C9.4315,7.0176 9.448,7.0027 9.448,6.9819C9.448,6.9776 9.448,6.9723 9.4464,6.9696L9.4565,6.968" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7221,7.0752C9.7195,7.0752 9.7189,7.0752 9.7168,7.0741C9.7072,7.072 9.6981,7.0656 9.6928,7.056C9.6859,7.0576 9.6763,7.0608 9.6677,7.0608C9.648,7.0608 9.6288,7.0512 9.6192,7.0336C9.608,7.0443 9.5952,7.0491 9.5803,7.0491C9.5637,7.0491 9.5483,7.0421 9.5387,7.0315C9.5275,7.0411 9.5147,7.0437 9.5013,7.0437C9.4837,7.0437 9.4672,7.0352 9.4565,7.0229C9.4453,7.0352 9.4299,7.0437 9.4112,7.0437C9.3989,7.0437 9.3856,7.0405 9.3749,7.0315C9.3643,7.0427 9.3488,7.0491 9.3328,7.0491C9.3173,7.0491 9.3051,7.0437 9.2939,7.0336C9.2837,7.0512 9.2651,7.0608 9.2453,7.0608C9.2363,7.0608 9.2272,7.0576 9.2203,7.056C9.2139,7.0661 9.2053,7.072 9.1952,7.0741C9.1941,7.0752 9.1925,7.0752 9.1904,7.0752C9.1781,7.0752 9.1653,7.0683 9.1611,7.0656C9.1445,7.056 9.1259,7.0283 9.1248,7.0283L9.1237,7.0251L9.1285,7L9.1344,7.0075C9.1344,7.0075 9.144,7.0187 9.1611,7.0315C9.1755,7.0432 9.1861,7.0437 9.1888,7.0437C9.1995,7.0421 9.2011,7.0283 9.2011,7.024L9.2011,6.9989L9.2171,7.0187C9.2224,7.0283 9.2325,7.032 9.2421,7.032C9.2608,7.032 9.2741,7.0187 9.2741,7.0027C9.2741,6.9952 9.2736,6.9925 9.2709,6.9904L9.2699,6.9872L9.2795,6.9653L9.2981,6.9819L9.2981,6.9829C9.2976,6.9851 9.2981,6.9872 9.2981,6.9893C9.2981,7.0053 9.312,7.0197 9.3301,7.0197C9.3483,7.0197 9.3611,7.0075 9.3637,6.9936L9.3637,6.9904L9.3637,6.9904C9.3637,6.9803 9.3637,6.9771 9.3701,6.9771L9.3701,6.9771C9.3733,6.9771 9.3755,6.9797 9.3771,6.9867L9.3797,6.9909C9.3829,7.0048 9.3957,7.0149 9.4112,7.0149C9.4299,7.0149 9.4448,6.9995 9.4448,6.9824C9.4448,6.9781 9.4443,6.9739 9.4427,6.9701L9.44,6.9659L9.4571,6.9648L9.472,6.9659L9.4699,6.9701C9.4693,6.9749 9.4688,6.9787 9.4688,6.9824C9.4688,6.9989 9.4832,7.0149 9.5013,7.0149C9.5173,7.0149 9.5296,7.0048 9.5333,6.9909L9.536,6.9867L9.536,6.9867C9.5376,6.9797 9.5387,6.9771 9.5424,6.9771C9.5483,6.9771 9.5483,6.9813 9.5483,6.9904L9.5483,6.992L9.5483,6.9936C9.5509,7.0069 9.5643,7.0197 9.5824,7.0197C9.6005,7.0197 9.6149,7.0059 9.6149,6.9893C9.6149,6.9872 9.6149,6.9851 9.6144,6.9829L9.6139,6.9819L9.6325,6.9653L9.6421,6.9872L9.6421,6.9904C9.6389,6.9931 9.6389,6.9957 9.6389,7.0027C9.6389,7.0181 9.6523,7.032 9.6704,7.032C9.6805,7.032 9.6907,7.0277 9.696,7.0187L9.712,6.9989L9.7115,7.024C9.7115,7.0283 9.7131,7.0405 9.7248,7.0437C9.7264,7.0437 9.7381,7.0432 9.7515,7.0315C9.7696,7.0192 9.7792,7.0075 9.7792,7.0075L9.7861,6.9979L9.7877,7.0261L9.7867,7.0272C9.7867,7.0283 9.7691,7.0565 9.7525,7.0656C9.7472,7.0683 9.7344,7.0752 9.7221,7.0752ZM9.6971,7.0432L9.6981,7.0469C9.7003,7.0533 9.7067,7.0645 9.7179,7.0656C9.7189,7.0656 9.72,7.0656 9.7216,7.0656C9.7285,7.0656 9.7376,7.0635 9.7472,7.0571C9.7595,7.0507 9.7739,7.0277 9.7776,7.0219L9.7776,7.0197C9.7723,7.0251 9.7664,7.0309 9.7563,7.0395C9.7403,7.0528 9.7269,7.0528 9.7227,7.0528L9.7227,7.0528C9.7104,7.0507 9.7024,7.0405 9.7019,7.0245C9.6939,7.0341 9.6816,7.04 9.6688,7.04C9.6469,7.04 9.6283,7.0235 9.6283,7.0027C9.6283,6.9941 9.6288,6.9904 9.6309,6.9872L9.6283,6.9792L9.6219,6.9851C9.6219,6.9861 9.6219,6.9872 9.6219,6.9893C9.6219,7.0091 9.6032,7.0277 9.5808,7.0277C9.5595,7.0277 9.5435,7.0155 9.5392,6.9963C9.5328,7.0117 9.5179,7.0203 9.4997,7.0203C9.4779,7.0203 9.4587,7.0027 9.4587,6.9819C9.4587,6.9776 9.4592,6.9765 9.4592,6.9712L9.456,6.9707L9.4507,6.9717C9.4512,6.9771 9.4517,6.9781 9.4517,6.9824C9.4517,7.0032 9.4325,7.0208 9.4101,7.0208C9.3925,7.0208 9.3776,7.0123 9.3712,6.9968C9.3669,7.0155 9.3504,7.0283 9.3296,7.0283C9.3072,7.0283 9.288,7.0096 9.288,6.9899C9.288,6.9877 9.288,6.9867 9.288,6.9856L9.2816,6.9797L9.2789,6.9877C9.2816,6.9909 9.2816,6.9952 9.2816,7.0032C9.2816,7.024 9.264,7.0405 9.2411,7.0405C9.2288,7.0405 9.216,7.0341 9.2091,7.0251C9.2085,7.0405 9.2,7.0512 9.1877,7.0533L9.1877,7.0533C9.184,7.0533 9.1707,7.0533 9.1536,7.04C9.144,7.0315 9.1376,7.0245 9.1317,7.0203L9.1312,7.0224C9.1355,7.0288 9.1504,7.0517 9.1632,7.0576C9.1744,7.0651 9.1845,7.0677 9.1931,7.0661C9.2043,7.0651 9.2096,7.0539 9.2123,7.0475L9.2139,7.0437L9.2187,7.0453C9.2256,7.0507 9.2347,7.0539 9.2437,7.0539C9.2624,7.0539 9.2805,7.0416 9.2875,7.0267L9.2901,7.0203L9.2939,7.0251C9.3035,7.0341 9.3163,7.0411 9.3312,7.0411C9.3456,7.0411 9.36,7.0325 9.3685,7.0213L9.3717,7.0192L9.3749,7.0203C9.3845,7.0304 9.3968,7.0336 9.4091,7.0336C9.4261,7.0336 9.4416,7.0283 9.4507,7.0149L9.4544,7.0075L9.4581,7.0149C9.4672,7.0283 9.4832,7.0336 9.4992,7.0336C9.5115,7.0336 9.5243,7.0299 9.5339,7.0203L9.5365,7.0192L9.5397,7.0213C9.5488,7.0325 9.5632,7.0411 9.5781,7.0411C9.5925,7.0411 9.6053,7.0336 9.6149,7.0251L9.6192,7.0203L9.6213,7.0267C9.6288,7.0411 9.6459,7.0539 9.6656,7.0539C9.6741,7.0539 9.6837,7.0507 9.6901,7.0453L9.6971,7.0432Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4555,7.0592C9.3541,7.0592 9.2624,7.0715 9.1963,7.0923C9.192,7.0939 9.1861,7.0907 9.1856,7.0864C9.1835,7.0821 9.1867,7.0779 9.192,7.0757C9.2576,7.0555 9.3509,7.0421 9.456,7.0421C9.5611,7.0421 9.6549,7.0555 9.7205,7.0757C9.7259,7.0779 9.7291,7.0821 9.7264,7.0864C9.7264,7.0907 9.72,7.0939 9.7157,7.0923C9.6496,7.072 9.5568,7.0592 9.4555,7.0592" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7173,7.096C9.7168,7.096 9.7157,7.0949 9.7136,7.0949C9.6459,7.0773 9.5547,7.0656 9.456,7.0656C9.3573,7.0656 9.2672,7.0768 9.1984,7.0949C9.192,7.0981 9.1835,7.0939 9.1813,7.0885C9.1797,7.0811 9.1824,7.0731 9.1899,7.0699C9.2608,7.0501 9.3547,7.0384 9.456,7.0384C9.5568,7.0384 9.6539,7.0507 9.7227,7.0699C9.7259,7.0709 9.7285,7.0752 9.7296,7.0784C9.7323,7.0816 9.7323,7.0837 9.7312,7.0891C9.7291,7.0933 9.7227,7.096 9.7173,7.096ZM9.4555,7.056C9.5541,7.056 9.648,7.0672 9.7168,7.0885L9.7173,7.0885C9.7195,7.0885 9.7232,7.0864 9.7232,7.0832C9.7232,7.0821 9.7232,7.0821 9.7227,7.0821C9.7221,7.0811 9.72,7.0795 9.72,7.0795C9.6512,7.0571 9.5552,7.0459 9.456,7.0448C9.3552,7.0459 9.2613,7.0571 9.192,7.0795C9.1909,7.0805 9.1888,7.0821 9.1888,7.0832C9.1893,7.0864 9.192,7.0885 9.1947,7.0885C9.264,7.0672 9.3568,7.056 9.4555,7.056Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.3568,7.0949C9.3568,7.0907 9.3632,7.0827 9.3717,7.0827C9.3792,7.0827 9.3856,7.0912 9.3856,7.0949C9.3856,7.1051 9.3787,7.1093 9.3717,7.1093C9.3632,7.1093 9.3568,7.1045 9.3568,7.0949" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4571,7.1029L9.424,7.1029C9.4176,7.1029 9.4133,7.0965 9.4133,7.0917C9.4133,7.0859 9.4176,7.0805 9.424,7.0805L9.4907,7.0805C9.4965,7.0805 9.5013,7.0859 9.5013,7.0917C9.5013,7.0965 9.4965,7.1029 9.4907,7.1029L9.4571,7.1029" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4901,7.1072L9.424,7.1072C9.4155,7.1072 9.4085,7.1008 9.4085,7.0923C9.4085,7.0821 9.416,7.0784 9.424,7.0784L9.4907,7.0784C9.4987,7.0784 9.5056,7.0827 9.5056,7.0923C9.5056,7.1008 9.4981,7.1072 9.4901,7.1072ZM9.4235,7.0853C9.4192,7.0853 9.4165,7.0896 9.4165,7.0923C9.4165,7.0949 9.4197,7.0981 9.424,7.0981L9.4907,7.0981C9.4944,7.0981 9.4976,7.0949 9.4976,7.0923C9.4976,7.0896 9.4949,7.0853 9.4907,7.0853L9.4235,7.0853Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.2923,7.1157L9.2699,7.1173C9.2635,7.1184 9.2576,7.1157 9.2576,7.1072C9.256,7.1029 9.2603,7.0965 9.2667,7.096L9.2891,7.0939L9.3141,7.0907C9.3205,7.0907 9.3259,7.0923 9.3264,7.0981C9.3264,7.1035 9.3237,7.1077 9.3173,7.1093L9.2923,7.1157" + android:strokeWidth="1" + android:fillColor="#058E6E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.2667,7.1211C9.2603,7.1211 9.2539,7.1157 9.2517,7.1077C9.2507,7.1061 9.2523,7.1035 9.2539,7.0981C9.2565,7.0949 9.2603,7.0933 9.2645,7.0923L9.3125,7.0843C9.3131,7.0843 9.3131,7.0843 9.3141,7.0843C9.3227,7.0843 9.3291,7.0907 9.3296,7.0965C9.3307,7.1029 9.3291,7.1056 9.3275,7.1072C9.3253,7.1115 9.3211,7.1157 9.3168,7.1157L9.2693,7.12C9.2693,7.12 9.2683,7.1211 9.2667,7.1211ZM9.3141,7.0939L9.2667,7.1024C9.264,7.1035 9.2635,7.1035 9.2619,7.1035C9.2608,7.1051 9.2608,7.1067 9.2608,7.1077C9.2613,7.1109 9.2651,7.1152 9.2688,7.1141L9.3168,7.1067C9.3173,7.1061 9.3195,7.1051 9.3195,7.1035C9.3211,7.1035 9.3216,7.1013 9.3216,7.0992C9.3205,7.0949 9.3179,7.0939 9.3141,7.0939Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1979,7.1307l0.0101,-0.016l0.0224,0.0037l-0.0133,0.0181l-0.0192,-0.0059" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.5253,7.0949C9.5253,7.0907 9.5323,7.0827 9.5397,7.0827C9.5483,7.0827 9.5541,7.0912 9.5541,7.0949C9.5541,7.1051 9.5477,7.1093 9.5397,7.1093C9.5323,7.1093 9.5253,7.1045 9.5253,7.0949" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6197,7.1157L9.6421,7.1173C9.648,7.1184 9.6539,7.1157 9.6544,7.1072C9.6555,7.1029 9.6512,7.0965 9.6453,7.096L9.6224,7.0939L9.5973,7.0907C9.5909,7.0907 9.5861,7.0923 9.5851,7.0981C9.5851,7.1035 9.5883,7.1077 9.5941,7.1093L9.6197,7.1157" + android:strokeWidth="1" + android:fillColor="#058E6E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6443,7.1211C9.6432,7.1211 9.6421,7.12 9.6416,7.12L9.5947,7.1157C9.5904,7.1157 9.5861,7.1115 9.584,7.1072C9.5819,7.1045 9.5808,7.1019 9.5819,7.0965C9.5819,7.0901 9.5904,7.0821 9.5984,7.0843L9.6469,7.0923C9.6507,7.0933 9.6539,7.0949 9.6571,7.0981C9.6592,7.1035 9.6603,7.1061 9.6597,7.1077C9.6576,7.1157 9.6512,7.1211 9.6443,7.1211ZM9.5979,7.0939C9.5936,7.0939 9.5909,7.0949 9.5899,7.0992C9.5899,7.1013 9.5899,7.1035 9.5915,7.1035C9.5915,7.1051 9.5941,7.1061 9.5952,7.1067L9.6443,7.1141C9.6475,7.1141 9.6507,7.1109 9.6507,7.1077C9.6507,7.1067 9.6507,7.1051 9.6496,7.1035C9.648,7.1035 9.648,7.1035 9.6448,7.1024L9.5979,7.0939L9.5979,7.0939Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7115,7.1312l-0.0075,-0.0165l-0.0235,0.0011l0.0112,0.0187l0.0197,-0.0032" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4555,7.1936C9.3728,7.1931 9.2981,7.1851 9.2416,7.1696C9.2981,7.1563 9.3728,7.1467 9.4555,7.1467C9.5381,7.1467 9.6133,7.1563 9.6693,7.1696C9.6133,7.1856 9.5381,7.1931 9.4555,7.1936" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4555,7.1968L9.4555,7.1968C9.3701,7.1968 9.2965,7.1904 9.2416,7.176C9.2384,7.1749 9.2384,7.1728 9.2384,7.1696C9.2384,7.1685 9.2384,7.1669 9.2416,7.1669C9.3008,7.1531 9.3755,7.1435 9.4555,7.1429C9.5355,7.1429 9.6107,7.1531 9.6693,7.1669C9.6725,7.1669 9.6731,7.1685 9.6731,7.1696C9.6731,7.1728 9.6731,7.1749 9.6693,7.176C9.6149,7.1904 9.5408,7.1968 9.4555,7.1968ZM9.2603,7.1696C9.3131,7.1819 9.3797,7.1893 9.4555,7.1904C9.5312,7.1893 9.5979,7.1819 9.6507,7.1696C9.5947,7.1573 9.5259,7.1531 9.4555,7.1531C9.3856,7.1531 9.3168,7.1573 9.2603,7.1696Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7152,7.0155C9.7168,7.0069 9.7152,7.0032 9.7104,7.0011C9.7061,6.9989 9.7008,7.0032 9.6981,7.0085C9.6965,7.016 9.6981,7.0208 9.7029,7.024C9.7072,7.0251 9.7131,7.0197 9.7152,7.0155" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.5509,6.9824C9.552,6.9781 9.5483,6.9701 9.5445,6.9701C9.5387,6.9701 9.5344,6.9749 9.5339,6.9813C9.5323,6.9888 9.5355,6.9936 9.5419,6.9936C9.5451,6.9947 9.5509,6.9904 9.5509,6.9824" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.3605,6.9824C9.3605,6.9781 9.3632,6.9701 9.368,6.9701C9.3728,6.9701 9.3776,6.9749 9.3787,6.9813C9.3792,6.9888 9.376,6.9936 9.3712,6.9936C9.3669,6.9947 9.3616,6.9904 9.3605,6.9824" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1973,7.0155C9.1947,7.0069 9.1973,7.0032 9.2011,7.0011C9.2064,6.9989 9.2117,7.0032 9.2133,7.0085C9.216,7.016 9.2133,7.0208 9.2096,7.024C9.2043,7.0251 9.1989,7.0197 9.1973,7.0155" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4555,6.8896l-0.0299,0.0165l0.0224,0.0469l0.0075,0.0043l0.008,-0.0043l0.0224,-0.0469l-0.0304,-0.0165" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4555,6.9637L9.4443,6.9557L9.4203,6.9029L9.4549,6.8821L9.4896,6.9029L9.4661,6.9557L9.4555,6.9637ZM9.4507,6.9499L9.4555,6.9531L9.4597,6.9499L9.4795,6.9072L9.456,6.8939L9.4325,6.9072L9.4507,6.9499Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.3915,6.9573l0.0128,0.0208l0.0459,-0.0123l0.0037,-0.0085l-0.0037,-0.0043l-0.0459,-0.0144l-0.0128,0.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4032,6.9824l-0.0171,-0.0251l0.0171,-0.0251l0.0501,0.0144l0.0069,0.0107l-0.0075,0.0112z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.5195,6.9573l-0.0128,0.0208l-0.0459,-0.0123l-0.0043,-0.0085l0.0043,-0.0043l0.0459,-0.0144l0.0128,0.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.5072,6.9824L9.4576,6.9685L9.4507,6.9573L9.4576,6.9467L9.5072,6.9323L9.5248,6.9573L9.5072,6.9824ZM9.4635,6.9595L9.5045,6.9728L9.5141,6.9573L9.504,6.944L9.4629,6.9557L9.4608,6.9573L9.4635,6.9595Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.2667,6.9072l-0.0224,0.0235l0.0283,0.0379l0.008,0.0021l0.0053,-0.0053l0.0107,-0.0459l-0.0299,-0.0123" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.2821,6.9781l-0.0123,-0.0064l-0.0315,-0.0411l0.0277,-0.0277l0.0352,0.0139l-0.0107,0.0517z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.2197,6.9867l0.016,0.0165l0.0416,-0.0235l0.0032,-0.008l-0.0053,-0.0048l-0.0475,-0.0027l-0.008,0.0224" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.2352,7.0075l-0.0224,-0.0197l0.0112,-0.0304l0.0517,0.0064l0.0096,0.0064l-0.0048,0.0123z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.344,6.9605l-0.0085,0.0219l-0.0469,-0.0043l-0.0064,-0.0064l0.0032,-0.0064l0.0405,-0.0219l0.0181,0.0171" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.3381,6.9877l-0.0528,-0.0053l-0.0096,-0.0085l0.0059,-0.0112l0.0448,-0.024l0.0219,0.0208z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1728,6.992l-0.0032,0.0235l-0.0475,0.0043l-0.0075,-0.0043l0.0021,-0.0085l0.0352,-0.0293l0.0208,0.0144" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1211,7.024l-0.0107,-0.0059l0.0027,-0.0123l0.0384,-0.0336l0.0267,0.0187l-0.0053,0.0283z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.264,6.9717C9.264,6.9653 9.272,6.9573 9.2816,6.9573C9.2907,6.9573 9.2981,6.9659 9.2981,6.9717C9.2981,6.9813 9.2907,6.9893 9.2816,6.9893C9.272,6.9893 9.264,6.9813 9.264,6.9717" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6443,6.9072l0.0229,0.0235l-0.0293,0.0379l-0.0075,0.0021l-0.0053,-0.0053l-0.0112,-0.0459l0.0304,-0.0123" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6293,6.9781l-0.008,-0.0096l-0.0107,-0.0517l0.0352,-0.0139l0.0272,0.0277l-0.0315,0.0411z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6928,6.9867l-0.0171,0.0165l-0.0411,-0.0235l-0.0032,-0.008l0.0059,-0.0048l0.0475,-0.0027l0.008,0.0224" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6757,7.0075l-0.0443,-0.0251l-0.0053,-0.0123l0.0096,-0.0064l0.0523,-0.0064l0.0101,0.0304z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.568,6.9605l0.0085,0.0219l0.0475,-0.0043l0.0059,-0.0064l-0.0032,-0.0064l-0.0416,-0.0219l-0.0171,0.0171" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.5739,6.9877l-0.0107,-0.0283l0.0224,-0.0208l0.0448,0.024l0.0053,0.0112l-0.0096,0.0085z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7323,6.992l0.0032,0.0235l0.0469,0.0043l0.008,-0.0043l-0.0021,-0.0085l-0.0352,-0.0293l-0.0208,0.0144" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.784,7.024l-0.0523,-0.0053l-0.0053,-0.0283l0.0267,-0.0187l0.0384,0.0336l0.0027,0.0123z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4384,6.9573C9.4384,6.9488 9.4464,6.9424 9.4555,6.9424C9.4645,6.9424 9.4725,6.9493 9.4725,6.9573C9.4725,6.9653 9.4645,6.9739 9.4555,6.9739C9.4464,6.9739 9.4384,6.9659 9.4384,6.9573" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6133,6.9717C9.6133,6.9653 9.6219,6.9573 9.6309,6.9573C9.64,6.9573 9.648,6.9659 9.648,6.9717C9.648,6.9813 9.64,6.9893 9.6309,6.9893C9.6219,6.9893 9.6133,6.9813 9.6133,6.9717" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4245,6.7808C9.4245,6.7659 9.4379,6.752 9.4555,6.752C9.4725,6.752 9.4869,6.7653 9.4869,6.7808C9.4869,6.7947 9.4725,6.8085 9.4555,6.8085C9.4384,6.8085 9.4245,6.7947 9.4245,6.7808" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4779,6.7696l0,0.0208l-0.0485,0l0,-0.0208l0.0155,0l0,-0.0437l-0.0203,0l0,-0.0197l0.0203,0l0,-0.0197l0.0219,0l0,0.0197l0.0197,0l0,0.0197l-0.0197,0l0,0.0437l0.0112,0" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4821,6.7947L9.4245,6.7947L9.4245,6.7653L9.44,6.7653L9.44,6.7307L9.4192,6.7307L9.4192,6.7019L9.44,6.7019L9.44,6.6811L9.4709,6.6811L9.4709,6.7019L9.4917,6.7019L9.4917,6.7307L9.4709,6.7307L9.4709,6.7653L9.4821,6.7653L9.4821,6.7947ZM9.4352,6.7835L9.4725,6.7835L9.4725,6.7749L9.4603,6.7749L9.4603,6.72L9.4821,6.72L9.4821,6.7104L9.4603,6.7104L9.4603,6.6907L9.4507,6.6907L9.4507,6.7104L9.4293,6.7104L9.4293,6.72L9.4512,6.72L9.4512,6.7755L9.4357,6.7755L9.4357,6.7835L9.4352,6.7835Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4997,6.7696l0,0.0208l-0.0864,0l0,-0.0208l0.0315,0l0,-0.0437l-0.0203,0l0,-0.0197l0.0203,0l0,-0.0197l0.0219,0l0,0.0197l0.0197,0l0,0.0197l-0.0197,0l0,0.0437l0.0331,0" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4555,6.8155C9.4352,6.8155 9.4192,6.7989 9.4192,6.7808C9.4192,6.7659 9.4309,6.7531 9.4464,6.7461L9.448,6.7568C9.4368,6.7579 9.4288,6.7691 9.4288,6.7813C9.4288,6.7941 9.4411,6.8064 9.4555,6.8064C9.4699,6.8064 9.4816,6.7947 9.4816,6.7813C9.4816,6.7696 9.4747,6.7579 9.4629,6.7568L9.4661,6.7472C9.4805,6.7536 9.4912,6.7659 9.4912,6.7808C9.4917,6.7989 9.4757,6.8155 9.4555,6.8155Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1099,7.0187C9.1093,7.0187 9.0965,7.0032 9.0875,6.9936C9.0805,6.9883 9.064,6.9824 9.064,6.9824C9.064,6.9797 9.0736,6.9728 9.0843,6.9728C9.0901,6.9728 9.0955,6.976 9.0987,6.9797L9.1008,6.9728C9.1008,6.9728 9.1088,6.9749 9.1125,6.9824C9.1168,6.9936 9.1131,7.0075 9.1131,7.0075C9.1131,7.0075 9.112,7.0155 9.1099,7.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1099,7.0219C9.1072,7.0219 9.1072,7.0208 9.1013,7.0155C9.0981,7.0112 9.0901,7.0032 9.0843,6.9957C9.0789,6.9931 9.0667,6.9893 9.0629,6.9872L9.0603,6.9851L9.0603,6.9819C9.0603,6.9765 9.0725,6.9685 9.0837,6.9685C9.088,6.9685 9.0917,6.9696 9.0955,6.9696L9.0965,6.9685L9.1003,6.9685C9.1003,6.9685 9.1115,6.9696 9.1163,6.9819C9.1195,6.9931 9.1173,7.0069 9.1173,7.0069C9.1168,7.0091 9.1163,7.0171 9.1125,7.0192L9.1099,7.0213L9.1099,7.0213L9.1099,7.0219Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1104,7.0096C9.1131,7.0064 9.1221,7.0075 9.128,7.0128C9.1339,7.0176 9.1355,7.0251 9.1317,7.0283C9.128,7.0325 9.1195,7.0325 9.1131,7.0283C9.1072,7.0208 9.1061,7.0155 9.1104,7.0096" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7957,7.0187C9.7968,7.0187 9.8085,7.0032 9.8181,6.9936C9.8245,6.9883 9.8416,6.9824 9.8416,6.9824C9.8416,6.9797 9.832,6.9728 9.8208,6.9728C9.8149,6.9728 9.8096,6.976 9.8064,6.9797L9.8043,6.9728C9.8043,6.9728 9.7963,6.9749 9.7925,6.9824C9.7883,6.9936 9.792,7.0075 9.792,7.0075C9.792,7.0075 9.7925,7.0155 9.7957,7.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7957,7.0219L9.7957,7.0219L9.7947,7.0219L9.7925,7.0197C9.7883,7.0171 9.7877,7.0091 9.7872,7.0085C9.7867,7.008 9.7845,6.9941 9.7883,6.9824C9.7931,6.9701 9.8043,6.9691 9.8043,6.9691L9.808,6.9691L9.8091,6.9712C9.8133,6.9701 9.8165,6.9691 9.8208,6.9691C9.832,6.9691 9.8443,6.9776 9.8443,6.9824L9.8443,6.9856L9.8411,6.9877C9.8379,6.9899 9.8251,6.9936 9.8203,6.9963C9.8149,7.0037 9.8069,7.0107 9.8037,7.016C9.7984,7.0208 9.7979,7.0219 9.7957,7.0219Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7963,7.0096C9.792,7.0064 9.7845,7.0075 9.7781,7.0128C9.7728,7.0176 9.7696,7.0251 9.7739,7.0283C9.7781,7.0325 9.7856,7.0325 9.7915,7.0283C9.7979,7.0208 9.8005,7.0155 9.7963,7.0096" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.0789,7.4032l0.7536,0l0,-0.1973l-0.7536,0z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8395,7.4085L9.0725,7.4085L9.0725,7.1989L9.8395,7.1989L9.8395,7.4085ZM9.0853,7.3947L9.8261,7.3947L9.8261,7.2123L9.0853,7.2123L9.0853,7.3947Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7541,7.5333C9.7493,7.5323 9.7456,7.5323 9.7403,7.5323L9.1755,7.5323C9.1691,7.5323 9.1643,7.5323 9.16,7.5344C9.1787,7.528 9.1931,7.5115 9.1931,7.4907C9.1931,7.4699 9.1781,7.4533 9.1579,7.4448C9.1627,7.4459 9.1691,7.448 9.1755,7.448L9.7403,7.448C9.7456,7.448 9.7509,7.4469 9.7563,7.4448L9.7531,7.4459C9.7317,7.4533 9.7211,7.4699 9.7211,7.4907C9.7211,7.5083 9.7339,7.528 9.7541,7.5333" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1605,7.5424C9.1573,7.5424 9.1541,7.5408 9.1541,7.5376C9.1525,7.5323 9.1541,7.5307 9.1568,7.528L9.1595,7.528C9.1755,7.5205 9.1867,7.5072 9.1867,7.4907C9.1867,7.4741 9.1744,7.4571 9.1568,7.4533C9.1531,7.4512 9.1504,7.4448 9.152,7.4437C9.1541,7.4405 9.1568,7.4384 9.1605,7.4405C9.1659,7.4405 9.1712,7.4405 9.176,7.4405L9.7408,7.4405C9.7435,7.4405 9.7467,7.4405 9.7493,7.4405L9.7552,7.4405C9.7595,7.4405 9.7621,7.4405 9.7637,7.4448C9.7643,7.448 9.7621,7.4533 9.7584,7.4533C9.7573,7.4533 9.7552,7.4533 9.7531,7.4533C9.7381,7.4587 9.7291,7.4741 9.7291,7.4907C9.7291,7.5061 9.7397,7.52 9.7547,7.528C9.7552,7.528 9.7563,7.528 9.7584,7.528C9.7616,7.5296 9.7627,7.5323 9.7616,7.5371C9.7605,7.5408 9.7568,7.5424 9.7531,7.5408C9.752,7.5408 9.752,7.5408 9.7499,7.5408C9.7477,7.5408 9.7456,7.5408 9.7413,7.5408L9.1765,7.5408C9.1723,7.5408 9.1675,7.5408 9.1643,7.5408L9.1632,7.5408C9.1611,7.5424 9.1605,7.5424 9.1605,7.5424ZM9.1856,7.5269L9.7291,7.5269C9.7195,7.5157 9.7141,7.5029 9.7141,7.4907C9.7141,7.4784 9.7195,7.4656 9.7285,7.4549L9.1856,7.4549C9.1947,7.4661 9.2005,7.4784 9.2005,7.4907C9.2005,7.5029 9.1947,7.5157 9.1856,7.5269Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.176,7.5323L9.7408,7.5323C9.76,7.5323 9.7749,7.5445 9.7749,7.5573C9.7749,7.5739 9.7595,7.5856 9.7408,7.5856L9.176,7.5856C9.1573,7.5856 9.1419,7.5744 9.1419,7.5573C9.1419,7.5445 9.1568,7.5323 9.176,7.5323" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7403,7.592L9.1755,7.592C9.1525,7.592 9.1344,7.5781 9.1344,7.5573C9.1344,7.5408 9.1525,7.5269 9.1755,7.5269L9.7403,7.5269C9.7632,7.5269 9.7813,7.5403 9.7813,7.5573C9.7813,7.5781 9.7632,7.592 9.7403,7.592ZM9.176,7.5408C9.1605,7.5408 9.1483,7.5483 9.1483,7.5573C9.1483,7.5696 9.1605,7.5781 9.176,7.5781L9.7408,7.5781C9.7552,7.5781 9.7685,7.5696 9.7685,7.5573C9.7685,7.5477 9.7557,7.5408 9.7408,7.5408L9.176,7.5408Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.176,7.4032L9.7408,7.4032C9.76,7.4032 9.7749,7.4144 9.7749,7.4261C9.7749,7.4384 9.7595,7.448 9.7408,7.448L9.176,7.448C9.1563,7.448 9.1413,7.4384 9.1413,7.4261C9.1408,7.4144 9.1563,7.4032 9.176,7.4032" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7403,7.4549L9.1755,7.4549C9.1515,7.4549 9.1339,7.4427 9.1339,7.4261C9.1339,7.4085 9.1515,7.3947 9.1755,7.3947L9.7403,7.3947C9.7632,7.3947 9.7813,7.408 9.7813,7.4261C9.7813,7.4421 9.7632,7.4549 9.7403,7.4549ZM9.176,7.4085C9.1589,7.4085 9.1483,7.4187 9.1483,7.4261C9.1483,7.4325 9.1589,7.4405 9.176,7.4405L9.7408,7.4405C9.7552,7.4405 9.7685,7.432 9.7685,7.4261C9.7685,7.4181 9.7573,7.4085 9.7408,7.4085L9.176,7.4085Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.9296,10.728C8.9824,10.728 9.0293,10.7179 9.0635,10.6997C9.0971,10.6821 9.1429,10.6704 9.1941,10.6704C9.2448,10.6704 9.2923,10.6816 9.3264,10.6997C9.3611,10.7179 9.4075,10.728 9.4587,10.728C9.5109,10.728 9.5579,10.7157 9.592,10.6976C9.6261,10.6821 9.6699,10.6704 9.72,10.6704C9.7712,10.6704 9.8171,10.6811 9.8512,10.6987C9.8848,10.7168 9.9323,10.728 9.9845,10.728L9.9845,10.8101C9.9323,10.8101 9.8848,10.7989 9.8512,10.7803C9.8171,10.7632 9.7712,10.7525 9.72,10.7525C9.6699,10.7525 9.6261,10.7637 9.592,10.7803C9.5573,10.7973 9.5109,10.8101 9.4587,10.8101C9.4075,10.8101 9.3611,10.7989 9.3264,10.7808C9.2923,10.7653 9.2453,10.7525 9.1941,10.7525C9.1429,10.7525 9.0976,10.7648 9.0635,10.7808C9.0293,10.7995 8.9824,10.8101 8.9307,10.8101L8.9296,10.728" + android:strokeWidth="1" + android:fillColor="#005BBF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9909,10.8171L9.984,10.8171C9.9339,10.8171 9.8837,10.8059 9.848,10.7861C9.8133,10.7685 9.7696,10.7579 9.7195,10.7579C9.6731,10.7579 9.6293,10.7685 9.5947,10.7851C9.5573,10.8059 9.5077,10.8171 9.4581,10.8171C9.4069,10.8171 9.3605,10.8059 9.3232,10.7872C9.2885,10.7696 9.2421,10.7579 9.1941,10.7579C9.1456,10.7579 9.1013,10.7691 9.0661,10.7872C9.0293,10.8059 8.9824,10.8171 8.9312,10.8171L8.9243,10.8171L8.9232,10.7205L8.9296,10.7205C8.9792,10.7205 9.0261,10.712 9.0608,10.6933C9.0965,10.6757 9.1445,10.6651 9.1941,10.6651C9.2443,10.6651 9.2933,10.6763 9.3296,10.6933C9.3637,10.712 9.4101,10.7205 9.4587,10.7205C9.5077,10.7205 9.5531,10.7109 9.5888,10.6928C9.6245,10.6747 9.6709,10.6651 9.72,10.6651C9.7723,10.6651 9.8181,10.6747 9.8539,10.6933C9.8885,10.7109 9.936,10.7205 9.9845,10.7205L9.9915,10.7205L9.9915,10.8171L9.9909,10.8171ZM9.1936,10.7445C9.2443,10.7445 9.2923,10.7568 9.3291,10.776C9.3632,10.7936 9.4101,10.8032 9.4581,10.8032C9.5067,10.8032 9.552,10.7936 9.5883,10.7739C9.624,10.7563 9.6704,10.7445 9.7195,10.7445C9.7712,10.7445 9.8171,10.7557 9.8533,10.7749C9.8869,10.792 9.9317,10.8032 9.9771,10.8032L9.9771,10.7344C9.9291,10.7333 9.8816,10.7237 9.8475,10.7045C9.8128,10.6885 9.7691,10.6779 9.7189,10.6779C9.6725,10.6779 9.6288,10.6885 9.5941,10.7045C9.5568,10.7243 9.5077,10.7344 9.4576,10.7344C9.4064,10.7344 9.3584,10.7248 9.3227,10.7061C9.288,10.6896 9.2416,10.6779 9.1936,10.6779C9.1451,10.6779 9.1008,10.6885 9.0656,10.7056C9.0315,10.7237 8.9851,10.7333 8.936,10.7344L8.9371,10.8032C8.9829,10.8032 9.0261,10.7931 9.0603,10.776C9.096,10.7573 9.144,10.7445 9.1936,10.7445Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.9296,10.8107C8.9824,10.8107 9.0293,10.8 9.0635,10.7813C9.0971,10.7659 9.1429,10.7531 9.1941,10.7531C9.2448,10.7531 9.2923,10.7653 9.3264,10.7813C9.3611,10.7989 9.4075,10.8107 9.4587,10.8107C9.5109,10.8107 9.5579,10.7984 9.592,10.7808C9.6261,10.7648 9.6699,10.7531 9.72,10.7531C9.7712,10.7531 9.8171,10.7637 9.8512,10.7808C9.8848,10.7989 9.9323,10.8107 9.9845,10.8107L9.9845,10.8923C9.9323,10.8923 9.8848,10.8811 9.8512,10.8624C9.8171,10.8448 9.7712,10.8331 9.72,10.8331C9.6699,10.8331 9.6261,10.8443 9.592,10.8613C9.5573,10.8795 9.5109,10.8923 9.4587,10.8923C9.4075,10.8923 9.3611,10.8811 9.3264,10.8635C9.2923,10.8448 9.2453,10.8331 9.1941,10.8331C9.1429,10.8331 9.0976,10.8443 9.0635,10.8635C9.0293,10.8811 8.9824,10.8923 8.9307,10.8923L8.9296,10.8107" + android:strokeWidth="1" + android:fillColor="#CCCCCC" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9909,10.8981L9.984,10.8981C9.9333,10.8981 9.8837,10.8875 9.848,10.8683C9.8133,10.8512 9.7696,10.8405 9.7195,10.8405C9.6731,10.8405 9.6293,10.8512 9.5947,10.8672C9.5573,10.8875 9.5083,10.8981 9.4581,10.8981C9.4069,10.8981 9.3605,10.8885 9.3232,10.8688C9.2885,10.8533 9.2421,10.8405 9.1941,10.8405C9.1456,10.8405 9.1013,10.8517 9.0661,10.8688C9.0293,10.8896 8.9824,10.8981 8.9312,10.8981L8.9243,10.8981L8.9232,10.8032L8.9296,10.8032C8.9792,10.8032 9.0261,10.7936 9.0608,10.776C9.0965,10.7573 9.1445,10.7445 9.1941,10.7445C9.2448,10.7445 9.2939,10.7568 9.3296,10.776C9.3637,10.7936 9.4107,10.8032 9.4587,10.8032C9.5067,10.8032 9.5525,10.7936 9.5888,10.7739C9.6245,10.7563 9.6709,10.7445 9.72,10.7445C9.7717,10.7445 9.8176,10.7557 9.8539,10.7749C9.8885,10.7936 9.936,10.8032 9.9845,10.8032L9.9915,10.8032L9.9915,10.8981L9.9909,10.8981ZM9.1936,10.8283C9.2443,10.8283 9.2923,10.8395 9.3291,10.8576C9.3632,10.8763 9.4101,10.8848 9.4581,10.8848C9.5067,10.8848 9.5525,10.8752 9.5883,10.8565C9.624,10.8389 9.6704,10.8283 9.7195,10.8283C9.7717,10.8283 9.8176,10.8389 9.8539,10.8565C9.8859,10.8741 9.9317,10.8837 9.9771,10.8848L9.9771,10.8176C9.9291,10.816 9.8816,10.8064 9.8475,10.7867C9.8128,10.7691 9.7691,10.7584 9.7189,10.7584C9.6725,10.7584 9.6288,10.7691 9.5941,10.7856C9.5568,10.8064 9.5072,10.8176 9.4576,10.8176C9.4064,10.8176 9.3589,10.8064 9.3227,10.7877C9.288,10.7701 9.2416,10.7584 9.1936,10.7584C9.1451,10.7584 9.1008,10.7696 9.0656,10.7877C9.0309,10.8059 8.9851,10.816 8.936,10.8176L8.9371,10.8848C8.9829,10.8837 9.0261,10.8752 9.0603,10.8576C9.096,10.8395 9.144,10.8283 9.1936,10.8283Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.9296,10.8923C8.9824,10.8923 9.0293,10.8811 9.0635,10.8635C9.0971,10.8448 9.1429,10.8331 9.1941,10.8331C9.2448,10.8331 9.2923,10.8443 9.3264,10.8635C9.3611,10.8811 9.4075,10.8923 9.4587,10.8923C9.5109,10.8923 9.5579,10.88 9.592,10.8613C9.6261,10.8448 9.6699,10.8331 9.72,10.8331C9.7712,10.8331 9.8171,10.8443 9.8512,10.8624C9.8848,10.8805 9.9323,10.8923 9.9845,10.8923L9.9845,10.9728C9.9323,10.9728 9.8848,10.9616 9.8512,10.9435C9.8171,10.9269 9.7712,10.9152 9.72,10.9152C9.6699,10.9152 9.6261,10.9275 9.592,10.9429C9.5573,10.9611 9.5109,10.9728 9.4587,10.9728C9.4075,10.9728 9.3611,10.9621 9.3264,10.9445C9.2923,10.928 9.2453,10.9152 9.1941,10.9152C9.1429,10.9152 9.0976,10.9275 9.0635,10.9445C9.0293,10.9632 8.9824,10.9728 8.9307,10.9728L8.9296,10.8923" + android:strokeWidth="1" + android:fillColor="#005BBF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9909,10.9797L9.984,10.9797C9.9333,10.9797 9.8837,10.9685 9.848,10.9499C9.8133,10.9323 9.7696,10.9216 9.7195,10.9216C9.6731,10.9216 9.6293,10.9323 9.5947,10.9488C9.5573,10.9685 9.5088,10.9797 9.4581,10.9797C9.4069,10.9797 9.3595,10.9696 9.3232,10.9509C9.2885,10.9323 9.2421,10.9216 9.1941,10.9216C9.1451,10.9216 9.1013,10.9323 9.0661,10.9509C9.0293,10.9696 8.9824,10.9797 8.9312,10.9797L8.9243,10.9797L8.9232,10.8843L8.9296,10.8843C8.9792,10.8843 9.0261,10.8757 9.0608,10.8571C9.0965,10.8395 9.1445,10.8277 9.1941,10.8277C9.2448,10.8277 9.2933,10.8389 9.3296,10.8571C9.3637,10.8757 9.4107,10.8843 9.4587,10.8843C9.5072,10.8843 9.5525,10.8747 9.5888,10.856C9.6245,10.8384 9.6709,10.8277 9.72,10.8277C9.7723,10.8277 9.8181,10.8384 9.8544,10.856C9.8885,10.8747 9.9355,10.8843 9.9845,10.8843L9.9915,10.8843L9.9915,10.9797L9.9909,10.9797ZM9.1936,10.9083C9.2443,10.9083 9.2923,10.9195 9.3291,10.9397C9.3632,10.9563 9.4101,10.9675 9.4581,10.9675C9.5072,10.9675 9.5525,10.9563 9.5883,10.9376C9.6245,10.92 9.6709,10.9083 9.7195,10.9083C9.7712,10.9083 9.8171,10.9195 9.8533,10.9387C9.8864,10.9557 9.9317,10.9659 9.9771,10.9659L9.9771,10.8981C9.9291,10.8971 9.8816,10.8869 9.8475,10.8683C9.8128,10.8512 9.7691,10.8405 9.7189,10.8405C9.6725,10.8405 9.6288,10.8512 9.5941,10.8672C9.5568,10.8875 9.5072,10.8981 9.4576,10.8981C9.4064,10.8981 9.3589,10.8885 9.3227,10.8688C9.288,10.8533 9.2416,10.8405 9.1936,10.8405C9.1451,10.8405 9.1008,10.8517 9.0656,10.8688C9.0309,10.8875 8.9851,10.8971 8.936,10.8981L8.9371,10.9659C8.9845,10.9659 9.0256,10.9563 9.0603,10.9397C9.0955,10.92 9.1435,10.9083 9.1936,10.9083Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.9307,11.0549C8.9819,11.0549 9.0293,11.0437 9.0635,11.0272C9.0971,11.0075 9.1429,10.9968 9.1941,10.9968C9.2448,10.9968 9.2923,11.0075 9.3264,11.0272C9.3611,11.0437 9.4075,11.0549 9.4587,11.0549C9.5109,11.0549 9.5579,11.0437 9.592,11.0251C9.6261,11.0075 9.6699,10.9968 9.72,10.9968C9.7712,10.9968 9.8171,11.0075 9.8512,11.0261C9.8848,11.0437 9.9323,11.0549 9.9845,11.0549L9.9845,10.9744C9.9323,10.9744 9.8848,10.9621 9.8512,10.944C9.8171,10.9275 9.7712,10.9157 9.72,10.9157C9.6699,10.9157 9.6261,10.928 9.592,10.9435C9.5573,10.9616 9.5109,10.9733 9.4587,10.9733C9.4075,10.9733 9.3611,10.9627 9.3264,10.9451C9.2923,10.9285 9.2453,10.9157 9.1941,10.9157C9.1429,10.9157 9.0976,10.928 9.0635,10.9451C9.0293,10.9637 8.9824,10.9733 8.9296,10.9733L8.9307,11.0549" + android:strokeWidth="1" + android:fillColor="#CCCCCC" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9909,11.0613L9.984,11.0613C9.9333,11.0613 9.8832,11.0507 9.848,11.0309C9.8133,11.0144 9.7696,11.0043 9.7195,11.0043C9.6731,11.0043 9.6293,11.0144 9.5947,11.0304C9.5573,11.0507 9.5083,11.0613 9.4581,11.0613C9.4069,11.0613 9.3595,11.0517 9.3232,11.032C9.2885,11.0155 9.2421,11.0043 9.1941,11.0043C9.1456,11.0043 9.1013,11.0155 9.0661,11.0309C9.0293,11.0517 8.9824,11.0613 8.9312,11.0613L8.9243,11.0613L8.9232,10.9669L8.9296,10.9669C8.9792,10.9669 9.0261,10.9557 9.0608,10.9392C9.096,10.9195 9.144,10.9077 9.1941,10.9077C9.2448,10.9077 9.2928,10.9189 9.3296,10.9392C9.3637,10.9557 9.4107,10.9669 9.4587,10.9669C9.5077,10.9669 9.5531,10.9557 9.5888,10.9371C9.6251,10.9195 9.6715,10.9077 9.72,10.9077C9.7717,10.9077 9.8176,10.9189 9.8539,10.9381C9.8885,10.9557 9.9365,10.9669 9.9845,10.9669L9.9915,10.9669L9.9915,11.0613L9.9909,11.0613ZM9.1936,10.9904C9.2443,10.9904 9.2933,11.0027 9.3291,11.0197C9.3632,11.0384 9.4101,11.048 9.4581,11.048C9.5067,11.048 9.552,11.0384 9.5883,11.0187C9.624,11.0021 9.6709,10.9904 9.7195,10.9904C9.7712,10.9904 9.8171,11.0016 9.8533,11.0197C9.8859,11.0373 9.9312,11.0469 9.9771,11.048L9.9771,10.9808C9.9291,10.9797 9.8816,10.9691 9.8475,10.9499C9.8128,10.9323 9.7691,10.9216 9.7189,10.9216C9.6725,10.9216 9.6288,10.9323 9.5941,10.9488C9.5568,10.9685 9.5083,10.9797 9.4576,10.9797C9.4064,10.9797 9.3589,10.9696 9.3227,10.9509C9.288,10.9323 9.2416,10.9216 9.1936,10.9216C9.1445,10.9216 9.1008,10.9323 9.0656,10.9509C9.032,10.9685 8.9851,10.9781 8.936,10.9797L8.9371,11.048C8.9829,11.0469 9.0261,11.0373 9.0603,11.0197C9.096,11.0032 9.144,10.9904 9.1936,10.9904Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.9307,11.1365C8.9819,11.1365 9.0293,11.1259 9.0635,11.1072C9.0971,11.0907 9.1429,11.0779 9.1941,11.0779C9.2448,11.0779 9.2923,11.0901 9.3264,11.1072C9.3611,11.1259 9.4075,11.1365 9.4587,11.1365C9.5109,11.1365 9.5579,11.1243 9.592,11.1061C9.6261,11.0907 9.6699,11.0779 9.72,11.0779C9.7712,11.0779 9.8171,11.0901 9.8512,11.1072C9.8848,11.1248 9.9323,11.1365 9.9845,11.1365L9.9845,11.0565C9.9323,11.0565 9.8848,11.0443 9.8512,11.0261C9.8171,11.0075 9.7712,10.9968 9.72,10.9968C9.6699,10.9968 9.6261,11.0075 9.592,11.0251C9.5573,11.0432 9.5109,11.0549 9.4587,11.0549C9.4075,11.0549 9.3611,11.0437 9.3264,11.0272C9.2923,11.0075 9.2453,10.9968 9.1941,10.9968C9.1429,10.9968 9.0976,11.0075 9.0635,11.0272C9.0293,11.0437 8.9824,11.0549 8.9301,11.0549L8.9307,11.1365" + android:strokeWidth="1" + android:fillColor="#005BBF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9909,11.144L9.984,11.144C9.9339,11.144 9.8837,11.1328 9.848,11.1136C9.8133,11.0949 9.7696,11.0853 9.7195,11.0853C9.6731,11.0853 9.6293,11.0949 9.5947,11.1125C9.5568,11.1323 9.5077,11.144 9.4581,11.144C9.4069,11.144 9.3595,11.1328 9.3232,11.1147C9.2885,11.0949 9.2421,11.0853 9.1941,11.0853C9.1456,11.0853 9.1013,11.0949 9.0672,11.1147C9.0299,11.1323 8.9824,11.144 8.9312,11.144L8.9243,11.144L8.9232,11.048L8.9301,11.048C8.9797,11.048 9.0261,11.0395 9.0608,11.0197C9.096,11.0032 9.144,10.9904 9.1941,10.9904C9.2448,10.9904 9.2933,11.0027 9.3296,11.0197C9.3637,11.0384 9.4107,11.048 9.4587,11.048C9.5072,11.048 9.5525,11.0384 9.5888,11.0187C9.6245,11.0021 9.6709,10.9904 9.72,10.9904C9.7717,10.9904 9.8176,11.0016 9.8539,11.0197C9.8885,11.0395 9.9365,11.0491 9.9845,11.0491L9.9915,11.0491L9.9915,11.144L9.9909,11.144ZM9.1936,11.072C9.2437,11.072 9.2928,11.0827 9.3291,11.1035C9.3632,11.12 9.4101,11.1301 9.4581,11.1301C9.5061,11.1301 9.5515,11.12 9.5883,11.1013C9.624,11.0827 9.6709,11.072 9.7195,11.072C9.7712,11.072 9.8171,11.0827 9.8533,11.1024C9.8864,11.1189 9.9317,11.1285 9.9771,11.1301L9.9771,11.0629C9.9291,11.0619 9.8821,11.0507 9.8475,11.0315C9.8128,11.0149 9.7691,11.0048 9.7189,11.0048C9.6725,11.0048 9.6288,11.0149 9.5941,11.0309C9.5568,11.0512 9.5077,11.0619 9.4576,11.0619C9.4064,11.0619 9.3589,11.0523 9.3227,11.0325C9.2885,11.016 9.2416,11.0048 9.1936,11.0048C9.1445,11.0048 9.1008,11.016 9.0656,11.0315C9.0309,11.0512 8.9851,11.0608 8.9365,11.0619L8.9371,11.1301C8.9824,11.1285 9.0256,11.1189 9.0597,11.1035C9.096,11.0821 9.144,11.072 9.1936,11.072Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7541,10.3936C9.752,10.4021 9.7499,10.4069 9.7499,10.4155C9.7499,10.4656 9.792,10.5029 9.8443,10.5029L9.0693,10.5029C9.1205,10.5029 9.1632,10.4656 9.1632,10.4155C9.1632,10.4069 9.1627,10.4021 9.1605,10.3936C9.1648,10.3947 9.1696,10.3947 9.176,10.3947L9.7403,10.3947C9.7445,10.3947 9.7504,10.3947 9.7541,10.3936" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8443,10.5104L9.0693,10.5104C9.0651,10.5104 9.0624,10.5072 9.0624,10.5029C9.0624,10.5008 9.0651,10.4955 9.0693,10.4955C9.1168,10.4955 9.1568,10.4592 9.1568,10.4155C9.1568,10.4069 9.1557,10.4032 9.1541,10.3947C9.1541,10.3936 9.1541,10.3904 9.1568,10.3904C9.1573,10.3883 9.16,10.3872 9.1632,10.3883C9.1664,10.3904 9.1712,10.3904 9.1755,10.3904L9.7397,10.3904C9.744,10.3904 9.7483,10.3904 9.7509,10.3883C9.7536,10.3872 9.7568,10.3883 9.7589,10.3904C9.76,10.3904 9.76,10.3936 9.76,10.3947L9.7589,10.4011C9.7568,10.4059 9.7568,10.4096 9.7568,10.4155C9.7568,10.4592 9.7957,10.4955 9.8443,10.4955C9.8475,10.4955 9.8507,10.5008 9.8507,10.5029C9.8507,10.5072 9.848,10.5104 9.8443,10.5104ZM9.1195,10.496L9.7931,10.496C9.7632,10.4816 9.7429,10.4512 9.7429,10.416C9.7429,10.4107 9.744,10.4064 9.744,10.4037C9.7424,10.4037 9.7413,10.4037 9.7397,10.4037L9.1755,10.4037C9.1728,10.4037 9.1707,10.4037 9.1691,10.4037C9.1691,10.4069 9.1691,10.4112 9.1691,10.416C9.1696,10.4512 9.1509,10.4811 9.1195,10.496Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.176,10.3435L9.7408,10.3435C9.76,10.3435 9.7749,10.3547 9.7749,10.3701C9.7749,10.3824 9.7595,10.3952 9.7408,10.3952L9.176,10.3952C9.1573,10.3952 9.1419,10.3829 9.1419,10.3701C9.1419,10.3547 9.1568,10.3435 9.176,10.3435" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7403,10.4032L9.1755,10.4032C9.1525,10.4032 9.1344,10.3888 9.1344,10.3696C9.1344,10.352 9.1525,10.336 9.1755,10.336L9.7403,10.336C9.7632,10.336 9.7813,10.3515 9.7813,10.3696C9.7813,10.3888 9.7632,10.4032 9.7403,10.4032ZM9.176,10.3499C9.1605,10.3499 9.1483,10.3573 9.1483,10.3696C9.1483,10.3808 9.1605,10.3904 9.176,10.3904L9.7408,10.3904C9.7552,10.3904 9.7685,10.3803 9.7685,10.3696C9.7685,10.3573 9.7557,10.3499 9.7408,10.3499L9.176,10.3499Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.0693,10.7029l0.7744,0l0,-0.2l-0.7744,0l0,0.2z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8507,10.7072L9.0629,10.7072L9.0629,10.496L9.8507,10.496L9.8507,10.7072ZM9.0757,10.6949L9.8373,10.6949L9.8373,10.5104L9.0757,10.5104L9.0757,10.6949Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.904,9.6448C9.9808,9.6896 10.032,9.7323 10.0245,9.7563C10.0197,9.7781 9.9957,9.7931 9.9605,9.8155C9.9067,9.8528 9.8725,9.9205 9.8987,9.9531C9.8539,9.9157 9.8256,9.8624 9.8256,9.8032C9.8256,9.7387 9.8555,9.6811 9.904,9.6448" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8944,9.9573C9.8464,9.9189 9.8192,9.8624 9.8192,9.8032C9.8192,9.7376 9.8475,9.6784 9.9003,9.6405L9.9035,9.6363L9.9061,9.6395C9.9477,9.6635 10.0437,9.7205 10.0293,9.7573C10.0245,9.7808 10.0005,9.7947 9.9675,9.8187L9.9632,9.8197C9.928,9.8448 9.8997,9.8843 9.8965,9.9173C9.8944,9.9285 9.8949,9.9408 9.9029,9.9493L9.8944,9.9573ZM9.904,9.6533C9.8581,9.6896 9.832,9.7435 9.832,9.8032C9.832,9.8496 9.8507,9.8949 9.8837,9.9296C9.8832,9.9259 9.8837,9.9195 9.8843,9.9157C9.888,9.88 9.9184,9.8379 9.9568,9.8096L9.9605,9.8075C9.9915,9.7877 10.0139,9.7723 10.0176,9.7557C10.0229,9.7408 9.9861,9.7003 9.904,9.6533Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1824,10.3104l0.5499,0l0,-2.6933l-0.5499,0z" + android:strokeWidth="1" + android:fillColor="#CCCCCC" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6507,10.3029L9.6368,10.3029L9.6368,7.6155L9.6507,7.6155L9.6507,10.3029ZM9.5883,10.3029L9.576,10.3029L9.576,7.6155L9.5883,7.6155L9.5883,10.3029Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7392,10.3184L9.176,10.3184L9.176,7.6096L9.7392,7.6096L9.7392,10.3184ZM9.1893,10.3045L9.7259,10.3045L9.7259,7.6229L9.1893,7.6229L9.1893,10.3045Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.6213,8.6251C8.7419,8.5749 8.9445,8.5397 9.1792,8.5307C9.2603,8.5312 9.3504,8.5397 9.4427,8.5547C9.7723,8.6075 10.0229,8.7408 10.0021,8.8459C10.0016,8.8501 10.0011,8.8549 10.0011,8.8565C10.0011,8.8565 10.1237,8.5787 10.1259,8.5685C10.1483,8.4491 9.8699,8.3035 9.5045,8.2427C9.3909,8.2235 9.2795,8.216 9.1824,8.2176C8.9483,8.2176 8.7445,8.2464 8.6235,8.2928L8.6213,8.6251" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M10.0005,8.8635C10,8.8635 9.9984,8.8635 9.9979,8.8624C9.9947,8.8613 9.9931,8.8571 9.9947,8.8544C9.9947,8.8528 9.9947,8.8507 9.9947,8.8475L9.9952,8.8443C9.9989,8.8277 9.9936,8.8069 9.9792,8.7851C9.9136,8.6933 9.6981,8.6027 9.4416,8.56C9.3531,8.5445 9.2629,8.5381 9.1792,8.5371C8.9557,8.5445 8.7477,8.5792 8.6235,8.6309C8.6219,8.6309 8.6192,8.6309 8.6171,8.6304C8.6155,8.6277 8.6139,8.6277 8.6139,8.6245L8.6165,8.2917C8.6165,8.2901 8.6176,8.2869 8.6197,8.2848C8.7477,8.2389 8.9573,8.2085 9.1819,8.2085L9.1979,8.2085C9.2981,8.2085 9.4048,8.2181 9.5061,8.2347C9.7947,8.2816 10.0384,8.3867 10.1104,8.4912C10.1291,8.5179 10.1365,8.544 10.1323,8.568C10.1307,8.5792 10.0272,8.8117 10.0075,8.8565C10.0053,8.8613 10.0032,8.8635 10.0005,8.8635ZM9.1792,8.5237C9.2635,8.5248 9.3541,8.5323 9.4448,8.5467C9.7045,8.5904 9.9232,8.6821 9.9893,8.7781C10,8.7936 10.0064,8.8075 10.0085,8.8197C10.0571,8.7157 10.1168,8.5771 10.1195,8.5653C10.1227,8.5445 10.1168,8.5227 10.1008,8.4997C10.0293,8.3957 9.7883,8.2944 9.504,8.2485C9.4037,8.232 9.2976,8.2224 9.1979,8.2224L9.1819,8.2224C8.9616,8.2224 8.7563,8.2517 8.6288,8.2955L8.6277,8.6155C8.7541,8.5659 8.9589,8.5312 9.1792,8.5237Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7339,8.9637C9.8859,8.9531 9.9904,8.9104 10.0021,8.8459C10.0117,8.7947 9.9605,8.7408 9.8683,8.6907C9.8267,8.6939 9.7808,8.6997 9.7323,8.6997L9.7339,8.9637" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7269,8.9696L9.7259,8.6933L9.7323,8.6933C9.776,8.6933 9.8171,8.6896 9.8544,8.6821L9.8699,8.6821L9.8715,8.6821C9.9696,8.7381 10.0187,8.7947 10.0085,8.848C9.9968,8.9147 9.8971,8.9573 9.7344,8.9701L9.7269,8.9701L9.7269,8.9696ZM9.7392,8.7061L9.7408,8.9563C9.8901,8.944 9.9856,8.9029 9.9957,8.8448C10.0048,8.8011 9.9589,8.7456 9.8672,8.6949L9.856,8.696C9.8197,8.7019 9.7797,8.7056 9.7392,8.7061Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1819,8.7573C9.0864,8.7696 9.0149,8.7947 8.9792,8.824L8.976,8.8299C8.9595,8.8656 9.0432,8.9408 9.1824,9.0197L9.1824,8.7573" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1888,9.0325L9.1787,9.0283C9.1067,8.9845 8.944,8.8811 8.9691,8.8283L8.9749,8.8187C9.0117,8.7904 9.0821,8.7653 9.1803,8.7509L9.1872,8.7488L9.1888,9.0325ZM8.9856,8.8283L8.9824,8.8325C8.9717,8.8549 9.0171,8.9157 9.176,9.0096L9.176,8.7659C9.0859,8.7781 9.0192,8.8021 8.9856,8.8283Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M10.0757,9.4821C10.0891,9.4405 9.9419,9.3531 9.7312,9.2747C9.6357,9.2405 9.5557,9.2043 9.4571,9.1611C9.1659,9.032 8.9499,8.8821 8.976,8.8304L8.9792,8.8245C8.9632,8.8368 8.9397,9.1024 8.9397,9.1024C8.9136,9.1525 9.1104,9.2981 9.3792,9.4272C9.4651,9.4677 9.6469,9.5344 9.7323,9.5648C9.8859,9.6181 10.0384,9.7179 10.0245,9.7552L10.0757,9.4821" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M10.0245,9.7637C10.0235,9.7637 10.0229,9.7637 10.0229,9.7637C10.0197,9.7621 10.0165,9.7573 10.0176,9.7557L10.0187,9.752C10.0181,9.7157 9.8789,9.6229 9.7296,9.5707C9.6629,9.5477 9.4688,9.4779 9.3749,9.432C9.1403,9.3195 8.9531,9.1904 8.9317,9.1269C8.9285,9.1157 8.9291,9.1072 8.9323,9.1029C8.9387,9.032 8.9536,8.8864 8.9664,8.8352C8.9669,8.832 8.9685,8.8293 8.9691,8.8277L8.9701,8.8256C8.9717,8.8213 8.9723,8.8192 8.9744,8.8192C8.976,8.8165 8.9797,8.8165 8.9819,8.8192C8.984,8.8192 8.9851,8.8245 8.984,8.8277L8.9808,8.832C8.9787,8.8373 8.9787,8.8432 8.9808,8.8507C9.0059,8.9152 9.2059,9.0432 9.4592,9.1552L9.4843,9.1653C9.5707,9.2043 9.6443,9.2373 9.7317,9.2683C9.9184,9.3371 10.0987,9.4304 10.0811,9.4827L10.0811,9.4827L10.0309,9.7525C10.0309,9.7541 10.0309,9.7568 10.0293,9.7568C10.0293,9.7616 10.0267,9.7637 10.0245,9.7637ZM8.9749,8.8656C8.9664,8.9157 8.9541,9.0133 8.9461,9.1029C8.9461,9.1045 8.9456,9.1056 8.9451,9.1061C8.944,9.1093 8.944,9.1157 8.9451,9.1205C8.9659,9.1819 9.1531,9.3109 9.3819,9.4197C9.4635,9.4603 9.6416,9.528 9.7355,9.5584C9.8507,9.6 9.9872,9.6784 10.0229,9.728L10.0693,9.4811C10.0789,9.4475 9.9632,9.3669 9.7291,9.2811C9.6416,9.2496 9.5664,9.2155 9.48,9.1781L9.4539,9.1669C9.2064,9.0571 9.0133,8.9344 8.9749,8.8656Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.9632,8.5061C8.9856,8.4283 9.0112,8.3531 9.0384,8.2736C9.032,8.2768 9.0261,8.2779 9.0197,8.2779C9.0139,8.2779 9.0075,8.2795 9.0011,8.2795C8.9888,8.3344 8.9728,8.3904 8.9541,8.4448C8.9211,8.3968 8.8853,8.3509 8.8571,8.3019C8.8464,8.3029 8.8352,8.3061 8.8229,8.3072C8.8123,8.3083 8.8005,8.3093 8.7883,8.3115C8.8379,8.3781 8.8853,8.4432 8.9301,8.5115C8.9355,8.5093 8.9413,8.5072 8.9477,8.5072C8.9525,8.5061 8.9579,8.5072 8.9632,8.5061M9.1728,8.2773C9.1632,8.2773 9.1531,8.2784 9.1424,8.2784C9.1323,8.2784 9.1227,8.2763 9.1131,8.2752L9.1093,8.4907L9.2608,8.4939C9.2608,8.4907 9.2592,8.4843 9.2597,8.4811C9.2597,8.4773 9.2608,8.4699 9.2608,8.4677C9.2341,8.4693 9.2048,8.4704 9.1701,8.4704L9.1728,8.2773M9.4107,8.3115C9.4352,8.3147 9.4587,8.3184 9.4821,8.3211C9.4821,8.3173 9.4816,8.3136 9.4821,8.3077C9.4821,8.3035 9.4832,8.2992 9.4853,8.2955L9.2789,8.2789C9.2789,8.2832 9.28,8.2875 9.2795,8.2912C9.2789,8.2955 9.2784,8.3019 9.2763,8.3051C9.2981,8.3035 9.3227,8.3035 9.3509,8.3067L9.3333,8.5029C9.344,8.5029 9.3541,8.5029 9.3632,8.5029C9.3728,8.5029 9.3829,8.5056 9.3931,8.5061L9.4107,8.3115M9.4944,8.5259C9.5045,8.528 9.5152,8.528 9.5253,8.5307C9.5355,8.5323 9.5445,8.5344 9.5541,8.5387L9.5781,8.4395L9.5803,8.4405C9.5856,8.4528 9.5941,8.4699 9.5973,8.4779L9.6277,8.5547C9.6389,8.5563 9.6507,8.5573 9.6624,8.5595C9.6747,8.5637 9.6864,8.5659 9.6971,8.5701L9.6869,8.5461C9.6709,8.5136 9.6528,8.4784 9.6389,8.4453C9.6768,8.4453 9.7056,8.4331 9.7131,8.4037C9.7179,8.3819 9.7099,8.3664 9.6901,8.3515C9.6752,8.3408 9.6464,8.3339 9.6283,8.3312L9.5467,8.3131L9.4944,8.5259M9.6005,8.3408C9.6256,8.3461 9.6549,8.352 9.6549,8.3781C9.6549,8.3835 9.6544,8.3904 9.6533,8.3936C9.6448,8.4272 9.6213,8.4368 9.5813,8.4251L9.6005,8.3408M9.8859,8.5904C9.8848,8.6144 9.88,8.6363 9.8757,8.6613C9.8859,8.6656 9.8965,8.6699 9.9072,8.6768C9.9168,8.6811 9.9259,8.688 9.9355,8.6933L9.9557,8.4485C9.9509,8.4453 9.9467,8.4443 9.9419,8.4427C9.9381,8.44 9.9333,8.4379 9.9296,8.4325L9.7136,8.5701C9.72,8.5744 9.7259,8.5776 9.7312,8.5803C9.7365,8.5819 9.7424,8.5861 9.7472,8.5904C9.7648,8.5749 9.784,8.5621 9.8059,8.5445L9.8859,8.5904L9.8859,8.5904ZM9.8256,8.5333L9.8976,8.4885L9.888,8.5685L9.8256,8.5333" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1573,6.3936C6.1163,6.3936 6.0837,6.3621 6.0837,6.3227C6.0837,6.2832 6.1163,6.2528 6.1573,6.2528C6.1984,6.2528 6.2315,6.2832 6.2315,6.3227C6.2315,6.3621 6.1989,6.3936 6.1573,6.3936ZM6.1573,6.2549C6.1179,6.2549 6.0848,6.2848 6.0848,6.3232C6.0848,6.3616 6.1179,6.3925 6.1573,6.3925C6.1973,6.3925 6.2304,6.3616 6.2304,6.3232C6.2304,6.2848 6.1979,6.2549 6.1573,6.2549Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.912,5.7237C7.1365,5.7237 7.3365,5.7573 7.4667,5.8069C7.5419,5.8416 7.6416,5.8667 7.7509,5.8821C7.8357,5.8933 7.9136,5.8944 7.9829,5.8907C8.0763,5.8896 8.2091,5.9157 8.3424,5.9739C8.4533,6.0219 8.5451,6.0821 8.6069,6.1408L8.5536,6.1877L8.5387,6.32L8.3925,6.4885L8.32,6.5499L8.1483,6.6875L8.0608,6.6949L8.0331,6.7701L6.92,6.6411L5.8027,6.7701L5.776,6.6949L5.6885,6.6875L5.5163,6.5499L5.4432,6.4885L5.2987,6.32L5.2827,6.1877L5.2293,6.1408C5.2912,6.0827 5.3829,6.0219 5.4933,5.9739C5.6261,5.9157 5.7605,5.8896 5.8523,5.8907C5.9216,5.8949 6.0011,5.8933 6.0843,5.8821C6.1941,5.8672 6.2944,5.8421 6.3685,5.8069C6.4976,5.7573 6.6875,5.7237 6.912,5.7237Z" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0352,6.776L8.032,6.7749L6.9195,6.6448L5.7995,6.776L5.7728,6.6987L5.6853,6.6901L5.6853,6.6901L5.5131,6.5525L5.4395,6.4901L5.2928,6.3227L5.2928,6.3205L5.2784,6.1904L5.2229,6.1403L5.2261,6.1371C5.2912,6.0779 5.3856,6.0165 5.4923,5.9696C5.6117,5.9168 5.7435,5.8843 5.8443,5.8843C5.8469,5.8843 5.8501,5.8853 5.8528,5.8853C5.9243,5.8907 6.0043,5.8896 6.0843,5.8779C6.1979,5.8624 6.2955,5.8373 6.368,5.8043C6.5061,5.7493 6.7003,5.7195 6.9136,5.7195C7.1307,5.7195 7.3333,5.7509 7.4704,5.8043C7.5429,5.8373 7.6395,5.8619 7.7531,5.8779C7.8336,5.8891 7.9136,5.8901 7.9835,5.8853C7.9867,5.8853 7.9899,5.8843 7.9931,5.8843C8.0933,5.8843 8.2251,5.9173 8.3461,5.9696C8.4523,6.0171 8.5461,6.0779 8.6112,6.1371L8.6149,6.1403L8.5589,6.1904L8.544,6.3227L8.3979,6.4901L8.3253,6.5525L8.1515,6.6901L8.1504,6.6901L8.0656,6.6987L8.0352,6.776ZM5.6885,6.6821L5.7787,6.6907L5.8048,6.7659L6.9189,6.6357L8.0288,6.7659L8.0565,6.6907L8.1451,6.6821L8.3163,6.5445L8.3888,6.4832L8.5333,6.32L8.5483,6.1845L8.5995,6.1408C8.536,6.0816 8.4443,6.024 8.3408,5.9781C8.2213,5.9259 8.0917,5.8949 7.9915,5.8949C7.9883,5.8949 7.9851,5.8949 7.9824,5.8949C7.96,5.8949 7.9349,5.896 7.9099,5.896C7.8576,5.896 7.8037,5.8939 7.7504,5.8864C7.6363,5.8699 7.5381,5.8448 7.4651,5.8133C7.3291,5.7573 7.128,5.728 6.912,5.728C6.7008,5.728 6.5067,5.7573 6.3691,5.8133C6.2976,5.8448 6.1979,5.8693 6.0843,5.8864C6.0037,5.896 5.9227,5.8997 5.8507,5.8949C5.8485,5.8949 5.8459,5.8949 5.8427,5.8949C5.7435,5.8949 5.6123,5.9264 5.4939,5.9781C5.3909,6.024 5.2981,6.0811 5.2347,6.1408L5.2859,6.1845L5.2864,6.1877L5.3008,6.32L5.4459,6.4848L5.5184,6.5451L5.6885,6.6821Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9291,7.1936C6.5136,7.1936 6.1419,7.1435 5.8773,7.0656C5.8576,7.0571 5.848,7.0405 5.8485,7.0208C5.848,7.0048 5.8587,6.9883 5.8773,6.9824C6.1424,6.9035 6.5136,6.8533 6.9291,6.8533C7.3445,6.8533 7.7157,6.9035 7.9803,6.9824C7.9989,6.9888 8.0091,7.0048 8.0085,7.0208C8.0101,7.0405 8,7.0571 7.9803,7.0656C7.7152,7.144 7.3445,7.1936 6.9291,7.1936" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9291,7.2011L6.9291,7.2011C6.5259,7.2 6.1509,7.1531 5.8757,7.0699C5.8539,7.0656 5.8416,7.0448 5.8421,7.0197C5.8421,7.0011 5.8544,6.9824 5.8757,6.9771C6.1515,6.8933 6.5259,6.8459 6.9291,6.8448C7.3317,6.8459 7.7067,6.8933 7.9819,6.9771C8.0032,6.9824 8.0165,7.0011 8.0155,7.0208C8.0165,7.0448 8.0043,7.0656 7.9819,7.0699C7.7067,7.1531 7.3317,7.2 6.9291,7.2011ZM6.9291,6.8581C6.5269,6.8592 6.1541,6.9061 5.8789,6.9893C5.8635,6.9936 5.8549,7.0059 5.8555,7.0208C5.8544,7.0405 5.8635,7.0533 5.8789,7.0571C6.1541,7.1403 6.5264,7.1861 6.9291,7.1872C7.3312,7.1861 7.704,7.1403 7.9792,7.0571C7.9947,7.0528 8.0032,7.0405 8.0021,7.0219C8.0027,7.0064 7.9936,6.9936 7.9792,6.9893C7.704,6.9061 7.3307,6.8592 6.9291,6.8581Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.928,7.1408C6.5536,7.1408 6.2149,7.0949 5.9568,7.0283C6.2149,6.9627 6.5541,6.92 6.928,6.92C7.3019,6.92 7.6421,6.9627 7.9003,7.0283C7.6421,7.0949 7.3019,7.1408 6.928,7.1408" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9851,7.0187l0.0315,0l0,0.0219l-0.0315,0z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9253,6.8533C6.5067,6.8533 6.1285,6.9067 5.8635,6.9888C5.8859,6.9781 5.8843,6.9515 5.8565,6.88C5.8229,6.7941 5.7723,6.7973 5.7723,6.7973C6.0651,6.712 6.4725,6.6576 6.928,6.6565C7.3819,6.6576 7.7941,6.712 8.0869,6.7973C8.0869,6.7973 8.0347,6.7941 8.0021,6.88C7.9755,6.9515 7.9723,6.9787 7.9941,6.9888C7.7291,6.9061 7.3456,6.8533 6.9253,6.8533" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9931,6.9936C7.7168,6.9072 7.3291,6.8592 6.9259,6.8571C6.5291,6.8592 6.1419,6.9072 5.8667,6.9936L5.8613,6.9813C5.8757,6.9749 5.8795,6.9563 5.8507,6.8821C5.8219,6.8059 5.7781,6.8043 5.7728,6.8043L5.7696,6.7904C6.0779,6.7008 6.488,6.6507 6.928,6.6496C7.3691,6.6507 7.7819,6.7008 8.088,6.7904L8.0864,6.8043L8.0864,6.8043C8.0816,6.8043 8.0379,6.8059 8.0085,6.8821C7.9792,6.9563 7.9824,6.9749 7.9979,6.9813L7.9931,6.9936ZM6.9253,6.8448C7.3189,6.8448 7.7003,6.8939 7.9755,6.9749C7.9691,6.9557 7.9787,6.9227 7.9963,6.8779C8.0165,6.8277 8.0416,6.8059 8.0608,6.7957C7.7568,6.7104 7.3568,6.6645 6.928,6.6635C6.5003,6.6645 6.1003,6.7104 5.7973,6.7957C5.8171,6.8064 5.8432,6.8283 5.8629,6.8779C5.8811,6.9227 5.8901,6.9557 5.8843,6.9749C6.1595,6.8939 6.5376,6.8448 6.9253,6.8448Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.928,6.656C6.4725,6.6571 6.0656,6.7115 5.7723,6.7968C5.752,6.8032 5.7312,6.7947 5.7253,6.7781C5.7189,6.7573 5.7291,6.7387 5.7488,6.7323C6.0437,6.6405 6.4624,6.5845 6.9275,6.5824C7.3931,6.5835 7.8123,6.6405 8.1072,6.7323C8.1275,6.7387 8.1371,6.7573 8.1307,6.7781C8.1243,6.7947 8.1035,6.8032 8.0843,6.7968C7.7915,6.7115 7.3819,6.6571 6.928,6.656" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0981,6.8064C8.0939,6.8064 8.088,6.8064 8.0837,6.8048C7.7781,6.7157 7.3675,6.6656 6.928,6.6635C6.4885,6.6656 6.0789,6.7157 5.7733,6.8048C5.7691,6.8064 5.7632,6.8064 5.7589,6.8064C5.7403,6.8064 5.7248,6.7952 5.7189,6.7797C5.7163,6.7685 5.7163,6.7573 5.7216,6.7461C5.7264,6.7365 5.7355,6.7285 5.7472,6.7264C6.056,6.6315 6.4752,6.5787 6.9275,6.5787C7.3744,6.5787 7.8053,6.6331 8.1093,6.7264C8.1205,6.7285 8.1296,6.7371 8.1344,6.7461C8.1408,6.7573 8.1408,6.7691 8.1371,6.7797C8.1323,6.7947 8.1168,6.8064 8.0981,6.8064ZM6.928,6.6501C7.3691,6.6512 7.7808,6.7024 8.088,6.7909C8.104,6.7952 8.1211,6.7909 8.1253,6.7765C8.1285,6.7691 8.1275,6.76 8.1237,6.7536C8.1195,6.7451 8.1131,6.7413 8.1067,6.7403C7.8032,6.6453 7.3728,6.5915 6.928,6.5915C6.4757,6.5915 6.0587,6.6448 5.7504,6.7403C5.7435,6.7413 5.7376,6.7456 5.7333,6.7536C5.7296,6.76 5.7291,6.7691 5.7317,6.7765C5.7365,6.7909 5.7541,6.7952 5.7696,6.7909C6.0768,6.7019 6.488,6.6512 6.928,6.6501Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.6037,6.7584C6.6037,6.7408 6.6197,6.7248 6.6411,6.7248C6.6608,6.7248 6.6779,6.7403 6.6779,6.7584C6.6779,6.7781 6.6608,6.7947 6.6411,6.7947C6.6197,6.7947 6.6037,6.7781 6.6037,6.7584" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.6416,6.8032C6.6165,6.8032 6.5979,6.7824 6.5979,6.7584C6.5979,6.7365 6.6165,6.7184 6.6416,6.7184C6.6651,6.7184 6.6853,6.7365 6.6853,6.7584C6.6853,6.7824 6.6651,6.8032 6.6416,6.8032ZM6.6416,6.7312C6.624,6.7312 6.6101,6.7435 6.6101,6.7584C6.6101,6.776 6.624,6.7899 6.6416,6.7899C6.6571,6.7899 6.672,6.7765 6.672,6.7584C6.6715,6.744 6.6571,6.7312 6.6416,6.7312Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9291,6.7877L6.8176,6.7877C6.7979,6.7877 6.7803,6.7701 6.7803,6.7536C6.7803,6.7328 6.7973,6.7179 6.8171,6.7179L7.0421,6.7179C7.0635,6.7179 7.0795,6.7328 7.0795,6.7536C7.0795,6.7701 7.0624,6.7877 7.0421,6.7877L6.9291,6.7877" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0416,6.7936L6.8176,6.7936C6.7936,6.7936 6.7733,6.776 6.7733,6.7531C6.7733,6.728 6.7936,6.7093 6.8171,6.7093L7.0421,6.7093C7.0672,6.7093 7.0859,6.728 7.0859,6.7531C7.0853,6.776 7.0667,6.7936 7.0416,6.7936ZM6.8165,6.7237C6.8005,6.7237 6.7867,6.736 6.7867,6.7531C6.7867,6.768 6.8005,6.7813 6.8176,6.7813L7.0416,6.7813C7.0587,6.7813 7.0731,6.7685 7.0731,6.7531C7.0731,6.7365 7.0592,6.7237 7.0416,6.7237L6.8165,6.7237Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.3696,6.8181L6.2907,6.8283C6.2693,6.8299 6.2507,6.816 6.248,6.7957C6.2459,6.7781 6.2603,6.7595 6.2811,6.7573L6.3611,6.7477L6.4432,6.7403C6.4635,6.736 6.4821,6.7499 6.4853,6.7696C6.4869,6.7893 6.4731,6.8059 6.4512,6.8069L6.3696,6.8181" + android:strokeWidth="1" + android:fillColor="#058E6E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.2853,6.8325C6.2629,6.8325 6.2443,6.8192 6.2416,6.7973C6.2411,6.7872 6.2437,6.7776 6.2507,6.7675C6.2571,6.7573 6.2683,6.7536 6.28,6.7525L6.4421,6.7328C6.4667,6.7301 6.4885,6.7451 6.4917,6.7691C6.4917,6.7787 6.4891,6.7909 6.4821,6.7984C6.4757,6.808 6.464,6.8149 6.4528,6.816L6.2917,6.8325C6.2891,6.8325 6.288,6.8325 6.2853,6.8325ZM6.4475,6.7445C6.4464,6.7445 6.4443,6.7445 6.4443,6.7445L6.2816,6.7653C6.2725,6.7653 6.2661,6.7685 6.2597,6.776C6.256,6.7813 6.2533,6.7893 6.2544,6.7947C6.2565,6.8112 6.2725,6.8219 6.2885,6.8197L6.4501,6.8032C6.4592,6.8021 6.4661,6.7947 6.4725,6.7909C6.4757,6.7835 6.4789,6.7787 6.4779,6.7701C6.4757,6.7563 6.4629,6.7445 6.4475,6.7445Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0448,6.8251C6.0448,6.8059 6.0619,6.7909 6.0816,6.7909C6.1029,6.7909 6.1189,6.8059 6.1189,6.8251C6.1189,6.8448 6.1029,6.8592 6.0816,6.8592C6.0619,6.8592 6.0448,6.8448 6.0448,6.8251" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0816,6.8656C6.0581,6.8656 6.0379,6.8469 6.0379,6.8251C6.0379,6.8032 6.0581,6.7824 6.0816,6.7824C6.1067,6.7824 6.1253,6.8032 6.1253,6.8251C6.1253,6.8469 6.1067,6.8656 6.0816,6.8656ZM6.0816,6.7947C6.0656,6.7947 6.0512,6.8069 6.0512,6.8251C6.0512,6.8405 6.0651,6.8533 6.0816,6.8533C6.0987,6.8533 6.1131,6.8411 6.1131,6.8251C6.1131,6.8075 6.0992,6.7947 6.0816,6.7947Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.7979,6.8907l0.0411,-0.0571l0.1152,0.016l-0.0917,0.0661l-0.0645,-0.0251" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.8629,6.9227L5.7877,6.8901L5.8357,6.8277L5.9696,6.8443L5.8629,6.9227ZM5.8085,6.8853L5.8613,6.9072L5.936,6.8528L5.8421,6.8416L5.8085,6.8853Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.488,6.8181L7.5664,6.8283C7.5877,6.8299 7.6064,6.816 7.6091,6.7957C7.6107,6.7781 7.5973,6.7595 7.576,6.7573L7.496,6.7477L7.4139,6.7403C7.3936,6.736 7.3749,6.7499 7.3723,6.7696C7.3701,6.7893 7.3845,6.8059 7.4059,6.8069L7.488,6.8181" + android:strokeWidth="1" + android:fillColor="#058E6E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.5728,6.8325L7.5728,6.8325C7.5696,6.8325 7.5685,6.8325 7.5664,6.8325L7.4048,6.816C7.3931,6.8149 7.3819,6.8075 7.3755,6.7984C7.368,6.7909 7.3653,6.7787 7.3664,6.7691C7.3691,6.7451 7.3915,6.7301 7.4155,6.7328L7.5776,6.7525C7.5888,6.7536 7.6,6.7579 7.6069,6.7675C7.6133,6.7776 7.6165,6.7867 7.6165,6.7973C7.6128,6.8187 7.5941,6.8325 7.5728,6.8325ZM7.4101,6.7445C7.3941,6.7445 7.3819,6.7557 7.3792,6.7696C7.3792,6.7781 7.3808,6.7829 7.3851,6.7904C7.3904,6.7947 7.3973,6.8016 7.4069,6.8027L7.568,6.8192C7.5851,6.8213 7.6005,6.8096 7.6027,6.7941C7.6037,6.7888 7.6005,6.7808 7.5968,6.7755C7.5915,6.768 7.5845,6.7648 7.5755,6.7648L7.4128,6.744C7.4128,6.7445 7.4107,6.7445 7.4101,6.7445Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.1787,6.7584C7.1787,6.7408 7.1963,6.7248 7.216,6.7248C7.2373,6.7248 7.2533,6.7403 7.2533,6.7584C7.2533,6.7781 7.2368,6.7947 7.216,6.7947C7.1963,6.7947 7.1787,6.7781 7.1787,6.7584" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2165,6.8032C7.1925,6.8032 7.1728,6.7824 7.1728,6.7584C7.1728,6.7365 7.1925,6.7184 7.2165,6.7184C7.2416,6.7184 7.2603,6.7365 7.2603,6.7584C7.2603,6.7824 7.2416,6.8032 7.2165,6.8032ZM7.2165,6.7312C7.2005,6.7312 7.1856,6.7435 7.1856,6.7584C7.1856,6.776 7.2005,6.7899 7.2165,6.7899C7.2336,6.7899 7.248,6.7765 7.248,6.7584C7.2475,6.744 7.2336,6.7312 7.2165,6.7312Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7381,6.8251C7.7381,6.8059 7.7541,6.7909 7.7755,6.7909C7.7952,6.7909 7.8128,6.8059 7.8128,6.8251C7.8128,6.8448 7.7952,6.8592 7.7755,6.8592C7.7541,6.8592 7.7381,6.8448 7.7381,6.8251" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7755,6.8656C7.7504,6.8656 7.7317,6.8469 7.7317,6.8251C7.7317,6.8032 7.7504,6.7824 7.7755,6.7824C7.7989,6.7824 7.8192,6.8032 7.8192,6.8251C7.8192,6.8469 7.7995,6.8656 7.7755,6.8656ZM7.7755,6.7947C7.7579,6.7947 7.744,6.8069 7.744,6.8251C7.744,6.8405 7.7579,6.8533 7.7755,6.8533C7.7915,6.8533 7.8059,6.8411 7.8059,6.8251C7.8059,6.8075 7.7915,6.7947 7.7755,6.7947Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0603,6.8907l-0.0416,-0.0571l-0.1147,0.016l0.0912,0.0661l0.0651,-0.0251" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9941,6.9227L7.8869,6.8448L8.0208,6.8283L8.0688,6.8907L7.9941,6.9227ZM7.9221,6.8533L7.9968,6.9077L8.0496,6.8859L8.016,6.8427L7.9221,6.8533ZM7.9435,7.0459C7.6704,6.9696 7.3104,6.928 6.9285,6.928C6.5483,6.928 6.1877,6.9696 5.9147,7.0459L5.9109,7.0336C6.1856,6.9573 6.5461,6.9157 6.9285,6.9157C7.3109,6.9157 7.6731,6.9573 7.9472,7.0336L7.9435,7.0459Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0891,6.0181L6.136,6.0555L6.2069,5.9403C6.1301,5.8933 6.0784,5.8133 6.0784,5.7195C6.0784,5.7083 6.0789,5.6997 6.0795,5.6901C6.0875,5.5429 6.2667,5.4192 6.4928,5.4192C6.6101,5.4192 6.7163,5.4528 6.7915,5.5051C6.7941,5.4816 6.7957,5.464 6.7989,5.4416C6.7168,5.3941 6.6101,5.3648 6.4928,5.3648C6.232,5.3648 6.0283,5.5136 6.0181,5.6896C6.0165,5.6992 6.0165,5.7072 6.0165,5.7189C6.0165,5.8139 6.0597,5.8971 6.1264,5.9552L6.0891,6.0181" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1381,6.0656L6.0811,6.0197L6.1184,5.9573C6.0491,5.8949 6.0101,5.8085 6.0101,5.72C6.0101,5.7088 6.0101,5.6992 6.0112,5.6896C6.0224,5.5029 6.2331,5.3573 6.4928,5.3573C6.6069,5.3573 6.7163,5.3867 6.8021,5.4368L6.8069,5.4405L6.8059,5.4437C6.8032,5.4613 6.8011,5.4795 6.7979,5.5061L6.7979,5.5173L6.7883,5.5104C6.712,5.4571 6.6043,5.4283 6.4928,5.4283C6.2725,5.4283 6.0944,5.5435 6.0864,5.6907C6.0853,5.7003 6.0853,5.7083 6.0853,5.72C6.0853,5.8064 6.1317,5.8869 6.2101,5.9344L6.2165,5.9397L6.1381,6.0656ZM6.0976,6.0155L6.1349,6.0448L6.1973,5.9435C6.1184,5.8923 6.0715,5.8075 6.0715,5.72C6.0715,5.7077 6.0725,5.6992 6.0725,5.6896C6.0811,5.5344 6.2656,5.4155 6.4928,5.4155C6.6037,5.4155 6.7072,5.4432 6.7856,5.4933C6.7877,5.4747 6.7893,5.4592 6.7915,5.4443C6.7077,5.3973 6.6021,5.3701 6.4928,5.3701C6.2405,5.3701 6.0352,5.5109 6.0251,5.6901C6.0235,5.6997 6.0229,5.7088 6.0229,5.7195C6.0229,5.8069 6.0635,5.8917 6.1323,5.9531L6.1355,5.9557L6.0976,6.0155Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0917,6.0187C6.0037,5.9531 5.9472,5.8624 5.9472,5.7632C5.9472,5.6475 6.0224,5.5445 6.1365,5.4779C6.0661,5.5333 6.0235,5.6069 6.0176,5.6901C6.016,5.6997 6.016,5.7077 6.016,5.7195C6.016,5.8144 6.0592,5.8976 6.1259,5.9557L6.0917,6.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0944,6.0283L6.088,6.0251C5.9941,5.9531 5.9413,5.8603 5.9413,5.7637C5.9413,5.6523 6.0112,5.5451 6.1333,5.472L6.1413,5.4827C6.0704,5.5408 6.0304,5.6117 6.0245,5.6912C6.0229,5.7008 6.0224,5.7099 6.0224,5.7205C6.0224,5.808 6.0629,5.8928 6.1317,5.9541L6.1349,5.9568L6.0944,6.0283ZM6.0757,5.5296C5.9979,5.5947 5.9541,5.6779 5.9541,5.7632C5.9541,5.8544 6.0032,5.9419 6.0907,6.008L6.1189,5.9568C6.0496,5.8944 6.0101,5.808 6.0101,5.7195C6.0101,5.7083 6.0101,5.6987 6.0112,5.6891C6.0165,5.6315 6.0379,5.5781 6.0757,5.5296Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.3067,6.1344C5.2565,6.0795 5.2261,6.0075 5.2261,5.928C5.2261,5.8811 5.2379,5.8341 5.2571,5.7947C5.3291,5.6448 5.5557,5.5392 5.824,5.5392C5.8976,5.5392 5.9669,5.5445 6.032,5.5611C6.0176,5.5776 6.0069,5.5936 5.9952,5.6112C5.9413,5.6016 5.8843,5.5947 5.824,5.5947C5.5792,5.5947 5.3728,5.6907 5.3131,5.8197C5.2976,5.8533 5.288,5.8907 5.288,5.928C5.288,6.0069 5.3253,6.0779 5.3819,6.1259L5.2939,6.2699L5.2453,6.2325L5.3067,6.1344" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.2944,6.2805L5.2368,6.2331L5.2981,6.1349C5.2469,6.0779 5.2192,6.0027 5.2192,5.9275C5.2192,5.88 5.2304,5.8325 5.2512,5.7899C5.3269,5.6357 5.5568,5.5317 5.824,5.5317C5.8971,5.5317 5.9664,5.5403 6.0336,5.5541L6.0448,5.5568L6.0373,5.5653C6.0229,5.5808 6.0128,5.5968 6.0011,5.6155L5.9989,5.6187L5.9952,5.6181C5.9403,5.6069 5.8827,5.6032 5.8251,5.6032C5.5877,5.6032 5.3803,5.6933 5.3205,5.8219C5.3045,5.856 5.2955,5.8907 5.2955,5.928C5.2955,6.0032 5.3301,6.0699 5.3877,6.1195L5.3925,6.1237L5.2944,6.2805ZM5.2539,6.2315L5.2912,6.2608L5.3733,6.1285C5.3147,6.0763 5.2816,6.0037 5.2816,5.9285C5.2816,5.8912 5.2901,5.8533 5.3067,5.8176C5.3691,5.6827 5.5819,5.5899 5.824,5.5899C5.8816,5.5899 5.9381,5.5941 5.992,5.6032C6.0005,5.5909 6.0101,5.5781 6.0192,5.5659C5.9568,5.5536 5.8912,5.5451 5.824,5.5451C5.5664,5.5451 5.3349,5.6491 5.2629,5.7973C5.2432,5.84 5.2325,5.8827 5.2325,5.9285C5.2325,6.0037 5.2603,6.0741 5.3115,6.1317L5.3125,6.1328L5.3125,6.1381L5.3125,6.1413L5.2539,6.2315Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.3979,5.6469C5.3333,5.6896 5.2853,5.7397 5.2571,5.7947C5.2384,5.8341 5.2261,5.8811 5.2261,5.928C5.2261,6.0069 5.2571,6.0795 5.3067,6.1344L5.2528,6.2219C5.2,6.1563 5.1707,6.0779 5.1707,5.9947C5.1707,5.8549 5.2613,5.7307 5.3979,5.6469" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.2539,6.2336L5.2475,6.2283C5.1931,6.1573 5.1643,6.0784 5.1643,5.9947C5.1643,5.8581 5.2475,5.7307 5.3947,5.6421L5.4016,5.6533C5.3376,5.6939 5.2896,5.744 5.2635,5.7973C5.2437,5.84 5.2331,5.8827 5.2331,5.9285C5.2331,6.0037 5.2608,6.0741 5.312,6.1317L5.3152,6.1339L5.2539,6.2336ZM5.2619,5.7707C5.2064,5.8405 5.1776,5.9152 5.1776,5.9947C5.1776,6.0699 5.2037,6.1445 5.2523,6.2112L5.2987,6.1349C5.2475,6.0779 5.2197,6.0027 5.2197,5.9275C5.2197,5.88 5.2309,5.8325 5.2517,5.7899C5.2544,5.7845 5.2576,5.7781 5.2619,5.7707Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9253,5.3365C6.9851,5.3365 7.0352,5.376 7.0475,5.4283C7.0565,5.4763 7.0603,5.5285 7.0624,5.5845C7.0624,5.5909 7.0619,5.5952 7.0619,5.6032C7.0619,5.6075 7.0629,5.6155 7.0629,5.6229C7.0656,5.7424 7.0816,5.8459 7.1067,5.9115L6.9253,6.0843L6.7413,5.9115C6.7664,5.8459 6.7819,5.7424 6.7851,5.6229C6.7851,5.6155 6.7856,5.6075 6.7856,5.6032C6.7856,5.5947 6.7851,5.5909 6.7851,5.5845C6.7867,5.5285 6.7909,5.4763 6.8,5.4283C6.8123,5.376 6.8656,5.3365 6.9253,5.3365" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9253,6.0949L6.7333,5.9147L6.7349,5.9072C6.76,5.8437 6.7755,5.7371 6.7787,5.6229C6.7787,5.6197 6.7787,5.6155 6.7787,5.6133C6.7787,5.608 6.7787,5.6059 6.7787,5.6027C6.7787,5.6005 6.7787,5.5963 6.7787,5.5941C6.7787,5.5915 6.7787,5.5888 6.7787,5.5835C6.7797,5.5285 6.7851,5.4773 6.7936,5.4272C6.8064,5.3691 6.8629,5.3285 6.9253,5.3285C6.9872,5.3285 7.0411,5.3685 7.0539,5.4272C7.0629,5.4763 7.0672,5.5275 7.0693,5.5835C7.0693,5.5888 7.0693,5.5899 7.0688,5.5941C7.0688,5.5963 7.0688,5.5995 7.0688,5.6027C7.0688,5.6053 7.0693,5.6069 7.0693,5.6117C7.0693,5.6155 7.0693,5.6197 7.0693,5.6229C7.0725,5.7355 7.088,5.8432 7.1131,5.9072L7.1136,5.9147L6.9253,6.0949ZM6.7488,5.9083L6.9253,6.0768L7.0981,5.9083C7.0741,5.8421 7.0581,5.7344 7.0565,5.6229C7.0565,5.6197 7.0565,5.6155 7.056,5.6133C7.0555,5.608 7.0549,5.6059 7.0549,5.6027C7.0549,5.5995 7.0549,5.5952 7.0549,5.5941C7.0549,5.5899 7.0555,5.5888 7.0549,5.5835C7.0533,5.5285 7.0496,5.4773 7.0411,5.4288C7.0293,5.3787 6.9808,5.3424 6.9253,5.3424C6.8693,5.3424 6.8171,5.3797 6.8064,5.4288C6.7973,5.4773 6.7936,5.5301 6.792,5.5835C6.792,5.5888 6.792,5.5915 6.792,5.5941C6.792,5.5963 6.792,5.5995 6.792,5.6027C6.792,5.6059 6.7915,5.6091 6.7909,5.6149C6.7909,5.6165 6.7909,5.6192 6.7909,5.6224C6.7888,5.7355 6.7728,5.8432 6.7488,5.9083Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9253,5.3931C6.9563,5.3931 6.9813,5.4123 6.9877,5.4405C6.9957,5.4821 7,5.5333 7.0011,5.5883C7.0011,5.5936 7.0005,5.5989 7.0005,5.6027C7.0005,5.6101 7.0027,5.6165 7.0027,5.6235C7.0037,5.736 7.0203,5.8341 7.0437,5.8944L6.9232,6.008L6.8032,5.8944C6.8261,5.8352 6.8427,5.736 6.8443,5.6235C6.8443,5.6165 6.8464,5.6101 6.8464,5.6027C6.8464,5.5984 6.8459,5.5931 6.8459,5.5883C6.8469,5.5328 6.8512,5.4821 6.8597,5.4405C6.8667,5.4123 6.8944,5.3931 6.9253,5.3931" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9237,6.0187L6.7968,5.8976L6.7973,5.8933C6.8213,5.8309 6.8363,5.7307 6.8379,5.6235C6.8379,5.6192 6.8384,5.6165 6.8389,5.6139C6.8395,5.6085 6.84,5.6064 6.84,5.6027C6.84,5.6027 6.84,5.5984 6.84,5.5941C6.84,5.5931 6.84,5.5899 6.84,5.5877C6.8416,5.5344 6.8453,5.4827 6.8544,5.4389C6.8608,5.4064 6.8917,5.3856 6.9259,5.3856C6.9595,5.3856 6.9883,5.4064 6.9947,5.4389C7.0032,5.4827 7.0069,5.536 7.0085,5.5877C7.0085,5.5899 7.0085,5.5931 7.0085,5.5941C7.0085,5.5984 7.0085,5.6027 7.0085,5.6027C7.0085,5.6069 7.0091,5.6101 7.0096,5.6149C7.0096,5.6165 7.0101,5.6192 7.0107,5.6235C7.0112,5.7307 7.0261,5.8309 7.0512,5.8933L7.0517,5.8976L6.9237,6.0187ZM6.8117,5.8949L6.9237,6.0021L7.0352,5.8949C7.0128,5.8309 6.9973,5.7307 6.9957,5.6245C6.9957,5.6197 6.9952,5.6187 6.9947,5.6155C6.9941,5.6112 6.9941,5.6069 6.9941,5.6032C6.9941,5.6032 6.9941,5.5989 6.9941,5.5947C6.9941,5.5936 6.9941,5.5904 6.9941,5.5883C6.9941,5.5371 6.9888,5.4864 6.9813,5.4405C6.9749,5.4155 6.9525,5.3995 6.9253,5.3995C6.8976,5.3995 6.8715,5.4171 6.8661,5.4405C6.8581,5.4853 6.8539,5.5371 6.8528,5.5883C6.8528,5.5904 6.8528,5.5936 6.8533,5.5947C6.8533,5.5989 6.8533,5.6032 6.8533,5.6032C6.8533,5.6075 6.8528,5.6117 6.8523,5.6155C6.8517,5.6181 6.8512,5.6197 6.8512,5.6245C6.8507,5.7307 6.8352,5.8315 6.8117,5.8949Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7595,6.0181L7.7131,6.0555L7.6416,5.9403C7.7189,5.8933 7.7707,5.8133 7.7707,5.7195C7.7707,5.7083 7.7696,5.6997 7.7696,5.6901C7.7616,5.5429 7.5819,5.4192 7.3568,5.4192C7.2384,5.4192 7.1323,5.4528 7.0571,5.5051C7.0549,5.4816 7.0533,5.464 7.0501,5.4416C7.1323,5.3941 7.2389,5.3648 7.3568,5.3648C7.6171,5.3648 7.8213,5.5136 7.8315,5.6896C7.832,5.6992 7.832,5.7072 7.832,5.7189C7.832,5.8139 7.7893,5.8971 7.7227,5.9552L7.7595,6.0181" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7104,6.0656L7.6325,5.9397L7.6384,5.9344C7.7168,5.8869 7.7637,5.8064 7.7637,5.72C7.7637,5.7088 7.7632,5.7003 7.7627,5.6907C7.7547,5.5435 7.576,5.4283 7.3563,5.4283C7.2427,5.4283 7.1381,5.4576 7.0603,5.5104L7.0507,5.5173L7.0507,5.5061C7.048,5.4821 7.0469,5.4656 7.0432,5.4437L7.0421,5.4405L7.0464,5.4368C7.1317,5.3861 7.2421,5.3573 7.3563,5.3573C7.6155,5.3573 7.8267,5.5029 7.8379,5.6907C7.8379,5.7003 7.8379,5.7093 7.8379,5.72C7.8379,5.8085 7.7995,5.8949 7.7301,5.9573L7.768,6.0197L7.7104,6.0656ZM7.6507,5.9435L7.7136,6.0448L7.7504,6.0155L7.7131,5.9557L7.7173,5.9531C7.7861,5.8923 7.8256,5.8075 7.8256,5.7195C7.8256,5.7099 7.8256,5.7008 7.8245,5.6901C7.8139,5.5109 7.6085,5.3701 7.3568,5.3701C7.2469,5.3701 7.1413,5.3973 7.0571,5.4443C7.0603,5.4613 7.0608,5.4779 7.0635,5.4933C7.1419,5.4427 7.2448,5.4155 7.3568,5.4155C7.584,5.4155 7.768,5.5344 7.776,5.6907C7.7765,5.6992 7.7776,5.7072 7.7776,5.72C7.7771,5.8075 7.7301,5.8907 7.6507,5.9435Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7568,6.0187C7.8448,5.9531 7.9008,5.8624 7.9008,5.7632C7.9008,5.6475 7.8256,5.5445 7.712,5.4779C7.7819,5.5333 7.8245,5.6069 7.8309,5.6901C7.8315,5.6997 7.8315,5.7077 7.8315,5.7195C7.8315,5.8144 7.7888,5.8976 7.7221,5.9557L7.7568,6.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7541,6.0283L7.7131,5.9557L7.7173,5.9531C7.7861,5.8923 7.8256,5.8075 7.8256,5.7195C7.8256,5.7099 7.8256,5.7008 7.8245,5.6901C7.8187,5.6112 7.7787,5.5403 7.7072,5.4816L7.7157,5.4709C7.8379,5.544 7.9072,5.6512 7.9072,5.7627C7.9072,5.8597 7.8549,5.952 7.7605,6.024L7.7541,6.0283ZM7.7301,5.9573L7.7584,6.0085C7.8464,5.9424 7.8944,5.8549 7.8944,5.7637C7.8944,5.6784 7.8507,5.5952 7.7728,5.5301C7.8101,5.5787 7.8325,5.6315 7.8384,5.6901C7.8384,5.7008 7.8384,5.7099 7.8384,5.7205C7.8379,5.8085 7.7995,5.8949 7.7301,5.9573Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.5419,6.1344C8.592,6.0795 8.6229,6.0075 8.6229,5.928C8.6229,5.8811 8.6112,5.8341 8.5915,5.7947C8.5189,5.6448 8.2928,5.5392 8.0245,5.5392C7.9504,5.5392 7.8816,5.5445 7.8165,5.5611C7.832,5.5776 7.8416,5.5936 7.8539,5.6112C7.9067,5.6016 7.9648,5.5947 8.0245,5.5947C8.2699,5.5947 8.4757,5.6907 8.5355,5.8197C8.5509,5.8533 8.5605,5.8907 8.5605,5.928C8.5605,6.0069 8.5237,6.0779 8.4667,6.1259L8.5547,6.2699L8.6032,6.2325L8.5419,6.1344" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.5541,6.2805L8.4565,6.1237L8.4619,6.1195C8.5195,6.0693 8.5541,6.0027 8.5541,5.928C8.5541,5.8907 8.5451,5.856 8.5291,5.8219C8.4693,5.6933 8.2624,5.6032 8.0245,5.6032C7.9664,5.6032 7.9088,5.6075 7.8539,5.6181L7.8507,5.6187L7.848,5.6155C7.8357,5.5947 7.8256,5.5808 7.8123,5.5653L7.8043,5.5568L7.8155,5.5541C7.8821,5.5403 7.952,5.5317 8.0245,5.5317C8.2912,5.5317 8.5221,5.6357 8.5979,5.7899C8.6181,5.8325 8.6293,5.88 8.6293,5.9275C8.6293,6.0027 8.6005,6.0773 8.5509,6.1349L8.6117,6.2331L8.5541,6.2805ZM8.4752,6.128L8.5568,6.2603L8.5941,6.2309L8.5339,6.1339L8.5365,6.1307C8.5883,6.0736 8.6155,6.0027 8.6155,5.9275C8.6155,5.8816 8.6053,5.8389 8.5851,5.7963C8.5125,5.6485 8.2816,5.544 8.024,5.544C7.9563,5.544 7.8907,5.5525 7.8283,5.5648C7.8379,5.5771 7.8469,5.5899 7.856,5.6021C7.9093,5.5925 7.9659,5.5888 8.0235,5.5888C8.2656,5.5888 8.4784,5.6816 8.5408,5.8165C8.5573,5.8523 8.5659,5.8901 8.5659,5.9275C8.5669,6.0032 8.5333,6.0763 8.4752,6.128Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.4507,5.6469C8.5157,5.6896 8.5643,5.7397 8.592,5.7947C8.6107,5.8341 8.6235,5.8811 8.6235,5.928C8.6235,6.0069 8.592,6.0795 8.5424,6.1344L8.5968,6.2219C8.6491,6.1563 8.6784,6.0779 8.6784,5.9947C8.6779,5.8549 8.5877,5.7307 8.4507,5.6469" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.5947,6.2336L8.5339,6.1333L8.5371,6.1312C8.5883,6.0741 8.6155,6.0032 8.6155,5.928C8.6155,5.8821 8.6053,5.8395 8.5851,5.7968C8.56,5.7435 8.5109,5.6939 8.4475,5.6528L8.4539,5.6416C8.6,5.7301 8.6843,5.8576 8.6843,5.9941C8.6843,6.0773 8.6549,6.1568 8.6005,6.2277L8.5947,6.2336ZM8.5504,6.1355L8.5968,6.2117C8.6448,6.1451 8.6709,6.0699 8.6709,5.9952C8.6709,5.9173 8.6416,5.8411 8.5883,5.7733C8.592,5.7787 8.5947,5.7845 8.5984,5.7909C8.6187,5.8336 8.6299,5.8816 8.6299,5.9285C8.6293,6.0032 8.6005,6.0779 8.5504,6.1355Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8603,5.9323C6.8603,5.9008 6.8891,5.8731 6.9259,5.8731C6.9605,5.8731 6.9893,5.9013 6.9893,5.9323C6.9893,5.968 6.9605,5.9947 6.9259,5.9947C6.8891,5.9947 6.8603,5.968 6.8603,5.9323" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9253,6.0032C6.8848,6.0032 6.8539,5.9696 6.8539,5.9323C6.8539,5.8949 6.8853,5.8656 6.9253,5.8656C6.9632,5.8656 6.9957,5.8949 6.9957,5.9323C6.9957,5.9696 6.9637,6.0032 6.9253,6.0032ZM6.9253,5.8795C6.8928,5.8795 6.8661,5.9029 6.8661,5.9323C6.8661,5.9659 6.8928,5.9893 6.9253,5.9893C6.9568,5.9893 6.9819,5.9653 6.9819,5.9323C6.9824,5.9029 6.9568,5.8795 6.9253,5.8795Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8603,5.8155C6.8603,5.7813 6.8891,5.7531 6.9259,5.7531C6.9605,5.7531 6.9893,5.7813 6.9893,5.8155C6.9893,5.8469 6.9605,5.8757 6.9259,5.8757C6.8891,5.8763 6.8603,5.8469 6.8603,5.8155" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9253,5.8811C6.8848,5.8811 6.8539,5.8528 6.8539,5.8155C6.8539,5.7781 6.8853,5.7445 6.9253,5.7445C6.9632,5.7445 6.9957,5.7781 6.9957,5.8155C6.9957,5.8528 6.9637,5.8811 6.9253,5.8811ZM6.9253,5.7584C6.8928,5.7584 6.8661,5.7835 6.8661,5.8155C6.8661,5.8437 6.8928,5.8688 6.9253,5.8688C6.9568,5.8688 6.9819,5.8437 6.9819,5.8155C6.9824,5.7835 6.9568,5.7584 6.9253,5.7584Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8731,5.6853C6.8731,5.6571 6.8971,5.6373 6.9259,5.6373C6.9541,5.6373 6.976,5.6571 6.976,5.6853C6.976,5.7136 6.9541,5.7333 6.9259,5.7333C6.8971,5.7333 6.8731,5.7136 6.8731,5.6853" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9253,5.7408C6.8923,5.7408 6.8661,5.7157 6.8661,5.6853C6.8661,5.6555 6.8923,5.6304 6.9253,5.6304C6.9568,5.6304 6.9819,5.6555 6.9819,5.6853C6.9824,5.7157 6.9568,5.7408 6.9253,5.7408ZM6.9253,5.6437C6.9003,5.6437 6.8795,5.6624 6.8795,5.6853C6.8795,5.7072 6.9003,5.728 6.9253,5.728C6.9493,5.728 6.9691,5.7072 6.9691,5.6853C6.9691,5.6624 6.9499,5.6437 6.9253,5.6437Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.888,5.5696C6.888,5.5509 6.904,5.5333 6.9253,5.5333C6.9451,5.5333 6.9616,5.5509 6.9616,5.5696C6.9616,5.5904 6.9445,5.6053 6.9253,5.6053C6.904,5.6059 6.888,5.5904 6.888,5.5696" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9253,5.6112C6.9003,5.6112 6.8816,5.5931 6.8816,5.5696C6.8816,5.5456 6.9003,5.528 6.9253,5.528C6.9483,5.528 6.9685,5.5456 6.9685,5.5696C6.9685,5.5931 6.9488,5.6112 6.9253,5.6112ZM6.9253,5.5408C6.9077,5.5408 6.8939,5.5531 6.8939,5.5701C6.8939,5.5856 6.9072,5.5984 6.9253,5.5984C6.9413,5.5984 6.9552,5.5861 6.9552,5.5701C6.9552,5.5531 6.9413,5.5408 6.9253,5.5408Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8944,5.4688C6.8944,5.4533 6.9083,5.4405 6.9253,5.4405C6.9413,5.4405 6.9536,5.4528 6.9536,5.4688C6.9536,5.4821 6.9413,5.4949 6.9253,5.4949C6.9083,5.4949 6.8944,5.4821 6.8944,5.4688" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9253,5.5029C6.904,5.5029 6.888,5.4885 6.888,5.4688C6.888,5.4496 6.9045,5.4325 6.9253,5.4325C6.944,5.4325 6.9605,5.4496 6.9605,5.4688C6.9611,5.4885 6.9445,5.5029 6.9253,5.5029Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9301,6.3008L6.9728,6.3072C6.9659,6.3259 6.9637,6.3435 6.9637,6.3643C6.9637,6.4507 7.0384,6.5195 7.1307,6.5195C7.2043,6.5195 7.2667,6.4757 7.288,6.4123C7.2912,6.4144 7.304,6.3557 7.3109,6.3563C7.3163,6.3563 7.3163,6.4155 7.3189,6.4155C7.3285,6.4944 7.4011,6.5488 7.4832,6.5488C7.5749,6.5488 7.6496,6.4779 7.6496,6.3904C7.6496,6.384 7.6491,6.3781 7.6475,6.3707L7.7003,6.3195L7.7285,6.3861C7.7168,6.4069 7.7125,6.4304 7.7125,6.4555C7.7125,6.5392 7.784,6.6053 7.8715,6.6053C7.9259,6.6053 7.9749,6.5776 8.0037,6.5392L8.0373,6.4944L8.0373,6.5477C8.0373,6.6011 8.0597,6.6459 8.1104,6.6555C8.1104,6.6555 8.1691,6.6571 8.2459,6.5979C8.3237,6.5376 8.3669,6.4869 8.3669,6.4869L8.3733,6.5467C8.3733,6.5467 8.3088,6.6469 8.2384,6.6885C8.2011,6.7093 8.1419,6.7323 8.0955,6.728C8.0469,6.7184 8.0123,6.6779 7.9947,6.632C7.9595,6.6544 7.9179,6.6656 7.8736,6.6656C7.7792,6.6656 7.6944,6.6155 7.6608,6.5355C7.6171,6.5824 7.5557,6.6128 7.4848,6.6128C7.4085,6.6128 7.3387,6.5787 7.2955,6.5264C7.2533,6.5659 7.1952,6.5899 7.1312,6.5899C7.0475,6.5899 6.9733,6.5461 6.9296,6.4848C6.888,6.5461 6.8139,6.5899 6.7296,6.5899C6.6651,6.5899 6.6075,6.5659 6.5637,6.5264C6.5205,6.5787 6.4512,6.6128 6.376,6.6128C6.3045,6.6128 6.2432,6.5824 6.2,6.5355C6.1669,6.6155 6.0805,6.6656 5.9856,6.6656C5.9419,6.6656 5.9008,6.6544 5.8661,6.632C5.848,6.6779 5.8133,6.7184 5.7637,6.728C5.7173,6.7323 5.6603,6.7093 5.6208,6.6885C5.5509,6.6469 5.4864,6.5467 5.4864,6.5467L5.4933,6.4869C5.4933,6.4869 5.536,6.5376 5.6139,6.5979C5.6923,6.6571 5.7499,6.6555 5.7499,6.6555C5.8011,6.6453 5.8235,6.6005 5.8235,6.5477L5.8235,6.4944L5.856,6.5392C5.8848,6.5776 5.9328,6.6053 5.9888,6.6053C6.0763,6.6053 6.1467,6.5392 6.1467,6.4555C6.1467,6.4304 6.1419,6.4069 6.1312,6.3861L6.1589,6.3195L6.2107,6.3707C6.2107,6.3781 6.2107,6.384 6.2107,6.3904C6.2107,6.4779 6.2843,6.5488 6.376,6.5488C6.4571,6.5488 6.5296,6.4944 6.5413,6.4155C6.5429,6.4155 6.5419,6.3563 6.5483,6.3563C6.5547,6.3557 6.5691,6.4144 6.5707,6.4123C6.5925,6.4757 6.6549,6.5195 6.7296,6.5195C6.8208,6.5195 6.8949,6.4507 6.8949,6.3643C6.8949,6.3435 6.8949,6.3259 6.8875,6.3072L6.9301,6.3008" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1141,6.7333C8.1067,6.7333 8.1008,6.7323 8.0944,6.7323C8.0507,6.7259 8.0133,6.6933 7.9915,6.6437C7.9547,6.6635 7.9147,6.672 7.8731,6.672C7.7803,6.672 7.6944,6.6219 7.6571,6.5472C7.6117,6.5941 7.5504,6.6192 7.4843,6.6192C7.4107,6.6192 7.3413,6.5877 7.2944,6.5349C7.2501,6.5744 7.1915,6.5952 7.1307,6.5952C7.0507,6.5952 6.9755,6.5579 6.9291,6.496C6.8837,6.5573 6.8096,6.5952 6.7291,6.5952C6.6672,6.5952 6.6101,6.5744 6.5637,6.5349C6.5184,6.5883 6.4475,6.6192 6.3755,6.6192C6.3088,6.6192 6.2475,6.5941 6.2005,6.5472C6.1637,6.6224 6.0789,6.672 5.9851,6.672C5.944,6.672 5.904,6.6635 5.8693,6.6437C5.8469,6.6933 5.8091,6.7259 5.7643,6.7323C5.7579,6.7323 5.7515,6.7333 5.744,6.7333C5.6923,6.7333 5.6379,6.7061 5.6165,6.6939C5.5467,6.6533 5.4827,6.5557 5.4805,6.5531L5.4789,6.5499L5.488,6.4699L5.4976,6.4821C5.4976,6.4821 5.5413,6.5323 5.6165,6.5931C5.6848,6.6448 5.7381,6.6485 5.7477,6.6485C5.7909,6.6416 5.8165,6.6043 5.8165,6.5477L5.816,6.4779L5.8603,6.5333C5.8885,6.5749 5.9365,6.5989 5.9883,6.5989C6.0715,6.5989 6.1397,6.5333 6.1397,6.4555C6.1397,6.4293 6.1355,6.4069 6.1253,6.3904L6.1232,6.3861L6.1573,6.3072L6.2176,6.3696L6.2171,6.3728C6.2171,6.3797 6.2171,6.3851 6.2171,6.3904C6.2171,6.4747 6.2885,6.5419 6.376,6.5419C6.4571,6.5419 6.5243,6.4891 6.5344,6.4155L6.5355,6.4059L6.5355,6.4059C6.5355,6.4027 6.5355,6.3984 6.5355,6.3947C6.5381,6.3573 6.5381,6.3509 6.5477,6.3493L6.5477,6.3493C6.5563,6.3493 6.56,6.3573 6.5696,6.392C6.5712,6.3947 6.5728,6.3989 6.5728,6.4032L6.5733,6.4032L6.576,6.4085C6.5973,6.4709 6.6592,6.5157 6.7285,6.5157C6.816,6.5157 6.8875,6.4448 6.8875,6.3648C6.8875,6.3451 6.8875,6.3285 6.8805,6.3104L6.8779,6.3029L6.9301,6.2933L6.9819,6.3029L6.9792,6.3104C6.9723,6.328 6.9707,6.3456 6.9707,6.3648C6.9707,6.4448 7.0421,6.5157 7.1307,6.5157C7.2005,6.5157 7.2608,6.4709 7.2821,6.4096L7.2853,6.4032L7.2853,6.4032C7.2869,6.3989 7.288,6.3947 7.2885,6.3909C7.2997,6.3573 7.304,6.3493 7.3109,6.3493C7.32,6.3515 7.3221,6.3579 7.3232,6.3952C7.3232,6.4005 7.3237,6.4037 7.3237,6.4064L7.3253,6.416C7.3349,6.4901 7.4016,6.5424 7.4832,6.5424C7.5717,6.5424 7.6427,6.4752 7.6427,6.3909C7.6427,6.3845 7.6421,6.3787 7.6411,6.3733L7.6411,6.3701L7.7029,6.3077L7.7349,6.3867L7.7349,6.3909C7.7243,6.4075 7.7189,6.4299 7.7189,6.456C7.7189,6.5339 7.7877,6.5995 7.8715,6.5995C7.9221,6.5995 7.9691,6.5755 7.9973,6.5339L8.0437,6.4784L8.0432,6.5483C8.0432,6.6048 8.0688,6.6427 8.1099,6.6491C8.1211,6.6491 8.1733,6.6448 8.2411,6.5936C8.3179,6.5328 8.36,6.4827 8.3605,6.4827L8.3712,6.4704L8.3797,6.5504L8.3792,6.5536C8.3755,6.5563 8.3131,6.6539 8.2416,6.6944C8.2208,6.7061 8.1664,6.7333 8.1141,6.7333ZM7.9979,6.624L8.0005,6.6315C8.0192,6.6816 8.0544,6.7136 8.0971,6.72C8.1024,6.72 8.1083,6.72 8.1141,6.72C8.1648,6.72 8.2192,6.6907 8.2352,6.6827C8.2976,6.6453 8.3568,6.56 8.3669,6.5451L8.3616,6.5035C8.3445,6.52 8.3067,6.5589 8.2507,6.6037C8.1792,6.6592 8.1227,6.6629 8.112,6.6629L8.1104,6.6629C8.0603,6.6533 8.0304,6.6117 8.0304,6.5483L8.0304,6.5157L8.0091,6.5435C7.9787,6.5856 7.9264,6.6128 7.872,6.6128C7.7808,6.6128 7.7067,6.5408 7.7067,6.456C7.7067,6.4283 7.7109,6.4064 7.7211,6.3867L7.6976,6.3323L7.6549,6.3749C7.656,6.3797 7.6565,6.3856 7.6565,6.3904C7.6565,6.4821 7.5787,6.5557 7.4832,6.5557C7.3947,6.5557 7.3232,6.4971 7.3125,6.4181C7.3104,6.4155 7.3099,6.4069 7.3099,6.3957C7.3099,6.3904 7.3099,6.3813 7.3088,6.3728C7.3067,6.3813 7.3035,6.3904 7.3008,6.3947C7.2971,6.4069 7.296,6.4144 7.2939,6.4155C7.2693,6.4821 7.2043,6.528 7.1301,6.528C7.0347,6.528 6.9563,6.4528 6.9563,6.3643C6.9563,6.3467 6.9573,6.3307 6.9627,6.3141L6.9296,6.3067L6.8949,6.3141C6.8997,6.3291 6.9003,6.3456 6.9003,6.3643C6.9003,6.4528 6.8229,6.528 6.728,6.528C6.6528,6.528 6.5872,6.4821 6.5643,6.4155C6.5621,6.4144 6.56,6.4069 6.5557,6.3947C6.5552,6.3904 6.552,6.3813 6.5493,6.3728C6.5488,6.3813 6.5477,6.3904 6.5472,6.3947C6.5467,6.4069 6.5467,6.4155 6.5456,6.4187C6.5339,6.4965 6.4619,6.5557 6.3744,6.5557C6.2789,6.5557 6.2021,6.4821 6.2021,6.3904C6.2021,6.3861 6.2027,6.3803 6.2027,6.3749L6.1589,6.3323L6.1365,6.3867C6.1461,6.4064 6.1515,6.4283 6.1515,6.456C6.1515,6.5408 6.0773,6.6128 5.9867,6.6128C5.9307,6.6128 5.8795,6.5856 5.8491,6.5424L5.8272,6.5157L5.8272,6.5483C5.8272,6.6117 5.7979,6.6533 5.7488,6.6629L5.7461,6.6629C5.7349,6.6629 5.6784,6.6587 5.608,6.6037C5.5525,6.5589 5.5131,6.5205 5.4965,6.5035L5.4917,6.5451C5.5013,6.5595 5.56,6.6453 5.6229,6.6827C5.672,6.7109 5.7248,6.7264 5.7621,6.72C5.8032,6.7136 5.8384,6.6816 5.8587,6.6315L5.8613,6.624L5.8683,6.6283C5.9029,6.6491 5.9435,6.6587 5.984,6.6587C6.0757,6.6587 6.1589,6.6075 6.1925,6.5328L6.1968,6.5243L6.2032,6.5317C6.2469,6.5787 6.3088,6.6064 6.3749,6.6064C6.4459,6.6064 6.5147,6.5744 6.5579,6.5205L6.5627,6.5163L6.568,6.5205C6.6112,6.56 6.6683,6.5829 6.7285,6.5829C6.8075,6.5829 6.8816,6.5456 6.9237,6.4821L6.9285,6.4747L6.9349,6.4821C6.9781,6.5456 7.0501,6.5829 7.1301,6.5829C7.1909,6.5829 7.2475,6.56 7.2912,6.5205L7.296,6.5163L7.3003,6.5205C7.344,6.5749 7.4128,6.6064 7.4843,6.6064C7.5504,6.6064 7.6101,6.5787 7.6544,6.5317L7.6619,6.5243L7.6667,6.5328C7.6981,6.608 7.7819,6.6587 7.8736,6.6587C7.9152,6.6587 7.9557,6.6491 7.9909,6.6283L7.9979,6.624Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0725,6.5072C8.0816,6.4805 8.0725,6.4528 8.0539,6.4448C8.032,6.4405 8.0085,6.4571 7.9984,6.4853C7.9883,6.5147 7.9973,6.5408 8.0181,6.5467C8.0379,6.5531 8.0629,6.5365 8.0725,6.5072" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0256,6.5557L8.0256,6.5557C8.0224,6.5557 8.0192,6.5557 8.016,6.5531C8.0064,6.552 7.9984,6.5445 7.9936,6.5333C7.9861,6.52 7.9856,6.5029 7.992,6.4821C8.0032,6.4528 8.0315,6.432 8.0544,6.4405C8.0635,6.4432 8.072,6.4491 8.0763,6.4571C8.0837,6.4715 8.0848,6.4917 8.0784,6.5093C8.0693,6.5376 8.0475,6.5557 8.0256,6.5557ZM8.0443,6.4533C8.0288,6.4533 8.0128,6.4656 8.0048,6.4885C8.0005,6.5029 8.0005,6.5184 8.0059,6.528C8.0091,6.5344 8.0133,6.5403 8.0192,6.5403C8.0224,6.5419 8.024,6.5419 8.0256,6.5419C8.0416,6.5419 8.0592,6.528 8.0661,6.5061C8.0709,6.4907 8.0704,6.4768 8.0656,6.4656C8.0629,6.4592 8.0587,6.4544 8.0507,6.4533C8.0491,6.4533 8.0475,6.4533 8.0443,6.4533Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.3493,6.3685C7.3536,6.3392 7.3381,6.3131 7.3173,6.3104C7.2965,6.3077 7.2752,6.3296 7.2725,6.3573C7.2693,6.3899 7.2821,6.4155 7.304,6.4171C7.3259,6.4187 7.3451,6.3968 7.3493,6.3685" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.3067,6.4229L7.3067,6.4229C7.3061,6.4229 7.304,6.4229 7.304,6.4229C7.2933,6.4208 7.2853,6.4171 7.2779,6.4075C7.2677,6.3952 7.2629,6.3781 7.2667,6.3573C7.2699,6.3259 7.2939,6.3019 7.3195,6.3029C7.3291,6.3056 7.3381,6.3093 7.3445,6.3184C7.3541,6.3307 7.3584,6.3499 7.3563,6.3685C7.3515,6.4011 7.3312,6.4229 7.3067,6.4229ZM7.3141,6.3173C7.2976,6.3173 7.2816,6.3355 7.2789,6.3595C7.2773,6.376 7.2805,6.3909 7.288,6.4011C7.2923,6.4064 7.2981,6.4085 7.3045,6.4096C7.3221,6.4128 7.3392,6.3936 7.3429,6.3675C7.3445,6.3536 7.3419,6.3376 7.3339,6.3285C7.3291,6.32 7.3227,6.3184 7.3163,6.3173C7.3163,6.3173 7.3157,6.3173 7.3141,6.3173Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.5104,6.3685C6.5067,6.3392 6.52,6.3131 6.5419,6.3104C6.5637,6.3072 6.5824,6.3296 6.5867,6.3573C6.5904,6.3899 6.5755,6.4155 6.5547,6.4171C6.5339,6.4187 6.5131,6.3968 6.5104,6.3685" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.5515,6.4229C6.5291,6.4229 6.5067,6.4011 6.504,6.3685C6.5008,6.3499 6.5045,6.3323 6.5152,6.3184C6.5221,6.3088 6.5307,6.3056 6.5408,6.3029C6.5659,6.3029 6.5883,6.3259 6.5931,6.3573C6.5952,6.3781 6.5915,6.3947 6.5819,6.4075C6.5744,6.4176 6.5664,6.4208 6.5563,6.4229C6.5541,6.4229 6.5541,6.4229 6.5515,6.4229ZM6.5445,6.3173C6.5445,6.3173 6.5429,6.3173 6.5419,6.3173C6.5355,6.3184 6.5301,6.32 6.5259,6.3285C6.5179,6.3381 6.5141,6.3536 6.5168,6.3675C6.5195,6.3936 6.5371,6.4128 6.5541,6.4096C6.5605,6.4085 6.5664,6.4064 6.5707,6.4011C6.5792,6.3904 6.5819,6.376 6.5797,6.3595C6.5765,6.3355 6.5611,6.3173 6.5445,6.3173Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.7867,6.5072C5.7765,6.4805 5.7851,6.4528 5.8064,6.4448C5.8256,6.4405 5.8507,6.4571 5.8603,6.4853C5.8693,6.5147 5.8608,6.5408 5.8416,6.5467C5.8203,6.5531 5.7968,6.5365 5.7867,6.5072" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.832,6.5557C5.8107,6.5557 5.7899,6.5376 5.7808,6.5093C5.7744,6.4923 5.776,6.472 5.7819,6.4571C5.7872,6.4485 5.7941,6.4432 5.8043,6.4405C5.8069,6.4395 5.8107,6.4384 5.8149,6.4384C5.8363,6.4384 5.8576,6.4571 5.8672,6.4821C5.8736,6.5029 5.8736,6.5195 5.8656,6.5333C5.8613,6.5445 5.8533,6.552 5.8437,6.5531C5.8395,6.5557 5.8357,6.5557 5.832,6.5557ZM5.8144,6.4533C5.8133,6.4533 5.8101,6.4533 5.8075,6.4533C5.8005,6.4549 5.7963,6.4597 5.7941,6.4656C5.7877,6.4768 5.7877,6.4907 5.7931,6.5061C5.8005,6.5307 5.8229,6.5445 5.8384,6.5403C5.8443,6.5403 5.8496,6.5339 5.8528,6.528C5.8581,6.5179 5.8587,6.5029 5.8533,6.4885C5.8469,6.4656 5.8299,6.4533 5.8144,6.4533Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1003,6.0272C6.1365,6.048 6.1675,6.0853 6.1787,6.128C6.1787,6.128 6.1824,6.1195 6.2027,6.1072C6.2224,6.096 6.2389,6.0965 6.2389,6.0965C6.2389,6.0965 6.2336,6.1301 6.2309,6.1419C6.2283,6.1531 6.2272,6.1893 6.2192,6.2197C6.2123,6.2533 6.1979,6.2779 6.1979,6.2779C6.1845,6.2656 6.1653,6.2592 6.1445,6.2645C6.1248,6.2672 6.1093,6.2779 6.0997,6.2939C6.0997,6.2939 6.0779,6.2752 6.0592,6.2459C6.0405,6.2197 6.0277,6.1877 6.0208,6.1781C6.0133,6.1669 5.9968,6.1387 5.9968,6.1387C5.9968,6.1387 6.0123,6.1323 6.0347,6.1365C6.0576,6.1408 6.0656,6.1461 6.0656,6.1461C6.0603,6.1029 6.0757,6.0571 6.1003,6.0272" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1024,6.3029L6.0965,6.2987C6.0949,6.2965 6.0731,6.2779 6.0539,6.2517C6.0427,6.232 6.0331,6.2155 6.0261,6.2005C6.0224,6.1915 6.0192,6.1829 6.016,6.1808C6.0091,6.1696 5.992,6.1419 5.9909,6.1403L5.9883,6.1333L5.9947,6.1312C5.9952,6.1312 6.0048,6.128 6.0192,6.128C6.0256,6.128 6.0315,6.128 6.0373,6.1296C6.0464,6.1312 6.0539,6.1323 6.0581,6.1355C6.0565,6.0949 6.0699,6.0533 6.0949,6.0197L6.0987,6.0171L6.1035,6.0197C6.1408,6.0432 6.1691,6.0779 6.1813,6.1157C6.1845,6.1115 6.1909,6.1072 6.1995,6.1035C6.2192,6.0912 6.2357,6.0912 6.2389,6.0912L6.2475,6.0912L6.2459,6.0987C6.2459,6.1008 6.2405,6.1323 6.2379,6.1445C6.2363,6.1477 6.2352,6.1563 6.2352,6.1664C6.2336,6.1813 6.232,6.2037 6.2267,6.2219C6.2192,6.2544 6.2053,6.2805 6.2043,6.2816L6.2005,6.2896L6.1941,6.2832C6.1819,6.272 6.1637,6.2683 6.1467,6.2709C6.1291,6.2731 6.1147,6.2832 6.1067,6.2971L6.1024,6.3029ZM6.0075,6.1424C6.0133,6.1536 6.0229,6.1659 6.0272,6.1733C6.0304,6.1787 6.0341,6.1845 6.0384,6.1952C6.0459,6.2085 6.0544,6.2288 6.0661,6.2443C6.0784,6.2619 6.0917,6.2784 6.1003,6.2827C6.1104,6.2704 6.1259,6.2597 6.1445,6.2576C6.1632,6.2533 6.1819,6.2576 6.1973,6.2688C6.2011,6.2576 6.2096,6.2411 6.2139,6.2192C6.2197,6.2005 6.2203,6.1787 6.2229,6.1648C6.2229,6.1536 6.2235,6.1451 6.2251,6.1408C6.2261,6.1323 6.2293,6.1157 6.232,6.1051C6.2256,6.1067 6.2165,6.1077 6.2069,6.1163C6.1888,6.1248 6.1851,6.1317 6.1851,6.1317L6.176,6.1451L6.1723,6.1301C6.1627,6.0944 6.1371,6.0576 6.1019,6.0336C6.0784,6.0672 6.0677,6.1077 6.072,6.1451L6.0736,6.1659L6.0603,6.1536L6.0603,6.1536C6.0603,6.1536 6.0533,6.1451 6.0347,6.1435C6.0256,6.1408 6.0139,6.1408 6.0075,6.1424Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1163,6.3696C6.104,6.3621 6.0955,6.3499 6.0933,6.3333C6.0907,6.32 6.0944,6.3056 6.1008,6.2933C6.1008,6.2933 6.0715,6.2784 6.0389,6.2699C6.0149,6.2645 5.9728,6.2635 5.9595,6.2635C5.9461,6.2624 5.9195,6.2619 5.9195,6.2619C5.9195,6.2619 5.9227,6.2683 5.9291,6.2805C5.9381,6.2944 5.9467,6.3061 5.9467,6.3061C5.904,6.3157 5.8667,6.3435 5.8448,6.3781C5.8779,6.4 5.9232,6.4144 5.9664,6.4075C5.9664,6.4075 5.9627,6.4197 5.96,6.44C5.9573,6.4533 5.9573,6.4576 5.9573,6.4576C5.9573,6.4576 5.9819,6.4512 5.9936,6.4453C6.0053,6.4411 6.0453,6.4288 6.0672,6.4149C6.0928,6.3947 6.1163,6.3696 6.1163,6.3696" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9504,6.4688L5.9504,6.4581C5.9504,6.4571 5.9504,6.4528 5.9525,6.4384C5.9536,6.4277 5.9552,6.4197 5.9568,6.4155C5.9163,6.4187 5.8752,6.4059 5.84,6.3819L5.8352,6.3776L5.8379,6.3712C5.8629,6.3387 5.8976,6.3131 5.9349,6.3024C5.9317,6.2949 5.9285,6.2901 5.9232,6.2816C5.9163,6.2693 5.9131,6.2651 5.9131,6.2651L5.9099,6.2539L5.9195,6.2549C5.9195,6.2549 5.9461,6.2555 5.9595,6.2555L5.9621,6.2555C5.9792,6.2555 6.0171,6.2565 6.0416,6.264C6.0731,6.2693 6.1035,6.2859 6.104,6.2869L6.1104,6.2901L6.1072,6.2944C6.1003,6.3067 6.0981,6.3195 6.1003,6.3317C6.1019,6.344 6.1099,6.3568 6.12,6.3653L6.1168,6.3696L6.1211,6.3771C6.12,6.3781 6.0981,6.4011 6.0699,6.4187C6.0512,6.432 6.0171,6.4448 6.0005,6.4512L5.9504,6.4688ZM5.9755,6.4032L5.9728,6.4117C5.9723,6.4117 5.9685,6.4224 5.9659,6.4411C5.9653,6.4443 5.9643,6.4453 5.9643,6.4501L5.9947,6.4389C6.0107,6.4325 6.0448,6.4203 6.0629,6.4075C6.0821,6.3952 6.0981,6.3781 6.1072,6.3701C6.0965,6.3616 6.0891,6.3493 6.0869,6.336C6.0848,6.3216 6.0859,6.3077 6.0917,6.2955C6.0821,6.2912 6.0603,6.2832 6.0384,6.2779C6.016,6.2704 5.976,6.2704 5.9621,6.2704L5.9595,6.2704C5.9509,6.2693 5.9392,6.2693 5.9312,6.2693C5.9323,6.2704 5.9339,6.2747 5.9355,6.2789C5.9445,6.2928 5.9509,6.304 5.9509,6.304L5.9579,6.3093L5.9477,6.3136C5.9115,6.3211 5.8773,6.3445 5.8539,6.376C5.8875,6.3957 5.9269,6.4075 5.9648,6.4043L5.9755,6.4043L5.9755,6.4032Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.2123,6.3547C6.2192,6.3435 6.2224,6.328 6.2197,6.3147C6.2171,6.2981 6.2096,6.2853 6.1973,6.2784C6.1973,6.2784 6.2197,6.2533 6.2475,6.2336C6.2683,6.2203 6.3083,6.2064 6.32,6.2032C6.3317,6.1968 6.3563,6.1909 6.3563,6.1909C6.3563,6.1909 6.3563,6.1952 6.3536,6.2085C6.3515,6.2283 6.3472,6.24 6.3472,6.24C6.3909,6.2325 6.4357,6.2496 6.4688,6.2715C6.4469,6.3051 6.4096,6.3328 6.3664,6.3429C6.3664,6.3429 6.3749,6.3541 6.384,6.368C6.3909,6.3813 6.3941,6.3872 6.3941,6.3872C6.3941,6.3872 6.3675,6.3861 6.3541,6.3851C6.3413,6.3851 6.2987,6.3851 6.2747,6.3787C6.2421,6.3701 6.2123,6.3563 6.2123,6.3563" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.4037,6.3931L6.3936,6.3931C6.3936,6.3931 6.3669,6.392 6.3541,6.392L6.3504,6.392C6.3349,6.3904 6.296,6.3904 6.2725,6.384C6.2411,6.3765 6.2101,6.3611 6.2091,6.36L6.2123,6.3541L6.2064,6.3525C6.2128,6.3403 6.216,6.3275 6.2128,6.3152C6.2112,6.3029 6.2037,6.2901 6.1936,6.2816L6.1872,6.2773L6.1925,6.2699C6.1931,6.2688 6.2155,6.2459 6.2432,6.2272C6.2635,6.2149 6.3013,6.2021 6.3152,6.1936C6.3291,6.1893 6.3525,6.1813 6.3525,6.1813L6.3616,6.1787L6.3616,6.1888C6.3616,6.1899 6.3616,6.1941 6.3595,6.2096C6.3589,6.2181 6.3568,6.2261 6.3557,6.2304C6.3968,6.2288 6.4368,6.2416 6.4725,6.2645L6.4779,6.2688L6.4747,6.2763C6.4496,6.3077 6.4155,6.3333 6.3781,6.344C6.3808,6.3504 6.3845,6.3552 6.3888,6.3648C6.3968,6.3771 6.3995,6.3813 6.3995,6.3813L6.4037,6.3931ZM6.2213,6.3531C6.232,6.3563 6.2539,6.3653 6.2757,6.3707C6.2981,6.3781 6.3355,6.3781 6.3509,6.3781L6.3547,6.3781C6.3632,6.3781 6.3749,6.3781 6.3829,6.3797C6.3824,6.3781 6.3803,6.3739 6.3792,6.3696C6.3696,6.3563 6.3627,6.3445 6.3627,6.3445L6.3557,6.3392L6.3664,6.3349C6.4021,6.3275 6.4363,6.304 6.4603,6.2736C6.4256,6.2528 6.3856,6.24 6.3483,6.2443L6.3381,6.2443L6.3413,6.2357C6.3413,6.2357 6.3451,6.2251 6.3477,6.2064C6.3483,6.2037 6.3488,6.2021 6.3493,6.1979C6.3413,6.2021 6.3296,6.2053 6.3227,6.2064L6.3216,6.2064C6.3093,6.2139 6.2704,6.2272 6.2512,6.24C6.232,6.2523 6.2171,6.2683 6.2075,6.2773C6.2181,6.2859 6.2251,6.2981 6.2272,6.3115C6.2288,6.3259 6.2277,6.3408 6.2213,6.3531Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0853,6.3227C6.0853,6.2843 6.1173,6.2528 6.1579,6.2528C6.1979,6.2528 6.232,6.2843 6.232,6.3227C6.232,6.3611 6.1984,6.3931 6.1579,6.3931C6.1173,6.3931 6.0853,6.3616 6.0853,6.3227" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1573,6.3995C6.1131,6.3995 6.0789,6.3659 6.0789,6.3227C6.0789,6.2811 6.1131,6.2453 6.1573,6.2453C6.2016,6.2453 6.2379,6.2805 6.2379,6.3227C6.2379,6.3659 6.2016,6.3995 6.1573,6.3995ZM6.1573,6.2592C6.1211,6.2592 6.0912,6.2896 6.0912,6.3227C6.0912,6.3568 6.1211,6.3861 6.1573,6.3861C6.1941,6.3861 6.2245,6.3568 6.2245,6.3227C6.2251,6.2896 6.1941,6.2592 6.1573,6.2592Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9275,5.9157C6.9627,5.9451 6.9899,5.9947 6.9936,6.0437C6.9936,6.0437 7,6.0331 7.024,6.0272C7.048,6.0171 7.0672,6.0197 7.0672,6.0197C7.0672,6.0197 7.0539,6.056 7.0485,6.0688C7.0432,6.0816 7.0352,6.12 7.0197,6.1531C7.0059,6.1883 6.9851,6.2144 6.9851,6.2144C6.9717,6.1979 6.9504,6.1883 6.9291,6.1883C6.9061,6.1883 6.8853,6.1979 6.8731,6.2144C6.8731,6.2144 6.8507,6.1883 6.8363,6.1531C6.8213,6.1195 6.8133,6.0811 6.808,6.0688C6.8027,6.0565 6.7888,6.0197 6.7888,6.0197C6.7888,6.0197 6.808,6.0171 6.832,6.0272C6.8571,6.0336 6.8635,6.0437 6.8635,6.0437C6.8667,5.9947 6.8923,5.9445 6.9275,5.9157" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9851,6.224L6.9797,6.2181C6.9664,6.2032 6.9477,6.1947 6.9291,6.1947C6.9083,6.1947 6.8896,6.2032 6.8768,6.2181L6.872,6.224L6.8667,6.2181C6.8667,6.2155 6.8448,6.1904 6.8304,6.1563C6.8208,6.1344 6.8139,6.1115 6.8096,6.0939C6.8069,6.0827 6.8043,6.0763 6.8021,6.0699C6.7968,6.0576 6.7835,6.024 6.7829,6.0219L6.7808,6.0155L6.7888,6.0155C6.7888,6.0155 6.808,6.008 6.8357,6.0197C6.8453,6.0229 6.8539,6.0283 6.8581,6.0309C6.8645,5.9851 6.8885,5.9403 6.9232,5.9083L6.928,5.9061L6.9323,5.9083C6.968,5.9419 6.992,5.9861 6.9989,6.0304C7.0048,6.0277 7.0117,6.0224 7.0235,6.0192C7.0496,6.008 7.0699,6.0139 7.0699,6.0149L7.0763,6.0149L7.0741,6.0213C7.0736,6.0235 7.0613,6.0565 7.0549,6.0693C7.0539,6.0757 7.0512,6.0816 7.0485,6.0933C7.0432,6.1109 7.0368,6.1339 7.0267,6.1557C7.0123,6.1899 6.9925,6.2149 6.9909,6.2176L6.9851,6.224ZM6.7979,6.0272C6.8027,6.0379 6.8101,6.0576 6.8133,6.0656C6.816,6.0699 6.8192,6.0795 6.8224,6.0907C6.8256,6.1072 6.8325,6.1307 6.8416,6.152C6.8528,6.1749 6.8661,6.1936 6.8725,6.2032C6.888,6.1909 6.9067,6.1813 6.9285,6.1813C6.9493,6.1813 6.9691,6.1909 6.984,6.2032C6.9909,6.1936 7.0037,6.1749 7.0139,6.152C7.0229,6.1312 7.0293,6.1072 7.0352,6.0907C7.0379,6.0795 7.0405,6.0699 7.0427,6.0656C7.0469,6.0571 7.0539,6.0373 7.0581,6.0272C7.0507,6.0283 7.0395,6.0283 7.0261,6.0325C7.0043,6.0411 6.9984,6.0459 6.9984,6.0469L6.9877,6.0603L6.9867,6.0437C6.9835,6.0021 6.9616,5.9563 6.9275,5.9237C6.8939,5.9563 6.8725,6.0011 6.8693,6.0437L6.8693,6.0619L6.8581,6.0459L6.8581,6.0459C6.8581,6.0459 6.8517,6.0405 6.8304,6.0325C6.8165,6.0283 6.8064,6.0272 6.7979,6.0272Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8725,6.3029C6.8619,6.2907 6.8544,6.2747 6.8544,6.2571C6.8544,6.2405 6.8613,6.2245 6.8725,6.2133C6.8725,6.2133 6.8416,6.1904 6.8075,6.1749C6.7813,6.1637 6.7349,6.1547 6.7195,6.1531C6.7056,6.1499 6.6768,6.1435 6.6768,6.1435C6.6768,6.1435 6.6784,6.152 6.6837,6.1653C6.6912,6.1851 6.6971,6.1979 6.6971,6.1979C6.6469,6.2021 6.6,6.2272 6.568,6.2571C6.6,6.2907 6.6469,6.3152 6.6971,6.3168C6.6971,6.3168 6.6907,6.3291 6.6837,6.3477C6.6784,6.3653 6.6768,6.3696 6.6768,6.3696C6.6768,6.3696 6.7056,6.3653 6.7195,6.3632C6.7349,6.3589 6.7813,6.3525 6.8075,6.3403C6.8416,6.3248 6.8725,6.3029 6.8725,6.3029" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.6693,6.3781L6.6704,6.3696C6.6704,6.3696 6.6725,6.3621 6.6779,6.3445C6.6816,6.336 6.6853,6.328 6.6875,6.3216C6.6416,6.3168 6.5979,6.2944 6.5632,6.2635L6.5595,6.2571L6.5632,6.2528C6.5979,6.2192 6.6421,6.1968 6.6875,6.192C6.6853,6.1861 6.6816,6.1781 6.6779,6.1685C6.6725,6.1531 6.6704,6.1445 6.6704,6.1445L6.6693,6.1349L6.7253,6.1445C6.744,6.1499 6.7861,6.1568 6.8101,6.1685C6.8443,6.1829 6.8752,6.2059 6.8752,6.2069L6.8816,6.2123L6.8768,6.2171C6.8661,6.2283 6.8613,6.2432 6.8613,6.2571C6.8613,6.2704 6.8667,6.2864 6.8779,6.2976L6.8725,6.3029L6.8763,6.3072C6.8757,6.3072 6.8443,6.3312 6.8101,6.3445C6.7877,6.3568 6.7472,6.3653 6.7285,6.368L6.6693,6.3781ZM6.5781,6.2571C6.6112,6.2896 6.6544,6.3072 6.6976,6.3104L6.7077,6.3115L6.704,6.32C6.704,6.32 6.6971,6.3323 6.6907,6.3525C6.6885,6.3563 6.6875,6.3589 6.6859,6.3637L6.7264,6.3557C6.7451,6.3531 6.7845,6.344 6.8059,6.3323C6.8299,6.3227 6.8533,6.3072 6.8635,6.3019C6.8544,6.2896 6.8485,6.2715 6.8485,6.2571C6.8485,6.2421 6.8544,6.2277 6.8635,6.2155C6.8533,6.2069 6.8299,6.192 6.8059,6.1813C6.7824,6.1701 6.7419,6.1637 6.7232,6.1584L6.6864,6.1531C6.688,6.1563 6.6885,6.1584 6.6912,6.1653C6.6976,6.1819 6.7045,6.1947 6.7045,6.1947L6.7083,6.2032L6.6981,6.2048C6.656,6.2075 6.6112,6.2283 6.5781,6.2571Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9835,6.3029C6.9947,6.2907 7.0005,6.2747 7.0005,6.2571C7.0005,6.2405 6.9941,6.2245 6.984,6.2133C6.984,6.2133 7.0133,6.1904 7.0475,6.1749C7.0736,6.1637 7.1216,6.1547 7.1355,6.1531C7.1504,6.1499 7.1787,6.1435 7.1787,6.1435C7.1787,6.1435 7.1781,6.152 7.1723,6.1653C7.1653,6.1851 7.1589,6.1979 7.1589,6.1979C7.2085,6.2021 7.2555,6.2272 7.288,6.2571C7.2555,6.2907 7.2091,6.3152 7.1589,6.3168C7.1589,6.3168 7.1653,6.3291 7.1723,6.3477C7.1776,6.3653 7.1787,6.3696 7.1787,6.3696C7.1787,6.3696 7.1504,6.3653 7.1355,6.3632C7.1216,6.3589 7.0736,6.3525 7.0475,6.3403C7.0133,6.3248 6.9835,6.3029 6.9835,6.3029" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.1872,6.3781L7.1275,6.368C7.1077,6.3653 7.0688,6.3568 7.0448,6.3445C7.0107,6.3312 6.9808,6.3072 6.9787,6.3072L6.9829,6.3029L6.9787,6.2976C6.9883,6.2864 6.9941,6.2704 6.9941,6.2571C6.9941,6.2432 6.9883,6.2277 6.9787,6.2171L6.9739,6.2123L6.9797,6.2069C6.9819,6.2059 7.0107,6.1829 7.0448,6.1685C7.0693,6.1573 7.1131,6.1499 7.1312,6.1445L7.1867,6.1349L7.1851,6.1445C7.1851,6.1445 7.1845,6.1531 7.1787,6.1685C7.1755,6.1781 7.1717,6.1867 7.1691,6.192C7.2128,6.1968 7.2581,6.2197 7.2917,6.2528L7.2976,6.2571L7.2917,6.2635C7.2581,6.2949 7.2133,6.3173 7.1691,6.3216C7.1717,6.328 7.1755,6.336 7.1787,6.3445C7.184,6.3621 7.1851,6.3696 7.1851,6.3696L7.1872,6.3781ZM6.9931,6.3019C7.0043,6.3072 7.0256,6.3227 7.0507,6.3323C7.0731,6.3435 7.1109,6.3531 7.1291,6.3557L7.1691,6.3637C7.1691,6.3584 7.1675,6.3557 7.1664,6.3525C7.16,6.3328 7.1541,6.32 7.1541,6.32L7.1477,6.3115L7.1584,6.3104C7.2011,6.3072 7.2443,6.2896 7.2789,6.2571C7.2443,6.2277 7.2005,6.2069 7.1584,6.2043L7.1477,6.2027L7.1541,6.1941C7.1541,6.1941 7.1605,6.1819 7.1664,6.1648C7.1675,6.1573 7.1691,6.1552 7.1691,6.1525L7.1328,6.1579C7.1152,6.1632 7.0736,6.1691 7.0501,6.1808C7.0251,6.192 7.0037,6.2069 6.9936,6.2149C7.0032,6.2272 7.0069,6.2416 7.0069,6.2565C7.0075,6.2731 7.0027,6.2896 6.9931,6.3019Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7579,6.0272C7.7227,6.048 7.6912,6.0853 7.68,6.128C7.68,6.128 7.6752,6.1195 7.6565,6.1072C7.6357,6.096 7.6192,6.0965 7.6192,6.0965C7.6192,6.0965 7.6256,6.1301 7.6283,6.1419C7.6315,6.1531 7.632,6.1893 7.6384,6.2197C7.6469,6.2533 7.6608,6.2779 7.6608,6.2779C7.6747,6.2656 7.6949,6.2592 7.7136,6.2645C7.7333,6.2672 7.7493,6.2779 7.7589,6.2939C7.7589,6.2939 7.7813,6.2752 7.7995,6.2459C7.8176,6.2197 7.8309,6.1877 7.8379,6.1781C7.8448,6.1669 7.8619,6.1387 7.8619,6.1387C7.8619,6.1387 7.8459,6.1323 7.8229,6.1365C7.8005,6.1408 7.7936,6.1461 7.7936,6.1461C7.7979,6.1029 7.784,6.0571 7.7579,6.0272" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7568,6.3029L7.7531,6.2955C7.7445,6.2821 7.7291,6.2715 7.7125,6.2693C7.6944,6.2667 7.6779,6.2704 7.664,6.2816L7.6576,6.288L7.6539,6.28C7.6539,6.2789 7.64,6.2523 7.6315,6.2203C7.6272,6.2027 7.6251,6.1808 7.624,6.1648C7.6224,6.1552 7.6224,6.1461 7.6219,6.1429C7.6192,6.1307 7.6128,6.0992 7.6128,6.0971L7.6112,6.0896L7.6192,6.0896L7.6192,6.0896C7.6224,6.0896 7.6395,6.0896 7.6603,6.1019C7.6672,6.1061 7.6725,6.1104 7.6773,6.1141C7.6907,6.0768 7.7189,6.0416 7.7541,6.0181L7.76,6.0155L7.7627,6.0181C7.7877,6.0517 7.8016,6.0933 7.8,6.1339C7.8053,6.1307 7.8123,6.1296 7.8213,6.128C7.8272,6.1264 7.8325,6.1264 7.8384,6.1264C7.8533,6.1264 7.8624,6.1296 7.8624,6.1296L7.8709,6.1317L7.8661,6.1392C7.8661,6.1408 7.8496,6.1685 7.8421,6.1797C7.8405,6.1808 7.8368,6.1893 7.832,6.1984C7.8251,6.2139 7.816,6.2309 7.8037,6.2507C7.7851,6.2768 7.7627,6.2955 7.7627,6.2976L7.7568,6.3029ZM7.7024,6.256C7.7067,6.256 7.7104,6.256 7.7141,6.2571C7.7317,6.2592 7.7483,6.2693 7.76,6.2821C7.7664,6.2779 7.7819,6.2613 7.7941,6.2437C7.8043,6.2283 7.8133,6.2075 7.8208,6.1936C7.8256,6.1829 7.8288,6.1781 7.832,6.1728C7.8363,6.1653 7.8453,6.1531 7.8507,6.1419C7.8443,6.1403 7.8341,6.1403 7.824,6.1429C7.8037,6.1445 7.7979,6.1531 7.7979,6.1531L7.7856,6.1643L7.7867,6.1445C7.7915,6.1072 7.7797,6.0667 7.7568,6.0331C7.7227,6.0571 7.696,6.0933 7.6864,6.1296L7.6816,6.1456L7.6741,6.1312L7.6741,6.1312C7.6741,6.1312 7.6688,6.1237 7.6528,6.1157C7.6421,6.1072 7.6331,6.1061 7.6272,6.1045C7.6288,6.1157 7.6315,6.1323 7.6352,6.1403C7.6352,6.1445 7.6363,6.1525 7.6379,6.1653C7.6379,6.1803 7.6405,6.1995 7.6443,6.2187C7.6507,6.2405 7.6576,6.2571 7.6629,6.2683C7.6741,6.2592 7.688,6.256 7.7024,6.256Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7435,6.3696C7.7541,6.3621 7.7632,6.3499 7.7664,6.3333C7.7691,6.32 7.7664,6.3056 7.7579,6.2933C7.7579,6.2933 7.7883,6.2784 7.8192,6.2699C7.8443,6.2645 7.888,6.2635 7.9003,6.2635C7.9125,6.2624 7.9381,6.2619 7.9381,6.2619C7.9381,6.2619 7.9365,6.2683 7.9285,6.2805C7.92,6.2944 7.9125,6.3061 7.9125,6.3061C7.9552,6.3157 7.9909,6.3435 8.0149,6.3781C7.9813,6.4 7.9371,6.4144 7.8928,6.4075C7.8928,6.4075 7.8965,6.4197 7.8997,6.44C7.9013,6.4533 7.9008,6.4576 7.9008,6.4576C7.9008,6.4576 7.8773,6.4512 7.8656,6.4453C7.8533,6.4411 7.8123,6.4288 7.7925,6.4149C7.7664,6.3947 7.7435,6.3696 7.7435,6.3696" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9083,6.4688L7.8603,6.4512C7.8432,6.4448 7.8091,6.4325 7.7893,6.4187C7.7632,6.4011 7.7392,6.3781 7.7381,6.3771L7.7435,6.3696L7.7387,6.3653C7.7504,6.3568 7.7568,6.3445 7.7605,6.3317C7.7621,6.3195 7.7605,6.3067 7.7531,6.2944L7.7488,6.2901L7.7552,6.2869C7.7568,6.2859 7.7856,6.2693 7.8187,6.264C7.8416,6.2565 7.8805,6.2555 7.8976,6.2555L7.9003,6.2555C7.9125,6.2555 7.9376,6.2549 7.9376,6.2549L7.9472,6.2539L7.944,6.2651C7.944,6.2651 7.9424,6.2693 7.9344,6.2816C7.9307,6.2901 7.9259,6.2949 7.9227,6.3024C7.9605,6.3131 7.9957,6.3387 8.0197,6.3712L8.024,6.3776L8.0187,6.3819C7.9845,6.4059 7.9408,6.4176 7.9019,6.4155C7.9035,6.4208 7.9045,6.4277 7.9061,6.4384C7.9083,6.4528 7.9083,6.4571 7.9077,6.4581L7.9083,6.4688ZM7.7531,6.3696C7.76,6.3781 7.7781,6.3947 7.7973,6.4069C7.8144,6.4192 7.8491,6.432 7.8635,6.4384L7.8944,6.4496C7.8944,6.4448 7.8944,6.4437 7.8944,6.4405C7.8917,6.4219 7.8875,6.4112 7.8875,6.4112L7.8843,6.4027L7.8944,6.4027C7.9317,6.4059 7.9728,6.3941 8.0059,6.3744C7.9819,6.3429 7.9477,6.3189 7.9109,6.312L7.9003,6.3077L7.9067,6.3024C7.9067,6.3024 7.9152,6.2912 7.9232,6.2773C7.9253,6.2731 7.9269,6.2688 7.9285,6.2677C7.9189,6.2677 7.9072,6.2677 7.9003,6.2688L7.8976,6.2688C7.8816,6.2688 7.8443,6.2688 7.8219,6.2763C7.7989,6.2816 7.7776,6.2896 7.7664,6.2939C7.7723,6.3061 7.7755,6.32 7.7723,6.3344C7.7691,6.3488 7.7632,6.3616 7.7531,6.3696Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.6475,6.3547C7.6389,6.3435 7.6352,6.328 7.6379,6.3147C7.6411,6.2981 7.6496,6.2853 7.6603,6.2784C7.6603,6.2784 7.6379,6.2533 7.6107,6.2336C7.5909,6.2203 7.5499,6.2064 7.5376,6.2032C7.5253,6.1968 7.5019,6.1909 7.5019,6.1909C7.5019,6.1909 7.5019,6.1952 7.5035,6.2085C7.5061,6.2283 7.5099,6.24 7.5099,6.24C7.4661,6.2325 7.4219,6.2496 7.3883,6.2715C7.4123,6.3051 7.4485,6.3328 7.4907,6.3429C7.4907,6.3429 7.4837,6.3541 7.4747,6.368C7.4672,6.3808 7.4667,6.3867 7.4667,6.3867C7.4667,6.3867 7.4917,6.3856 7.504,6.3845C7.5168,6.3845 7.56,6.3845 7.5851,6.3781C7.6165,6.3696 7.6469,6.3557 7.6469,6.3557" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.4565,6.3931L7.4597,6.3819C7.4597,6.3819 7.4613,6.3776 7.4688,6.3653C7.4725,6.3557 7.4773,6.3509 7.4805,6.3445C7.4421,6.3339 7.4069,6.3083 7.3835,6.2768L7.3792,6.2693L7.3845,6.2651C7.4192,6.2416 7.4624,6.2293 7.5013,6.2309C7.4997,6.2267 7.4987,6.2187 7.4971,6.2101C7.4949,6.1947 7.4949,6.1904 7.4949,6.1893L7.4949,6.1792L7.5035,6.1819C7.5035,6.1819 7.528,6.1904 7.5408,6.1941L7.5413,6.1941C7.5557,6.2027 7.5936,6.2149 7.6144,6.2277C7.6411,6.2464 7.664,6.2693 7.6656,6.2704L7.6699,6.2779L7.6645,6.2821C7.6533,6.2907 7.6469,6.3029 7.6432,6.3157C7.6416,6.328 7.6437,6.3408 7.6517,6.3531L7.6459,6.3547L7.6491,6.3605C7.6469,6.3616 7.6176,6.3771 7.5845,6.3845C7.5621,6.3909 7.5237,6.3909 7.5067,6.3925L7.504,6.3925C7.4917,6.3925 7.4667,6.3936 7.4667,6.3936L7.4565,6.3936L7.4565,6.3931ZM7.3984,6.2741C7.4229,6.3051 7.4571,6.3285 7.4939,6.3355L7.5045,6.3397L7.4981,6.3451C7.4981,6.3451 7.4896,6.3563 7.4816,6.3701C7.4795,6.3744 7.4779,6.3787 7.4763,6.3803C7.4859,6.3787 7.4976,6.3787 7.5045,6.3787L7.5083,6.3787C7.5243,6.3787 7.5616,6.3787 7.5829,6.3712C7.6059,6.3659 7.6277,6.3568 7.6384,6.3536C7.632,6.3413 7.6293,6.3275 7.632,6.3131C7.6352,6.2997 7.6416,6.2869 7.6512,6.2789C7.6443,6.2693 7.6267,6.2539 7.6075,6.2416C7.5883,6.2293 7.552,6.2165 7.5387,6.208L7.536,6.208C7.5291,6.2069 7.5179,6.2037 7.5104,6.1995C7.5104,6.2037 7.5104,6.2053 7.5109,6.208C7.5131,6.2267 7.5168,6.2373 7.5173,6.2373L7.5205,6.2459L7.5104,6.2459C7.4725,6.2405 7.432,6.2533 7.3984,6.2741Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.6283,6.3227C7.6283,6.2843 7.6603,6.2528 7.7008,6.2528C7.7419,6.2528 7.7749,6.2843 7.7749,6.3227C7.7749,6.3611 7.7413,6.3931 7.7008,6.3931C7.6603,6.3931 7.6283,6.3616 7.6283,6.3227" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7003,6.3995C7.6565,6.3995 7.6208,6.3659 7.6208,6.3227C7.6208,6.2811 7.6565,6.2453 7.7003,6.2453C7.7445,6.2453 7.7813,6.2805 7.7813,6.3227C7.7819,6.3659 7.7445,6.3995 7.7003,6.3995ZM7.7003,6.2592C7.6635,6.2592 7.6347,6.2896 7.6347,6.3227C7.6347,6.3568 7.6635,6.3861 7.7003,6.3861C7.7376,6.3861 7.7675,6.3568 7.7675,6.3227C7.7675,6.2896 7.7381,6.2592 7.7003,6.2592Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.448,6.4779C8.4309,6.4581 8.3941,6.4645 8.3685,6.4853C8.3419,6.5072 8.3339,6.5419 8.3509,6.5595C8.3685,6.5781 8.4048,6.5749 8.4309,6.5531C8.4565,6.528 8.4651,6.4949 8.448,6.4779" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.3808,6.5781L8.3808,6.5781C8.3669,6.5781 8.3541,6.5728 8.3461,6.5659C8.3381,6.5563 8.3355,6.5451 8.3355,6.5323C8.3355,6.5157 8.3467,6.4949 8.3632,6.4811C8.3792,6.4672 8.3995,6.4581 8.4181,6.4581C8.432,6.4581 8.4448,6.4656 8.4528,6.4725C8.4608,6.4811 8.464,6.4917 8.4635,6.5045C8.4635,6.5216 8.4523,6.5419 8.4357,6.5573C8.4192,6.5696 8.3989,6.5781 8.3808,6.5781ZM8.4176,6.472C8.4027,6.472 8.3851,6.48 8.3728,6.4907C8.3579,6.5029 8.3488,6.5189 8.3477,6.5323C8.3477,6.5435 8.3504,6.5509 8.3557,6.5563C8.3691,6.5696 8.4032,6.5659 8.4256,6.5456C8.4416,6.5333 8.4501,6.5184 8.4507,6.5029C8.4507,6.4944 8.448,6.4885 8.4432,6.4821C8.4373,6.4773 8.4293,6.472 8.4176,6.472Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.3445,6.5211C8.3483,6.5088 8.3557,6.4949 8.3685,6.4859C8.3947,6.4651 8.4309,6.4587 8.448,6.4784C8.4507,6.4811 8.4528,6.4827 8.4544,6.4859C8.4544,6.4859 8.4917,6.416 8.5355,6.3925C8.5792,6.3691 8.6544,6.3755 8.6544,6.3755C8.6544,6.32 8.6096,6.2784 8.5525,6.2784C8.5195,6.2784 8.4875,6.2907 8.4688,6.3157L8.4608,6.2784C8.4608,6.2784 8.4149,6.288 8.3941,6.3408C8.3733,6.3925 8.3952,6.4688 8.3952,6.4688C8.3952,6.4688 8.3845,6.4352 8.3669,6.4155C8.3504,6.392 8.3061,6.3685 8.2821,6.3573C8.2603,6.3461 8.2363,6.3312 8.2363,6.3312C8.2363,6.3312 8.2357,6.3371 8.2357,6.3531C8.2341,6.3685 8.2357,6.3797 8.2357,6.3797C8.1931,6.3739 8.1451,6.3813 8.1056,6.3947C8.1221,6.4283 8.1536,6.4571 8.1947,6.4736C8.1947,6.4736 8.1792,6.4848 8.1659,6.4987C8.1541,6.5093 8.1509,6.5152 8.1509,6.5152C8.1509,6.5152 8.1797,6.5195 8.1947,6.5205C8.2085,6.5237 8.2571,6.5312 8.2853,6.5296C8.3061,6.528 8.3291,6.5248 8.3445,6.5211" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.2752,6.5365L8.2752,6.5365C8.2496,6.5365 8.216,6.5312 8.1995,6.528L8.1397,6.5195L8.1451,6.512C8.1456,6.5109 8.1499,6.5056 8.1605,6.4944C8.1685,6.4869 8.176,6.4805 8.1824,6.4757C8.1461,6.4581 8.1168,6.432 8.1003,6.3984L8.0971,6.3915L8.104,6.3899C8.1413,6.3755 8.1888,6.368 8.2288,6.3701C8.2283,6.3664 8.2283,6.3579 8.2288,6.3515C8.2299,6.336 8.2299,6.3301 8.2299,6.3291L8.2325,6.3189L8.2411,6.3253C8.2411,6.3264 8.264,6.3397 8.2859,6.3525C8.2971,6.3568 8.3515,6.3819 8.3739,6.408C8.376,6.4133 8.3781,6.4155 8.3803,6.4192C8.3776,6.3941 8.3776,6.3637 8.3893,6.3371C8.4117,6.2816 8.4581,6.2704 8.4608,6.2693L8.4683,6.2693L8.4747,6.3008C8.4933,6.2811 8.5232,6.2693 8.5536,6.2693C8.6144,6.2693 8.6619,6.3152 8.6619,6.3744L8.6619,6.3808L8.6544,6.3808C8.6544,6.3808 8.6453,6.3803 8.6331,6.3803C8.6107,6.3803 8.568,6.3819 8.5392,6.3973C8.4976,6.4192 8.4613,6.4891 8.4613,6.4901L8.4549,6.5013L8.448,6.4907C8.448,6.4875 8.4443,6.4832 8.4427,6.4821C8.4373,6.4768 8.4293,6.4715 8.4176,6.4715C8.4027,6.4715 8.3851,6.4795 8.3728,6.4901C8.3611,6.5008 8.3541,6.512 8.3504,6.5237L8.3483,6.528L8.344,6.528C8.3301,6.5312 8.3067,6.5333 8.2848,6.5355C8.2816,6.5365 8.2789,6.5365 8.2752,6.5365ZM8.1632,6.5104L8.2005,6.5157C8.2165,6.5189 8.2507,6.5232 8.2752,6.5232L8.2752,6.5232C8.2789,6.5232 8.2821,6.5232 8.2853,6.5221C8.3035,6.52 8.3248,6.5189 8.3381,6.5157C8.344,6.5035 8.352,6.4907 8.3632,6.4816C8.3717,6.4752 8.3792,6.4704 8.3883,6.4661C8.3845,6.4565 8.3749,6.4325 8.3616,6.4187C8.3483,6.4 8.3083,6.3787 8.2795,6.3648C8.2656,6.3573 8.2507,6.3483 8.2416,6.3424C8.2416,6.3451 8.2416,6.3483 8.2416,6.3536C8.2405,6.3691 8.2416,6.3787 8.2416,6.3787L8.2421,6.3883L8.2341,6.3861C8.1979,6.3819 8.1509,6.3872 8.1147,6.3995C8.1317,6.4304 8.1627,6.4549 8.1963,6.4677L8.2069,6.4704L8.1979,6.4789C8.1979,6.4789 8.1835,6.4912 8.1696,6.504C8.1669,6.5061 8.1659,6.5072 8.1632,6.5104ZM8.4176,6.4581C8.4315,6.4581 8.4443,6.4656 8.4523,6.4725C8.4528,6.4725 8.4528,6.4725 8.4539,6.4736C8.4651,6.4528 8.4955,6.4053 8.5317,6.3861C8.5611,6.3696 8.6032,6.3669 8.632,6.3669C8.6384,6.3669 8.6432,6.3669 8.6469,6.3669C8.6432,6.3195 8.6032,6.2821 8.552,6.2821C8.5195,6.2821 8.4917,6.2944 8.4731,6.3184L8.4645,6.3296L8.4555,6.2864C8.4432,6.2907 8.4144,6.3045 8.4,6.3419C8.3824,6.3829 8.3963,6.4443 8.4005,6.4613C8.4069,6.4592 8.4123,6.4581 8.4176,6.4581Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.5157,6.5211C5.512,6.5088 5.504,6.4949 5.4917,6.4859C5.4645,6.4651 5.4293,6.4587 5.4112,6.4784C5.4096,6.4811 5.4069,6.4827 5.4053,6.4859C5.4053,6.4859 5.368,6.416 5.3243,6.3925C5.2805,6.3691 5.2059,6.3755 5.2059,6.3755C5.2059,6.32 5.2507,6.2784 5.3067,6.2784C5.3413,6.2784 5.3728,6.2907 5.3915,6.3157L5.3984,6.2784C5.3984,6.2784 5.4443,6.288 5.4667,6.3408C5.4869,6.3925 5.4635,6.4688 5.4635,6.4688C5.4635,6.4688 5.4757,6.4352 5.4923,6.4155C5.5104,6.392 5.5541,6.3685 5.5765,6.3573C5.6,6.3461 5.6229,6.3312 5.6229,6.3312C5.6229,6.3312 5.624,6.3371 5.6251,6.3531C5.6256,6.3685 5.6245,6.3797 5.6245,6.3797C5.6667,6.3739 5.7157,6.3813 5.7541,6.3947C5.7381,6.4283 5.7072,6.4571 5.6656,6.4736C5.6656,6.4736 5.6795,6.4848 5.6939,6.4987C5.7045,6.5093 5.7083,6.5152 5.7083,6.5152C5.7083,6.5152 5.6789,6.5195 5.6656,6.5205C5.6507,6.5237 5.6032,6.5312 5.5749,6.5296C5.5541,6.528 5.5291,6.5248 5.5157,6.5211" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.5851,6.5365C5.5808,6.5365 5.5771,6.5365 5.5739,6.5355C5.5515,6.5333 5.5285,6.5312 5.5141,6.528L5.5104,6.528L5.5099,6.5237C5.5061,6.5125 5.4981,6.5008 5.4875,6.4901C5.464,6.4693 5.4309,6.4667 5.4171,6.4816C5.4144,6.4816 5.4139,6.4864 5.4117,6.4901L5.4064,6.5013L5.4005,6.4901C5.4,6.4891 5.3637,6.4192 5.3216,6.3973C5.2928,6.3819 5.2512,6.3803 5.2272,6.3803C5.2149,6.3803 5.2075,6.3808 5.2075,6.3808L5.1995,6.3808L5.1995,6.3744C5.1995,6.3152 5.2469,6.2693 5.3072,6.2693C5.3387,6.2693 5.3669,6.2805 5.3877,6.3008L5.3941,6.2693L5.4011,6.2693C5.4021,6.2704 5.4501,6.2816 5.4725,6.3371C5.4827,6.3643 5.4827,6.3941 5.4795,6.4192C5.4821,6.4149 5.4859,6.4128 5.488,6.408C5.5083,6.3819 5.5637,6.3568 5.5739,6.3525C5.5963,6.3403 5.6197,6.3264 5.6197,6.3253L5.6288,6.3189L5.6293,6.3291C5.6293,6.3291 5.6304,6.3349 5.632,6.3515C5.632,6.3579 5.632,6.3664 5.632,6.3701C5.6715,6.368 5.7195,6.3755 5.7568,6.3899L5.7632,6.3915L5.76,6.3989C5.7424,6.4325 5.7131,6.4581 5.6779,6.4763C5.6827,6.4811 5.6912,6.4875 5.6976,6.4949C5.7099,6.5061 5.7131,6.5115 5.7131,6.5125L5.7195,6.52L5.6603,6.5301C5.6416,6.5312 5.6101,6.5365 5.5851,6.5365ZM5.52,6.5157C5.5349,6.5189 5.5568,6.52 5.5755,6.5221C5.5989,6.5253 5.6379,6.5189 5.6565,6.5157L5.6949,6.5104C5.6939,6.5072 5.6912,6.5061 5.6875,6.5029C5.6752,6.4907 5.6603,6.4779 5.6603,6.4779L5.6517,6.4693L5.6624,6.4667C5.6971,6.4544 5.7259,6.4293 5.7435,6.3984C5.7061,6.3861 5.6608,6.3808 5.6245,6.3851L5.6155,6.3872L5.6165,6.3776C5.6165,6.3776 5.6181,6.368 5.6171,6.3525C5.6171,6.3472 5.6165,6.344 5.616,6.3413C5.6069,6.3472 5.5931,6.3563 5.5776,6.3637C5.5493,6.3771 5.5115,6.3984 5.4965,6.4176C5.4843,6.4315 5.4741,6.4555 5.4709,6.4651C5.4784,6.4693 5.4869,6.4747 5.4939,6.4805C5.5067,6.4907 5.5163,6.5029 5.52,6.5157ZM5.2267,6.3669C5.2571,6.3669 5.2976,6.3696 5.3269,6.3861C5.3627,6.4053 5.3941,6.4528 5.4059,6.4736C5.4064,6.4725 5.4064,6.4725 5.4064,6.4725C5.4181,6.4603 5.4379,6.456 5.4581,6.4613C5.4624,6.4448 5.4752,6.3835 5.4597,6.3419C5.4437,6.3045 5.416,6.2901 5.4037,6.2864L5.3941,6.3296L5.3851,6.3184C5.3685,6.2944 5.3381,6.2821 5.3067,6.2821C5.2565,6.2821 5.216,6.3195 5.2128,6.3669C5.216,6.3669 5.2208,6.3669 5.2267,6.3669Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.4112,6.4779C5.4293,6.4581 5.4645,6.4645 5.4917,6.4853C5.5184,6.5072 5.5259,6.5419 5.5083,6.5595C5.4917,6.5781 5.4555,6.5749 5.4293,6.5531C5.4011,6.528 5.3941,6.4949 5.4112,6.4779" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.4789,6.5781C5.4603,6.5781 5.4405,6.5696 5.424,6.5573C5.4064,6.5424 5.3963,6.5221 5.3952,6.5045C5.3941,6.4923 5.3984,6.4811 5.4064,6.4725C5.4251,6.4528 5.4661,6.4571 5.4944,6.4811C5.5125,6.4944 5.5221,6.5152 5.5237,6.5323C5.5248,6.5445 5.5205,6.5563 5.5125,6.5659C5.5045,6.5728 5.4923,6.5781 5.4789,6.5781ZM5.4416,6.472C5.4309,6.472 5.4229,6.4773 5.4165,6.4827C5.4101,6.4891 5.408,6.4949 5.4091,6.5035C5.4101,6.5189 5.4192,6.5339 5.4325,6.5461C5.4571,6.5659 5.4891,6.5701 5.504,6.5568C5.5088,6.5515 5.5115,6.544 5.5104,6.5328C5.5104,6.5195 5.5003,6.5035 5.4869,6.4912C5.4725,6.4795 5.4565,6.472 5.4416,6.472Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8549,6.2571C6.8549,6.2187 6.8885,6.1883 6.9291,6.1883C6.9696,6.1883 7.0016,6.2187 7.0016,6.2571C7.0016,6.2944 6.9696,6.328 6.9291,6.328C6.888,6.328 6.8549,6.2949 6.8549,6.2571" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9291,6.3323C6.8848,6.3323 6.848,6.2997 6.848,6.2571C6.848,6.2155 6.8843,6.1808 6.9291,6.1808C6.9728,6.1808 7.008,6.2149 7.008,6.2571C7.008,6.3003 6.9728,6.3323 6.9291,6.3323ZM6.9291,6.1947C6.8917,6.1947 6.8619,6.2219 6.8619,6.2571C6.8619,6.2917 6.8917,6.3195 6.9291,6.3195C6.9653,6.3195 6.9947,6.2917 6.9947,6.2571C6.9947,6.2219 6.9653,6.1947 6.9291,6.1947Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.7755,5.2032C6.7755,5.1232 6.8427,5.0592 6.9253,5.0592C7.008,5.0592 7.0752,5.1227 7.0752,5.2032C7.0752,5.2811 7.008,5.344 6.9253,5.344C6.8427,5.344 6.7755,5.2805 6.7755,5.2032" + android:strokeWidth="1" + android:fillColor="#005BBF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9253,5.3477C6.8405,5.3477 6.7712,5.2821 6.7712,5.2032C6.7712,5.12 6.8405,5.056 6.9253,5.056C7.0101,5.056 7.0789,5.12 7.0789,5.2032C7.0789,5.2821 7.0101,5.3477 6.9253,5.3477ZM6.9253,5.0656C6.8448,5.0656 6.7797,5.1269 6.7797,5.2032C6.7797,5.2784 6.8448,5.3408 6.9253,5.3408C7.0053,5.3408 7.0704,5.2784 7.0704,5.2032C7.0709,5.1269 7.0059,5.0656 6.9253,5.0656Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8859,4.8032L6.8859,4.8811L6.8037,4.8811L6.8037,4.9579L6.8859,4.9579L6.8859,5.0661L6.8859,5.1829L6.7824,5.1829C6.7819,5.1915 6.7755,5.1952 6.7755,5.2037C6.7755,5.2203 6.7792,5.2411 6.7877,5.2581L6.7877,5.2581L7.0629,5.2581C7.0629,5.2581 7.0629,5.2581 7.0635,5.2581C7.072,5.2416 7.0752,5.2208 7.0752,5.2037C7.0752,5.1952 7.0688,5.1915 7.0683,5.1829L6.968,5.1829L6.968,5.0661L6.968,4.9579L7.0501,4.9579L7.0501,4.8811L6.968,4.8811L6.968,4.8032L6.8859,4.8032Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0667,5.2635L6.7856,5.2635L6.7856,5.2613C6.7851,5.2603 6.784,5.2592 6.7835,5.2581C6.776,5.2405 6.7717,5.2208 6.7717,5.2027C6.7717,5.1952 6.7733,5.1925 6.776,5.1904C6.7771,5.1861 6.7792,5.1819 6.7792,5.1808L6.7792,5.1776L6.8821,5.1776L6.8821,4.9632L6.8011,4.9632L6.8011,4.8768L6.8821,4.8768L6.8821,4.8L6.9728,4.8L6.9728,4.8773L7.0544,4.8773L7.0544,4.9637L6.9728,4.9637L6.9728,5.1781L7.0731,5.1781L7.0731,5.1813C7.0731,5.1824 7.0747,5.1867 7.0757,5.1909C7.0784,5.1936 7.08,5.1963 7.08,5.2032C7.08,5.2208 7.0757,5.2405 7.0683,5.2587L7.0667,5.2635ZM6.7915,5.2533L7.0603,5.2533C7.0677,5.2389 7.0715,5.2197 7.0715,5.2032C7.0715,5.1989 7.0693,5.1947 7.0683,5.1931C7.0667,5.1904 7.0667,5.1893 7.0651,5.1861L6.9632,5.1861L6.9632,4.9525L7.0453,4.9525L7.0453,4.8837L6.9632,4.8837L6.9632,4.8064L6.8912,4.8064L6.8912,4.8837L6.8085,4.8837L6.8085,4.9525L6.8912,4.9525L6.8912,5.1861L6.7861,5.1861C6.7851,5.1893 6.7851,5.1904 6.7829,5.1931C6.7819,5.1947 6.7797,5.1989 6.7797,5.2032C6.7797,5.2197 6.7835,5.2384 6.7915,5.2533Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9408,11.1904C6.4976,11.1904 6.0597,11.0821 5.6907,10.9029C5.4192,10.7669 5.2379,10.4944 5.2379,10.184L5.2379,9.0571L8.6352,9.0571L8.6352,10.184C8.6352,10.4944 8.4555,10.7669 8.1835,10.9029C7.8149,11.0821 7.3824,11.1904 6.9408,11.1904" + android:strokeWidth="1" + android:fillColor="#CCCCCC" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9408,11.2C6.5131,11.2 6.0688,11.0949 5.6864,10.9083C5.4043,10.7696 5.2293,10.4933 5.2293,10.1845L5.2293,9.0501L8.6443,9.0501L8.6443,10.1845C8.6443,10.4933 8.4693,10.7701 8.1883,10.9083C7.8005,11.1003 7.3691,11.2 6.9408,11.2ZM5.2475,9.0672L5.2475,10.1845C5.2475,10.4853 5.4187,10.7573 5.6944,10.8939C6.0736,11.08 6.5168,11.1824 6.9408,11.1824C7.3664,11.1824 7.7947,11.0821 8.1792,10.8939C8.456,10.7573 8.6267,10.4853 8.6267,10.1845L8.6267,9.0672L5.2475,9.0672L5.2475,9.0672Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9328,9.056l1.7024,0l0,-1.8853l-1.7024,0l0,1.8853z" + android:strokeWidth="1" + android:fillColor="#CCCCCC" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.6443,9.0656L6.9243,9.0656L6.9243,7.1648L8.6443,7.1648L8.6443,9.0656ZM6.9413,9.0469L8.6267,9.0469L8.6267,7.1813L6.9413,7.1813L6.9413,9.0469Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9349,10.1824C6.9349,10.6283 6.5568,10.9909 6.0875,10.9909C5.6165,10.9909 5.2352,10.6283 5.2352,10.1824L5.2352,9.056L6.9349,9.056L6.9349,10.1824" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.6069,10.8491C5.6603,10.8784 5.7328,10.9243 5.8107,10.9435L5.8064,9.016L5.6069,9.016L5.6069,10.8491Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.8192,10.9531L5.8091,10.9531C5.7445,10.9355 5.6853,10.9029 5.6363,10.8757C5.6251,10.8683 5.6133,10.8624 5.6032,10.8571L5.5979,10.8544L5.5979,9.0069L5.8149,9.0069L5.8149,9.0155L5.8192,10.9531ZM5.6165,10.8437C5.6256,10.8491 5.6352,10.8533 5.6443,10.8581C5.6896,10.8832 5.7445,10.9152 5.8021,10.9312L5.7979,9.0251L5.6165,9.0251L5.6165,10.8437Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.2331,10.1685C5.2384,10.4059 5.3328,10.5819 5.4272,10.6987L5.4272,9.0256L5.2352,9.0256L5.2331,10.1685Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.4272,10.7072C5.4251,10.7072 5.4229,10.7061 5.4203,10.7045C5.3349,10.5979 5.2304,10.4197 5.2256,10.1685L5.2272,9.0256C5.2272,9.0192 5.232,9.0165 5.2352,9.0165L5.4272,9.0165C5.432,9.0165 5.4352,9.0192 5.4352,9.0256L5.4352,10.6987C5.4352,10.7029 5.4336,10.7061 5.4299,10.7072C5.4288,10.7072 5.4288,10.7072 5.4272,10.7072ZM5.2443,9.0325L5.2411,10.1691C5.2475,10.4005 5.3381,10.5691 5.4192,10.6752L5.4192,9.0325L5.2443,9.0325Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9851,10.9845C6.0629,10.9936 6.1216,10.9909 6.1851,10.9845L6.1851,9.016L5.9851,9.016L5.9851,10.9845Z" + android:strokeWidth="1" + android:fillColor="#C7B500" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0853,10.9989L6.0853,10.9989C6.0539,10.9989 6.0208,10.9968 5.9851,10.9936L5.9765,10.9931L5.9765,9.0069L6.1936,9.0069L6.1936,10.9931L6.1851,10.9936C6.1488,10.9968 6.1168,10.9989 6.0853,10.9989ZM5.9941,10.9781C6.0261,10.9808 6.0565,10.9813 6.0848,10.9813L6.0848,10.9813C6.1136,10.9813 6.1429,10.9808 6.1749,10.9781L6.1749,9.0251L5.9936,9.0251L5.9936,10.9781L5.9941,10.9781Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.36,10.9435C6.4379,10.9285 6.5253,10.8784 6.5627,10.8533L6.5627,9.016L6.3637,9.016L6.36,10.9435Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.3504,10.9531L6.3557,9.0075L6.5723,9.0075L6.5723,10.8576L6.568,10.8608C6.5285,10.888 6.4395,10.936 6.3605,10.9536L6.3504,10.9536L6.3504,10.9531ZM6.3728,9.0251L6.3685,10.9323C6.4384,10.9157 6.5163,10.8741 6.5541,10.8491L6.5541,9.0251L6.3728,9.0251L6.3728,9.0251Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.2357,9.056l1.6981,0l0,-1.8853l-1.6981,0z" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9424,9.0656L5.2277,9.0656L5.2277,7.1648L6.9424,7.1648L6.9424,9.0656ZM5.2443,9.0469L6.9253,9.0469L6.9253,7.1813L5.2443,7.1813L5.2443,9.0469L5.2443,9.0469Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.7477,10.6805C6.832,10.6059 6.9093,10.4405 6.9376,10.2475L6.9419,9.0149L6.7435,9.0149L6.7477,10.6805Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.7392,10.7003L6.7349,9.0075L6.9504,9.0075L6.9504,9.016L6.9456,10.2485C6.9179,10.4373 6.8427,10.608 6.7536,10.6869L6.7392,10.7003ZM6.752,9.0251L6.7568,10.6587C6.8352,10.5787 6.904,10.416 6.9291,10.2464L6.9333,9.0251L6.752,9.0251Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0875,10.9989C5.6128,10.9989 5.2272,10.632 5.2272,10.1824L5.2272,9.0459L6.9435,9.0459L6.9435,10.1824C6.9435,10.6325 6.5595,10.9989 6.0875,10.9989ZM5.2443,9.0656L5.2443,10.1824C5.2443,10.6229 5.6224,10.9813 6.0875,10.9813C6.5499,10.9813 6.9253,10.6229 6.9253,10.1824L6.9253,9.0656L5.2443,9.0656Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.6373,9.0555L8.6373,10.1819C8.6373,10.6277 8.2555,10.9904 7.7851,10.9904C7.3163,10.9904 6.9349,10.6277 6.9349,10.1819L6.9349,9.0555L8.6373,9.0555" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7851,10.9989C7.3109,10.9989 6.9253,10.632 6.9253,10.1824L6.9253,9.0459L8.6459,9.0459L8.6459,10.1824C8.6459,10.6325 8.2603,10.9989 7.7851,10.9989ZM6.9435,9.0656L6.9435,10.1824C6.9435,10.6229 7.3211,10.9813 7.7856,10.9813C8.2512,10.9813 8.6299,10.6229 8.6299,10.1824L8.6299,9.0656L6.9435,9.0656Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2443,9.9072C7.2475,9.9136 7.248,9.9184 7.248,9.9248C7.248,9.9445 7.2309,9.9621 7.2091,9.9621C7.1872,9.9621 7.1696,9.9445 7.1696,9.9248C7.1696,9.9184 7.1707,9.9136 7.1733,9.9072L7.1184,9.9072C7.1168,9.9136 7.1168,9.9184 7.1168,9.9248C7.1168,9.9653 7.144,9.9957 7.1813,10.0069L7.1813,10.1435L7.2384,10.1445L7.2384,10.0069C7.2667,9.9984 7.2875,9.9776 7.2965,9.9525L7.4517,9.9525L7.4517,9.9067L7.2443,9.9067M8.0075,9.9072L8.0075,9.9531L7.8677,9.9531C7.8661,9.9584 7.8629,9.9653 7.8587,9.9696L8.0213,10.1557L7.9776,10.1904L7.816,10.0059C7.8128,10.0059 7.8112,10.0069 7.808,10.0069L7.8075,10.3152L7.7504,10.3152L7.7504,10.0069C7.7477,10.0069 7.7461,10.0053 7.744,10.0043L7.5755,10.1904L7.5317,10.1557L7.7003,9.9685C7.6976,9.9653 7.6944,9.9573 7.6928,9.9531L7.5477,9.9531L7.5477,9.9072L8.0075,9.9072L8.0075,9.9072ZM8.1003,9.9072L8.1003,9.9531L8.2565,9.9531C8.2661,9.9781 8.288,9.9989 8.3136,10.0075L8.3136,10.1451L8.3723,10.144L8.3723,10.0075C8.4096,9.9963 8.4363,9.9659 8.4363,9.9253C8.4363,9.9189 8.4352,9.9141 8.4347,9.9077L8.3787,9.9077C8.3813,9.9141 8.3835,9.9189 8.3835,9.9253C8.3835,9.9451 8.3664,9.9627 8.344,9.9627C8.3227,9.9627 8.304,9.9451 8.304,9.9253C8.304,9.9189 8.3061,9.9141 8.3088,9.9077L8.1003,9.9077M7.8667,10.6864C7.9109,10.6795 7.9541,10.6672 7.9947,10.6501L8.0229,10.6971C7.976,10.7189 7.9243,10.7323 7.8709,10.7408C7.8624,10.7808 7.8261,10.8096 7.7813,10.8096C7.7365,10.8096 7.7003,10.7813 7.6912,10.7408C7.6347,10.7323 7.5808,10.72 7.5307,10.6971L7.5595,10.6501C7.6027,10.6683 7.6485,10.6811 7.6981,10.6869C7.7072,10.6656 7.7259,10.6469 7.7509,10.6405L7.7509,10.4032L7.8075,10.4032L7.8085,10.6405C7.8336,10.6448 7.8549,10.6656 7.8667,10.6864L7.8667,10.6864ZM7.4768,10.6075L7.4485,10.6565C7.4005,10.6272 7.3568,10.5899 7.32,10.5461C7.2912,10.5568 7.2571,10.5515 7.232,10.5312C7.1941,10.4992 7.1883,10.4443 7.2224,10.408L7.2267,10.4037C7.2037,10.3493 7.1877,10.2928 7.1813,10.2331L7.24,10.2331C7.2437,10.2832 7.256,10.3333 7.2768,10.3787C7.2939,10.3755 7.3099,10.3787 7.3253,10.3829L7.4704,10.2224L7.5141,10.2576L7.3701,10.4187C7.3899,10.4464 7.3888,10.4848 7.3664,10.5163C7.4,10.5499 7.4357,10.5813 7.4768,10.6075ZM7.2629,10.4405C7.2763,10.4229 7.3013,10.4197 7.3184,10.4341C7.3349,10.4475 7.3371,10.4704 7.3227,10.4885C7.3088,10.5029 7.2837,10.5056 7.2667,10.4923C7.2507,10.4779 7.248,10.4549 7.2629,10.4405ZM7.1893,10.2811L7.1301,10.2683L7.1221,10.1173L7.1813,10.0971L7.1813,10.1824C7.1808,10.2171 7.184,10.2491 7.1893,10.2811ZM7.2384,10.0939L7.2976,10.1072C7.2976,10.1072 7.3003,10.2048 7.3003,10.1824C7.2976,10.1573 7.3067,10.2576 7.3067,10.2576L7.2469,10.2784C7.2416,10.2469 7.2379,10.216 7.2379,10.1824L7.2384,10.0939L7.2384,10.0939ZM7.4341,10.5771C7.4843,10.6155 7.5413,10.6448 7.6037,10.6656L7.6176,10.6085C7.5659,10.5936 7.5189,10.5701 7.4757,10.5397L7.4341,10.5771M7.4059,10.6261C7.4571,10.6645 7.5136,10.6939 7.5755,10.7157L7.5317,10.7563C7.4816,10.7397 7.4352,10.7157 7.392,10.6843L7.4059,10.6261M7.4821,10.2939L7.5387,10.3184L7.6427,10.2032L7.6091,10.1531L7.4821,10.2939M7.4384,10.2571L7.4048,10.2069L7.5088,10.0933L7.5653,10.1184L7.4384,10.2571M8.0757,10.6075L8.104,10.6565C8.1531,10.6272 8.1957,10.5899 8.2325,10.5461C8.2629,10.5568 8.2955,10.5515 8.3205,10.5312C8.3605,10.4992 8.3637,10.4443 8.3317,10.408L8.3259,10.4037C8.3499,10.3493 8.3659,10.2928 8.3707,10.2331L8.3136,10.2331C8.3088,10.2832 8.296,10.3333 8.2763,10.3787C8.2608,10.3755 8.2427,10.3787 8.2267,10.3829L8.0821,10.2224L8.0384,10.2576L8.1824,10.4187C8.1637,10.4464 8.1637,10.4848 8.1856,10.5163C8.1541,10.5499 8.1163,10.5813 8.0757,10.6075ZM8.2912,10.4405C8.2757,10.4229 8.2507,10.4197 8.2352,10.4341C8.2187,10.4475 8.2165,10.4704 8.2304,10.4885C8.2443,10.5029 8.2693,10.5056 8.2859,10.4923C8.3029,10.4779 8.3045,10.4549 8.2912,10.4405ZM8.3632,10.2811L8.4229,10.2683L8.432,10.1173L8.3733,10.0971L8.3733,10.1824C8.3728,10.2171 8.3691,10.2491 8.3632,10.2811ZM8.3141,10.0939L8.2549,10.1072C8.2549,10.1072 8.2517,10.2048 8.2539,10.1824C8.2544,10.1573 8.2469,10.2576 8.2469,10.2576L8.3067,10.2784C8.3131,10.2469 8.3141,10.216 8.3141,10.1824L8.3141,10.0939M8.1195,10.5771C8.0693,10.6155 8.0107,10.6448 7.9483,10.6656L7.9355,10.6085C7.9872,10.5936 8.0357,10.5701 8.0763,10.5397L8.1195,10.5771M8.1477,10.6261C8.0976,10.6645 8.0389,10.6939 7.9771,10.7157L8.0213,10.7563C8.0709,10.7397 8.1179,10.7157 8.16,10.6843L8.1477,10.6261M8.0699,10.2939L8.0133,10.3184L7.9104,10.2032L7.9445,10.1531L8.0699,10.2939M8.1136,10.2571L8.1472,10.2069L8.0437,10.0933L7.9877,10.1184L8.1136,10.2571M7.4059,9.9531L7.4224,10.0085L7.5813,10.0085L7.5995,9.9531L7.4059,9.9531M8.1504,9.9531L8.1328,10.0085L7.9733,10.0085L7.9568,9.9531L8.1504,9.9531M7.7413,10.7221C7.7413,10.7035 7.7589,10.6848 7.7808,10.6848C7.8027,10.6848 7.8192,10.7035 7.8192,10.7221C7.8192,10.744 7.8021,10.7595 7.7808,10.7595C7.7589,10.7595 7.7413,10.744 7.7413,10.7221ZM7.808,10.4501L7.8672,10.4325L7.8672,10.2827L7.808,10.2661L7.808,10.4501M7.7504,10.4501L7.6912,10.4325L7.6912,10.2827L7.7504,10.2661L7.7504,10.4501" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.1184,9.9072C7.1259,9.8779 7.1504,9.8528 7.1819,9.8421L7.1813,9.656L7.2384,9.656L7.2384,9.8432C7.2667,9.8533 7.2885,9.872 7.2981,9.8997L7.4523,9.9008L7.4523,9.9072L7.2448,9.9072C7.2384,9.896 7.2245,9.8896 7.2096,9.8896C7.1947,9.8896 7.1803,9.896 7.1739,9.9072L7.1184,9.9072M7.5477,9.9072L7.5477,9.9008L7.6917,9.9008C7.6944,9.8944 7.696,9.8901 7.6981,9.8864L7.5211,9.6907L7.5648,9.6533L7.7403,9.8469C7.7429,9.8448 7.7461,9.8448 7.7493,9.8437L7.7493,9.5845L7.8069,9.5845L7.8069,9.8421C7.8096,9.8437 7.8133,9.8437 7.816,9.8448L7.9867,9.6501L8.0309,9.6837L7.8592,9.8784C7.8635,9.8848 7.8667,9.8923 7.8699,9.9013L8.008,9.9013L8.008,9.9077L7.5477,9.9077L7.5477,9.9072ZM8.3093,9.9072C8.3163,9.896 8.3291,9.8896 8.344,9.8896C8.36,9.8896 8.3728,9.896 8.3787,9.9072L8.4347,9.9072C8.4272,9.8779 8.4032,9.8528 8.3723,9.8421L8.3723,9.656L8.3147,9.656L8.3147,9.8437C8.2864,9.8533 8.2645,9.872 8.2565,9.8997L8.1003,9.9008L8.1003,9.9072L8.3093,9.9072M7.2475,9.3824L7.4597,9.6208L7.5035,9.5867L7.2896,9.3483C7.2939,9.3424 7.2971,9.3349 7.3003,9.3285L7.456,9.3285L7.456,9.2731L7.2997,9.2731C7.288,9.2389 7.2528,9.2139 7.2112,9.2139C7.16,9.2139 7.1189,9.2533 7.1189,9.3013C7.1189,9.3397 7.144,9.3701 7.1813,9.3824L7.1808,9.5685L7.2373,9.5685L7.2373,9.3835C7.2416,9.3824 7.2443,9.3824 7.2475,9.3824ZM8.3728,9.3824L8.3728,9.5685L8.3152,9.5685L8.3152,9.3824C8.3104,9.3824 8.3067,9.3808 8.3024,9.3781L8.0907,9.6181L8.0469,9.5824L8.2635,9.3397C8.2608,9.3344 8.2592,9.3312 8.2571,9.3285L8.1008,9.3285L8.1008,9.2731L8.2571,9.2731C8.2693,9.2389 8.304,9.2139 8.3445,9.2139C8.3963,9.2139 8.4379,9.2533 8.4379,9.3013C8.4373,9.3408 8.4107,9.3717 8.3728,9.3824ZM7.8069,9.3824L7.8069,9.4949L7.7493,9.4949L7.7493,9.3835C7.7205,9.3771 7.6976,9.3547 7.6885,9.328L7.5488,9.328L7.5488,9.2725L7.6885,9.2725C7.7003,9.2384 7.7349,9.2133 7.776,9.2133C7.8176,9.2133 7.8528,9.2384 7.8645,9.2725L8.0069,9.2725L8.0069,9.328L7.864,9.328C7.8549,9.3531 7.8352,9.3749 7.8069,9.3824ZM7.1819,9.52L7.1227,9.5376L7.1227,9.6896L7.1819,9.7045L7.1819,9.52M7.2389,9.52L7.2981,9.5376L7.2981,9.6896L7.2389,9.7045L7.2389,9.52M8.3141,9.52L8.2549,9.5376L8.2549,9.6896L8.3141,9.7045L8.3141,9.52M8.3728,9.52L8.4315,9.5376L8.4315,9.6896L8.3728,9.7045L8.3728,9.52M7.4725,9.5509L7.5285,9.528L7.6315,9.6405L7.5973,9.6907L7.4725,9.5509M7.4288,9.5856L7.3941,9.6347L7.4976,9.7515L7.5536,9.7275L7.4288,9.5856M8.0789,9.5445L8.0219,9.5216L7.9195,9.6395L7.9541,9.6875L8.0789,9.5445M8.1227,9.5813L8.1568,9.6309L8.0539,9.7451L7.9979,9.7211L8.1227,9.5813M7.4059,9.9003L7.4224,9.8443L7.5813,9.8443L7.5995,9.9003L7.4059,9.9003M7.1728,9.3008C7.1728,9.2795 7.1899,9.2635 7.2117,9.2635C7.2336,9.2635 7.2507,9.2795 7.2507,9.3008C7.2507,9.3195 7.2336,9.3381 7.2117,9.3381C7.1899,9.3381 7.1728,9.32 7.1728,9.3008ZM7.5979,9.328L7.5813,9.3835L7.4219,9.3835L7.4037,9.328L7.5979,9.328M7.5979,9.272L7.5813,9.216L7.4219,9.216L7.4037,9.272L7.5979,9.272M8.1504,9.9003L8.1328,9.8443L7.9733,9.8443L7.9568,9.9003L8.1504,9.9003M8.3051,9.3008C8.3051,9.2795 8.3232,9.2635 8.3445,9.2635C8.3669,9.2635 8.3845,9.2795 8.3845,9.3008C8.3845,9.3195 8.3669,9.3381 8.3445,9.3381C8.3227,9.3387 8.3051,9.32 8.3051,9.3008ZM7.7371,9.3008C7.7371,9.2795 7.7541,9.2635 7.776,9.2635C7.7979,9.2635 7.8165,9.2795 7.8165,9.3008C7.8165,9.3195 7.7979,9.3381 7.776,9.3381C7.7547,9.3387 7.7371,9.32 7.7371,9.3008ZM7.9573,9.328L7.9755,9.3835L8.1349,9.3835L8.1515,9.328L7.9573,9.328M7.9573,9.272L7.9755,9.216L8.1349,9.216L8.1515,9.272L7.9573,9.272M7.7499,9.4501L7.6907,9.4656L7.6907,9.6171L7.7499,9.632L7.7499,9.4501M7.8069,9.4501L7.8667,9.4656L7.8667,9.6171L7.8069,9.632L7.8069,9.4501" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7808,10.8155C7.7365,10.8155 7.6976,10.7851 7.6869,10.7445C7.6491,10.7403 7.6123,10.7323 7.5771,10.7195L7.5328,10.7616L7.5307,10.76C7.4821,10.7429 7.4347,10.7184 7.3904,10.6901L7.3883,10.6869L7.4005,10.6277C7.3717,10.6053 7.3445,10.5792 7.3195,10.5525C7.288,10.5589 7.2539,10.5525 7.2299,10.5317C7.2107,10.5168 7.1979,10.4944 7.1963,10.4693C7.1947,10.4443 7.2027,10.4203 7.2197,10.4027L7.2229,10.4016C7.2053,10.3632 7.1936,10.3237 7.1856,10.2827L7.1259,10.2693L7.1168,10.1152L7.176,10.0944L7.176,10.0112C7.1381,9.9989 7.112,9.9643 7.112,9.9248C7.112,9.8853 7.1381,9.8507 7.1765,9.8384L7.176,9.6517L7.2427,9.6517L7.2427,9.8395C7.2699,9.848 7.2917,9.8688 7.3008,9.8939L7.4571,9.8949L7.4571,9.9573L7.2997,9.9573C7.2896,9.9824 7.2699,10.0032 7.2437,10.0107L7.2437,10.0907L7.3029,10.1045L7.3029,10.1072C7.3029,10.1072 7.304,10.1696 7.3045,10.1824C7.3072,10.2011 7.3104,10.2576 7.3104,10.2576L7.3109,10.2629L7.2517,10.2816C7.2576,10.3131 7.2672,10.3435 7.28,10.3723C7.2944,10.3701 7.3109,10.3723 7.3259,10.3787L7.4709,10.216L7.5216,10.2576L7.3765,10.4187C7.3947,10.4485 7.3941,10.4848 7.3733,10.5163C7.392,10.5339 7.4133,10.5536 7.4347,10.5707L7.4768,10.5333L7.4795,10.5355C7.5211,10.5669 7.568,10.5915 7.6197,10.6069L7.6229,10.6075L7.6107,10.6656C7.6373,10.6709 7.6661,10.6789 7.6949,10.6832C7.7056,10.6613 7.7232,10.6459 7.7461,10.6373L7.7467,10.3989L7.8128,10.3989L7.8133,10.6363C7.8384,10.6448 7.8571,10.6613 7.8688,10.6832C7.9104,10.6757 7.9509,10.6645 7.9931,10.6459L7.9968,10.6448L8.0293,10.7019L8.0256,10.704C7.9776,10.7227 7.9264,10.7376 7.8752,10.7456C7.8629,10.7856 7.8251,10.8155 7.7808,10.8155ZM7.5851,10.7147C7.6187,10.7248 7.6539,10.7323 7.6912,10.7376L7.6939,10.7387L7.6939,10.7408C7.7035,10.7781 7.7387,10.8064 7.7803,10.8064C7.8213,10.8064 7.8571,10.7781 7.8661,10.7408L7.8661,10.7376L7.8688,10.7365C7.9205,10.728 7.9691,10.7157 8.016,10.6949L7.992,10.656C7.9499,10.672 7.9099,10.6827 7.8661,10.6907L7.8629,10.6907L7.8619,10.6896C7.8512,10.6672 7.8315,10.6512 7.8064,10.6437L7.8037,10.6421L7.8037,10.4075L7.7547,10.4075L7.7541,10.6432L7.7515,10.6437C7.7291,10.6533 7.7104,10.6672 7.7008,10.6896L7.6997,10.6907L7.6965,10.6907C7.6667,10.6875 7.6357,10.6805 7.6075,10.6709L7.6075,10.6709L7.6037,10.6699C7.5941,10.6683 7.5867,10.6656 7.5787,10.6624C7.5723,10.6592 7.5664,10.6571 7.56,10.6555L7.5365,10.6944C7.5504,10.7019 7.5627,10.7056 7.5776,10.7109L7.5851,10.7147L7.5851,10.7147ZM7.3979,10.6821C7.4395,10.7115 7.4848,10.7323 7.5312,10.7531L7.5675,10.7173C7.5541,10.7136 7.5413,10.7072 7.5291,10.7035L7.5237,10.7013L7.5237,10.7003C7.4981,10.6896 7.4736,10.6773 7.4501,10.6619L7.4501,10.6619L7.4464,10.6587C7.4331,10.6533 7.4203,10.6437 7.4075,10.6325L7.3979,10.6821ZM7.4549,10.6533C7.4789,10.6683 7.504,10.6816 7.5291,10.6923L7.5525,10.6533C7.5269,10.6411 7.5024,10.6283 7.4789,10.6139L7.4549,10.6533ZM7.4416,10.5771C7.4848,10.6075 7.5317,10.6341 7.5819,10.6533C7.5883,10.6565 7.5941,10.6576 7.6011,10.6608L7.6128,10.6128C7.5627,10.5952 7.5168,10.5733 7.4768,10.544L7.4416,10.5771ZM7.4037,10.6187L7.408,10.6208C7.4208,10.6315 7.4341,10.6405 7.4475,10.6491L7.4709,10.6075C7.4315,10.5824 7.3957,10.5531 7.3637,10.5173L7.3616,10.5157L7.3632,10.5115C7.3851,10.4832 7.3856,10.448 7.3669,10.4197L7.3664,10.4171L7.5088,10.2571L7.4731,10.2277L7.3285,10.3883L7.3259,10.3867C7.3104,10.3808 7.2939,10.3792 7.2784,10.3808L7.2752,10.3819L7.2731,10.3776C7.2608,10.3472 7.2507,10.3152 7.2443,10.2816L7.2443,10.2816L7.2427,10.2789C7.2421,10.2688 7.24,10.2619 7.2389,10.2523C7.2389,10.2459 7.2379,10.2411 7.2373,10.2368L7.1893,10.2363C7.1899,10.2512 7.1925,10.2651 7.1957,10.28L7.1957,10.2859L7.1957,10.2859C7.2043,10.3243 7.2165,10.3632 7.2331,10.3995L7.2331,10.4027L7.2267,10.408C7.2112,10.4277 7.2048,10.4464 7.2053,10.4693C7.2075,10.4917 7.2176,10.512 7.2363,10.5275C7.2587,10.544 7.2917,10.5525 7.3205,10.5424L7.3237,10.5413L7.3243,10.5429C7.3477,10.5696 7.3755,10.5947 7.4037,10.6187ZM7.1349,10.2656L7.1835,10.2763C7.1813,10.2608 7.1787,10.2459 7.1787,10.2325L7.1776,10.2283L7.1787,10.2283C7.1765,10.2149 7.1755,10.1989 7.1755,10.1824L7.1755,10.144L7.1755,10.1157L7.1755,10.1035L7.1253,10.12L7.1349,10.2656ZM7.2475,10.2533C7.2475,10.2576 7.2485,10.2656 7.2501,10.272L7.3008,10.2565C7.3003,10.2443 7.2971,10.2059 7.296,10.1888C7.2955,10.1867 7.2949,10.1845 7.2949,10.1824C7.2944,10.1797 7.2944,10.1781 7.2949,10.1781C7.2944,10.1584 7.2939,10.1221 7.2939,10.1115L7.2427,10.1003L7.2427,10.1824C7.2432,10.2075 7.2443,10.2315 7.2475,10.2533L7.2475,10.2533L7.2475,10.2533ZM7.1872,10.2283L7.2352,10.2283C7.2352,10.216 7.2352,10.2 7.2352,10.1824L7.2352,10.1488L7.1851,10.1477L7.1851,10.1819C7.1851,10.1989 7.1851,10.2144 7.1872,10.2283ZM7.1851,10.1408L7.2352,10.1408L7.2352,10.0048L7.2379,10.0032C7.2629,9.9947 7.2827,9.9771 7.2912,9.9531L7.2928,9.9488L7.4475,9.9488L7.4475,9.9029L7.2939,9.9029L7.2928,9.8997C7.2848,9.8741 7.2635,9.8544 7.2373,9.8443L7.2341,9.8443L7.2341,9.6576L7.1856,9.6576L7.1856,9.8432L7.1824,9.8443C7.1467,9.8555 7.1211,9.8901 7.1211,9.9243C7.1211,9.9595 7.1467,9.9931 7.1824,10.0021L7.1856,10.0048L7.1856,10.1408L7.1851,10.1408ZM7.2923,10.5056C7.2816,10.5056 7.2725,10.5029 7.2635,10.4944C7.2544,10.488 7.2496,10.4779 7.248,10.4651C7.2475,10.4549 7.2507,10.4443 7.2592,10.4357C7.2677,10.4272 7.2795,10.4192 7.2923,10.4192C7.3035,10.4192 7.3131,10.4256 7.3211,10.4304C7.3301,10.44 7.3349,10.4485 7.3365,10.4597C7.3381,10.4693 7.3339,10.4816 7.3253,10.4901C7.3173,10.5008 7.3056,10.5056 7.2923,10.5056ZM7.2923,10.4309C7.2816,10.4309 7.2725,10.4336 7.2661,10.4421C7.2597,10.4491 7.2565,10.4571 7.2565,10.4656C7.2576,10.4752 7.2629,10.4821 7.2688,10.4896C7.2752,10.4939 7.2837,10.4949 7.2917,10.4949C7.3024,10.4949 7.3125,10.4923 7.3184,10.4843C7.3248,10.4779 7.328,10.4699 7.3275,10.4613C7.3264,10.4528 7.3221,10.4448 7.3157,10.4395C7.3093,10.4325 7.3003,10.4309 7.2923,10.4309ZM7.8128,10.3189L7.7461,10.3189L7.7461,10.0107C7.7456,10.0096 7.7445,10.0096 7.7445,10.0096L7.576,10.1963L7.5259,10.1568L7.6944,9.9685C7.6933,9.9659 7.6917,9.9616 7.6901,9.9573L7.5445,9.9573L7.5445,9.8949L7.6891,9.8949C7.6912,9.8907 7.6917,9.8896 7.6933,9.8853L7.5147,9.6875L7.5653,9.6448L7.7419,9.8405C7.7419,9.8405 7.744,9.8405 7.7445,9.8405L7.7445,9.5797L7.8107,9.5797L7.8107,9.8384C7.8107,9.8384 7.8107,9.8384 7.8112,9.8384C7.8128,9.8384 7.8133,9.8395 7.8139,9.8395L7.9856,9.6432L8.0368,9.6821L7.864,9.8779C7.8667,9.8821 7.8693,9.8885 7.872,9.8944L8.0128,9.8944L8.0128,9.9568L7.8709,9.9568C7.8693,9.9621 7.8667,9.9653 7.864,9.9691L8.0283,10.1557L7.9776,10.1952L7.8149,10.0096L7.8149,10.0096C7.8139,10.0107 7.8133,10.0107 7.8133,10.0117L7.8133,10.3189L7.8128,10.3189ZM7.7547,10.3093L7.8037,10.3093L7.8037,10.0059L7.8064,10.0048C7.8085,10.0032 7.8096,10.0032 7.8101,10.0032C7.8117,10.0032 7.8123,10.0032 7.8139,10.0032L7.8165,10.0011L7.8187,10.0032L7.9781,10.1835L8.0149,10.1547L7.8533,9.9696L7.8544,9.9685C7.8581,9.9632 7.8613,9.9573 7.8624,9.9531L7.864,9.9488L8.0032,9.9488L8.0032,9.9029L7.8651,9.9029L7.8635,9.9008C7.8613,9.8901 7.8581,9.8843 7.8544,9.8795L7.8533,9.8779L7.8549,9.8747L8.0235,9.6832L7.9867,9.6555L7.816,9.8475L7.8133,9.8464C7.8128,9.8453 7.8101,9.8453 7.8091,9.8443C7.8069,9.8443 7.8064,9.8443 7.8048,9.8443L7.8016,9.8443L7.8016,9.5893L7.7536,9.5893L7.7536,9.8448L7.7504,9.8459C7.7477,9.848 7.744,9.8491 7.7413,9.8512L7.7381,9.8533L7.5637,9.6576L7.5275,9.6901L7.7045,9.8837L7.7029,9.888C7.7013,9.8912 7.6987,9.8955 7.6971,9.9013L7.6955,9.9035L7.5536,9.9035L7.5536,9.9493L7.6971,9.9493L7.6981,9.9536C7.6997,9.9579 7.7013,9.9632 7.7045,9.9659L7.7061,9.9691L7.5387,10.1563L7.576,10.184L7.7429,9.9995L7.7483,10.0037C7.7493,10.0037 7.7509,10.0037 7.752,10.0037L7.7552,10.0053L7.7547,10.3093ZM7.4603,9.6283L7.4571,9.624L7.2459,9.3877C7.2443,9.3877 7.2443,9.3888 7.2432,9.3888C7.2432,9.3888 7.2427,9.3888 7.2427,9.3888L7.2427,9.5701L7.176,9.5701L7.1765,9.3856C7.1392,9.3723 7.1147,9.3397 7.1147,9.3013C7.1147,9.2501 7.1579,9.2075 7.2117,9.2075C7.2533,9.2075 7.2891,9.2325 7.3035,9.2688L7.4603,9.2688L7.4603,9.3312L7.3035,9.3312C7.3008,9.3387 7.2981,9.3429 7.2955,9.3467L7.5104,9.5861L7.4603,9.6283ZM7.2485,9.3781L7.2507,9.3797L7.4613,9.6155L7.4981,9.584L7.2859,9.3477L7.2864,9.3445C7.2907,9.3403 7.2933,9.3323 7.296,9.3269L7.2976,9.3216L7.4517,9.3216L7.4517,9.2779L7.2976,9.2779L7.296,9.2747C7.2848,9.2405 7.2512,9.2171 7.2123,9.2171C7.1637,9.2171 7.1237,9.2544 7.1237,9.3008C7.1237,9.3349 7.1483,9.3669 7.1829,9.3781L7.1861,9.3797L7.1861,9.3824L7.1861,9.5637L7.2352,9.5637L7.2352,9.3813L7.2384,9.3797C7.2389,9.3797 7.2416,9.3781 7.2427,9.3781C7.2448,9.3781 7.2459,9.3781 7.2469,9.3781L7.2485,9.3781Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0203,10.7621L7.9696,10.7147L7.976,10.7115C8.0197,10.6949 8.0608,10.6779 8.0981,10.6533L8.0741,10.6133C8.0352,10.6373 7.9925,10.6571 7.9504,10.6693L7.9445,10.6704L7.9296,10.6059L7.9339,10.6053C7.9845,10.5904 8.032,10.5653 8.0731,10.5339L8.0757,10.5317L8.1189,10.5691C8.1413,10.5525 8.1605,10.5328 8.1792,10.5147C8.16,10.4832 8.1579,10.4469 8.176,10.4171L8.0315,10.256L8.0816,10.2144L8.2277,10.3771C8.2416,10.3707 8.2576,10.3685 8.272,10.3707C8.2843,10.3419 8.2939,10.3115 8.3003,10.28L8.2411,10.2613L8.2416,10.256C8.2416,10.256 8.2475,10.2016 8.2475,10.1808C8.2475,10.1685 8.2501,10.1077 8.2501,10.1056L8.2501,10.1029L8.3099,10.0891L8.3099,10.0091C8.2843,10.0016 8.2635,9.9808 8.2539,9.9557L8.0976,9.9557L8.0976,9.8933L8.2533,9.8923C8.2635,9.8672 8.2832,9.8464 8.3104,9.8379L8.3104,9.7056L8.2507,9.6907L8.2507,9.5323L8.3104,9.5157L8.3104,9.3867C8.3083,9.3845 8.3061,9.3835 8.304,9.3824L8.0917,9.6219L8.04,9.5824L8.0432,9.5781L8.2571,9.3387C8.2571,9.3355 8.2555,9.3323 8.2544,9.3312L8.0971,9.3312L8.0971,9.2688L8.2544,9.2688C8.2683,9.2325 8.3045,9.2075 8.3445,9.2075C8.3984,9.2075 8.4421,9.2501 8.4421,9.3013C8.4421,9.3408 8.4171,9.3744 8.3781,9.3877L8.3771,9.5701L8.32,9.5701L8.32,9.6523L8.3771,9.6523L8.3765,9.8389C8.4155,9.8523 8.4421,9.8859 8.4421,9.9253C8.4421,9.9659 8.4171,9.9995 8.3771,10.0117L8.3771,10.0939L8.4357,10.1157L8.4272,10.2699L8.368,10.2832C8.3605,10.3227 8.3483,10.3632 8.3323,10.4021L8.3349,10.4032C8.3509,10.4219 8.36,10.4448 8.3573,10.4699C8.3557,10.4949 8.3445,10.5173 8.3237,10.5323C8.3003,10.5531 8.2661,10.5595 8.2357,10.5531C8.2107,10.5797 8.1824,10.6059 8.1536,10.6283L8.1669,10.6875L8.1637,10.6907C8.12,10.7189 8.0736,10.7435 8.0235,10.7605L8.0203,10.7621ZM7.9851,10.7173L8.0224,10.7531C8.0688,10.7323 8.1131,10.7115 8.1557,10.6821L8.144,10.632C8.1317,10.6432 8.1189,10.6528 8.1067,10.6581L8.1029,10.6624L8.1024,10.6613C8.0667,10.6821 8.0256,10.7029 7.9851,10.7173ZM7.9408,10.6123L7.9515,10.6603C8.008,10.6421 8.0629,10.6133 8.1125,10.5771L8.0757,10.5435C8.0352,10.5728 7.9904,10.5947 7.9408,10.6123ZM8.0816,10.6075L8.1056,10.6491C8.1189,10.6405 8.1317,10.6315 8.144,10.6208L8.1504,10.6181L8.1504,10.6187C8.1787,10.5947 8.2053,10.5696 8.2288,10.5435L8.2315,10.5419L8.2341,10.5429C8.2629,10.5531 8.2944,10.5445 8.3173,10.528C8.3349,10.5125 8.3467,10.4923 8.3477,10.4699C8.3504,10.4469 8.3424,10.4283 8.328,10.4085L8.3205,10.4032L8.3227,10.4C8.3376,10.3627 8.3504,10.3237 8.3579,10.2853L8.3589,10.2805C8.3616,10.2656 8.3632,10.2517 8.3653,10.2368L8.3163,10.2373C8.3125,10.2853 8.2997,10.3323 8.2795,10.3781L8.2789,10.3824L8.2757,10.3813C8.2603,10.3797 8.2432,10.3813 8.2293,10.3872L8.2261,10.3888L8.0821,10.2283L8.0448,10.2576L8.1888,10.4176L8.1861,10.4203C8.1675,10.4485 8.1696,10.4837 8.1893,10.512L8.192,10.5163L8.1888,10.5179C8.1568,10.5531 8.1211,10.5824 8.0816,10.6075ZM8.3755,10.2283L8.3755,10.2325C8.3733,10.2459 8.3728,10.2608 8.3691,10.2763L8.4192,10.2656L8.4267,10.12L8.3765,10.1035L8.3765,10.1157L8.3765,10.1483L8.3765,10.1483L8.3765,10.1824C8.3765,10.1989 8.3755,10.2144 8.3755,10.2283L8.3755,10.2283L8.3755,10.2283ZM8.2507,10.256L8.304,10.2715C8.3072,10.2443 8.3104,10.2176 8.3104,10.1819L8.3104,10.0997L8.2603,10.1109C8.2597,10.1216 8.2576,10.1579 8.2571,10.1776C8.2576,10.1776 8.2576,10.1792 8.2571,10.1819C8.2571,10.184 8.2571,10.1861 8.2571,10.1883C8.2555,10.2059 8.2523,10.2437 8.2507,10.256ZM8.3195,10.1488L8.3195,10.1824C8.3195,10.2 8.3189,10.216 8.3173,10.2283L8.3669,10.2283C8.3675,10.2149 8.3685,10.1989 8.3685,10.1824L8.3685,10.1483L8.3195,10.1488ZM8.1056,9.9488L8.2603,9.9488L8.2608,9.9531C8.2693,9.9781 8.2901,9.9947 8.3163,10.0032L8.3189,10.0048L8.3189,10.1408L8.368,10.1408L8.368,10.1157L8.368,10.0059L8.3712,10.0032C8.4069,9.9936 8.4315,9.9616 8.4315,9.9253C8.4315,9.8912 8.4064,9.8565 8.3707,9.8453L8.3675,9.8443L8.3675,9.8411L8.368,9.6587L8.3189,9.6587L8.3189,9.8453L8.3163,9.8453C8.288,9.8555 8.2693,9.8752 8.2603,9.9008L8.2597,9.904L8.1061,9.904L8.1061,9.9488L8.1056,9.9488ZM8.2603,9.6832L8.3104,9.6976L8.3104,9.5269L8.2603,9.5403L8.2603,9.6832ZM8.0528,9.5813L8.0891,9.6107L8.3003,9.3712L8.3035,9.3744C8.3077,9.3776 8.3125,9.3787 8.3157,9.3787L8.3184,9.3803L8.3184,9.5643L8.3675,9.5643L8.3685,9.3813L8.3712,9.3803C8.4075,9.3691 8.4315,9.3371 8.4315,9.3019C8.4315,9.2555 8.3931,9.2181 8.3435,9.2181C8.3061,9.2181 8.272,9.2416 8.2603,9.2757L8.2597,9.2789L8.104,9.2789L8.104,9.3227L8.2597,9.3227L8.2608,9.328C8.2624,9.3291 8.2635,9.3333 8.2656,9.3355L8.2667,9.3387L8.2667,9.3408L8.0528,9.5813ZM8.2603,10.5056C8.248,10.5056 8.2352,10.5008 8.2272,10.4907C8.2192,10.4821 8.2165,10.4699 8.2165,10.4603C8.2176,10.4491 8.2229,10.4405 8.232,10.4309C8.2405,10.4256 8.2507,10.4197 8.2603,10.4197C8.2731,10.4197 8.2853,10.4283 8.2944,10.4363C8.3013,10.4448 8.3056,10.4555 8.304,10.4656C8.304,10.4779 8.2976,10.4885 8.2885,10.4949C8.2816,10.5029 8.2709,10.5056 8.2603,10.5056ZM8.2603,10.4309C8.2523,10.4309 8.2443,10.4325 8.2379,10.44C8.2304,10.4453 8.2256,10.4533 8.2256,10.4619C8.2256,10.4704 8.2283,10.4784 8.2341,10.4848C8.2459,10.4981 8.2693,10.5013 8.2837,10.4901C8.2917,10.4827 8.2949,10.4757 8.2955,10.4661C8.2965,10.4576 8.2939,10.4496 8.288,10.4427C8.2805,10.4336 8.2709,10.4309 8.2603,10.4309ZM7.5413,10.3221L7.4752,10.2949L7.6096,10.1451L7.6475,10.2032L7.5413,10.3221ZM7.4907,10.2923L7.5381,10.3125L7.6384,10.2032L7.6085,10.1605L7.4907,10.2923ZM7.4379,10.2656L7.3995,10.2075L7.5067,10.0907L7.5728,10.1157L7.4379,10.2656ZM7.4101,10.2085L7.4395,10.2523L7.5573,10.12L7.5104,10.0997L7.4101,10.2085ZM7.2091,9.9659C7.1856,9.9659 7.1648,9.9472 7.1648,9.9253C7.1648,9.9035 7.1851,9.8827 7.2091,9.8827C7.2331,9.8827 7.2533,9.9035 7.2533,9.9253C7.2533,9.9472 7.2325,9.9659 7.2091,9.9659ZM7.2091,9.8907C7.1893,9.8907 7.1733,9.9061 7.1733,9.9248C7.1733,9.9429 7.1893,9.9573 7.2091,9.9573C7.2293,9.9573 7.2443,9.9435 7.2443,9.9248C7.2443,9.9061 7.2288,9.8907 7.2091,9.8907ZM7.2352,9.7083L7.2352,9.5157L7.3029,9.5323L7.3029,9.6907L7.2352,9.7083ZM7.2443,9.5269L7.2443,9.6976L7.2944,9.6832L7.2944,9.5403L7.2443,9.5269ZM7.1856,9.7083L7.1179,9.6907L7.1179,9.5323L7.1856,9.5157L7.1856,9.7083ZM7.1259,9.6821L7.1771,9.6976L7.1771,9.5269L7.1259,9.5403L7.1259,9.6821ZM7.8107,9.5008L7.7445,9.5008L7.7445,9.3872C7.7179,9.3776 7.696,9.3568 7.6859,9.3312L7.5445,9.3312L7.5445,9.2688L7.6859,9.2688C7.7008,9.2325 7.7355,9.2075 7.7765,9.2075C7.8176,9.2075 7.8544,9.2325 7.8677,9.2688L8.0117,9.2688L8.0117,9.3312L7.8667,9.3312C7.8565,9.3573 7.8379,9.3781 7.8112,9.3856L7.8107,9.5008ZM7.7541,9.4907L7.8021,9.4907L7.8027,9.3797L7.8059,9.3781C7.8315,9.3696 7.8501,9.352 7.8603,9.3269L7.8608,9.3216L8.0032,9.3216L8.0032,9.2779L7.8613,9.2779L7.8603,9.2747C7.8485,9.2405 7.8155,9.2171 7.776,9.2171C7.7381,9.2171 7.7045,9.2405 7.6933,9.2747L7.6917,9.2779L7.5541,9.2779L7.5541,9.3216L7.6917,9.3216L7.6933,9.3269C7.7019,9.3531 7.7232,9.3696 7.7504,9.3797L7.7536,9.3813L7.7536,9.4907L7.7541,9.4907Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7808,10.7659C7.7568,10.7659 7.7365,10.7451 7.7365,10.7221C7.7365,10.7003 7.7568,10.6816 7.7808,10.6816C7.8043,10.6816 7.8245,10.7003 7.8245,10.7221C7.8245,10.7445 7.8043,10.7659 7.7808,10.7659ZM7.7808,10.6907C7.7611,10.6907 7.7451,10.7045 7.7451,10.7221C7.7451,10.7408 7.7611,10.7563 7.7808,10.7563C7.8005,10.7563 7.8165,10.7408 7.8165,10.7221C7.8165,10.7045 7.8005,10.6907 7.7808,10.6907ZM7.7547,10.4555L7.6869,10.4363L7.6869,10.2779L7.7547,10.2592L7.7547,10.4555ZM7.6949,10.4299L7.7456,10.4437L7.7456,10.2699L7.6949,10.2843L7.6949,10.4299ZM7.8037,10.4555L7.8037,10.2592L7.8725,10.2779L7.8725,10.4363L7.8037,10.4555ZM7.8128,10.2699L7.8128,10.4437L7.8629,10.4299L7.8629,10.2848L7.8128,10.2699ZM8.0128,10.3221L8.0101,10.32L7.904,10.2032L7.944,10.1451L8.0779,10.2949L8.0128,10.3221ZM7.9163,10.2032L8.0149,10.3125L8.0629,10.2923L7.944,10.1605L7.9163,10.2032ZM8.1147,10.2656L7.9813,10.1157L8.0459,10.0907L8.1541,10.2075L8.1147,10.2656ZM7.9952,10.12L8.1131,10.2523L8.1424,10.2085L8.0437,10.0997L7.9952,10.12ZM8.136,10.0155L7.9701,10.0155L7.9504,9.9488L8.1568,9.9488L8.136,10.0155ZM7.9771,10.0059L8.1296,10.0059L8.1445,9.9573L7.9632,9.9573L7.9771,10.0059ZM7.5851,10.0155L7.4192,10.0155L7.4005,9.9488L7.6059,9.9488L7.5851,10.0155ZM7.4256,10.0059L7.5787,10.0059L7.5941,9.9573L7.4117,9.9573L7.4256,10.0059ZM8.3445,9.9659C8.32,9.9659 8.3008,9.9472 8.3008,9.9253C8.3008,9.9035 8.32,9.8827 8.3445,9.8827C8.3696,9.8827 8.3883,9.9035 8.3883,9.9253C8.3883,9.9472 8.3691,9.9659 8.3445,9.9659ZM8.3445,9.8907C8.3259,9.8907 8.3099,9.9061 8.3099,9.9248C8.3099,9.9429 8.3259,9.9573 8.3445,9.9573C8.3637,9.9573 8.3792,9.944 8.3792,9.9248C8.3792,9.9056 8.3632,9.8907 8.3445,9.8907ZM8.1568,9.9029L7.9504,9.9029L7.9701,9.8384L8.136,9.8384L8.1568,9.9029ZM7.9632,9.8949L8.1445,9.8949L8.1296,9.8448L7.9771,9.8448L7.9632,9.8949ZM7.6059,9.9029L7.4005,9.9029L7.4192,9.8384L7.5851,9.8384L7.6059,9.9029ZM7.4117,9.8949L7.5941,9.8949L7.5787,9.8448L7.4256,9.8448L7.4117,9.8949ZM7.4971,9.7547L7.3883,9.6341L7.4283,9.5781L7.5616,9.728L7.4971,9.7547ZM7.4005,9.6325L7.4992,9.744L7.5477,9.7232L7.4288,9.5925L7.4005,9.6325ZM8.0555,9.7509L7.9909,9.7227L8.1232,9.5728L8.1632,9.6293L8.0555,9.7509ZM8.0048,9.72L8.0533,9.7408L8.1509,9.6283L8.1232,9.5888L8.0048,9.72ZM8.3675,9.7083L8.3675,9.5157L8.4357,9.5323L8.4357,9.6907L8.3675,9.7083ZM8.3765,9.5269L8.3765,9.6976L8.4277,9.6821L8.4277,9.5403L8.3765,9.5269ZM7.5984,9.6949L7.4651,9.5483L7.5301,9.52L7.5323,9.5221L7.6384,9.6411L7.5984,9.6949ZM7.4789,9.5531L7.5979,9.6821L7.6261,9.6405L7.5275,9.5312L7.4789,9.5531ZM7.9531,9.6939L7.9131,9.6379L8.0197,9.5157L8.0853,9.544L8.0821,9.5483L7.9531,9.6939ZM7.9248,9.6384L7.9541,9.6779L8.0709,9.5456L8.0229,9.528L7.9248,9.6384ZM8.1381,9.3893L7.9728,9.3893L7.9515,9.3227L8.1573,9.3227L8.1381,9.3893ZM7.9787,9.3797L8.1317,9.3797L8.1456,9.3323L7.9627,9.3323L7.9787,9.3797ZM7.5845,9.3893L7.4187,9.3893L7.3979,9.3227L7.6037,9.3227L7.5845,9.3893ZM7.4256,9.3797L7.5781,9.3797L7.5925,9.3323L7.4107,9.3323L7.4256,9.3797ZM8.3445,9.3424C8.3205,9.3424 8.3008,9.3232 8.3008,9.3013C8.3008,9.2784 8.3205,9.2576 8.3445,9.2576C8.3696,9.2576 8.3883,9.2784 8.3883,9.3013C8.3883,9.3227 8.3691,9.3424 8.3445,9.3424ZM8.3445,9.2672C8.3259,9.2672 8.3104,9.2821 8.3104,9.3008C8.3104,9.3184 8.3259,9.3323 8.3445,9.3323C8.3637,9.3323 8.3797,9.3189 8.3797,9.3008C8.3797,9.2821 8.3637,9.2672 8.3445,9.2672ZM7.776,9.3424C7.7525,9.3424 7.7317,9.3232 7.7317,9.3013C7.7317,9.2784 7.752,9.2576 7.776,9.2576C7.8005,9.2576 7.8203,9.2784 7.8203,9.3013C7.8203,9.3227 7.8005,9.3424 7.776,9.3424ZM7.776,9.2672C7.7568,9.2672 7.7413,9.2821 7.7413,9.3008C7.7413,9.3184 7.7568,9.3323 7.776,9.3323C7.7957,9.3323 7.8117,9.3189 7.8117,9.3008C7.8117,9.2821 7.7957,9.2672 7.776,9.2672ZM7.2112,9.3424C7.1877,9.3424 7.1669,9.3232 7.1669,9.3013C7.1669,9.2784 7.1877,9.2576 7.2112,9.2576C7.2347,9.2576 7.2555,9.2784 7.2555,9.3013C7.2555,9.3227 7.2352,9.3424 7.2112,9.3424ZM7.2112,9.2672C7.1915,9.2672 7.1755,9.2821 7.1755,9.3008C7.1755,9.3184 7.1915,9.3323 7.2112,9.3323C7.2309,9.3323 7.2464,9.3189 7.2464,9.3008C7.2469,9.2821 7.2315,9.2672 7.2112,9.2672ZM8.1573,9.2779L7.9515,9.2779L7.9728,9.2123L8.1381,9.2123L8.1573,9.2779ZM7.9632,9.2688L8.1456,9.2688L8.1317,9.2197L7.9787,9.2197L7.9632,9.2688ZM7.6037,9.2779L7.3979,9.2779L7.4187,9.2123L7.5845,9.2123L7.6037,9.2779ZM7.4101,9.2688L7.592,9.2688L7.5776,9.2197L7.4251,9.2197L7.4101,9.2688ZM7.8027,9.6395L7.8027,9.4437L7.8704,9.4624L7.8704,9.6197L7.8027,9.6395ZM7.8112,9.4549L7.8112,9.6283L7.8619,9.6149L7.8619,9.4693L7.8112,9.4549ZM7.7541,9.6395L7.6859,9.6197L7.6859,9.4624L7.7541,9.4437L7.7541,9.6395ZM7.6944,9.6144L7.7451,9.6277L7.7451,9.4544L7.6944,9.4683L7.6944,9.6144Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.688,9.9269C7.688,9.8779 7.7291,9.8384 7.7808,9.8384C7.832,9.8384 7.8725,9.8779 7.8725,9.9269C7.8725,9.9739 7.8315,10.0144 7.7808,10.0144C7.7291,10.0144 7.688,9.9739 7.688,9.9269" + android:strokeWidth="1" + android:fillColor="#058E6E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8005,7.6363L7.8032,7.6155L7.8059,7.6032C7.8059,7.6032 7.7504,7.6075 7.7227,7.6011C7.6944,7.592 7.6677,7.5808 7.6416,7.5573C7.6144,7.5344 7.6043,7.52 7.5856,7.5184C7.5387,7.5104 7.5045,7.5312 7.5045,7.5312C7.5045,7.5312 7.5387,7.5435 7.5637,7.5771C7.5899,7.6075 7.6181,7.6229 7.6299,7.6283C7.6512,7.6325 7.72,7.6283 7.7387,7.6299C7.7573,7.6315 7.8005,7.6363 7.8005,7.6363" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8069,7.6437L7.8005,7.6432C7.8,7.6432 7.7568,7.6373 7.7381,7.6363C7.7328,7.6363 7.7227,7.6363 7.7104,7.6368C7.7003,7.6373 7.688,7.6373 7.6757,7.6373C7.6507,7.6373 7.6357,7.6363 7.6283,7.632C7.6165,7.6293 7.5856,7.6155 7.5589,7.5792C7.5355,7.5504 7.5013,7.5381 7.5008,7.5381L7.4885,7.5317L7.5008,7.5264C7.5008,7.5253 7.528,7.5077 7.5653,7.5077C7.5733,7.5077 7.5792,7.5088 7.5856,7.5109C7.6027,7.5152 7.6133,7.5221 7.6293,7.5381C7.6341,7.5419 7.6389,7.5456 7.6453,7.5525C7.6693,7.5712 7.6928,7.5829 7.7243,7.5931C7.7355,7.5952 7.7509,7.5973 7.7728,7.5973C7.7904,7.5973 7.8048,7.5952 7.8053,7.5952L7.8144,7.5941L7.8101,7.6165L7.8069,7.6437ZM7.7323,7.6229C7.7349,7.6229 7.7376,7.6229 7.7381,7.6229C7.7536,7.624 7.7819,7.6283 7.7941,7.6283L7.7973,7.6107C7.7909,7.6117 7.7813,7.6117 7.7723,7.6117C7.7499,7.6117 7.7317,7.6096 7.72,7.6064C7.6875,7.5957 7.6613,7.5824 7.6368,7.5637C7.6299,7.5573 7.6251,7.5531 7.6192,7.5472C7.6043,7.5328 7.5963,7.5285 7.584,7.5253C7.5776,7.5232 7.5717,7.5221 7.5648,7.5221C7.5456,7.5221 7.5291,7.5285 7.5195,7.5317C7.5317,7.5403 7.5525,7.5525 7.5696,7.5701C7.5925,7.6027 7.6197,7.6176 7.632,7.6203C7.6384,7.6235 7.6533,7.6245 7.6757,7.6245C7.6875,7.6245 7.7003,7.6245 7.7104,7.6245C7.7195,7.6229 7.7264,7.6229 7.7323,7.6229Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0555,7.5584C8.0555,7.5584 8.0555,7.5824 8.0576,7.6075C8.0597,7.6299 8.0501,7.6496 8.0539,7.6619C8.0576,7.6741 8.0597,7.6827 8.0645,7.6939C8.0688,7.704 8.0725,7.7259 8.0725,7.7259C8.0725,7.7259 8.0592,7.7163 8.0475,7.7072C8.0352,7.6976 8.0256,7.6933 8.0256,7.6933C8.0256,7.6933 8.0288,7.7168 8.0293,7.7291C8.0315,7.7387 8.0379,7.7584 8.0475,7.7696C8.0565,7.7808 8.0757,7.8 8.0816,7.8155C8.088,7.8288 8.088,7.8635 8.088,7.8635C8.088,7.8635 8.072,7.8379 8.0576,7.8331C8.0443,7.8288 8.0155,7.8123 8.0155,7.8123C8.0155,7.8123 8.0416,7.8395 8.0416,7.8656C8.0416,7.8917 8.0315,7.9195 8.0315,7.9195C8.0315,7.9195 8.0192,7.896 8.0037,7.8811C7.9872,7.8672 7.9653,7.8512 7.9653,7.8512C7.9653,7.8512 7.9819,7.8917 7.9819,7.9168C7.9819,7.9435 7.9776,8 7.9776,8C7.9776,8 7.9637,7.9792 7.9504,7.9664C7.9376,7.9568 7.9211,7.9467 7.9163,7.9413C7.9115,7.9328 7.9317,7.9627 7.9349,7.9803C7.9365,7.9952 7.9445,8.0581 7.9995,8.1392C8.0315,8.184 8.08,8.2661 8.1851,8.2411C8.2912,8.2128 8.2512,8.0704 8.2288,8.0053C8.2064,7.9413 8.1968,7.8661 8.1973,7.8411C8.1984,7.816 8.2165,7.7408 8.2144,7.7264C8.2128,7.712 8.2064,7.6576 8.2187,7.616C8.2325,7.5691 8.2437,7.5536 8.2507,7.5328C8.2587,7.5163 8.2645,7.5035 8.2667,7.4891C8.2688,7.4704 8.2688,7.4411 8.2688,7.4411C8.2688,7.4411 8.2885,7.4784 8.2939,7.4912C8.2987,7.5035 8.2987,7.5413 8.2987,7.5413C8.2987,7.5413 8.3029,7.504 8.3317,7.4843C8.3621,7.4667 8.3957,7.4459 8.4043,7.4363C8.4133,7.4267 8.4155,7.4197 8.4155,7.4197C8.4155,7.4197 8.4128,7.4832 8.3941,7.5083C8.3819,7.5269 8.3355,7.5808 8.3355,7.5808C8.3355,7.5808 8.3595,7.5707 8.3755,7.5696C8.3936,7.5691 8.4059,7.5696 8.4059,7.5696C8.4059,7.5696 8.3856,7.5851 8.3579,7.6256C8.3317,7.6661 8.3419,7.6688 8.3232,7.7008C8.3035,7.7333 8.2875,7.7333 8.2635,7.7541C8.2261,7.7835 8.2453,7.9019 8.2512,7.9195C8.2555,7.9355 8.32,8.0795 8.32,8.1157C8.3221,8.1493 8.3285,8.2283 8.2672,8.2784C8.2272,8.3088 8.1632,8.3088 8.1483,8.3195C8.1328,8.3296 8.1045,8.3573 8.1045,8.4171C8.1045,8.4795 8.1264,8.4869 8.1429,8.5035C8.1611,8.5168 8.1824,8.5088 8.1872,8.5211C8.192,8.5323 8.1952,8.5397 8.2011,8.5461C8.2096,8.5547 8.2133,8.5605 8.2112,8.5733C8.2096,8.5856 8.1808,8.6171 8.1712,8.6357C8.1605,8.6576 8.1419,8.712 8.1419,8.72C8.1419,8.7296 8.1392,8.7541 8.1483,8.7669C8.1483,8.7669 8.1787,8.8032 8.1573,8.8085C8.1451,8.8139 8.1312,8.8011 8.1248,8.8032C8.1067,8.8075 8.0971,8.8181 8.0917,8.8165C8.0795,8.8165 8.0795,8.808 8.0784,8.7915C8.0768,8.7739 8.0779,8.7664 8.0725,8.7664C8.0645,8.7664 8.0608,8.7717 8.0608,8.7819C8.0587,8.7915 8.0587,8.8123 8.0507,8.8123C8.0421,8.8123 8.0293,8.7957 8.0224,8.7941C8.0144,8.7915 7.9941,8.7861 7.9925,8.7792C7.9925,8.7691 8.0048,8.7477 8.0187,8.7456C8.0325,8.7413 8.0448,8.7333 8.0363,8.7291C8.0267,8.7205 8.0187,8.7205 8.0107,8.7291C8.0016,8.7333 7.9829,8.7291 7.9851,8.7189C7.9867,8.7077 7.9888,8.6955 7.9867,8.6901C7.9867,8.6827 7.9707,8.6704 7.9904,8.6608C8.0101,8.6512 8.0187,8.6704 8.0384,8.6677C8.0576,8.6651 8.0672,8.6565 8.0747,8.6453C8.0827,8.6331 8.0805,8.608 8.0672,8.5941C8.0549,8.5787 8.0405,8.5787 8.0357,8.5675C8.0299,8.5573 8.0235,8.5355 8.0235,8.5355C8.0235,8.5355 8.0261,8.5781 8.024,8.5824C8.0219,8.5888 8.0235,8.6128 8.0235,8.6128C8.0235,8.6128 8.0101,8.5963 7.9984,8.5856C7.9883,8.5744 7.976,8.5408 7.976,8.5408C7.976,8.5408 7.976,8.5712 7.976,8.5835C7.976,8.5957 7.9899,8.6075 7.9856,8.6149C7.9797,8.6187 7.9573,8.5909 7.9509,8.5835C7.9445,8.5797 7.9259,8.5659 7.9168,8.5483C7.9072,8.5328 7.9013,8.5088 7.8992,8.5024C7.8971,8.4933 7.8928,8.4576 7.8971,8.4469C7.9029,8.4325 7.9131,8.4085 7.9131,8.4085C7.9131,8.4085 7.8907,8.4085 7.8651,8.4085C7.8389,8.4085 7.8208,8.4032 7.8107,8.4192C7.8005,8.4357 7.8069,8.4704 7.8187,8.5163C7.8309,8.5621 7.8384,8.5829 7.8347,8.5915C7.8309,8.6011 7.8149,8.6192 7.8091,8.6208C7.8027,8.6272 7.7856,8.6251 7.7787,8.6208C7.7707,8.6181 7.7589,8.6123 7.7355,8.6123C7.712,8.6123 7.6981,8.6133 7.6885,8.6101C7.6805,8.608 7.6608,8.5968 7.6501,8.6005C7.64,8.6037 7.6235,8.6112 7.6277,8.6245C7.6357,8.6453 7.6197,8.6507 7.6107,8.6485C7.6011,8.6464 7.592,8.6443 7.5797,8.6411C7.568,8.6368 7.5493,8.6411 7.5515,8.6277C7.5541,8.6133 7.5595,8.6123 7.5653,8.6027C7.5712,8.5915 7.5733,8.5829 7.5664,8.5829C7.5573,8.5829 7.5493,8.5819 7.5424,8.5872C7.5355,8.5931 7.5253,8.6037 7.5163,8.6C7.5077,8.5952 7.5008,8.584 7.5008,8.5643C7.5008,8.5413 7.4784,8.5216 7.4997,8.5237C7.5205,8.5248 7.5472,8.5413 7.552,8.5291C7.5563,8.5168 7.5536,8.5115 7.5424,8.504C7.5312,8.4928 7.5163,8.4885 7.5312,8.4768C7.5472,8.4656 7.5504,8.4656 7.5563,8.4581C7.5627,8.4528 7.5707,8.4315 7.5813,8.4352C7.6027,8.4459 7.5819,8.4603 7.6037,8.4832C7.6256,8.5083 7.6379,8.5168 7.6731,8.5125C7.7093,8.5083 7.7189,8.504 7.7189,8.4949C7.7189,8.4837 7.7163,8.4667 7.7141,8.4587C7.7125,8.4533 7.7189,8.4261 7.7189,8.4261C7.7189,8.4261 7.7035,8.4347 7.6976,8.4459C7.6939,8.456 7.6843,8.4709 7.6843,8.4709C7.6843,8.4709 7.68,8.4533 7.6816,8.4347C7.6816,8.4261 7.6848,8.4085 7.6848,8.4059C7.6843,8.3957 7.6773,8.3728 7.6773,8.3728C7.6773,8.3728 7.6725,8.3968 7.6677,8.4059C7.6635,8.4128 7.6624,8.4416 7.6624,8.4416C7.6624,8.4416 7.6395,8.4208 7.6453,8.3904C7.6496,8.3643 7.6411,8.3307 7.6496,8.3195C7.656,8.3083 7.6747,8.2651 7.7184,8.2624C7.7621,8.2597 7.7968,8.2656 7.8123,8.2635C7.8283,8.2624 7.8821,8.2539 7.8821,8.2539C7.8821,8.2539 7.7813,8.2005 7.7595,8.184C7.7365,8.1707 7.7003,8.1301 7.6891,8.112C7.6779,8.0939 7.6672,8.0576 7.6672,8.0576C7.6672,8.0576 7.6496,8.0576 7.6331,8.0688C7.6165,8.0789 7.6,8.0912 7.5909,8.1024C7.5813,8.1131 7.5659,8.1365 7.5659,8.1365C7.5659,8.1365 7.5685,8.1045 7.5685,8.0949C7.5685,8.0843 7.5669,8.0656 7.5669,8.0656C7.5669,8.0656 7.5563,8.1083 7.5328,8.1259C7.5099,8.1419 7.4832,8.1653 7.4832,8.1653C7.4832,8.1653 7.4859,8.1403 7.4859,8.1328C7.4859,8.1291 7.4912,8.1013 7.4912,8.1013C7.4912,8.1013 7.4752,8.1253 7.4501,8.1301C7.4251,8.1328 7.3893,8.1317 7.3867,8.1488C7.384,8.1648 7.3941,8.1835 7.3877,8.1941C7.3813,8.2064 7.3691,8.2149 7.3691,8.2149C7.3691,8.2149 7.3552,8.2027 7.3429,8.2027C7.3307,8.2016 7.3195,8.2069 7.3195,8.2069C7.3195,8.2069 7.3083,8.1936 7.3125,8.1829C7.3163,8.1755 7.3349,8.1616 7.3307,8.1557C7.3259,8.1515 7.3104,8.1568 7.3008,8.1632C7.2917,8.1669 7.2715,8.1696 7.2731,8.1557C7.2757,8.1403 7.2795,8.1317 7.2757,8.1195C7.2699,8.1088 7.2731,8.1029 7.2811,8.1008C7.288,8.0965 7.3195,8.1019 7.3227,8.0933C7.3248,8.0864 7.3136,8.0779 7.2944,8.0725C7.2741,8.0683 7.264,8.0571 7.2757,8.0453C7.2853,8.0368 7.288,8.0331 7.2933,8.0256C7.2976,8.0149 7.3008,7.9995 7.3184,8.0069C7.336,8.0155 7.3317,8.0352 7.3515,8.0416C7.3707,8.0485 7.416,8.04 7.4261,8.0325C7.4357,8.0272 7.4661,8.0053 7.4763,8.0011C7.4869,7.9936 7.5307,7.9627 7.5307,7.9627C7.5307,7.9627 7.5045,7.944 7.4949,7.9344C7.4859,7.9269 7.4688,7.9035 7.4608,7.9003C7.4512,7.8939 7.4096,7.8789 7.3947,7.8773C7.3808,7.8773 7.3365,7.8619 7.3365,7.8619C7.3365,7.8619 7.3573,7.8555 7.3637,7.8507C7.3701,7.8443 7.3861,7.8309 7.3931,7.832C7.4011,7.832 7.4027,7.832 7.4027,7.832C7.4027,7.832 7.3616,7.8309 7.3536,7.8277C7.3451,7.8267 7.32,7.8101 7.3109,7.8101C7.3013,7.8101 7.2816,7.8155 7.2816,7.8155C7.2816,7.8155 7.3072,7.7979 7.3285,7.7947C7.3488,7.7904 7.3659,7.7904 7.3659,7.7904C7.3659,7.7904 7.3323,7.7819 7.3259,7.7707C7.3173,7.76 7.3109,7.7445 7.3045,7.7371C7.2981,7.7301 7.2949,7.7184 7.2843,7.7179C7.2731,7.7152 7.2549,7.7301 7.2448,7.7291C7.2347,7.7275 7.2261,7.72 7.2261,7.7056C7.2256,7.6901 7.2261,7.6944 7.2224,7.6891C7.2181,7.68 7.2032,7.6608 7.2171,7.6565C7.2325,7.6523 7.2624,7.6576 7.2651,7.6523C7.2677,7.648 7.2485,7.6315 7.2363,7.6261C7.224,7.6187 7.2048,7.6064 7.2139,7.5989C7.2251,7.5893 7.2357,7.5867 7.2421,7.5771C7.2475,7.5685 7.2544,7.5467 7.2672,7.5547C7.2789,7.5627 7.2955,7.5968 7.3051,7.5936C7.3147,7.592 7.3163,7.5659 7.3136,7.5552C7.312,7.544 7.3136,7.5269 7.3232,7.5269C7.3323,7.5296 7.3408,7.5419 7.3563,7.5424C7.3712,7.5435 7.3952,7.5392 7.392,7.5509C7.3904,7.5611 7.3824,7.5749 7.3707,7.5861C7.3605,7.5973 7.3557,7.6203 7.3627,7.6373C7.3696,7.6517 7.3856,7.6768 7.4005,7.6875C7.4165,7.696 7.4448,7.7035 7.4629,7.7147C7.4816,7.7269 7.5232,7.7611 7.5381,7.7648C7.5525,7.768 7.5664,7.7771 7.5664,7.7771C7.5664,7.7771 7.5824,7.7675 7.6048,7.7675C7.6272,7.7675 7.6779,7.7707 7.6971,7.7643C7.7168,7.7547 7.7413,7.7419 7.7328,7.7248C7.7253,7.7061 7.6832,7.6917 7.6875,7.6784C7.6912,7.6645 7.7067,7.6645 7.7317,7.6645C7.7573,7.6635 7.7936,7.6677 7.8005,7.6309C7.8069,7.5936 7.8085,7.5749 7.7728,7.5659C7.7355,7.5557 7.7093,7.5557 7.7029,7.5312C7.696,7.5051 7.6891,7.4987 7.6971,7.4912C7.704,7.4832 7.7179,7.48 7.7445,7.4789C7.7717,7.4773 7.8016,7.4773 7.8107,7.4688C7.8197,7.4645 7.8213,7.4459 7.8325,7.4395C7.8421,7.4309 7.8837,7.4272 7.8837,7.4272C7.8837,7.4272 7.9328,7.4512 7.9792,7.4827C8.0203,7.5152 8.0571,7.5589 8.0571,7.5589" + android:strokeWidth="1" + android:fillColor="#ED72AA" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0912,8.8219C8.0912,8.8219 8.0912,8.8219 8.0901,8.8219C8.0725,8.8197 8.0725,8.8075 8.0715,8.7931L8.0704,8.7819C8.0704,8.7792 8.0699,8.7765 8.0693,8.7723C8.0688,8.7733 8.0667,8.7765 8.0667,8.7819C8.0667,8.7819 8.0661,8.7851 8.0661,8.7893C8.064,8.8016 8.0635,8.8181 8.0507,8.8181C8.0421,8.8181 8.0357,8.8112 8.0283,8.8059C8.0251,8.8032 8.0213,8.8 8.0203,8.7989C8.0176,8.7979 8.0149,8.7957 8.0123,8.7947C8.0016,8.7931 7.9883,8.7893 7.9861,8.7781C7.9851,8.7659 8.0005,8.7424 8.0176,8.7387C8.0251,8.7355 8.0299,8.7323 8.0315,8.7323C8.0251,8.728 8.0203,8.728 8.0144,8.7323C8.0069,8.7397 7.9957,8.7376 7.9877,8.7323C7.9808,8.7296 7.9765,8.7227 7.9781,8.7173L7.9792,8.7072C7.9797,8.7029 7.9808,8.6939 7.9797,8.6907C7.9797,8.6907 7.9797,8.6896 7.9792,8.6875C7.9765,8.6821 7.9728,8.6779 7.9739,8.6688C7.9765,8.6645 7.9797,8.6576 7.9867,8.656C8.0011,8.6469 8.0107,8.6533 8.0197,8.6565C8.0251,8.6576 8.0299,8.6619 8.0363,8.6597C8.0555,8.6576 8.064,8.6512 8.0699,8.6411C8.0757,8.6325 8.0736,8.6107 8.0629,8.5984C8.0565,8.5909 8.0507,8.5877 8.0453,8.5829C8.0395,8.5813 8.0363,8.5787 8.0331,8.5733C8.0325,8.5787 8.032,8.5829 8.0309,8.584C8.0304,8.5893 8.0304,8.6027 8.0304,8.6128L8.0315,8.6315L8.0192,8.6165C8.0192,8.6165 8.0059,8.6043 7.9952,8.5915C7.9904,8.5861 7.9867,8.5792 7.9835,8.5707C7.9835,8.5792 7.9835,8.5819 7.9835,8.584C7.9835,8.5915 7.9867,8.5947 7.9899,8.5984C7.9931,8.6053 7.9968,8.6128 7.9909,8.6192C7.9835,8.6277 7.9712,8.616 7.9573,8.5984C7.9536,8.5952 7.9499,8.5909 7.9488,8.5909C7.9371,8.5813 7.9205,8.5675 7.912,8.5536C7.9035,8.536 7.8976,8.5152 7.8949,8.5051C7.8923,8.4949 7.8869,8.4576 7.8923,8.4453C7.896,8.4368 7.9013,8.4251 7.9045,8.416L7.8667,8.416C7.8592,8.416 7.8528,8.416 7.8469,8.416C7.8304,8.4149 7.8235,8.4149 7.8181,8.4213C7.8112,8.4357 7.8133,8.4661 7.8267,8.5163L7.8315,8.5328C7.8421,8.5701 7.8459,8.5851 7.8427,8.5941C7.8384,8.6037 7.8213,8.6224 7.8139,8.6283C7.8059,8.6325 7.7851,8.6309 7.7776,8.6283C7.7707,8.6229 7.7589,8.6181 7.7371,8.6181C7.7307,8.6181 7.7248,8.6181 7.7189,8.6181C7.7056,8.6181 7.696,8.6187 7.6891,8.6155C7.6869,8.6155 7.6827,8.6155 7.6779,8.6133C7.6709,8.608 7.6581,8.6043 7.6523,8.6059C7.6459,8.6069 7.6384,8.6117 7.6363,8.6155C7.6347,8.6187 7.6341,8.6197 7.6357,8.6208C7.64,8.6341 7.6373,8.6432 7.6341,8.6459C7.6277,8.6533 7.6187,8.6565 7.6123,8.6549C7.6043,8.6533 7.5984,8.6533 7.5904,8.6501C7.5872,8.6491 7.5835,8.6469 7.5797,8.6448C7.5765,8.6448 7.5728,8.6448 7.5691,8.6448C7.5616,8.6437 7.5531,8.6437 7.5493,8.6373C7.5461,8.632 7.5461,8.6293 7.5461,8.6261C7.5493,8.6155 7.5525,8.6085 7.5557,8.6048C7.5579,8.6032 7.5584,8.6021 7.5611,8.5968C7.5632,8.5936 7.5648,8.5904 7.5648,8.5904C7.5584,8.5893 7.5525,8.5893 7.5493,8.592L7.5461,8.5947C7.5381,8.6021 7.5275,8.6101 7.5152,8.6059C7.5024,8.5979 7.496,8.5835 7.496,8.5637C7.496,8.5557 7.4933,8.5483 7.4896,8.5408C7.4869,8.5323 7.4832,8.5285 7.4869,8.52C7.4907,8.5157 7.4971,8.5157 7.5019,8.5157C7.5104,8.5173 7.5195,8.52 7.5269,8.5211C7.5339,8.5243 7.5456,8.5285 7.5477,8.5264C7.5509,8.5173 7.5504,8.5157 7.5392,8.5067C7.5381,8.5061 7.5365,8.5035 7.5339,8.5035C7.5269,8.4971 7.5205,8.4933 7.5205,8.4848C7.5205,8.48 7.5237,8.4752 7.5301,8.4704C7.5365,8.4661 7.5419,8.4619 7.5456,8.4581C7.5488,8.4571 7.552,8.4565 7.5536,8.4539C7.5552,8.4528 7.5557,8.4496 7.5579,8.4453C7.5637,8.4389 7.5728,8.4235 7.5861,8.4304C7.5995,8.4373 7.6,8.4453 7.6005,8.4539C7.6011,8.4624 7.6016,8.4693 7.6101,8.4789C7.6304,8.504 7.6427,8.5083 7.6741,8.5056C7.7083,8.504 7.7136,8.4965 7.7136,8.4944C7.7136,8.4848 7.7115,8.4704 7.7104,8.4651L7.7093,8.4576C7.7088,8.4549 7.7099,8.4469 7.7115,8.4411C7.7083,8.4437 7.7067,8.4453 7.7051,8.4464C7.7019,8.4576 7.6917,8.4747 7.6912,8.4757L7.6827,8.4912L7.6789,8.4725C7.6789,8.4715 7.6741,8.4539 7.6763,8.4331C7.6763,8.4288 7.6763,8.4224 7.6779,8.4165C7.6789,8.4133 7.6795,8.4069 7.6795,8.4064C7.6795,8.4037 7.6789,8.4027 7.6784,8.3984C7.6763,8.4037 7.6763,8.4064 7.6747,8.408C7.6736,8.4123 7.6704,8.4288 7.6704,8.4416L7.6693,8.4555L7.6587,8.4453C7.6581,8.4453 7.6336,8.4235 7.6405,8.3883C7.6421,8.3776 7.6421,8.3643 7.6416,8.3541C7.6405,8.3355 7.6395,8.3227 7.6453,8.3168C7.6459,8.3157 7.648,8.3125 7.6485,8.3083C7.6581,8.2917 7.6789,8.2571 7.72,8.2555C7.7472,8.2539 7.7701,8.2555 7.7888,8.2565C7.7989,8.2571 7.8075,8.2571 7.8139,8.2571C7.8235,8.2565 7.8464,8.2539 7.864,8.2485C7.8331,8.2331 7.7739,8.2037 7.7579,8.1915C7.7328,8.1755 7.6976,8.1333 7.6864,8.1163C7.6768,8.1019 7.6677,8.0779 7.664,8.0661C7.6576,8.0661 7.648,8.0688 7.6379,8.0736C7.6203,8.0832 7.6048,8.0955 7.5979,8.1067C7.5888,8.1168 7.5739,8.1413 7.5739,8.1413L7.5616,8.136C7.5616,8.136 7.5643,8.1077 7.5643,8.0965C7.5579,8.1088 7.5488,8.1227 7.5387,8.1317C7.5157,8.1461 7.4896,8.1701 7.4896,8.1701L7.4773,8.1813L7.4784,8.1653C7.4805,8.1541 7.4811,8.1403 7.4811,8.1339C7.4811,8.1328 7.4821,8.1285 7.4832,8.1216C7.4752,8.1291 7.4651,8.1339 7.4533,8.1371C7.4469,8.1392 7.4395,8.1403 7.4331,8.1413C7.4176,8.1413 7.3957,8.1445 7.3947,8.152C7.3931,8.1573 7.3947,8.1664 7.3952,8.1707C7.3973,8.1819 7.3984,8.1915 7.3952,8.2005C7.3883,8.2123 7.3739,8.2208 7.3733,8.2208L7.3701,8.2229L7.3664,8.2208C7.3632,8.2165 7.3515,8.2085 7.3429,8.2085C7.3323,8.2085 7.3232,8.2149 7.3232,8.2149L7.3173,8.2171L7.3136,8.2128C7.3136,8.2096 7.3013,8.1952 7.3072,8.1835C7.3083,8.1792 7.3136,8.1728 7.3168,8.1696C7.3195,8.1669 7.3216,8.1648 7.3232,8.1616C7.3184,8.1637 7.3083,8.1669 7.3045,8.1701C7.2971,8.1723 7.2821,8.1797 7.2731,8.1712C7.2699,8.1701 7.2661,8.1669 7.2667,8.1573C7.2667,8.1536 7.2683,8.1461 7.2693,8.1451C7.2699,8.1349 7.272,8.1317 7.2693,8.1259C7.2651,8.1173 7.2667,8.1093 7.2672,8.1051C7.2693,8.1013 7.2731,8.0965 7.2789,8.0955C7.2816,8.0949 7.288,8.0949 7.296,8.0939C7.3008,8.0939 7.3109,8.0939 7.3157,8.0923C7.3131,8.0901 7.3067,8.0837 7.2928,8.0811C7.2779,8.0795 7.2672,8.0699 7.2651,8.0597C7.2635,8.0544 7.2656,8.0475 7.2704,8.0437C7.2816,8.0336 7.2832,8.0325 7.2885,8.0224C7.2885,8.0213 7.2885,8.0203 7.2896,8.0187C7.2917,8.0117 7.2949,8.0048 7.3035,8.0027C7.3077,7.9995 7.3136,8.0005 7.3211,8.0048C7.3323,8.0091 7.3355,8.0171 7.3403,8.0224C7.344,8.0299 7.3467,8.0336 7.3547,8.0368C7.3707,8.0437 7.4139,8.0336 7.4224,8.0293C7.4261,8.0283 7.4347,8.0208 7.4437,8.0171C7.4549,8.0075 7.4672,7.9995 7.4736,7.9963C7.48,7.992 7.5051,7.9755 7.52,7.9648C7.5109,7.9573 7.4981,7.9461 7.4912,7.9419C7.4875,7.9387 7.4821,7.9333 7.4784,7.9296C7.4709,7.92 7.4613,7.9088 7.4576,7.9077C7.4485,7.9045 7.4075,7.8869 7.3952,7.8859C7.3797,7.8837 7.3392,7.8715 7.3355,7.8704L7.3168,7.864L7.3355,7.8576C7.3424,7.8544 7.3552,7.8501 7.36,7.8464L7.3632,7.8448C7.3643,7.8421 7.3675,7.8421 7.3696,7.84C7.3611,7.8389 7.3552,7.8379 7.3515,7.8357C7.3488,7.8336 7.3424,7.8325 7.336,7.8293C7.3285,7.8251 7.3141,7.8181 7.3109,7.8181C7.3029,7.8181 7.2885,7.8208 7.2827,7.8208L7.2784,7.8085C7.28,7.8085 7.3051,7.792 7.3269,7.7899C7.3296,7.7888 7.3328,7.7888 7.3349,7.7883C7.3291,7.7835 7.3237,7.7808 7.32,7.7781C7.3173,7.7707 7.3125,7.7659 7.3088,7.7584C7.3051,7.7531 7.3013,7.7461 7.2987,7.7419C7.2987,7.7419 7.2955,7.7387 7.2949,7.7344C7.2907,7.7291 7.288,7.7259 7.2837,7.7248C7.28,7.7248 7.2736,7.7291 7.2672,7.7307C7.2592,7.7333 7.2512,7.7376 7.2448,7.7365C7.2293,7.7344 7.2197,7.7253 7.2197,7.7083L7.2192,7.704C7.2192,7.6997 7.2187,7.6965 7.2187,7.6955C7.2171,7.6955 7.2171,7.6944 7.2171,7.6912C7.216,7.6912 7.2139,7.6891 7.2139,7.6859C7.208,7.6784 7.2027,7.6688 7.2059,7.6576C7.2075,7.6565 7.2096,7.6533 7.216,7.6512C7.224,7.648 7.2363,7.6491 7.2459,7.6491C7.2496,7.6501 7.2544,7.6501 7.2571,7.6501C7.2517,7.6448 7.2427,7.6368 7.2336,7.6325C7.2176,7.624 7.2069,7.616 7.2048,7.6075C7.2048,7.6032 7.2048,7.5989 7.2112,7.5952C7.2149,7.5909 7.2203,7.5888 7.2235,7.5845C7.2299,7.5813 7.2331,7.5781 7.2357,7.576C7.2368,7.5728 7.2384,7.5696 7.2389,7.5685C7.2443,7.5589 7.2485,7.5509 7.2571,7.5477C7.2603,7.5456 7.2635,7.5456 7.2693,7.5499C7.2757,7.5531 7.2816,7.5621 7.2885,7.5696C7.2939,7.5781 7.3008,7.5883 7.304,7.5904C7.3067,7.5872 7.3093,7.5696 7.3067,7.5568C7.3051,7.5472 7.3056,7.5317 7.3131,7.5253C7.3163,7.52 7.3195,7.5189 7.3243,7.52C7.3291,7.5211 7.3349,7.5264 7.3381,7.5291C7.3445,7.5317 7.3488,7.5365 7.3563,7.5371C7.36,7.5371 7.3632,7.5371 7.368,7.5371C7.3797,7.5365 7.3909,7.536 7.3952,7.5419C7.3973,7.5445 7.3984,7.5477 7.3973,7.5531C7.3947,7.5669 7.3819,7.5824 7.3749,7.5904C7.3664,7.6016 7.3627,7.6197 7.3675,7.6341C7.3744,7.6507 7.3904,7.6725 7.4037,7.6821C7.4112,7.6864 7.4219,7.6907 7.4315,7.6944C7.4432,7.6997 7.456,7.7045 7.4656,7.7099C7.472,7.7152 7.4789,7.7195 7.4875,7.7264C7.5061,7.7397 7.5307,7.7568 7.5392,7.7568C7.5504,7.7621 7.5616,7.7669 7.5659,7.768C7.5723,7.7664 7.5872,7.7627 7.6043,7.7627C7.6096,7.7627 7.6155,7.7627 7.6224,7.7627C7.6443,7.7637 7.68,7.7648 7.6939,7.7563C7.7125,7.7499 7.7243,7.7413 7.7269,7.7333C7.7285,7.7312 7.7285,7.7301 7.7269,7.7269C7.7248,7.7195 7.7136,7.7147 7.7045,7.7061C7.6917,7.6976 7.6779,7.6896 7.6816,7.6768C7.6859,7.656 7.7072,7.656 7.7323,7.656C7.7355,7.656 7.7387,7.656 7.7429,7.656C7.7707,7.656 7.7888,7.6544 7.7947,7.6299C7.8016,7.5925 7.8016,7.5792 7.7717,7.5728C7.7664,7.5707 7.7611,7.5685 7.7552,7.5685C7.7264,7.5643 7.7035,7.5573 7.6971,7.5312C7.6955,7.5248 7.6923,7.5189 7.6917,7.5147C7.6875,7.5024 7.6853,7.4939 7.6928,7.4864C7.7024,7.4768 7.7173,7.4741 7.7456,7.4709C7.752,7.4709 7.7573,7.4699 7.7632,7.4699C7.7803,7.4688 7.8021,7.4688 7.808,7.4645C7.8112,7.4645 7.8128,7.456 7.8144,7.4533C7.8176,7.4453 7.8213,7.4395 7.8288,7.4331C7.8395,7.4267 7.8789,7.4187 7.8827,7.4187L7.8853,7.4187L7.8864,7.4187C7.8869,7.4187 7.9365,7.4437 7.9824,7.4784C8.0235,7.5083 8.0603,7.552 8.0608,7.5552L8.0576,7.5573L8.064,7.5573C8.064,7.5584 8.064,7.5813 8.0656,7.6053C8.0672,7.6176 8.0645,7.6299 8.064,7.6395C8.0613,7.6469 8.0613,7.6544 8.0613,7.6571C8.0629,7.6624 8.064,7.6645 8.064,7.6677C8.0672,7.6773 8.0677,7.6811 8.0715,7.6896C8.0768,7.6992 8.08,7.7189 8.08,7.7232L8.0811,7.7397L8.0693,7.7296C8.0693,7.7296 8.056,7.7184 8.0437,7.7109C8.0405,7.7072 8.0379,7.7061 8.0363,7.7045C8.0363,7.7125 8.0363,7.7184 8.0373,7.7259C8.0389,7.7333 8.0448,7.752 8.0533,7.7643C8.0549,7.7659 8.0581,7.7685 8.0613,7.7707C8.0715,7.7819 8.0848,7.7968 8.0891,7.8101C8.096,7.8267 8.0955,7.8592 8.0955,7.8613L8.0949,7.8811L8.0832,7.8645C8.0768,7.8549 8.0651,7.8395 8.0576,7.8384C8.0517,7.8357 8.0459,7.8309 8.0395,7.8299C8.0459,7.8395 8.0501,7.8517 8.0501,7.8635C8.0501,7.8896 8.0395,7.9179 8.0395,7.9189L8.0331,7.9312L8.0267,7.9189C8.0267,7.9189 8.0144,7.8981 7.9995,7.8827C7.9936,7.8773 7.9867,7.872 7.9803,7.8683C7.9856,7.8816 7.9899,7.9008 7.9899,7.9152C7.9899,7.9419 7.9867,7.9952 7.9861,7.9995L7.9835,8.0192L7.9744,8.0027C7.9744,8.0027 7.9611,7.9808 7.9488,7.9691C7.9456,7.968 7.9424,7.9664 7.9387,7.9648C7.9403,7.9691 7.9429,7.9755 7.9429,7.9771C7.9493,8.0304 7.9707,8.0811 8.0064,8.1323L8.0117,8.1397C8.0432,8.1867 8.0896,8.2565 8.1856,8.2315C8.2085,8.2272 8.2272,8.2139 8.2368,8.1941C8.2587,8.1557 8.2539,8.0933 8.2245,8.0064C8.2021,7.9397 8.1915,7.8645 8.1931,7.8395C8.1931,7.8272 8.1973,7.8053 8.2021,7.7813C8.2053,7.7595 8.2117,7.7312 8.2101,7.7269C8.2069,7.7072 8.2021,7.6549 8.2149,7.6112C8.2245,7.5792 8.2336,7.5611 8.24,7.5456C8.2432,7.5392 8.2459,7.5349 8.2469,7.5301C8.2496,7.5248 8.2512,7.5189 8.2523,7.5163C8.2576,7.5051 8.2613,7.496 8.2624,7.4859C8.2651,7.4688 8.2651,7.4395 8.2651,7.4395L8.2773,7.4384C8.2773,7.4395 8.2971,7.4736 8.3024,7.4875C8.3035,7.4912 8.3056,7.4971 8.3056,7.5045C8.312,7.4933 8.3184,7.4853 8.3307,7.4768C8.3371,7.4731 8.3445,7.4683 8.352,7.4645C8.3733,7.4523 8.3957,7.4384 8.4011,7.4304C8.4085,7.4197 8.4123,7.4149 8.4123,7.4149L8.4245,7.4181C8.4245,7.4192 8.4208,7.4848 8.4021,7.5131C8.3931,7.5227 8.3712,7.5483 8.3568,7.5653C8.3643,7.5653 8.3707,7.5632 8.3771,7.5632C8.3952,7.5611 8.408,7.5632 8.4085,7.5632L8.4245,7.5653L8.4123,7.5744C8.4123,7.5749 8.3909,7.5904 8.3648,7.6283C8.3509,7.6501 8.3477,7.6587 8.3445,7.6699C8.3419,7.6784 8.3392,7.6896 8.3312,7.7035C8.3152,7.7285 8.3024,7.7349 8.2885,7.7451C8.2821,7.7483 8.2757,7.7536 8.2683,7.7573C8.2363,7.7835 8.2523,7.8949 8.2587,7.9157C8.2592,7.92 8.2661,7.9376 8.2747,7.9563C8.296,8.0075 8.3275,8.0885 8.328,8.1147L8.3285,8.1189C8.3312,8.1557 8.3333,8.2315 8.272,8.2816C8.2448,8.3035 8.2069,8.3109 8.1797,8.3157C8.1685,8.3189 8.1568,8.32 8.1525,8.3232C8.1461,8.3285 8.112,8.3536 8.112,8.416C8.112,8.4661 8.1275,8.4784 8.1419,8.4912C8.1435,8.4928 8.1461,8.4944 8.1493,8.4955C8.1557,8.504 8.1648,8.504 8.1723,8.5067C8.1808,8.5072 8.1899,8.5083 8.1941,8.5179L8.1957,8.5205C8.1989,8.5307 8.2021,8.5349 8.2075,8.5413C8.2144,8.5456 8.2224,8.5568 8.2187,8.5749C8.2181,8.5835 8.208,8.5947 8.1989,8.6075C8.1904,8.6187 8.1829,8.6293 8.1776,8.6411C8.1675,8.6597 8.1488,8.7141 8.1488,8.72L8.1488,8.7243C8.1488,8.7339 8.1488,8.7547 8.1541,8.7627C8.1579,8.7669 8.176,8.7899 8.1707,8.8043C8.1701,8.8085 8.1675,8.8128 8.16,8.8165C8.1488,8.8192 8.1387,8.8155 8.1323,8.8101C8.1296,8.808 8.1259,8.808 8.1259,8.808C8.1168,8.8091 8.1104,8.8165 8.104,8.8181C8.1003,8.8197 8.096,8.8219 8.0912,8.8219ZM8.072,8.7584C8.0821,8.7584 8.0832,8.7696 8.0837,8.7824L8.0848,8.7925C8.0848,8.8075 8.0848,8.8075 8.0917,8.8085C8.0917,8.8085 8.0944,8.8075 8.0976,8.8064C8.104,8.8032 8.1109,8.7968 8.1227,8.7952C8.1275,8.7941 8.1317,8.7952 8.1371,8.7973C8.1424,8.8016 8.1493,8.8037 8.1547,8.8037C8.1568,8.8027 8.1568,8.8005 8.1568,8.8005C8.16,8.7941 8.1504,8.7787 8.1419,8.7701C8.1333,8.7568 8.1344,8.7339 8.1349,8.7232L8.1349,8.7189C8.1349,8.7077 8.1552,8.6533 8.1648,8.6325C8.1691,8.6213 8.1787,8.6096 8.1872,8.5989C8.1941,8.5893 8.2037,8.5781 8.2037,8.5696C8.2064,8.5632 8.2037,8.5563 8.1973,8.5499C8.1883,8.5429 8.1856,8.5355 8.1813,8.5269L8.1803,8.5205C8.1787,8.5195 8.1755,8.5184 8.1691,8.5179C8.16,8.5168 8.1477,8.5152 8.1376,8.5061C8.1349,8.5029 8.1339,8.5029 8.1312,8.5008C8.1152,8.4875 8.0971,8.4704 8.0971,8.4155C8.0971,8.3445 8.1349,8.3168 8.1435,8.3125C8.1499,8.3072 8.1595,8.3061 8.1749,8.3029C8.2,8.2976 8.2368,8.2907 8.2613,8.2693C8.3168,8.2256 8.3147,8.1557 8.3125,8.1195L8.3125,8.1152C8.3125,8.0901 8.2789,8.008 8.2597,7.96C8.2507,7.9403 8.2448,7.9248 8.2437,7.9195C8.2437,7.9184 8.2128,7.7819 8.2576,7.7477C8.2661,7.7419 8.272,7.7371 8.2784,7.7323C8.2928,7.7248 8.3035,7.7184 8.3157,7.6949C8.3248,7.6827 8.3269,7.6752 8.3296,7.6656C8.3333,7.6555 8.3371,7.6437 8.352,7.6197C8.3664,7.5989 8.3803,7.5835 8.3888,7.576C8.3845,7.576 8.3808,7.576 8.376,7.5771C8.36,7.5781 8.3371,7.5856 8.3371,7.5856L8.3285,7.576C8.3296,7.5749 8.3771,7.52 8.3883,7.5045C8.3989,7.4907 8.4032,7.4645 8.4059,7.4432C8.3968,7.4533 8.3781,7.4645 8.3557,7.4779C8.3493,7.4811 8.3419,7.4853 8.3344,7.4901C8.3093,7.5056 8.3051,7.5403 8.3045,7.5403L8.2912,7.5403C8.2912,7.5307 8.2907,7.5029 8.2869,7.4917C8.2843,7.4869 8.28,7.4779 8.2747,7.4667C8.2747,7.4747 8.2747,7.4816 8.2731,7.4901C8.272,7.5024 8.2672,7.5099 8.2624,7.5205C8.2608,7.5269 8.2597,7.5307 8.2565,7.5339C8.2549,7.5403 8.2523,7.5451 8.2496,7.5525C8.2432,7.5664 8.2341,7.584 8.2245,7.6149C8.2123,7.6565 8.2181,7.7067 8.2208,7.7232C8.2219,7.7317 8.2187,7.7525 8.2123,7.7845C8.2085,7.8064 8.2037,7.8272 8.2032,7.84C8.2032,7.8651 8.2123,7.936 8.2347,8.0027C8.2656,8.0933 8.2688,8.1568 8.2469,8.2005C8.2347,8.2224 8.2139,8.2389 8.1867,8.2443C8.0811,8.2704 8.0288,8.1941 7.9973,8.1472L7.9936,8.1413C7.9563,8.0885 7.9344,8.0325 7.928,7.9797C7.9253,7.968 7.9141,7.9488 7.9099,7.9429L7.9099,7.9429L7.9072,7.9397L7.9093,7.9333L7.912,7.9301L7.9157,7.9312C7.9173,7.9312 7.9184,7.9312 7.92,7.9344L7.92,7.9333C7.9232,7.9397 7.9307,7.944 7.9397,7.9509C7.9435,7.952 7.9499,7.9563 7.9531,7.9605C7.9595,7.9648 7.9659,7.9717 7.9717,7.9797C7.9728,7.9605 7.9744,7.9312 7.9744,7.9147C7.9744,7.8896 7.9584,7.8523 7.9584,7.8523L7.9493,7.8304L7.968,7.8427C7.968,7.8437 7.9904,7.8571 8.0059,7.8741C8.0155,7.8816 8.0229,7.8928 8.0277,7.9024C8.0304,7.8901 8.0341,7.8773 8.0341,7.864C8.0341,7.84 8.0091,7.8149 8.0091,7.8149L8.0176,7.8048C8.0181,7.8048 8.0464,7.8187 8.0592,7.8261C8.0661,7.8272 8.0747,7.8336 8.08,7.8411C8.0795,7.8309 8.0784,7.8197 8.0752,7.8144C8.072,7.8043 8.0597,7.7909 8.0501,7.7808C8.0475,7.7765 8.0437,7.7744 8.0411,7.7701C8.0304,7.7568 8.0245,7.7365 8.0224,7.7264C8.0224,7.7152 8.0187,7.6907 8.0187,7.6907L8.0181,7.6768L8.0293,7.6853C8.0293,7.6853 8.0379,7.6912 8.0501,7.7019C8.0544,7.7035 8.0592,7.7061 8.0624,7.7083C8.0613,7.7035 8.0597,7.6976 8.0587,7.6939C8.0544,7.6885 8.0528,7.6805 8.0501,7.6699C8.0501,7.6688 8.0491,7.6645 8.0475,7.6635C8.0459,7.6549 8.0475,7.6459 8.0491,7.6373C8.0501,7.6267 8.0528,7.6176 8.0507,7.6059C8.0496,7.5893 8.0485,7.5685 8.0485,7.5621C8.0405,7.5515 8.0085,7.5141 7.9733,7.4891C7.9344,7.4587 7.8907,7.4379 7.8811,7.4309C7.8656,7.4352 7.8405,7.4395 7.8347,7.4432C7.8315,7.4475 7.8283,7.4533 7.8251,7.4576C7.8224,7.464 7.8187,7.4699 7.8139,7.4763C7.8064,7.4805 7.7893,7.4805 7.7627,7.4827C7.7563,7.4827 7.7504,7.4837 7.744,7.4848C7.7205,7.4869 7.7072,7.4891 7.7003,7.4944C7.6992,7.4965 7.6987,7.4976 7.7029,7.5077C7.704,7.5141 7.7067,7.5189 7.7088,7.5291C7.7125,7.5451 7.728,7.5515 7.7563,7.5557C7.7627,7.5557 7.7675,7.5568 7.7728,7.5589C7.8171,7.5685 7.8123,7.6005 7.8064,7.6309C7.7995,7.6683 7.7659,7.6683 7.7419,7.6683C7.7381,7.6683 7.7349,7.6683 7.7312,7.6683C7.7061,7.6683 7.6955,7.6704 7.6939,7.6795C7.6939,7.6816 7.7051,7.6912 7.712,7.6949C7.7221,7.704 7.7344,7.7125 7.7381,7.72C7.7408,7.7264 7.7408,7.7312 7.7387,7.7387C7.7344,7.7499 7.7221,7.7584 7.6987,7.768C7.6816,7.7765 7.6469,7.7765 7.6208,7.7755C7.6144,7.7755 7.6091,7.7755 7.6037,7.7755C7.584,7.7755 7.5685,7.7808 7.5685,7.7808L7.5659,7.7808L7.5627,7.7808C7.5627,7.7808 7.5504,7.7744 7.536,7.7696C7.5253,7.7675 7.5061,7.7547 7.4805,7.736C7.4725,7.7301 7.4651,7.7248 7.4597,7.72C7.4501,7.7147 7.4384,7.7109 7.4277,7.7067C7.416,7.7024 7.4053,7.6971 7.3973,7.6928C7.3813,7.6816 7.3627,7.6571 7.3563,7.64C7.3477,7.6224 7.3536,7.5952 7.3659,7.5819C7.3749,7.5696 7.3824,7.5579 7.3845,7.5515C7.3813,7.5493 7.3728,7.5504 7.368,7.5504C7.3621,7.5504 7.3584,7.5504 7.3541,7.5504C7.3435,7.5493 7.336,7.544 7.3301,7.5397C7.3264,7.5365 7.3237,7.5333 7.3211,7.5323C7.3189,7.5355 7.3179,7.5435 7.3184,7.5547C7.3205,7.5637 7.3216,7.5947 7.3061,7.6021C7.296,7.6037 7.2875,7.5925 7.2784,7.5787C7.272,7.5696 7.2661,7.5637 7.2624,7.5605C7.2603,7.5595 7.2597,7.5595 7.2597,7.5595C7.2565,7.5605 7.2533,7.5691 7.2501,7.5739C7.2491,7.5771 7.2475,7.5803 7.2459,7.5813C7.2411,7.5888 7.2357,7.5915 7.2299,7.5936C7.2256,7.5979 7.2224,7.6021 7.2187,7.6037C7.2181,7.6053 7.2192,7.6096 7.2384,7.6187C7.2485,7.6251 7.2677,7.6395 7.2709,7.6491C7.2725,7.6523 7.2715,7.6555 7.2699,7.6565C7.2667,7.664 7.2581,7.664 7.2443,7.6619C7.2352,7.6619 7.2256,7.6608 7.2192,7.664C7.2165,7.6651 7.2224,7.6763 7.224,7.6789C7.2256,7.6816 7.2261,7.6816 7.2277,7.6848C7.2288,7.6869 7.2288,7.6891 7.2288,7.6901C7.2315,7.6928 7.2315,7.6933 7.2315,7.7024L7.2315,7.7056C7.232,7.7189 7.2395,7.72 7.2437,7.7211C7.248,7.7221 7.2549,7.7189 7.2603,7.7163C7.2688,7.7136 7.2763,7.7083 7.2837,7.7093C7.2944,7.7109 7.2997,7.7189 7.304,7.7269C7.3061,7.7285 7.3061,7.7301 7.3083,7.7312C7.312,7.7376 7.3157,7.7424 7.3189,7.7509C7.3221,7.7563 7.3259,7.7621 7.3296,7.7669C7.3349,7.7728 7.3536,7.7808 7.3659,7.7829L7.3643,7.7963C7.3637,7.7963 7.3483,7.7952 7.3285,7.8005C7.3237,7.8016 7.3189,7.8016 7.3147,7.8032C7.3216,7.8048 7.3301,7.8091 7.3413,7.8144C7.3477,7.8176 7.3515,7.8197 7.3536,7.8208C7.3584,7.8229 7.3749,7.8251 7.3877,7.8261C7.3899,7.8261 7.3909,7.8251 7.3931,7.8261C7.3968,7.8272 7.4,7.8272 7.4005,7.8272C7.4011,7.8272 7.4011,7.8272 7.4016,7.8272L7.4011,7.8395C7.4011,7.8395 7.4011,7.8395 7.4,7.8395C7.3989,7.8395 7.3936,7.8395 7.3893,7.8395C7.3856,7.8395 7.3787,7.8437 7.3696,7.8517L7.3664,7.8549C7.3637,7.856 7.36,7.8581 7.3557,7.8613C7.3691,7.8645 7.3877,7.8688 7.3936,7.8699C7.4096,7.872 7.4533,7.8896 7.4624,7.8939C7.4688,7.896 7.4752,7.9051 7.4875,7.9173C7.4907,7.9211 7.4955,7.9275 7.4987,7.9301C7.5077,7.9397 7.5328,7.9563 7.5333,7.9563L7.5408,7.9627L7.5339,7.9675C7.5285,7.9691 7.4885,8.0011 7.4784,8.0053C7.472,8.0075 7.4603,8.0171 7.4501,8.0251C7.4411,8.0304 7.432,8.0363 7.4283,8.0395C7.4165,8.0437 7.3696,8.0549 7.3488,8.048C7.3365,8.0437 7.3312,8.0336 7.328,8.0272C7.3248,8.0197 7.3216,8.016 7.3147,8.0149C7.3115,8.0117 7.3083,8.0117 7.3061,8.0128C7.3045,8.0139 7.3029,8.0181 7.3003,8.0203C7.2997,8.024 7.2997,8.0277 7.2981,8.0277C7.2933,8.0389 7.2896,8.04 7.2789,8.0517C7.2757,8.0544 7.2763,8.056 7.2763,8.056C7.2779,8.0581 7.2843,8.0656 7.2944,8.0672C7.3109,8.0699 7.3216,8.0784 7.3264,8.0832C7.328,8.0896 7.328,8.0933 7.328,8.0944C7.3237,8.1045 7.3104,8.1056 7.2955,8.1056C7.2907,8.1056 7.2843,8.1056 7.2816,8.1056C7.2795,8.1067 7.2784,8.1067 7.2784,8.1067C7.2784,8.1109 7.2784,8.1152 7.2811,8.1179C7.2843,8.1275 7.2827,8.1355 7.2811,8.144C7.2805,8.1483 7.2795,8.1525 7.2784,8.1563C7.2784,8.1563 7.2784,8.1573 7.2784,8.1573C7.2805,8.1605 7.2901,8.1584 7.2965,8.1563C7.3104,8.1499 7.3264,8.1424 7.3339,8.152C7.3403,8.1573 7.3328,8.1675 7.3248,8.1771C7.3216,8.1797 7.3179,8.1824 7.3173,8.1867C7.3157,8.1899 7.3179,8.1941 7.3205,8.1979C7.3248,8.1947 7.3339,8.1936 7.3429,8.1936C7.3531,8.1936 7.3632,8.2021 7.3685,8.2048C7.3723,8.2016 7.3781,8.1973 7.3808,8.192C7.3835,8.1893 7.3813,8.1803 7.3808,8.1717C7.3792,8.1643 7.3781,8.1552 7.3792,8.1467C7.3824,8.1301 7.4059,8.1269 7.4288,8.1269C7.4357,8.1248 7.4432,8.1237 7.4496,8.1227C7.4709,8.1184 7.4853,8.0955 7.4853,8.0955L7.4971,8.1019C7.4944,8.1141 7.4917,8.1312 7.4917,8.1323C7.4917,8.1365 7.4912,8.1424 7.4901,8.1477C7.5003,8.1392 7.5152,8.1285 7.5275,8.1184C7.5493,8.1045 7.5595,8.064 7.5595,8.064L7.5728,8.064C7.5728,8.064 7.5739,8.0827 7.5739,8.0933C7.5739,8.0965 7.5739,8.1035 7.5739,8.1099C7.5771,8.1045 7.5813,8.0992 7.5851,8.0933C7.5936,8.0859 7.6107,8.0693 7.6288,8.0608C7.6464,8.0512 7.6651,8.0512 7.6661,8.0501L7.6715,8.0501L7.6731,8.0544C7.6731,8.0544 7.6843,8.0885 7.6939,8.1056C7.7056,8.1243 7.7403,8.1637 7.7616,8.1765C7.784,8.192 7.8837,8.2432 7.8843,8.2432L7.9024,8.2533L7.8827,8.256C7.88,8.256 7.8272,8.2672 7.8112,8.2672C7.8048,8.2683 7.7957,8.2672 7.7851,8.2672C7.7675,8.2667 7.7445,8.2656 7.7173,8.2667C7.6837,8.2683 7.6672,8.2976 7.6581,8.3141C7.6555,8.3168 7.6549,8.3184 7.6533,8.3195C7.6507,8.3269 7.6523,8.3392 7.6523,8.3509C7.6523,8.3632 7.6528,8.3771 7.6512,8.3893C7.6491,8.4016 7.6523,8.4144 7.6549,8.4219C7.6565,8.4144 7.6581,8.4053 7.6608,8.4021C7.6629,8.3947 7.6677,8.3797 7.6693,8.3685L7.6747,8.3445L7.6821,8.3685C7.6821,8.3696 7.6896,8.3936 7.6896,8.4021C7.6896,8.4053 7.6896,8.4085 7.6885,8.4176C7.6875,8.4229 7.6864,8.4293 7.6864,8.4331C7.6864,8.4395 7.6864,8.4437 7.6864,8.4496C7.688,8.4443 7.6896,8.4421 7.6907,8.4389C7.696,8.4288 7.7125,8.4181 7.7147,8.4171L7.7269,8.4085L7.7237,8.4251C7.7211,8.4373 7.7189,8.4512 7.7195,8.4555L7.7205,8.4597C7.7205,8.4683 7.7232,8.4816 7.7232,8.4923C7.7232,8.5077 7.7067,8.5141 7.672,8.5168C7.6336,8.5195 7.6181,8.5109 7.5963,8.4869C7.5845,8.4731 7.584,8.4619 7.5835,8.4533C7.5829,8.4448 7.5829,8.4432 7.5765,8.4395C7.5733,8.4395 7.5675,8.4491 7.5653,8.4517C7.5643,8.456 7.5611,8.4571 7.56,8.4603C7.5557,8.4645 7.5531,8.4672 7.5483,8.4688C7.5456,8.4699 7.5408,8.4752 7.5339,8.48C7.5296,8.4816 7.5296,8.4827 7.5296,8.4827C7.5296,8.4848 7.536,8.4901 7.5392,8.4901C7.5403,8.4928 7.5419,8.4944 7.5456,8.4944C7.5579,8.5056 7.5627,8.5152 7.5563,8.5301C7.552,8.5424 7.536,8.5392 7.5205,8.5328C7.5125,8.5317 7.5045,8.5301 7.4976,8.5291C7.4971,8.5291 7.496,8.5291 7.496,8.5291C7.4965,8.5307 7.4981,8.5317 7.4987,8.5349C7.5019,8.5435 7.5061,8.5525 7.5061,8.5632C7.5061,8.5872 7.5147,8.592 7.5173,8.5936C7.5205,8.5947 7.5291,8.5893 7.5333,8.5829C7.5339,8.5819 7.536,8.5819 7.536,8.5808C7.5456,8.5739 7.5552,8.5755 7.5643,8.5776C7.5707,8.5776 7.5733,8.5803 7.5733,8.5819C7.5765,8.5883 7.5733,8.5941 7.568,8.6043C7.5664,8.6069 7.5643,8.6101 7.5621,8.6133C7.5589,8.6171 7.5579,8.6197 7.5552,8.6277C7.5552,8.6277 7.5552,8.6293 7.5552,8.6293C7.5568,8.6309 7.5643,8.6309 7.5669,8.632C7.5701,8.632 7.5755,8.632 7.5792,8.632C7.5824,8.6341 7.5867,8.6363 7.5904,8.6373C7.5973,8.6405 7.6021,8.6405 7.608,8.6421C7.6123,8.6421 7.6171,8.6405 7.6192,8.6405C7.6203,8.6363 7.6203,8.632 7.6187,8.6272C7.6171,8.6197 7.6171,8.616 7.6203,8.6096C7.6251,8.6021 7.6363,8.5952 7.6453,8.5941C7.6544,8.5909 7.6651,8.5952 7.6795,8.6016C7.6827,8.6037 7.6859,8.6037 7.6885,8.6037C7.6933,8.6064 7.7019,8.6053 7.7147,8.6053C7.7205,8.6053 7.7264,8.6053 7.7328,8.6053C7.7579,8.6053 7.7707,8.6112 7.7787,8.6165C7.7851,8.6181 7.7989,8.6192 7.8027,8.6165C7.8075,8.6155 7.8229,8.5957 7.8261,8.5904C7.8272,8.5829 7.8219,8.5653 7.8144,8.5381L7.8096,8.5189C7.7952,8.4661 7.7925,8.4331 7.8027,8.4165C7.8117,8.4 7.8272,8.4021 7.8453,8.4043C7.8501,8.4043 7.856,8.4043 7.8624,8.4043L7.92,8.4043L7.9168,8.4139C7.9168,8.4139 7.9061,8.4379 7.9003,8.4523C7.8976,8.4587 7.9003,8.4917 7.9024,8.5003L7.9029,8.5035C7.9051,8.5099 7.9109,8.5328 7.9195,8.5461C7.9243,8.5573 7.9349,8.5696 7.9509,8.5808C7.9536,8.5824 7.9573,8.5835 7.9621,8.592C7.9637,8.592 7.9664,8.5952 7.968,8.5963C7.9664,8.5936 7.9659,8.5909 7.9659,8.5851C7.9659,8.5717 7.9664,8.5424 7.9664,8.5424L7.9787,8.5392C7.9819,8.5467 7.9909,8.5733 8,8.5829C8.0037,8.5872 8.0085,8.5925 8.0133,8.5963C8.0133,8.5909 8.0133,8.584 8.0144,8.5813C8.016,8.5787 8.0144,8.5563 8.0133,8.5381L8.0256,8.5339C8.0256,8.5339 8.032,8.5573 8.0379,8.5675C8.0379,8.5691 8.0421,8.5717 8.0469,8.5739C8.0533,8.5803 8.0597,8.5835 8.0683,8.5925C8.0837,8.6091 8.0843,8.6352 8.0752,8.6496C8.0661,8.664 8.0539,8.6715 8.0341,8.6747C8.0235,8.6779 8.0155,8.6715 8.0091,8.6704C8.0016,8.6672 7.9968,8.664 7.9883,8.6672C7.9845,8.6704 7.9829,8.6715 7.9819,8.6736C7.9813,8.6768 7.984,8.68 7.9845,8.6827C7.9872,8.6843 7.9872,8.6864 7.9877,8.6896C7.9899,8.6955 7.9877,8.7051 7.9872,8.7125L7.9861,8.7211C7.9861,8.7221 7.9877,8.7221 7.9888,8.7232C7.9936,8.7264 7.9984,8.7264 8.0005,8.7232C8.0117,8.7157 8.0235,8.7157 8.0341,8.7232C8.04,8.7307 8.04,8.7339 8.04,8.7344C8.0373,8.7456 8.0245,8.7499 8.0149,8.7541C8.0043,8.7552 7.9931,8.7717 7.9936,8.7792C7.9952,8.7803 8.0069,8.7845 8.0112,8.7845C8.0149,8.7867 8.0181,8.7877 8.0197,8.7899C8.0235,8.792 8.0272,8.7947 8.0309,8.7973C8.0357,8.8016 8.0421,8.8075 8.0453,8.8075C8.0459,8.8059 8.0464,8.7952 8.0475,8.7904C8.0475,8.7861 8.048,8.7851 8.0485,8.7835C8.0555,8.7627 8.0667,8.7584 8.072,8.7584Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.704,7.5323C7.704,7.5323 7.6976,7.5184 7.6971,7.5147C7.696,7.5072 7.6928,7.5035 7.6928,7.5035C7.6928,7.5035 7.7227,7.5035 7.7221,7.5131C7.7205,7.5205 7.712,7.5205 7.7104,7.5253C7.7077,7.528 7.704,7.5323 7.704,7.5323" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8389,7.4875L7.8379,7.472C7.8379,7.472 7.8635,7.472 7.8757,7.4816C7.8944,7.4949 7.9072,7.5157 7.9067,7.5173C7.9035,7.52 7.8885,7.5072 7.8779,7.5035C7.8779,7.5035 7.8699,7.5067 7.8629,7.5067C7.8544,7.5067 7.8512,7.5035 7.8507,7.4992C7.8496,7.4949 7.8512,7.4907 7.8512,7.4907L7.8389,7.4875" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.904,7.5189C7.9013,7.5189 7.8971,7.5157 7.8917,7.5125C7.8864,7.5083 7.8821,7.5061 7.8779,7.5056C7.8763,7.5056 7.8699,7.5072 7.8629,7.5072C7.8544,7.5072 7.8512,7.5029 7.8491,7.4987C7.8485,7.4944 7.8496,7.4901 7.8501,7.4901L7.8384,7.488L7.8384,7.4869L7.8363,7.4693L7.8379,7.4693C7.8384,7.4693 7.8635,7.4704 7.8757,7.4805C7.8944,7.4928 7.9072,7.5141 7.9072,7.5147C7.9072,7.5163 7.9072,7.5163 7.9072,7.5163C7.9067,7.5184 7.9051,7.5189 7.904,7.5189ZM7.8773,7.5029L7.8773,7.5029C7.8816,7.5045 7.8875,7.5072 7.8912,7.5104C7.8976,7.5147 7.9019,7.5157 7.9035,7.5157C7.9035,7.5157 7.904,7.5157 7.9045,7.5157C7.9035,7.5147 7.8917,7.4949 7.8752,7.4821C7.8635,7.4747 7.8427,7.4725 7.8379,7.4725L7.84,7.4859L7.8512,7.488L7.8507,7.4901C7.8507,7.4901 7.8496,7.4944 7.8507,7.4976C7.8507,7.5029 7.8544,7.5056 7.8624,7.5056C7.8693,7.5056 7.8768,7.5029 7.8773,7.5029L7.8773,7.5029Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.3253,7.528C7.3253,7.528 7.3413,7.5403 7.3536,7.5419C7.3659,7.5435 7.3797,7.5435 7.3813,7.5435C7.3835,7.5435 7.3877,7.5269 7.3845,7.5141C7.3781,7.4715 7.3408,7.464 7.3408,7.464C7.3408,7.464 7.3525,7.4891 7.3472,7.4992C7.3403,7.5157 7.3253,7.528 7.3253,7.528" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.3819,7.552C7.3776,7.552 7.3653,7.5509 7.3541,7.5488C7.3392,7.5445 7.3227,7.5333 7.3221,7.5323L7.3152,7.5296L7.3216,7.5237C7.3216,7.5237 7.3355,7.5115 7.3419,7.4955C7.3445,7.4901 7.3403,7.4747 7.3355,7.4651L7.3307,7.4528L7.344,7.4571C7.3445,7.4571 7.3856,7.4683 7.392,7.5125C7.3941,7.5237 7.3915,7.544 7.3883,7.5477L7.3856,7.5509L7.3819,7.552ZM7.3355,7.528C7.3413,7.5312 7.3493,7.5333 7.3552,7.5355C7.3632,7.5376 7.3728,7.5376 7.3781,7.5376C7.3787,7.5323 7.3808,7.5211 7.3787,7.5157C7.3755,7.4933 7.3627,7.4816 7.3536,7.4763C7.3552,7.4837 7.3563,7.4949 7.3536,7.5035C7.3483,7.5136 7.3413,7.5211 7.3355,7.528Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2475,7.5659C7.2475,7.5659 7.2336,7.5387 7.2037,7.5408C7.1723,7.5451 7.1525,7.5691 7.1525,7.5691C7.1525,7.5691 7.1861,7.5675 7.1941,7.5733C7.2064,7.5819 7.2101,7.6037 7.2101,7.6037C7.2101,7.6037 7.2288,7.5915 7.2352,7.5829C7.2405,7.5781 7.2475,7.5659 7.2475,7.5659" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2069,7.6133L7.2043,7.6027C7.2043,7.5973 7.1995,7.5819 7.192,7.5776C7.1888,7.5776 7.1808,7.5755 7.16,7.5755C7.1557,7.5755 7.1536,7.5755 7.1536,7.5755L7.1387,7.5755L7.1483,7.5648C7.1483,7.5637 7.1701,7.5387 7.2032,7.5323C7.2379,7.5301 7.2544,7.5573 7.2544,7.5595L7.256,7.5648L7.2544,7.5664C7.2544,7.5675 7.2459,7.5797 7.2405,7.5877C7.2341,7.5941 7.2171,7.6053 7.2144,7.6064L7.2069,7.6133ZM7.1691,7.5627C7.1915,7.5637 7.1963,7.5659 7.1973,7.5675C7.2064,7.5733 7.2123,7.5824 7.2144,7.5925C7.2203,7.5888 7.2267,7.5824 7.2288,7.5803C7.2325,7.5765 7.2379,7.5691 7.2405,7.5664C7.2352,7.5579 7.2235,7.5456 7.2037,7.5477C7.1893,7.5499 7.1781,7.5563 7.1691,7.5627Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2101,7.6699C7.2101,7.6699 7.1851,7.6731 7.1701,7.6907C7.1568,7.7061 7.1579,7.7376 7.1579,7.7376C7.1579,7.7376 7.1755,7.7189 7.1915,7.7189C7.2069,7.7189 7.2299,7.7248 7.2299,7.7248C7.2299,7.7248 7.2229,7.7061 7.2229,7.696C7.2224,7.6907 7.2101,7.6699 7.2101,7.6699" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.1531,7.7531L7.1515,7.7376C7.1515,7.7355 7.1504,7.7035 7.1664,7.6853C7.1819,7.6683 7.2091,7.6645 7.2101,7.6645L7.2139,7.6635L7.2165,7.6656C7.2192,7.6699 7.2288,7.6885 7.2288,7.696C7.2288,7.7035 7.2331,7.7157 7.2357,7.7211L7.2416,7.7323L7.2293,7.7312C7.2293,7.7312 7.2053,7.7259 7.192,7.7259C7.1808,7.7259 7.1669,7.7371 7.1637,7.7403L7.1531,7.7531Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.696,7.6699l0.0203,-0.0293l0.0187,0.0283z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7317,7.6656l0.0133,-0.0187l0.0149,0.0176l-0.0283,0.0011" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7195,7.5824l-0.0053,-0.0357l0.0443,0.0181z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7531,7.5648l0.0251,0.0053l-0.0208,0.0133l-0.0043,-0.0187" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.6709,8.0645L7.6651,8.0533C7.6656,8.0533 7.7008,8.0325 7.7131,8.0283C7.7301,8.016 7.7445,7.9979 7.7477,7.9925C7.7477,7.9803 7.7445,7.9536 7.7413,7.9408C7.7381,7.9323 7.7381,7.9221 7.7381,7.9136C7.7323,7.92 7.7259,7.9269 7.7205,7.9307C7.7125,7.9376 7.6885,7.9531 7.6592,7.9573C7.6357,7.9659 7.6256,7.9696 7.6256,7.9696L7.6165,7.96C7.6165,7.96 7.6341,7.9317 7.6352,7.9077C7.6352,7.904 7.6352,7.8981 7.6331,7.8901L7.6331,7.8901C7.6256,7.8944 7.6101,7.9024 7.6064,7.904C7.6043,7.9051 7.5947,7.9109 7.5883,7.9152C7.5808,7.9195 7.5728,7.9275 7.5659,7.9307C7.5547,7.9381 7.5408,7.9568 7.536,7.9648L7.5253,7.9563C7.5259,7.9563 7.5419,7.9285 7.5589,7.9189C7.5664,7.9147 7.5733,7.9083 7.5813,7.9051C7.5925,7.8949 7.5984,7.8928 7.6027,7.8917C7.6059,7.8901 7.6213,7.8816 7.632,7.8779C7.6315,7.8757 7.6315,7.8736 7.6309,7.8704C7.6304,7.8581 7.6368,7.8443 7.6427,7.8331C7.6331,7.8373 7.624,7.8405 7.6176,7.8405C7.6069,7.8405 7.6016,7.8405 7.5893,7.8352C7.5851,7.8331 7.5787,7.832 7.5707,7.8304C7.544,7.8224 7.5243,7.8405 7.5243,7.8405L7.5136,7.848L7.5125,7.8347C7.5125,7.8336 7.512,7.816 7.5248,7.7952C7.5365,7.7787 7.5643,7.7701 7.5659,7.7701L7.5701,7.7824C7.5627,7.7835 7.5429,7.7925 7.5365,7.8032C7.5307,7.8085 7.5285,7.8155 7.5269,7.8208C7.5376,7.8171 7.5547,7.8123 7.5739,7.8171C7.5824,7.8197 7.5893,7.8208 7.5936,7.8229C7.6053,7.8283 7.608,7.8283 7.6165,7.8283C7.6261,7.8283 7.6491,7.8187 7.6581,7.816L7.6805,7.8075L7.6645,7.8283C7.6581,7.8325 7.6427,7.8565 7.6443,7.8699C7.6453,7.8784 7.6459,7.8821 7.6475,7.8896C7.6485,7.896 7.6501,7.9029 7.6496,7.9104C7.6491,7.9248 7.6427,7.9408 7.6373,7.9531C7.6427,7.9499 7.6491,7.9467 7.6576,7.9445C7.6848,7.9403 7.7056,7.9269 7.7141,7.9195C7.7264,7.9099 7.7424,7.8869 7.7424,7.8869L7.7547,7.8917C7.7531,7.9019 7.7504,7.9264 7.7547,7.936C7.7573,7.9456 7.7611,7.968 7.7611,7.9819C7.7675,7.9776 7.7744,7.9707 7.7813,7.9685C7.7893,7.9653 7.8048,7.9563 7.8096,7.9456C7.8123,7.9419 7.8176,7.9237 7.8197,7.9141L7.8331,7.9152C7.8331,7.9152 7.8363,7.9429 7.8453,7.9557C7.8512,7.9653 7.8576,7.984 7.8635,7.9995C7.8672,7.9899 7.8725,7.9792 7.8779,7.9723C7.8949,7.9525 7.8997,7.944 7.9003,7.9397C7.9013,7.9323 7.8987,7.9189 7.8976,7.9147L7.9099,7.9083L7.9232,7.9397L7.9136,7.9429C7.9109,7.9525 7.9035,7.9648 7.888,7.9813C7.8795,7.9899 7.8709,8.0139 7.8688,8.0187L7.8624,8.0395L7.8565,8.0187C7.8523,8.0064 7.8411,7.9739 7.8325,7.9632C7.8299,7.9557 7.8261,7.9509 7.8245,7.9424C7.8235,7.9467 7.8219,7.952 7.8197,7.952C7.8133,7.9643 7.7957,7.9749 7.7883,7.9787C7.7755,7.9856 7.7605,7.9989 7.7595,8L7.7584,8.0011C7.7536,8.0064 7.7381,8.0272 7.7195,8.0373C7.7077,8.0448 7.6725,8.0635 7.6709,8.0645Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2976,8.0123C7.2976,8.0123 7.2832,7.9957 7.2587,8.0027C7.2341,8.0059 7.2171,8.032 7.2171,8.032C7.2171,8.032 7.2379,8.0277 7.2507,8.0309C7.2629,8.032 7.2731,8.0443 7.2731,8.0443C7.2731,8.0443 7.2837,8.0357 7.2885,8.0309C7.2912,8.0272 7.2976,8.0123 7.2976,8.0123" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2709,8.056L7.2667,8.0507C7.2667,8.0507 7.2597,8.04 7.2501,8.0384C7.2411,8.0352 7.2197,8.0405 7.2197,8.0405L7.2043,8.0448L7.2123,8.0315C7.2133,8.0299 7.2299,8 7.2571,7.9952C7.2853,7.9909 7.3019,8.0075 7.3029,8.0075L7.3136,8.0187L7.3013,8.0187C7.2997,8.0229 7.2949,8.0309 7.2923,8.0341C7.288,8.0405 7.2779,8.0507 7.2757,8.0528L7.2709,8.056ZM7.2427,8.024C7.2464,8.024 7.2501,8.024 7.2528,8.0251C7.2613,8.0283 7.2688,8.0325 7.2731,8.0373C7.2757,8.032 7.2805,8.0293 7.2821,8.0277C7.2843,8.0245 7.288,8.0181 7.2896,8.0155C7.2853,8.0091 7.2747,8.0053 7.2603,8.0069C7.2485,8.0091 7.2389,8.0181 7.2325,8.0245C7.2357,8.024 7.2395,8.024 7.2427,8.024Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2693,8.1136C7.2693,8.1136 7.2475,8.1072 7.2299,8.1243C7.2123,8.1397 7.2101,8.1659 7.2101,8.1659C7.2101,8.1659 7.2288,8.1536 7.2416,8.1536C7.2544,8.1563 7.2715,8.1643 7.2715,8.1643C7.2715,8.1643 7.2741,8.1456 7.2757,8.1413C7.2779,8.128 7.2693,8.1136 7.2693,8.1136" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2037,8.1813L7.2037,8.1659C7.2037,8.1659 7.2053,8.1333 7.2256,8.1189C7.2395,8.1077 7.2549,8.1067 7.2629,8.1067C7.2672,8.1067 7.2693,8.1067 7.2693,8.1067L7.2725,8.1077L7.2752,8.1088C7.2752,8.112 7.2848,8.1285 7.2816,8.1424C7.2805,8.1451 7.2773,8.1648 7.2773,8.1648L7.2752,8.1712L7.2683,8.1691C7.2677,8.1691 7.2528,8.1616 7.2411,8.1595L7.2379,8.1595C7.2299,8.1595 7.2187,8.1685 7.2149,8.1701L7.2037,8.1813Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.3179,8.2059C7.3179,8.2059 7.3163,8.2325 7.3291,8.248C7.3429,8.2656 7.3675,8.2688 7.3675,8.2688C7.3675,8.2688 7.36,8.2512 7.3579,8.2405C7.3568,8.2283 7.3691,8.2155 7.3691,8.2155C7.3691,8.2155 7.3568,8.2032 7.344,8.2032C7.3312,8.2032 7.3179,8.2059 7.3179,8.2059" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.3787,8.2779L7.3664,8.2757C7.3664,8.2757 7.3387,8.2704 7.3243,8.2528C7.3104,8.2331 7.3109,8.2059 7.3115,8.2043L7.3115,8.1995L7.3168,8.1984C7.3179,8.1984 7.3317,8.1952 7.3445,8.1952C7.3605,8.1952 7.3728,8.2085 7.3744,8.2107L7.3792,8.2149L7.3739,8.2192C7.3712,8.2235 7.3632,8.2315 7.3643,8.24C7.3653,8.2453 7.3717,8.2597 7.3733,8.2651L7.3787,8.2779ZM7.9163,8.4155L7.9056,8.4059C7.9061,8.4053 7.9413,8.36 7.9419,8.328C7.944,8.3029 7.8976,8.2672 7.8784,8.256L7.8848,8.2448C7.8928,8.2496 7.9568,8.2907 7.9557,8.328C7.9541,8.3659 7.9173,8.4123 7.9163,8.4155Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.5664,8.4437C7.5664,8.4437 7.5493,8.4197 7.5253,8.4219C7.5008,8.4229 7.4757,8.4448 7.4757,8.4448C7.4757,8.4448 7.5067,8.4437 7.5131,8.4533C7.5216,8.4645 7.5285,8.4773 7.5285,8.4773C7.5285,8.4773 7.5419,8.4688 7.5477,8.4661C7.5541,8.4581 7.5664,8.4437 7.5664,8.4437" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.5264,8.4832L7.5232,8.4795C7.5232,8.4779 7.5163,8.4672 7.5088,8.4571C7.5067,8.4544 7.4997,8.4528 7.4853,8.4528C7.4805,8.4528 7.4773,8.4528 7.4773,8.4528L7.4571,8.4528L7.4725,8.4405C7.4725,8.4405 7.4987,8.4171 7.5253,8.4155L7.5253,8.4155C7.5531,8.4155 7.5707,8.4395 7.5717,8.4405L7.5755,8.4437L7.5728,8.4469C7.5701,8.4491 7.5589,8.4656 7.5525,8.4699C7.5461,8.4747 7.5323,8.4811 7.5317,8.4811L7.5264,8.4832ZM7.4971,8.4405C7.5072,8.4405 7.5157,8.4437 7.5195,8.4496C7.5237,8.456 7.5291,8.4624 7.5317,8.4672C7.5355,8.4656 7.5413,8.4613 7.544,8.4571C7.5472,8.4571 7.5536,8.4496 7.5573,8.4437C7.552,8.4395 7.5413,8.4283 7.5264,8.4283C7.5163,8.4299 7.5045,8.4336 7.4971,8.4405Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.4928,8.5397C7.4928,8.5397 7.4608,8.5323 7.4459,8.5509C7.4309,8.5653 7.4315,8.5947 7.4315,8.5947C7.4315,8.5947 7.4501,8.576 7.4677,8.5781C7.4848,8.5781 7.5035,8.5893 7.5035,8.5893C7.5035,8.5893 7.5008,8.5696 7.4992,8.5621C7.4976,8.5531 7.4928,8.5397 7.4928,8.5397" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.4256,8.6133L7.4256,8.5947C7.4256,8.5947 7.4245,8.5643 7.4416,8.5445C7.4528,8.5323 7.4699,8.5312 7.4827,8.5312C7.4891,8.5312 7.4944,8.5323 7.4944,8.5323L7.4976,8.5323L7.4992,8.5365C7.4992,8.5365 7.504,8.5531 7.5061,8.5605C7.5072,8.5691 7.5104,8.5877 7.5104,8.5877L7.5131,8.6L7.5013,8.5947C7.5013,8.5936 7.4832,8.5851 7.4672,8.5824L7.4672,8.5824C7.4549,8.5824 7.4421,8.5947 7.4368,8.6021L7.4256,8.6133ZM7.4827,8.5445C7.4752,8.5445 7.4603,8.5445 7.4507,8.5547C7.4443,8.5616 7.4416,8.5707 7.4395,8.5813C7.4475,8.576 7.4581,8.5701 7.4693,8.5701C7.4789,8.5712 7.488,8.5755 7.496,8.5787C7.4944,8.5723 7.4944,8.5675 7.4933,8.5653C7.4917,8.5579 7.4891,8.5509 7.488,8.5456C7.4864,8.5445 7.4853,8.5445 7.4827,8.5445Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.5605,8.6405C7.5605,8.6405 7.5451,8.6603 7.5568,8.6779C7.5685,8.6944 7.592,8.7029 7.592,8.7029C7.592,8.7029 7.584,8.6907 7.5883,8.6768C7.5915,8.6656 7.6107,8.6485 7.6107,8.6485L7.5605,8.6405" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.6085,8.7157L7.5904,8.7083C7.5888,8.7083 7.5637,8.7008 7.5509,8.6811C7.5381,8.6603 7.5541,8.6363 7.5552,8.6341L7.5669,8.6187L7.5669,8.632L7.6251,8.6443L7.6139,8.6528C7.6064,8.6581 7.5947,8.6693 7.5936,8.6779C7.5909,8.6901 7.5968,8.6997 7.5968,8.6997L7.6085,8.7157Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9808,8.6795C7.9808,8.6795 7.9531,8.6725 7.9381,8.6821C7.9227,8.6907 7.9104,8.7296 7.9104,8.7296C7.9104,8.7296 7.9355,8.7072 7.9536,8.7115C7.9717,8.7157 7.9856,8.72 7.9856,8.72C7.9856,8.72 7.9883,8.7067 7.9856,8.6949C7.9845,8.6896 7.9808,8.6795 7.9808,8.6795" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8971,8.7493L7.904,8.728C7.9045,8.7227 7.9168,8.6869 7.9344,8.6779C7.9413,8.6715 7.9493,8.6693 7.96,8.6693C7.9717,8.6693 7.9819,8.6725 7.9819,8.6725L7.9851,8.6736L7.9867,8.6779C7.9867,8.6779 7.9915,8.6875 7.9915,8.6933C7.9941,8.7056 7.9915,8.7205 7.9915,8.7216L7.9893,8.7312L7.9819,8.728C7.9819,8.728 7.9696,8.7195 7.9515,8.7179C7.9504,8.7179 7.9504,8.7179 7.9504,8.7179C7.9376,8.7179 7.9189,8.7291 7.9136,8.7328L7.8971,8.7493ZM7.96,8.6821C7.9515,8.6821 7.9445,8.6853 7.9413,8.6896C7.9349,8.6907 7.9291,8.7029 7.9237,8.7125C7.9328,8.7072 7.9445,8.7029 7.9541,8.7045C7.9643,8.7061 7.9728,8.7083 7.9792,8.712C7.9792,8.7072 7.9792,8.7019 7.9792,8.6949C7.9792,8.6933 7.9771,8.6896 7.976,8.6853C7.9728,8.6843 7.9664,8.6821 7.96,8.6821Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9941,8.7813C7.9941,8.7813 7.9723,8.8032 7.9808,8.8197C7.9883,8.8405 8.0016,8.8571 8.0016,8.8571C8.0016,8.8571 8.0011,8.8309 8.0107,8.8235C8.0224,8.8128 8.0448,8.8101 8.0448,8.8101C8.0448,8.8101 8.0267,8.7947 8.0208,8.7931C8.0155,8.7904 7.9941,8.7813 7.9941,8.7813" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0091,8.8795L7.9963,8.8624C7.9952,8.8613 7.9819,8.8421 7.9744,8.8229C7.9653,8.8032 7.9877,8.7781 7.9888,8.7781L7.992,8.7728L7.9973,8.776C8.0027,8.7781 8.0192,8.7845 8.0224,8.7872C8.0288,8.7899 8.0432,8.8021 8.0485,8.8064L8.0597,8.816L8.0443,8.8187C8.0443,8.8187 8.024,8.8203 8.0128,8.8288C8.0101,8.8331 8.0075,8.8475 8.008,8.8581L8.0091,8.8795Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0992,8.8133C8.0992,8.8133 8.088,8.8405 8.1088,8.856C8.1291,8.8725 8.1461,8.8757 8.1461,8.8757C8.1461,8.8757 8.1312,8.8475 8.1349,8.832C8.1413,8.8187 8.1536,8.808 8.1536,8.808C8.1536,8.808 8.1285,8.8016 8.1253,8.8027C8.1216,8.8032 8.0992,8.8133 8.0992,8.8133" + android:strokeWidth="1" + android:fillColor="#DB4446" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1579,8.8821L8.1451,8.8821C8.1445,8.8821 8.1253,8.8795 8.104,8.8613C8.0816,8.8405 8.0923,8.8112 8.0933,8.8101L8.0944,8.8069L8.0965,8.8069C8.104,8.8027 8.1189,8.7947 8.1232,8.7947L8.1253,8.7947C8.1317,8.7947 8.1504,8.8032 8.1557,8.8032L8.1675,8.8075L8.1563,8.816C8.1563,8.816 8.1456,8.8235 8.1408,8.8357C8.1376,8.8453 8.1472,8.8661 8.1509,8.8709L8.1579,8.8821ZM8.104,8.8181C8.1035,8.824 8.1008,8.8405 8.1131,8.8528C8.1205,8.8571 8.128,8.8624 8.1339,8.8651C8.1296,8.8539 8.1253,8.84 8.1291,8.8309C8.1317,8.8224 8.1371,8.8171 8.1413,8.8123C8.1339,8.8091 8.128,8.8069 8.1253,8.8069C8.1243,8.8075 8.1136,8.8144 8.104,8.8181Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0224,10.6907C7.0923,10.7125 7.1285,10.7659 7.1285,10.8283C7.1285,10.9072 7.0501,10.9685 6.9493,10.9685C6.8475,10.9685 6.7659,10.9077 6.7659,10.8283C6.7659,10.7659 6.8,10.6971 6.8693,10.6933C6.8693,10.6933 6.8677,10.6864 6.8619,10.6773C6.8539,10.6688 6.84,10.6533 6.84,10.6533C6.84,10.6533 6.8661,10.6491 6.8816,10.6549C6.8971,10.6608 6.9077,10.6699 6.9077,10.6699C6.9077,10.6699 6.9157,10.6565 6.9248,10.6448C6.936,10.6325 6.9499,10.6283 6.9499,10.6283C6.9499,10.6283 6.9659,10.6405 6.9701,10.6491C6.9749,10.6576 6.9787,10.6688 6.9787,10.6688C6.9787,10.6688 6.9936,10.6565 7.0059,10.6533C7.0181,10.6459 7.0347,10.6432 7.0347,10.6432C7.0347,10.6432 7.0288,10.6571 7.0256,10.6656C7.0235,10.6741 7.0224,10.6907 7.0224,10.6907" + android:strokeWidth="1" + android:fillColor="#FFD691" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9499,10.9781C6.8416,10.9781 6.7568,10.9104 6.7568,10.8283C6.7568,10.7648 6.7915,10.6971 6.8571,10.6853C6.8571,10.6821 6.856,10.6821 6.8544,10.6805C6.8485,10.6741 6.8347,10.6592 6.8347,10.6592L6.8229,10.648L6.8384,10.6448C6.8395,10.6448 6.8507,10.6432 6.8635,10.6432C6.8731,10.6432 6.88,10.6437 6.8859,10.6448C6.8949,10.6501 6.9008,10.6533 6.9072,10.6571C6.9104,10.6528 6.9141,10.6448 6.9195,10.6405C6.9317,10.6283 6.9451,10.6197 6.9461,10.6187L6.9504,10.6155L6.9557,10.6197C6.9563,10.6197 6.9723,10.6331 6.9787,10.6437C6.9797,10.6469 6.9813,10.6523 6.9829,10.6549C6.9883,10.6512 6.9957,10.6448 7.0032,10.6437C7.0165,10.6395 7.032,10.6331 7.032,10.6331L7.048,10.6309L7.0432,10.6443C7.0432,10.6443 7.0384,10.6608 7.0357,10.6693C7.0341,10.6715 7.0325,10.6779 7.0325,10.6827C7.0987,10.7067 7.1387,10.7579 7.1387,10.8272C7.1381,10.9125 7.0565,10.9781 6.9499,10.9781ZM6.8603,10.6603C6.8629,10.6656 6.8667,10.6672 6.8693,10.6699C6.8757,10.6821 6.8789,10.6907 6.8789,10.6907L6.8816,10.7019L6.8704,10.7029C6.8069,10.7061 6.7749,10.768 6.7749,10.8277C6.7749,10.9019 6.8507,10.9568 6.9493,10.9568C7.0464,10.9568 7.1189,10.9024 7.1189,10.8277C7.1189,10.7653 7.0827,10.7184 7.0187,10.6987L7.0123,10.6955L7.0123,10.6901C7.0123,10.688 7.0144,10.6704 7.0187,10.664C7.0187,10.6597 7.0192,10.6565 7.0203,10.6555C7.016,10.6565 7.0123,10.6565 7.0085,10.6587C6.9968,10.6651 6.9845,10.6741 6.9845,10.6752L6.9744,10.6816L6.9701,10.6693C6.9701,10.6693 6.9669,10.6597 6.9627,10.6528C6.96,10.6485 6.9536,10.6416 6.9488,10.6384C6.944,10.6405 6.9376,10.6448 6.9317,10.6517C6.9227,10.6603 6.9163,10.6736 6.9163,10.6741L6.9104,10.6832L6.9024,10.6779C6.9024,10.6779 6.8933,10.6677 6.8789,10.6635C6.8757,10.6603 6.8672,10.6592 6.8603,10.6603Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9349,11.0555C6.9349,11.0555 6.8005,10.9653 6.7413,10.9531C6.6661,10.9365 6.5829,10.9488 6.5477,10.9456C6.5477,10.9477 6.5909,10.9781 6.6096,10.9957C6.6283,11.0155 6.6901,11.0528 6.7259,11.0624C6.8341,11.0907 6.9349,11.0555 6.9349,11.0555" + android:strokeWidth="1" + android:fillColor="#058E6E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8139,11.0811L6.8139,11.0811C6.7819,11.0811 6.7509,11.0779 6.7227,11.0699C6.688,11.0613 6.6229,11.024 6.6032,11.0032C6.5883,10.9909 6.5579,10.9659 6.5472,10.9573C6.5435,10.9557 6.5419,10.9531 6.5419,10.9531L6.5259,10.9376L6.5483,10.9397C6.5584,10.9408 6.5733,10.9397 6.592,10.9376C6.6107,10.9365 6.6309,10.9344 6.6533,10.9344C6.6885,10.9344 6.7173,10.9387 6.744,10.944C6.8032,10.9563 6.9344,11.0443 6.9392,11.0469L6.9541,11.0576L6.9381,11.0651C6.9349,11.0656 6.8843,11.0811 6.8139,11.0811ZM6.5728,10.9563C6.5872,10.9659 6.6043,10.9808 6.616,10.9904C6.632,11.0069 6.6933,11.0448 6.7275,11.0528C6.7541,11.0592 6.784,11.0651 6.8144,11.0651C6.8576,11.0651 6.8939,11.0565 6.9136,11.0528C6.8763,11.0277 6.7851,10.9696 6.7403,10.96C6.7157,10.9552 6.6869,10.9525 6.6533,10.9525C6.6315,10.9525 6.6107,10.9525 6.592,10.9541C6.5851,10.9557 6.5787,10.9557 6.5728,10.9563Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9728,11.0635C6.9728,11.0635 7.0597,10.9728 7.1499,10.9605C7.2571,10.9451 7.3259,10.9701 7.3669,10.9808C7.3685,10.9808 7.3328,10.9957 7.3141,11.0096C7.2955,11.0219 7.2475,11.064 7.1744,11.0656C7.1008,11.0656 7.0192,11.056 7.0069,11.0571C6.9925,11.0592 6.9728,11.0635 6.9728,11.0635" + android:strokeWidth="1" + android:fillColor="#058E6E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9483,11.0773L6.9664,11.0576C6.9696,11.0533 7.056,10.9659 7.1477,10.9536C7.1712,10.9493 7.1941,10.9472 7.2165,10.9472C7.2789,10.9472 7.3259,10.9595 7.3568,10.9691L7.3749,10.9733L7.3755,10.9787C7.3776,10.9851 7.3728,10.9893 7.3648,10.9925C7.3536,10.9963 7.3317,11.0075 7.3195,11.0176L7.3131,11.0213C7.2907,11.0389 7.2432,11.0715 7.1744,11.0725L7.1616,11.0725C7.1227,11.0725 7.0821,11.0704 7.0533,11.0693C7.0304,11.0677 7.0133,11.0661 7.0069,11.0677C6.9947,11.0693 6.9744,11.0704 6.9744,11.0704L6.9483,11.0773ZM7.0128,11.0491C7.0213,11.0491 7.0352,11.0501 7.0539,11.0523C7.0827,11.0533 7.1227,11.056 7.1616,11.056L7.1739,11.056C7.2379,11.0549 7.2816,11.0224 7.3029,11.0075L7.3104,11.0032C7.3195,10.9947 7.3323,10.9909 7.3435,10.9824C7.3125,10.9749 7.2709,10.9659 7.2165,10.9659C7.1941,10.9659 7.1728,10.9659 7.1504,10.9701C7.0896,10.9787 7.0293,11.0245 6.9995,11.0512C7.0005,11.0501 7.0037,11.0501 7.0043,11.0501C7.0069,11.0496 7.0096,11.0491 7.0128,11.0491Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9477,10.9531C6.9131,10.9195 6.8917,10.8768 6.8917,10.8283C6.8917,10.7781 6.9131,10.7323 6.9477,10.7024C6.9813,10.7328 7.0016,10.7787 7.0016,10.8283C7.0016,10.8773 6.9808,10.92 6.9477,10.9531" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9477,10.9659L6.9413,10.9573C6.904,10.9248 6.8832,10.8784 6.8832,10.8283C6.8832,10.7781 6.904,10.728 6.9413,10.6949L6.9477,10.6907L6.9541,10.6949C6.9899,10.7285 7.0101,10.7781 7.0101,10.8283C7.0101,10.8784 6.9893,10.9253 6.9541,10.9573L6.9477,10.9659ZM6.9477,10.7147C6.9173,10.744 6.9008,10.7824 6.9008,10.8283C6.9008,10.8699 6.9168,10.9083 6.9477,10.9408C6.976,10.9083 6.9931,10.8688 6.9931,10.8283C6.9931,10.7824 6.976,10.744 6.9477,10.7147Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9131,11.1355C6.9131,11.1355 6.9339,11.0832 6.9355,11.0405C6.9381,11.0032 6.9307,10.9669 6.9307,10.9669C6.9307,10.9669 6.9419,10.9669 6.9477,10.9669C6.9536,10.9669 6.9568,10.9669 6.9568,10.9669C6.9568,10.9669 6.9707,11.0059 6.9707,11.0405C6.9707,11.0752 6.9643,11.1195 6.9643,11.1195C6.9643,11.1195 6.9456,11.1227 6.9397,11.1269C6.9333,11.128 6.9131,11.1355 6.9131,11.1355" + android:strokeWidth="1" + android:fillColor="#058E6E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8976,11.1509L6.904,11.1323C6.904,11.1323 6.9253,11.0821 6.9264,11.0405C6.9285,11.0048 6.9227,10.9685 6.9227,10.9685L6.9195,10.9573L6.9632,10.9573L6.9664,10.9659C6.9664,10.9659 6.9792,11.0059 6.9792,11.0411C6.9792,11.0752 6.9733,11.12 6.9728,11.12L6.9728,11.1285L6.9664,11.1285C6.9589,11.1312 6.9477,11.1328 6.944,11.1328C6.9376,11.1381 6.9179,11.144 6.9168,11.1451L6.8976,11.1509ZM6.9413,10.976C6.9424,10.9904 6.9451,11.0155 6.944,11.0405C6.9429,11.0699 6.9339,11.1029 6.9269,11.1195C6.9312,11.1195 6.9339,11.1184 6.9349,11.1184C6.9408,11.1152 6.9499,11.1152 6.9563,11.1131C6.9579,11.0987 6.9616,11.0651 6.9616,11.04C6.9616,11.0149 6.9531,10.9877 6.9499,10.9755L6.9413,10.9755L6.9413,10.976Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.6155,6.2645C8.6155,6.2437 8.6315,6.2283 8.6523,6.2283C8.6725,6.2283 8.6885,6.2437 8.6885,6.2645C8.6885,6.2821 8.6725,6.2981 8.6523,6.2981C8.632,6.2981 8.6155,6.2821 8.6155,6.2645" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.6528,6.3045C8.6293,6.3045 8.6091,6.2864 8.6091,6.2645C8.6091,6.2405 8.6293,6.2208 8.6528,6.2208C8.6763,6.2208 8.696,6.2405 8.696,6.2645C8.696,6.2864 8.6763,6.3045 8.6528,6.3045ZM8.6528,6.2341C8.6357,6.2341 8.6229,6.2464 8.6229,6.2645C8.6229,6.2779 8.6352,6.2923 8.6528,6.2923C8.6693,6.2923 8.6827,6.2784 8.6827,6.2645C8.6821,6.2469 8.6693,6.2341 8.6528,6.2341Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.6667,6.1728C8.6667,6.1531 8.6816,6.1392 8.704,6.1392C8.7227,6.1392 8.7403,6.1525 8.7403,6.1728C8.7403,6.1931 8.7227,6.2069 8.704,6.2069C8.6816,6.2075 8.6667,6.1931 8.6667,6.1728" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.704,6.2155C8.6789,6.2155 8.6603,6.1947 8.6603,6.1728C8.6603,6.1509 8.6789,6.1323 8.704,6.1323C8.7269,6.1323 8.7467,6.1509 8.7467,6.1728C8.7467,6.1947 8.7269,6.2155 8.704,6.2155ZM8.704,6.1445C8.6859,6.1445 8.6725,6.1568 8.6725,6.1728C8.6725,6.1904 8.6848,6.2032 8.704,6.2032C8.7189,6.2032 8.7333,6.1909 8.7333,6.1728C8.7333,6.1573 8.7195,6.1445 8.704,6.1445Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.7003,6.0699C8.7003,6.0512 8.7168,6.0336 8.7376,6.0336C8.7568,6.0336 8.7744,6.0512 8.7744,6.0699C8.7744,6.0907 8.7568,6.1045 8.7376,6.1045C8.7168,6.1045 8.7003,6.0907 8.7003,6.0699" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.7376,6.1115C8.7131,6.1115 8.6933,6.0923 8.6933,6.0699C8.6933,6.0448 8.7131,6.0283 8.7376,6.0283C8.7611,6.0283 8.7813,6.0448 8.7813,6.0699C8.7808,6.0923 8.7611,6.1115 8.7376,6.1115ZM8.7376,6.0405C8.72,6.0405 8.7067,6.0528 8.7067,6.0699C8.7067,6.0843 8.7195,6.0981 8.7376,6.0981C8.7541,6.0981 8.7675,6.0848 8.7675,6.0699C8.7675,6.0533 8.7541,6.0405 8.7376,6.0405Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.704,5.9573C8.704,5.9397 8.72,5.9221 8.7413,5.9221C8.7616,5.9221 8.7787,5.9397 8.7787,5.9573C8.7787,5.9781 8.7611,5.9931 8.7413,5.9931C8.7205,5.9931 8.704,5.9781 8.704,5.9573" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.7419,6C8.7168,6 8.6981,5.9813 8.6981,5.9573C8.6981,5.9333 8.7168,5.9157 8.7419,5.9157C8.7659,5.9157 8.7856,5.9333 8.7856,5.9573C8.7856,5.9813 8.7659,6 8.7419,6ZM8.7419,5.9296C8.7248,5.9296 8.7104,5.9419 8.7104,5.9573C8.7104,5.9728 8.7243,5.9867 8.7419,5.9867C8.7573,5.9867 8.7723,5.9733 8.7723,5.9573C8.7723,5.9424 8.7573,5.9296 8.7419,5.9296Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.6763,5.8469C8.6763,5.8283 8.6939,5.8133 8.7131,5.8133C8.7344,5.8133 8.7504,5.8277 8.7504,5.8469C8.7504,5.8672 8.7344,5.8821 8.7131,5.8821C8.6939,5.8821 8.6763,5.8672 8.6763,5.8469" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.7131,5.8907C8.6896,5.8907 8.6693,5.8699 8.6693,5.8469C8.6693,5.8251 8.6896,5.8064 8.7131,5.8064C8.7381,5.8064 8.7568,5.8251 8.7568,5.8469C8.7568,5.8699 8.7381,5.8907 8.7131,5.8907ZM8.7131,5.8197C8.6981,5.8197 8.6827,5.832 8.6827,5.8469C8.6827,5.8645 8.6976,5.8784 8.7131,5.8784C8.7307,5.8784 8.7445,5.8651 8.7445,5.8469C8.7445,5.8325 8.7307,5.8197 8.7131,5.8197Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.6192,5.7477C8.6192,5.728 8.6357,5.7136 8.6565,5.7136C8.6768,5.7136 8.6939,5.728 8.6939,5.7477C8.6939,5.768 8.6768,5.7819 8.6565,5.7819C8.6357,5.7824 8.6192,5.768 8.6192,5.7477" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.6565,5.7904C8.6315,5.7904 8.6128,5.7696 8.6128,5.7477C8.6128,5.7259 8.6315,5.7061 8.6565,5.7061C8.6805,5.7061 8.7003,5.7259 8.7003,5.7477C8.7003,5.7696 8.6805,5.7904 8.6565,5.7904ZM8.6565,5.72C8.6395,5.72 8.6251,5.7323 8.6251,5.7483C8.6251,5.7659 8.6389,5.7787 8.6565,5.7787C8.6725,5.7787 8.6875,5.7664 8.6875,5.7483C8.6875,5.7323 8.6731,5.72 8.6565,5.72Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.544,5.6656C8.544,5.6459 8.5605,5.6315 8.5808,5.6315C8.6005,5.6315 8.6171,5.6459 8.6171,5.6656C8.6171,5.6853 8.6005,5.7029 8.5808,5.7029C8.5605,5.7029 8.544,5.6853 8.544,5.6656" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.5808,5.7072C8.5568,5.7072 8.5371,5.6907 8.5371,5.6656C8.5371,5.6437 8.5568,5.6251 8.5808,5.6251C8.6043,5.6251 8.6245,5.6437 8.6245,5.6656C8.6245,5.6907 8.6043,5.7072 8.5808,5.7072ZM8.5808,5.6384C8.5632,5.6384 8.5504,5.6507 8.5504,5.6656C8.5504,5.6821 8.5627,5.6949 8.5808,5.6949C8.5979,5.6949 8.6107,5.6827 8.6107,5.6656C8.6107,5.6512 8.5979,5.6384 8.5808,5.6384Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.4549,5.5979C8.4549,5.5781 8.472,5.5637 8.4917,5.5637C8.5131,5.5637 8.5291,5.5781 8.5291,5.5979C8.5291,5.6171 8.5131,5.632 8.4917,5.632C8.472,5.6325 8.4549,5.6171 8.4549,5.5979" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.4917,5.6405C8.4683,5.6405 8.448,5.6197 8.448,5.5979C8.448,5.576 8.4683,5.5563 8.4917,5.5563C8.5168,5.5563 8.5355,5.576 8.5355,5.5979C8.5355,5.6197 8.5168,5.6405 8.4917,5.6405ZM8.4917,5.5696C8.4757,5.5696 8.4613,5.5819 8.4613,5.5979C8.4613,5.6155 8.4752,5.6283 8.4917,5.6283C8.5093,5.6283 8.5232,5.616 8.5232,5.5979C8.5227,5.5824 8.5093,5.5696 8.4917,5.5696Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.3493,5.5424C8.3493,5.5221 8.3664,5.5077 8.3861,5.5077C8.4064,5.5077 8.4229,5.5221 8.4229,5.5424C8.4229,5.5621 8.4064,5.5781 8.3861,5.5781C8.3669,5.5781 8.3493,5.5621 8.3493,5.5424" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.3867,5.5824C8.3632,5.5824 8.3429,5.5659 8.3429,5.5424C8.3429,5.52 8.3632,5.5024 8.3867,5.5024C8.4107,5.5024 8.4304,5.52 8.4304,5.5424C8.4304,5.5659 8.4107,5.5824 8.3867,5.5824ZM8.3867,5.5157C8.3696,5.5157 8.3563,5.528 8.3563,5.5424C8.3563,5.5573 8.3691,5.5701 8.3867,5.5701C8.4043,5.5701 8.4171,5.5579 8.4171,5.5424C8.4165,5.528 8.4043,5.5157 8.3867,5.5157Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.2395,5.5029C8.2395,5.4821 8.2565,5.4683 8.2763,5.4683C8.2976,5.4683 8.3131,5.4821 8.3131,5.5029C8.3131,5.5205 8.2976,5.5381 8.2763,5.5381C8.2565,5.5387 8.2395,5.5211 8.2395,5.5029" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.2768,5.5445C8.2533,5.5445 8.2331,5.5269 8.2331,5.5029C8.2331,5.4795 8.2533,5.4603 8.2768,5.4603C8.3008,5.4603 8.3205,5.4795 8.3205,5.5029C8.3205,5.5269 8.3003,5.5445 8.2768,5.5445ZM8.2768,5.4741C8.2603,5.4741 8.2464,5.4875 8.2464,5.5035C8.2464,5.5195 8.2603,5.5317 8.2768,5.5317C8.2944,5.5317 8.3072,5.5195 8.3072,5.5035C8.3072,5.4875 8.2944,5.4741 8.2768,5.4741Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1168,5.4811C8.1168,5.4613 8.1339,5.4448 8.1541,5.4448C8.176,5.4448 8.1915,5.4613 8.1915,5.4811C8.1915,5.5008 8.1755,5.5152 8.1541,5.5152C8.1339,5.5157 8.1168,5.5008 8.1168,5.4811" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1541,5.5221C8.1301,5.5221 8.1104,5.5035 8.1104,5.4816C8.1104,5.4576 8.1301,5.4411 8.1541,5.4411C8.1792,5.4411 8.1979,5.4576 8.1979,5.4816C8.1979,5.5029 8.1787,5.5221 8.1541,5.5221ZM8.1541,5.4533C8.1381,5.4533 8.1237,5.4656 8.1237,5.4816C8.1237,5.4949 8.1381,5.5088 8.1541,5.5088C8.1712,5.5088 8.1856,5.4955 8.1856,5.4816C8.1851,5.4656 8.1712,5.4533 8.1541,5.4533Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0005,5.4752C8.0005,5.456 8.0171,5.4411 8.0379,5.4411C8.0581,5.4411 8.0752,5.456 8.0752,5.4752C8.0752,5.4939 8.0581,5.5093 8.0379,5.5093C8.0171,5.5093 8.0005,5.4939 8.0005,5.4752" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0379,5.5157C8.0133,5.5157 7.9941,5.4971 7.9941,5.4752C7.9941,5.4533 8.0133,5.4325 8.0379,5.4325C8.0624,5.4325 8.0816,5.4533 8.0816,5.4752C8.0816,5.4971 8.0624,5.5157 8.0379,5.5157ZM8.0379,5.4448C8.0213,5.4448 8.0064,5.4571 8.0064,5.4752C8.0064,5.4907 8.0208,5.5035 8.0379,5.5035C8.0544,5.5035 8.0693,5.4912 8.0693,5.4752C8.0693,5.4571 8.0544,5.4448 8.0379,5.4448Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8869,5.4779C7.8869,5.4581 7.904,5.4437 7.9237,5.4437C7.9445,5.4437 7.9605,5.4581 7.9605,5.4779C7.9605,5.4976 7.9445,5.5152 7.9237,5.5152C7.904,5.5157 7.8869,5.4981 7.8869,5.4779" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9237,5.52C7.9003,5.52 7.88,5.5035 7.88,5.4784C7.88,5.4565 7.9003,5.4379 7.9237,5.4379C7.9477,5.4379 7.9675,5.4565 7.9675,5.4784C7.9669,5.5029 7.9477,5.52 7.9237,5.52ZM7.9237,5.4512C7.9067,5.4512 7.8933,5.4635 7.8933,5.4784C7.8933,5.4949 7.9067,5.5077 7.9237,5.5077C7.9413,5.5077 7.9541,5.4955 7.9541,5.4784C7.9541,5.4635 7.9413,5.4512 7.9237,5.4512Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7728,5.4779C7.7728,5.4581 7.7893,5.4437 7.8101,5.4437C7.8299,5.4437 7.8469,5.4581 7.8469,5.4779C7.8469,5.4976 7.8299,5.5152 7.8101,5.5152C7.7888,5.5157 7.7728,5.4981 7.7728,5.4779" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8101,5.52C7.7851,5.52 7.7664,5.5035 7.7664,5.4784C7.7664,5.4565 7.7851,5.4379 7.8101,5.4379C7.8336,5.4379 7.8539,5.4565 7.8539,5.4784C7.8539,5.5029 7.8336,5.52 7.8101,5.52ZM7.8101,5.4512C7.7931,5.4512 7.7787,5.4635 7.7787,5.4784C7.7787,5.4949 7.7925,5.5077 7.8101,5.5077C7.8261,5.5077 7.8405,5.4955 7.8405,5.4784C7.8405,5.4635 7.8261,5.4512 7.8101,5.4512Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8293,5.5781C7.8293,5.5573 7.8464,5.5408 7.8661,5.5408C7.888,5.5408 7.9035,5.5573 7.9035,5.5781C7.9035,5.5947 7.8875,5.6117 7.8661,5.6117C7.8464,5.6112 7.8293,5.5947 7.8293,5.5781" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8667,5.6187C7.8432,5.6187 7.8229,5.6 7.8229,5.5781C7.8229,5.5531 7.8432,5.5333 7.8667,5.5333C7.8917,5.5333 7.9104,5.5531 7.9104,5.5781C7.9104,5.6 7.8912,5.6187 7.8667,5.6187ZM7.8667,5.5467C7.8507,5.5467 7.8363,5.56 7.8363,5.5781C7.8363,5.592 7.8507,5.6059 7.8667,5.6059C7.8837,5.6059 7.8981,5.5925 7.8981,5.5781C7.8976,5.5605 7.8837,5.5467 7.8667,5.5467Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8533,5.6832C7.8533,5.6656 7.8693,5.6496 7.8901,5.6496C7.9104,5.6496 7.9269,5.6651 7.9269,5.6832C7.9269,5.7029 7.9099,5.7195 7.8901,5.7195C7.8693,5.72 7.8533,5.7029 7.8533,5.6832" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8901,5.7269C7.8667,5.7269 7.8464,5.7072 7.8464,5.6832C7.8464,5.6613 7.8661,5.6432 7.8901,5.6432C7.9141,5.6432 7.9339,5.6613 7.9339,5.6832C7.9339,5.7072 7.9136,5.7269 7.8901,5.7269ZM7.8901,5.656C7.8725,5.656 7.8603,5.6683 7.8603,5.6832C7.8603,5.7008 7.8725,5.7136 7.8901,5.7136C7.9067,5.7136 7.9205,5.7013 7.9205,5.6832C7.9205,5.6688 7.9067,5.656 7.8901,5.656Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8565,5.792C7.8565,5.7717 7.8731,5.7573 7.8939,5.7573C7.9147,5.7573 7.9312,5.7717 7.9312,5.792C7.9312,5.8112 7.9141,5.8277 7.8939,5.8277C7.8736,5.8283 7.8565,5.8112 7.8565,5.792" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8944,5.8325C7.8699,5.8325 7.8507,5.816 7.8507,5.7925C7.8507,5.7701 7.8699,5.7515 7.8944,5.7515C7.9189,5.7515 7.9381,5.7701 7.9381,5.7925C7.9381,5.8155 7.9189,5.8325 7.8944,5.8325ZM7.8944,5.7659C7.8779,5.7659 7.8629,5.7781 7.8629,5.7925C7.8629,5.8075 7.8773,5.8203 7.8944,5.8203C7.9109,5.8203 7.9253,5.808 7.9253,5.7925C7.9248,5.7781 7.9109,5.7659 7.8944,5.7659Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8229,5.8907C7.8229,5.8699 7.84,5.856 7.8603,5.856C7.8816,5.856 7.8976,5.8699 7.8976,5.8907C7.8976,5.9093 7.8811,5.9259 7.8603,5.9259C7.84,5.9259 7.8229,5.9093 7.8229,5.8907" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8603,5.9323C7.8363,5.9323 7.8165,5.9147 7.8165,5.8907C7.8165,5.8672 7.8363,5.8491 7.8603,5.8491C7.8853,5.8491 7.904,5.8672 7.904,5.8907C7.904,5.9147 7.8853,5.9323 7.8603,5.9323ZM7.8603,5.8619C7.8443,5.8619 7.8299,5.8747 7.8299,5.8907C7.8299,5.9067 7.8443,5.9189 7.8603,5.9189C7.8773,5.9189 7.8917,5.9067 7.8917,5.8907C7.8917,5.8747 7.8773,5.8619 7.8603,5.8619Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.76,5.9808C7.76,5.9616 7.7765,5.9451 7.7973,5.9451C7.8176,5.9451 7.8347,5.9616 7.8347,5.9808C7.8347,6 7.8176,6.0155 7.7973,6.0155C7.7771,6.0155 7.76,6 7.76,5.9808" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7979,6.0208C7.7733,6.0208 7.7541,6.0032 7.7541,5.9808C7.7541,5.9573 7.7733,5.9397 7.7979,5.9397C7.8219,5.9397 7.8416,5.9573 7.8416,5.9808C7.8416,6.0032 7.8219,6.0208 7.7979,6.0208ZM7.7979,5.9531C7.7808,5.9531 7.7664,5.9653 7.7664,5.9808C7.7664,5.9947 7.7808,6.0075 7.7979,6.0075C7.8139,6.0075 7.8283,5.9952 7.8283,5.9808C7.8283,5.9659 7.8139,5.9531 7.7979,5.9531Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.6859,5.4107C7.6859,5.3909 7.7029,5.3771 7.7227,5.3771C7.744,5.3771 7.76,5.3904 7.76,5.4107C7.76,5.4309 7.744,5.4448 7.7227,5.4448C7.7029,5.4448 7.6859,5.4309 7.6859,5.4107" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7227,5.4533C7.6992,5.4533 7.6789,5.4325 7.6789,5.4107C7.6789,5.3888 7.6992,5.3691 7.7227,5.3691C7.7472,5.3691 7.7664,5.3888 7.7664,5.4107C7.7664,5.4325 7.7477,5.4533 7.7227,5.4533ZM7.7227,5.3824C7.7067,5.3824 7.6928,5.3947 7.6928,5.4107C7.6928,5.4283 7.7067,5.4411 7.7227,5.4411C7.7403,5.4411 7.7536,5.4288 7.7536,5.4107C7.7541,5.3947 7.7408,5.3824 7.7227,5.3824Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.5851,5.3547C7.5851,5.3344 7.6011,5.32 7.6224,5.32C7.6421,5.32 7.6592,5.3344 7.6592,5.3547C7.6592,5.3739 7.6421,5.3904 7.6224,5.3904C7.6011,5.3904 7.5851,5.3739 7.5851,5.3547" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.6224,5.3947C7.5973,5.3947 7.5787,5.3781 7.5787,5.3547C7.5787,5.3312 7.5973,5.3136 7.6224,5.3136C7.6459,5.3136 7.6661,5.3312 7.6661,5.3547C7.6661,5.3781 7.6459,5.3947 7.6224,5.3947ZM7.6224,5.3269C7.6048,5.3269 7.5909,5.3403 7.5909,5.3547C7.5909,5.3696 7.6043,5.3824 7.6224,5.3824C7.6379,5.3824 7.6523,5.3701 7.6523,5.3547C7.6523,5.3408 7.6379,5.3269 7.6224,5.3269Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.4725,5.32C7.4725,5.3035 7.4896,5.2859 7.5099,5.2859C7.5307,5.2859 7.5472,5.3035 7.5472,5.32C7.5472,5.3408 7.5307,5.3563 7.5099,5.3563C7.4896,5.3563 7.4725,5.3408 7.4725,5.32" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.5104,5.3637C7.4864,5.3637 7.4667,5.344 7.4667,5.32C7.4667,5.2971 7.4864,5.28 7.5104,5.28C7.5355,5.28 7.5541,5.2971 7.5541,5.32C7.5541,5.344 7.5349,5.3637 7.5104,5.3637ZM7.5104,5.2933C7.4944,5.2933 7.4795,5.3056 7.4795,5.32C7.4795,5.3365 7.4944,5.3504 7.5104,5.3504C7.5275,5.3504 7.5419,5.3371 7.5419,5.32C7.5413,5.3056 7.5269,5.2933 7.5104,5.2933Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.3568,5.3019C7.3568,5.2811 7.3733,5.2656 7.3941,5.2656C7.4144,5.2656 7.4315,5.2811 7.4315,5.3019C7.4315,5.3195 7.4144,5.3355 7.3941,5.3355C7.3733,5.3355 7.3568,5.32 7.3568,5.3019" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.3941,5.3435C7.3691,5.3435 7.3504,5.3243 7.3504,5.3024C7.3504,5.2784 7.3691,5.2587 7.3941,5.2587C7.4181,5.2587 7.4379,5.2784 7.4379,5.3024C7.4379,5.3237 7.4181,5.3435 7.3941,5.3435ZM7.3941,5.272C7.3771,5.272 7.3627,5.2843 7.3627,5.3024C7.3627,5.3157 7.3771,5.3301 7.3941,5.3301C7.4101,5.3301 7.4245,5.3163 7.4245,5.3024C7.4245,5.2843 7.4107,5.272 7.3941,5.272Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2437,5.3029C7.2437,5.2821 7.2603,5.2683 7.2805,5.2683C7.3008,5.2683 7.3173,5.2821 7.3173,5.3029C7.3173,5.3216 7.3008,5.3381 7.2805,5.3381C7.2603,5.3387 7.2437,5.3221 7.2437,5.3029" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.28,5.3445C7.2565,5.3445 7.2363,5.3269 7.2363,5.3029C7.2363,5.2795 7.2565,5.2613 7.28,5.2613C7.3035,5.2613 7.3237,5.2795 7.3237,5.3029C7.3237,5.3269 7.304,5.3445 7.28,5.3445ZM7.28,5.2747C7.2629,5.2747 7.2501,5.2875 7.2501,5.3035C7.2501,5.3195 7.2624,5.3317 7.28,5.3317C7.2976,5.3317 7.3104,5.3195 7.3104,5.3035C7.3104,5.2875 7.2976,5.2747 7.28,5.2747Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.1253,5.3221C7.1253,5.3035 7.1413,5.2885 7.1621,5.2885C7.1819,5.2885 7.1989,5.3029 7.1989,5.3221C7.1989,5.3424 7.1819,5.3573 7.1621,5.3573C7.1413,5.3573 7.1253,5.3424 7.1253,5.3221" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.1621,5.3659C7.1381,5.3659 7.1184,5.3451 7.1184,5.3221C7.1184,5.3003 7.1381,5.2816 7.1621,5.2816C7.1856,5.2816 7.2059,5.3003 7.2059,5.3221C7.2059,5.3445 7.1856,5.3659 7.1621,5.3659ZM7.1621,5.2949C7.1445,5.2949 7.1317,5.3072 7.1317,5.3221C7.1317,5.3397 7.1445,5.3536 7.1621,5.3536C7.1787,5.3536 7.192,5.3403 7.192,5.3221C7.192,5.3072 7.1787,5.2949 7.1621,5.2949Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0155,5.3605C7.0155,5.3408 7.0315,5.3264 7.0523,5.3264C7.0725,5.3264 7.0891,5.3408 7.0891,5.3605C7.0891,5.3797 7.0725,5.3947 7.0523,5.3947C7.032,5.3947 7.0155,5.3797 7.0155,5.3605" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0523,5.4032C7.0288,5.4032 7.0085,5.3824 7.0085,5.3605C7.0085,5.3387 7.0288,5.3189 7.0523,5.3189C7.0757,5.3189 7.096,5.3387 7.096,5.3605C7.096,5.3824 7.0763,5.4032 7.0523,5.4032ZM7.0523,5.3323C7.0352,5.3323 7.0224,5.3445 7.0224,5.3605C7.0224,5.3781 7.0347,5.3909 7.0523,5.3909C7.0693,5.3909 7.0827,5.3787 7.0827,5.3605C7.0827,5.3445 7.0693,5.3323 7.0523,5.3323Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.1595,6.2645C5.1595,6.2437 5.1755,6.2283 5.1963,6.2283C5.216,6.2283 5.2325,6.2437 5.2325,6.2645C5.2325,6.2821 5.216,6.2981 5.1963,6.2981C5.1755,6.2981 5.1595,6.2821 5.1595,6.2645" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.1963,6.3045C5.1723,6.3045 5.1525,6.2864 5.1525,6.2645C5.1525,6.2405 5.1723,6.2208 5.1963,6.2208C5.2197,6.2208 5.2395,6.2405 5.2395,6.2645C5.2395,6.2864 5.2197,6.3045 5.1963,6.3045ZM5.1963,6.2341C5.1787,6.2341 5.1659,6.2464 5.1659,6.2645C5.1659,6.2779 5.1781,6.2923 5.1963,6.2923C5.2128,6.2923 5.2261,6.2784 5.2261,6.2645C5.2261,6.2469 5.2128,6.2341 5.1963,6.2341Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.1083,6.1728C5.1083,6.1531 5.1253,6.1392 5.1445,6.1392C5.1659,6.1392 5.1813,6.1525 5.1813,6.1728C5.1813,6.1931 5.1659,6.2069 5.1445,6.2069C5.1253,6.2075 5.1083,6.1931 5.1083,6.1728" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.1445,6.2155C5.1211,6.2155 5.1013,6.1947 5.1013,6.1728C5.1013,6.1509 5.1211,6.1323 5.1445,6.1323C5.1691,6.1323 5.1888,6.1509 5.1888,6.1728C5.1888,6.1947 5.1691,6.2155 5.1445,6.2155ZM5.1445,6.1445C5.1285,6.1445 5.1147,6.1568 5.1147,6.1728C5.1147,6.1904 5.128,6.2032 5.1445,6.2032C5.1627,6.2032 5.1755,6.1909 5.1755,6.1728C5.1755,6.1573 5.1632,6.1445 5.1445,6.1445Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.0752,6.0699C5.0752,6.0512 5.0912,6.0336 5.112,6.0336C5.1317,6.0336 5.1483,6.0512 5.1483,6.0699C5.1483,6.0907 5.1317,6.1045 5.112,6.1045C5.0912,6.1045 5.0752,6.0907 5.0752,6.0699" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.112,6.1115C5.088,6.1115 5.0677,6.0923 5.0677,6.0699C5.0677,6.0448 5.088,6.0283 5.112,6.0283C5.1355,6.0283 5.1552,6.0448 5.1552,6.0699C5.1552,6.0923 5.1355,6.1115 5.112,6.1115ZM5.112,6.0405C5.0944,6.0405 5.0816,6.0528 5.0816,6.0699C5.0816,6.0843 5.0939,6.0981 5.112,6.0981C5.1285,6.0981 5.1419,6.0848 5.1419,6.0699C5.1419,6.0533 5.1285,6.0405 5.112,6.0405Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.0699,5.9573C5.0699,5.9397 5.0869,5.9221 5.1067,5.9221C5.128,5.9221 5.144,5.9397 5.144,5.9573C5.144,5.9781 5.128,5.9931 5.1067,5.9931C5.0869,5.9931 5.0699,5.9781 5.0699,5.9573" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.1067,6C5.0832,6 5.0629,5.9813 5.0629,5.9573C5.0629,5.9333 5.0832,5.9157 5.1067,5.9157C5.1317,5.9157 5.1504,5.9333 5.1504,5.9573C5.1504,5.9813 5.1317,6 5.1067,6ZM5.1067,5.9296C5.0912,5.9296 5.0763,5.9419 5.0763,5.9573C5.0763,5.9728 5.0907,5.9867 5.1067,5.9867C5.1243,5.9867 5.1381,5.9733 5.1381,5.9573C5.1381,5.9424 5.1243,5.9296 5.1067,5.9296Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.0976,5.8469C5.0976,5.8283 5.1141,5.8133 5.1349,5.8133C5.1552,5.8133 5.1723,5.8277 5.1723,5.8469C5.1723,5.8672 5.1552,5.8821 5.1349,5.8821C5.1141,5.8821 5.0976,5.8672 5.0976,5.8469" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.1349,5.8907C5.1104,5.8907 5.0912,5.8699 5.0912,5.8469C5.0912,5.8251 5.1104,5.8064 5.1349,5.8064C5.1595,5.8064 5.1787,5.8251 5.1787,5.8469C5.1787,5.8699 5.1595,5.8907 5.1349,5.8907ZM5.1349,5.8197C5.1184,5.8197 5.1035,5.832 5.1035,5.8469C5.1035,5.8645 5.1179,5.8784 5.1349,5.8784C5.1509,5.8784 5.1659,5.8651 5.1659,5.8469C5.1659,5.8325 5.1509,5.8197 5.1349,5.8197Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.1541,5.7477C5.1541,5.728 5.1717,5.7136 5.1915,5.7136C5.2128,5.7136 5.2283,5.728 5.2283,5.7477C5.2283,5.768 5.2128,5.7819 5.1915,5.7819C5.1717,5.7824 5.1541,5.768 5.1541,5.7477" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.1915,5.7904C5.1675,5.7904 5.1472,5.7696 5.1472,5.7477C5.1472,5.7259 5.1675,5.7061 5.1915,5.7061C5.216,5.7061 5.2347,5.7259 5.2347,5.7477C5.2347,5.7696 5.216,5.7904 5.1915,5.7904ZM5.1915,5.72C5.1755,5.72 5.1611,5.7323 5.1611,5.7483C5.1611,5.7659 5.1749,5.7787 5.1915,5.7787C5.2085,5.7787 5.2224,5.7664 5.2224,5.7483C5.2224,5.7323 5.2091,5.72 5.1915,5.72Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.232,5.6656C5.232,5.6459 5.2475,5.6315 5.2683,5.6315C5.288,5.6315 5.3051,5.6459 5.3051,5.6656C5.3051,5.6853 5.288,5.7029 5.2683,5.7029C5.2475,5.7029 5.232,5.6853 5.232,5.6656" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.2683,5.7072C5.2443,5.7072 5.2245,5.6907 5.2245,5.6656C5.2245,5.6437 5.2443,5.6251 5.2683,5.6251C5.2917,5.6251 5.312,5.6437 5.312,5.6656C5.312,5.6907 5.2917,5.7072 5.2683,5.7072ZM5.2683,5.6384C5.2507,5.6384 5.2379,5.6507 5.2379,5.6656C5.2379,5.6821 5.2501,5.6949 5.2683,5.6949C5.2853,5.6949 5.2981,5.6827 5.2981,5.6656C5.2981,5.6512 5.2853,5.6384 5.2683,5.6384Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.3195,5.5979C5.3195,5.5781 5.336,5.5637 5.3568,5.5637C5.3771,5.5637 5.3941,5.5781 5.3941,5.5979C5.3941,5.6171 5.3765,5.632 5.3568,5.632C5.3355,5.6325 5.3195,5.6171 5.3195,5.5979" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.3568,5.6405C5.3317,5.6405 5.3131,5.6197 5.3131,5.5979C5.3131,5.576 5.3317,5.5563 5.3568,5.5563C5.3808,5.5563 5.4005,5.576 5.4005,5.5979C5.4005,5.6197 5.3808,5.6405 5.3568,5.6405ZM5.3568,5.5696C5.3397,5.5696 5.3253,5.5819 5.3253,5.5979C5.3253,5.6155 5.3392,5.6283 5.3568,5.6283C5.3728,5.6283 5.3872,5.616 5.3872,5.5979C5.3872,5.5824 5.3728,5.5696 5.3568,5.5696Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.4256,5.5424C5.4256,5.5221 5.4416,5.5077 5.4624,5.5077C5.4821,5.5077 5.4992,5.5221 5.4992,5.5424C5.4992,5.5621 5.4816,5.5781 5.4624,5.5781C5.4416,5.5781 5.4256,5.5621 5.4256,5.5424" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.4624,5.5824C5.4379,5.5824 5.4187,5.5659 5.4187,5.5424C5.4187,5.52 5.4379,5.5024 5.4624,5.5024C5.4859,5.5024 5.5061,5.52 5.5061,5.5424C5.5061,5.5659 5.4859,5.5824 5.4624,5.5824ZM5.4624,5.5157C5.4448,5.5157 5.4315,5.528 5.4315,5.5424C5.4315,5.5573 5.4448,5.5701 5.4624,5.5701C5.4789,5.5701 5.4923,5.5579 5.4923,5.5424C5.4923,5.528 5.4789,5.5157 5.4624,5.5157Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.5349,5.5029C5.5349,5.4821 5.5504,5.4683 5.5717,5.4683C5.5915,5.4683 5.6091,5.4821 5.6091,5.5029C5.6091,5.5205 5.5915,5.5381 5.5717,5.5381C5.5504,5.5387 5.5349,5.5211 5.5349,5.5029" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.5717,5.5445C5.5477,5.5445 5.5285,5.5269 5.5285,5.5029C5.5285,5.4795 5.5472,5.4603 5.5717,5.4603C5.5957,5.4603 5.6155,5.4795 5.6155,5.5029C5.6155,5.5269 5.5957,5.5445 5.5717,5.5445ZM5.5717,5.4741C5.5547,5.4741 5.5413,5.4875 5.5413,5.5035C5.5413,5.5195 5.5547,5.5317 5.5717,5.5317C5.5877,5.5317 5.6021,5.5195 5.6021,5.5035C5.6021,5.4875 5.5883,5.4741 5.5717,5.4741Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.6565,5.4811C5.6565,5.4613 5.6736,5.4448 5.6939,5.4448C5.7141,5.4448 5.7312,5.4613 5.7312,5.4811C5.7312,5.5008 5.7141,5.5152 5.6939,5.5152C5.6736,5.5152 5.6565,5.5008 5.6565,5.4811" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.6944,5.5221C5.6699,5.5221 5.6507,5.5035 5.6507,5.4816C5.6507,5.4576 5.6699,5.4411 5.6944,5.4411C5.7189,5.4411 5.7381,5.4576 5.7381,5.4816C5.7381,5.5029 5.7189,5.5221 5.6944,5.5221ZM5.6944,5.4533C5.6779,5.4533 5.6635,5.4656 5.6635,5.4816C5.6635,5.4949 5.6779,5.5088 5.6944,5.5088C5.7109,5.5088 5.7259,5.4955 5.7259,5.4816C5.7253,5.4656 5.7109,5.4533 5.6944,5.4533Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.7733,5.4752C5.7733,5.456 5.7904,5.4411 5.8101,5.4411C5.832,5.4411 5.8475,5.456 5.8475,5.4752C5.8475,5.4939 5.8315,5.5093 5.8101,5.5093C5.7904,5.5093 5.7733,5.4939 5.7733,5.4752" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.8101,5.5157C5.7867,5.5157 5.7664,5.4971 5.7664,5.4752C5.7664,5.4533 5.7867,5.4325 5.8101,5.4325C5.8352,5.4325 5.8539,5.4533 5.8539,5.4752C5.8539,5.4971 5.8352,5.5157 5.8101,5.5157ZM5.8101,5.4448C5.7941,5.4448 5.7797,5.4571 5.7797,5.4752C5.7797,5.4907 5.7941,5.5035 5.8101,5.5035C5.8277,5.5035 5.8416,5.4912 5.8416,5.4752C5.8416,5.4571 5.8277,5.4448 5.8101,5.4448Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.888,5.4779C5.888,5.4581 5.904,5.4437 5.9248,5.4437C5.9445,5.4437 5.9616,5.4581 5.9616,5.4779C5.9616,5.4976 5.9445,5.5152 5.9248,5.5152C5.904,5.5157 5.888,5.4981 5.888,5.4779" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9248,5.52C5.9003,5.52 5.8816,5.5035 5.8816,5.4784C5.8816,5.4565 5.9003,5.4379 5.9248,5.4379C5.9483,5.4379 5.9685,5.4565 5.9685,5.4784C5.9685,5.5029 5.9488,5.52 5.9248,5.52ZM5.9248,5.4512C5.9072,5.4512 5.8939,5.4635 5.8939,5.4784C5.8939,5.4949 5.9072,5.5077 5.9248,5.5077C5.9413,5.5077 5.9552,5.4955 5.9552,5.4784C5.9552,5.4635 5.9413,5.4512 5.9248,5.4512Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0016,5.4779C6.0016,5.4581 6.0187,5.4437 6.0384,5.4437C6.0603,5.4437 6.0757,5.4581 6.0757,5.4779C6.0757,5.4976 6.0603,5.5152 6.0384,5.5152C6.0187,5.5157 6.0016,5.4981 6.0016,5.4779" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0384,5.52C6.0149,5.52 5.9947,5.5035 5.9947,5.4784C5.9947,5.4565 6.0149,5.4379 6.0384,5.4379C6.0629,5.4379 6.0821,5.4565 6.0821,5.4784C6.0821,5.5029 6.0629,5.52 6.0384,5.52ZM6.0384,5.4512C6.0229,5.4512 6.0085,5.4635 6.0085,5.4784C6.0085,5.4949 6.0229,5.5077 6.0384,5.5077C6.056,5.5077 6.0693,5.4955 6.0693,5.4784C6.0693,5.4635 6.056,5.4512 6.0384,5.4512Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9445,5.5781C5.9445,5.5573 5.9616,5.5408 5.9819,5.5408C6.0021,5.5408 6.0192,5.5573 6.0192,5.5781C6.0192,5.5947 6.0021,5.6117 5.9819,5.6117C5.9616,5.6117 5.9445,5.5947 5.9445,5.5781" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9819,5.6187C5.9573,5.6187 5.9381,5.6 5.9381,5.5781C5.9381,5.5531 5.9573,5.5333 5.9819,5.5333C6.0064,5.5333 6.0256,5.5531 6.0256,5.5781C6.0256,5.6 6.0064,5.6187 5.9819,5.6187ZM5.9819,5.5467C5.9653,5.5467 5.9509,5.56 5.9509,5.5781C5.9509,5.592 5.9653,5.6059 5.9819,5.6059C5.9984,5.6059 6.0133,5.5925 6.0133,5.5781C6.0128,5.5605 5.9984,5.5467 5.9819,5.5467Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9221,5.6832C5.9221,5.6656 5.9381,5.6496 5.9589,5.6496C5.9792,5.6496 5.9957,5.6651 5.9957,5.6832C5.9957,5.7029 5.9792,5.7195 5.9589,5.7195C5.9381,5.72 5.9221,5.7029 5.9221,5.6832" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9584,5.7269C5.9349,5.7269 5.9147,5.7072 5.9147,5.6832C5.9147,5.6613 5.9349,5.6432 5.9584,5.6432C5.9819,5.6432 6.0021,5.6613 6.0021,5.6832C6.0021,5.7072 5.9819,5.7269 5.9584,5.7269ZM5.9584,5.656C5.9413,5.656 5.9285,5.6683 5.9285,5.6832C5.9285,5.7008 5.9408,5.7136 5.9584,5.7136C5.9755,5.7136 5.9883,5.7013 5.9883,5.6832C5.9888,5.6688 5.9755,5.656 5.9584,5.656Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9168,5.792C5.9168,5.7717 5.9344,5.7573 5.9541,5.7573C5.976,5.7573 5.9915,5.7717 5.9915,5.792C5.9915,5.8112 5.9755,5.8277 5.9541,5.8277C5.9339,5.8283 5.9168,5.8112 5.9168,5.792" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9541,5.8325C5.9307,5.8325 5.9104,5.816 5.9104,5.7925C5.9104,5.7701 5.9307,5.7515 5.9541,5.7515C5.9792,5.7515 5.9979,5.7701 5.9979,5.7925C5.9979,5.8155 5.9787,5.8325 5.9541,5.8325ZM5.9541,5.7659C5.9381,5.7659 5.9237,5.7781 5.9237,5.7925C5.9237,5.8075 5.9381,5.8203 5.9541,5.8203C5.9717,5.8203 5.9856,5.808 5.9856,5.7925C5.9851,5.7781 5.9712,5.7659 5.9541,5.7659Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9504,5.8907C5.9504,5.8699 5.9675,5.856 5.9877,5.856C6.0085,5.856 6.0251,5.8699 6.0251,5.8907C6.0251,5.9093 6.0085,5.9259 5.9877,5.9259C5.9675,5.9259 5.9504,5.9093 5.9504,5.8907" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9883,5.9323C5.9637,5.9323 5.9445,5.9147 5.9445,5.8907C5.9445,5.8672 5.9637,5.8491 5.9883,5.8491C6.0133,5.8491 6.032,5.8672 6.032,5.8907C6.032,5.9147 6.0128,5.9323 5.9883,5.9323ZM5.9883,5.8619C5.9717,5.8619 5.9573,5.8747 5.9573,5.8907C5.9573,5.9067 5.9717,5.9189 5.9883,5.9189C6.0048,5.9189 6.0197,5.9067 6.0197,5.8907C6.0197,5.8747 6.0048,5.8619 5.9883,5.8619Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0133,5.9808C6.0133,5.9616 6.0309,5.9451 6.0501,5.9451C6.0715,5.9451 6.0875,5.9616 6.0875,5.9808C6.0875,6 6.0715,6.0155 6.0501,6.0155C6.0309,6.0155 6.0133,6 6.0133,5.9808" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.0507,6.0208C6.0272,6.0208 6.0069,6.0032 6.0069,5.9808C6.0069,5.9573 6.0272,5.9397 6.0507,5.9397C6.0757,5.9397 6.0944,5.9573 6.0944,5.9808C6.0944,6.0032 6.0757,6.0208 6.0507,6.0208ZM6.0507,5.9531C6.0352,5.9531 6.0203,5.9653 6.0203,5.9808C6.0203,5.9947 6.0352,6.0075 6.0507,6.0075C6.0683,6.0075 6.0821,5.9952 6.0821,5.9808C6.0816,5.9659 6.0677,5.9531 6.0507,5.9531Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.088,5.4107C6.088,5.3909 6.104,5.3771 6.1253,5.3771C6.1451,5.3771 6.1627,5.3904 6.1627,5.4107C6.1627,5.4309 6.1451,5.4448 6.1253,5.4448C6.104,5.4448 6.088,5.4309 6.088,5.4107" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1253,5.4533C6.1003,5.4533 6.0816,5.4325 6.0816,5.4107C6.0816,5.3888 6.1003,5.3691 6.1253,5.3691C6.1488,5.3691 6.1691,5.3888 6.1691,5.4107C6.1691,5.4325 6.1493,5.4533 6.1253,5.4533ZM6.1253,5.3824C6.1083,5.3824 6.0939,5.3947 6.0939,5.4107C6.0939,5.4283 6.1077,5.4411 6.1253,5.4411C6.1413,5.4411 6.1557,5.4288 6.1557,5.4107C6.1557,5.3947 6.1413,5.3824 6.1253,5.3824Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1893,5.3547C6.1893,5.3344 6.2069,5.32 6.2261,5.32C6.248,5.32 6.2629,5.3344 6.2629,5.3547C6.2629,5.3739 6.2475,5.3904 6.2261,5.3904C6.2069,5.3904 6.1893,5.3739 6.1893,5.3547" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.2261,5.3947C6.2027,5.3947 6.1824,5.3781 6.1824,5.3547C6.1824,5.3312 6.2027,5.3136 6.2261,5.3136C6.2507,5.3136 6.2699,5.3312 6.2699,5.3547C6.2699,5.3781 6.2507,5.3947 6.2261,5.3947ZM6.2261,5.3269C6.2101,5.3269 6.1963,5.3403 6.1963,5.3547C6.1963,5.3696 6.2101,5.3824 6.2261,5.3824C6.2437,5.3824 6.2571,5.3701 6.2571,5.3547C6.2565,5.3408 6.2437,5.3269 6.2261,5.3269Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.3003,5.32C6.3003,5.3035 6.3173,5.2859 6.3376,5.2859C6.3584,5.2859 6.3749,5.3035 6.3749,5.32C6.3749,5.3408 6.3584,5.3563 6.3376,5.3563C6.3179,5.3563 6.3003,5.3408 6.3003,5.32" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.3381,5.3637C6.3141,5.3637 6.2944,5.344 6.2944,5.32C6.2944,5.2971 6.3141,5.28 6.3381,5.28C6.3632,5.28 6.3819,5.2971 6.3819,5.32C6.3819,5.344 6.3632,5.3637 6.3381,5.3637ZM6.3381,5.2933C6.3221,5.2933 6.3072,5.3056 6.3072,5.32C6.3072,5.3365 6.3216,5.3504 6.3381,5.3504C6.3552,5.3504 6.3696,5.3371 6.3696,5.32C6.3691,5.3056 6.3552,5.2933 6.3381,5.2933Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.4171,5.3019C6.4171,5.2811 6.4341,5.2656 6.4539,5.2656C6.4757,5.2656 6.4912,5.2811 6.4912,5.3019C6.4912,5.3195 6.4752,5.3355 6.4539,5.3355C6.4341,5.3355 6.4171,5.32 6.4171,5.3019" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.4539,5.3435C6.4304,5.3435 6.4101,5.3243 6.4101,5.3024C6.4101,5.2784 6.4304,5.2587 6.4539,5.2587C6.4789,5.2587 6.4976,5.2784 6.4976,5.3024C6.4976,5.3237 6.4789,5.3435 6.4539,5.3435ZM6.4539,5.272C6.4379,5.272 6.424,5.2843 6.424,5.3024C6.424,5.3157 6.4379,5.3301 6.4539,5.3301C6.4715,5.3301 6.4853,5.3163 6.4853,5.3024C6.4853,5.2843 6.4715,5.272 6.4539,5.272Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.5317,5.3029C6.5317,5.2821 6.5477,5.2683 6.5685,5.2683C6.5883,5.2683 6.6053,5.2821 6.6053,5.3029C6.6053,5.3216 6.5883,5.3381 6.5685,5.3381C6.5477,5.3387 6.5317,5.3221 6.5317,5.3029" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.5685,5.3445C6.5445,5.3445 6.5248,5.3269 6.5248,5.3029C6.5248,5.2795 6.544,5.2613 6.5685,5.2613C6.592,5.2613 6.6123,5.2795 6.6123,5.3029C6.6117,5.3269 6.592,5.3445 6.5685,5.3445ZM6.5685,5.2747C6.5509,5.2747 6.5381,5.2875 6.5381,5.3035C6.5381,5.3195 6.5509,5.3317 6.5685,5.3317C6.5851,5.3317 6.5984,5.3195 6.5984,5.3035C6.5984,5.2875 6.5851,5.2747 6.5685,5.2747Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.6501,5.3221C6.6501,5.3035 6.6667,5.2885 6.6869,5.2885C6.7072,5.2885 6.7237,5.3029 6.7237,5.3221C6.7237,5.3424 6.7072,5.3573 6.6869,5.3573C6.6667,5.3573 6.6501,5.3424 6.6501,5.3221" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.6869,5.3659C6.6635,5.3659 6.6432,5.3451 6.6432,5.3221C6.6432,5.3003 6.6629,5.2816 6.6869,5.2816C6.7104,5.2816 6.7307,5.3003 6.7307,5.3221C6.7301,5.3445 6.7104,5.3659 6.6869,5.3659ZM6.6869,5.2949C6.6693,5.2949 6.6571,5.3072 6.6571,5.3221C6.6571,5.3397 6.6693,5.3536 6.6869,5.3536C6.704,5.3536 6.7168,5.3413 6.7168,5.3221C6.7168,5.3072 6.704,5.2949 6.6869,5.2949Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.7595,5.3605C6.7595,5.3408 6.7755,5.3264 6.7963,5.3264C6.8165,5.3264 6.8331,5.3408 6.8331,5.3605C6.8331,5.3797 6.8165,5.3947 6.7963,5.3947C6.7755,5.3947 6.7595,5.3797 6.7595,5.3605" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.7963,5.4032C6.7728,5.4032 6.7525,5.3824 6.7525,5.3605C6.7525,5.3387 6.7728,5.3189 6.7963,5.3189C6.8197,5.3189 6.84,5.3387 6.84,5.3605C6.84,5.3824 6.8197,5.4032 6.7963,5.4032ZM6.7963,5.3323C6.7787,5.3323 6.7664,5.3445 6.7664,5.3605C6.7664,5.3781 6.7787,5.3909 6.7963,5.3909C6.8128,5.3909 6.8261,5.3787 6.8261,5.3605C6.8261,5.3445 6.8128,5.3323 6.7963,5.3323Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.8192,7.6075L5.7877,7.6075L5.7877,7.5781L5.7323,7.5781L5.7323,7.7029L5.7877,7.7029L5.7877,7.7872L5.6693,7.7872L5.6693,8.0384L5.7317,8.0384L5.7317,8.5387L5.6069,8.5387L5.6069,8.7947L6.5691,8.7947L6.5691,8.5387L6.4443,8.5387L6.4443,8.0384L6.5067,8.0384L6.5067,7.7872L6.3893,7.7872L6.3893,7.7029L6.4443,7.7029L6.4443,7.5781L6.3893,7.5781L6.3893,7.6075L6.3579,7.6075L6.3579,7.5781L6.304,7.5781L6.304,7.6075L6.264,7.6075L6.264,7.5781L6.2101,7.5781L6.2101,7.7029L6.264,7.7029L6.264,7.7872L6.1477,7.7872L6.1477,7.5152L6.2101,7.5152L6.2101,7.3893L6.1477,7.3893L6.1477,7.4197L6.1163,7.4197L6.1163,7.3893L6.0608,7.3893L6.0608,7.4197L6.0293,7.4197L6.0293,7.3893L5.9664,7.3893L5.9664,7.5152L6.0293,7.5152L6.0293,7.7872L5.9125,7.7872L5.9125,7.7029L5.9664,7.7029L5.9664,7.5781L5.9125,7.5781L5.9125,7.6075L5.8811,7.6075L5.8811,7.5781L5.8187,7.5781L5.8187,7.6075L5.8192,7.6075ZM5.6075,8.7947L6.5696,8.7947M5.6075,8.7323L6.5696,8.7323M5.6075,8.6699L6.5696,8.6699M5.6075,8.6075L6.5696,8.6075M5.6075,8.5387L6.5696,8.5387M5.7323,8.4821L6.4443,8.4821M5.7323,8.4197L6.4443,8.4197M5.7323,8.3509L6.4443,8.3509M5.7323,8.2885L6.4443,8.2885M5.7323,8.2261L6.4443,8.2261M5.7323,8.1637L6.4443,8.1637M5.7323,8.1008L6.4443,8.1008M5.6699,8.0384L6.5067,8.0384M5.6699,7.9749L6.5067,7.9749M5.6699,7.9125L6.5067,7.9125M5.6699,7.8501L6.5067,7.8501M5.7883,7.7877L6.3893,7.7877M6.0299,7.7248L6.1477,7.7248M6.0299,7.6624L6.1477,7.6624M6.0299,7.6L6.1477,7.6M6.0299,7.5376L6.1477,7.5376M5.9669,7.4571L6.2101,7.4571M5.7883,7.7248L5.9131,7.7248M5.7323,7.6448L5.9669,7.6448M5.7323,8.7947L5.7323,8.7323M5.7323,8.6699L5.7323,8.6075M5.6699,8.6699L5.6699,8.7323M5.7883,8.7323L5.7883,8.6699M5.8507,8.7947L5.8507,8.7323M5.8507,8.6699L5.8507,8.6075M5.8507,8.5387L5.8507,8.4827M5.8507,8.4197L5.8507,8.3509M5.7883,8.6075L5.7883,8.5387M5.6699,8.6075L5.6699,8.5387M5.9131,8.5387L5.9131,8.6075M5.9669,8.5387L5.9669,8.4827M5.7883,8.4197L5.7883,8.4821M5.9131,8.4197L5.9131,8.4821M6.0299,8.4197L6.0299,8.4821M5.9669,8.4197L5.9669,8.3509M6.0299,8.2885L6.0299,8.3509M6.0299,8.1637L6.0299,8.2261M5.9669,8.1008L5.9669,8.1632M6.0299,8.0384L6.0299,8.1008M5.9131,8.0384L5.9131,8.1008M5.7883,8.0384L5.7883,8.1008M5.7323,7.9749L5.7323,8.0384M5.8507,7.9749L5.8507,8.0384M5.9669,7.9749L5.9669,8.0384M6.0299,7.9125L6.0299,7.9749M5.9131,7.9125L5.9131,7.9749M5.7883,7.9125L5.7883,7.9749M5.7323,7.8501L5.7323,7.9125M5.9669,7.8501L5.9669,7.9125M5.8507,7.7248L5.8507,7.7872M6.3893,7.7248L6.264,7.7248M6.4443,7.6448L6.2101,7.6448M6.4443,8.7947L6.4443,8.7323M6.4443,8.6699L6.4443,8.6075M6.5067,8.6699L6.5067,8.7323M6.3893,8.7323L6.3893,8.6699M6.3264,8.7947L6.3264,8.7323M6.3264,8.6699L6.3264,8.6075M6.3264,8.5387L6.3264,8.4827M6.3264,8.4197L6.3264,8.3509M6.3893,8.6075L6.3893,8.5387M6.5067,8.6075L6.5067,8.5387M6.264,8.5387L6.264,8.6075M6.2101,8.5387L6.2101,8.4827M6.3893,8.4197L6.3893,8.4821M6.264,8.4197L6.264,8.4821M6.1477,8.4197L6.1477,8.4821M6.2101,8.4197L6.2101,8.3509M6.1477,8.2885L6.1477,8.3509M6.1477,8.1637L6.1477,8.2261M6.2101,8.1008L6.2101,8.1632M6.1477,8.0384L6.1477,8.1008M6.264,8.0384L6.264,8.1008M6.3893,8.0384L6.3893,8.1008M6.4443,7.9749L6.4443,8.0384M6.3264,7.9749L6.3264,8.0384M6.2101,7.9749L6.2101,8.0384M6.1477,7.9125L6.1477,7.9749M6.264,7.9125L6.264,7.9749M6.3893,7.9125L6.3893,7.9749M6.4443,7.8501L6.4443,7.9125M6.2101,7.8501L6.2101,7.9125M6.3264,7.7248L6.3264,7.7872M6.0853,8.4197L6.0853,8.3509M6.0853,8.1637L6.0853,8.1013M6.0853,8.2885L6.0853,8.2261M6.0853,8.0384L6.0853,7.9749M6.0853,7.9125L6.0853,7.8501M6.0853,7.7248L6.0853,7.6624M6.0853,7.6L6.0853,7.5376M5.7883,7.7029L5.9131,7.7029M6.0299,7.5157L6.1477,7.5157M6.264,7.7029L6.3893,7.7029" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.5771,8.8032L5.6005,8.8032L5.6005,8.5307L5.7253,8.5307L5.7253,8.0448L5.6629,8.0448L5.6629,7.7797L5.7792,7.7797L5.7792,7.7072L5.7253,7.7072L5.7253,7.5685L5.7947,7.5685L5.7947,7.6L5.8107,7.6L5.8107,7.5685L5.8885,7.5685L5.8885,7.6L5.904,7.6L5.904,7.5685L5.9749,7.5685L5.9749,7.7072L5.92,7.7072L5.92,7.7797L6.0224,7.7797L6.0224,7.52L5.96,7.52L5.96,7.3813L6.0379,7.3813L6.0379,7.4128L6.0539,7.4128L6.0539,7.3813L6.1232,7.3813L6.1232,7.4128L6.1387,7.4128L6.1387,7.3813L6.2165,7.3813L6.2165,7.52L6.1547,7.52L6.1547,7.7797L6.2565,7.7797L6.2565,7.7072L6.2011,7.7072L6.2011,7.5685L6.272,7.5685L6.272,7.6L6.2949,7.6L6.2949,7.5685L6.3659,7.5685L6.3659,7.6L6.3813,7.6L6.3813,7.5685L6.4512,7.5685L6.4512,7.7072L6.3968,7.7072L6.3968,7.7797L6.5136,7.7797L6.5136,8.0448L6.4512,8.0448L6.4512,8.5307L6.576,8.5307L6.576,8.8032L6.5771,8.8032ZM6.4517,8.7888L6.5616,8.7888L6.5616,8.7408L6.4517,8.7408L6.4517,8.7888ZM6.3349,8.7888L6.4357,8.7888L6.4357,8.7408L6.3349,8.7408L6.3349,8.7888ZM5.8576,8.7888L6.3195,8.7888L6.3195,8.7408L5.8576,8.7408L5.8576,8.7888ZM5.7413,8.7888L5.8416,8.7888L5.8416,8.7408L5.7413,8.7408L5.7413,8.7888ZM5.6165,8.7888L5.7259,8.7888L5.7259,8.7408L5.6165,8.7408L5.6165,8.7888ZM6.3979,8.7259L6.4987,8.7259L6.4987,8.6779L6.3979,8.6779L6.3979,8.7259ZM5.7947,8.7259L6.3819,8.7259L6.3819,8.6779L5.7947,8.6779L5.7947,8.7259L5.7947,8.7259ZM5.6789,8.7259L5.7792,8.7259L5.7792,8.6779L5.6789,8.6779L5.6789,8.7259ZM6.4517,8.6635L6.5616,8.6635L6.5616,8.6155L6.4517,8.6155L6.4517,8.6635ZM6.3349,8.6635L6.4357,8.6635L6.4357,8.6155L6.3349,8.6155L6.3349,8.6635ZM5.8576,8.6635L6.3195,8.6635L6.3195,8.6155L5.8576,8.6155L5.8576,8.6635ZM5.7413,8.6635L5.8416,8.6635L5.8416,8.6155L5.7413,8.6155L5.7413,8.6635ZM5.6165,8.6635L5.7259,8.6635L5.7259,8.6155L5.6165,8.6155L5.6165,8.6635ZM6.5141,8.6011L6.5611,8.6011L6.5611,8.5451L6.5141,8.5451L6.5141,8.6011ZM6.3979,8.6011L6.4987,8.6011L6.4987,8.5451L6.3979,8.5451L6.3979,8.6011ZM6.2725,8.6011L6.3819,8.6011L6.3819,8.5451L6.2725,8.5451L6.2725,8.6011ZM5.92,8.6011L6.2565,8.6011L6.2565,8.5451L5.92,8.5451L5.92,8.6011ZM5.7947,8.6011L5.9045,8.6011L5.9045,8.5451L5.7947,8.5451L5.7947,8.6011ZM5.6789,8.6011L5.7792,8.6011L5.7792,8.5451L5.6789,8.5451L5.6789,8.6011ZM5.6165,8.6011L5.6629,8.6011L5.6629,8.5451L5.6165,8.5451L5.6165,8.6011ZM6.3349,8.5307L6.4357,8.5307L6.4357,8.4907L6.3349,8.4907L6.3349,8.5307ZM6.2171,8.5307L6.3189,8.5307L6.3189,8.4907L6.2171,8.4907L6.2171,8.5307ZM5.9755,8.5307L6.2016,8.5307L6.2016,8.4907L5.9755,8.4907L5.9755,8.5307ZM5.8576,8.5307L5.96,8.5307L5.96,8.4907L5.8576,8.4907L5.8576,8.5307ZM5.7413,8.5307L5.8416,8.5307L5.8416,8.4907L5.7413,8.4907L5.7413,8.5307ZM6.2725,8.4763L6.3819,8.4763L6.3819,8.4283L6.2725,8.4283L6.2725,8.4763ZM6.1547,8.4763L6.2565,8.4763L6.2565,8.4283L6.1547,8.4283L6.1547,8.4763ZM6.0379,8.4763L6.1387,8.4763L6.1387,8.4283L6.0379,8.4283L6.0379,8.4763ZM5.92,8.4763L6.0224,8.4763L6.0224,8.4283L5.92,8.4283L5.92,8.4763ZM5.7947,8.4763L5.9045,8.4763L5.9045,8.4283L5.7947,8.4283L5.7947,8.4763ZM6.3349,8.4133L6.4357,8.4133L6.4357,8.3573L6.3349,8.3573L6.3349,8.4133ZM6.2171,8.4133L6.3189,8.4133L6.3189,8.3573L6.2171,8.3573L6.2171,8.4133ZM6.0917,8.4133L6.2016,8.4133L6.2016,8.3573L6.0917,8.3573L6.0917,8.4133ZM5.9755,8.4133L6.0763,8.4133L6.0763,8.3573L5.9755,8.3573L5.9755,8.4133ZM5.8576,8.4133L5.96,8.4133L5.96,8.3573L5.8576,8.3573L5.8576,8.4133ZM5.7413,8.4133L5.8416,8.4133L5.8416,8.3573L5.7413,8.3573L5.7413,8.4133ZM6.1547,8.3424L6.4363,8.3424L6.4363,8.2949L6.1547,8.2949L6.1547,8.3424ZM6.0379,8.3424L6.1387,8.3424L6.1387,8.2949L6.0379,8.2949L6.0379,8.3424ZM5.7413,8.3424L6.0224,8.3424L6.0224,8.2949L5.7413,8.2949L5.7413,8.3424ZM6.0917,8.2795L6.4363,8.2795L6.4363,8.232L6.0917,8.232L6.0917,8.2795ZM5.7413,8.2795L6.0763,8.2795L6.0763,8.232L5.7413,8.232L5.7413,8.2795ZM6.1547,8.2171L6.4363,8.2171L6.4363,8.1696L6.1547,8.1696L6.1547,8.2171ZM6.0379,8.2171L6.1387,8.2171L6.1387,8.1696L6.0379,8.1696L6.0379,8.2171ZM5.7413,8.2171L6.0224,8.2171L6.0224,8.1696L5.7413,8.1696L5.7413,8.2171ZM6.2171,8.1547L6.4363,8.1547L6.4363,8.1072L6.2171,8.1072L6.2171,8.1547ZM6.0917,8.1547L6.2016,8.1547L6.2016,8.1072L6.0917,8.1072L6.0917,8.1547ZM5.9755,8.1547L6.0763,8.1547L6.0763,8.1072L5.9755,8.1072L5.9755,8.1547ZM5.7413,8.1547L5.96,8.1547L5.96,8.1072L5.7413,8.1072L5.7413,8.1547ZM6.2725,8.0923L6.3819,8.0923L6.3819,8.0448L6.2725,8.0448L6.2725,8.0923ZM6.1547,8.0923L6.2565,8.0923L6.2565,8.0448L6.1547,8.0448L6.1547,8.0923ZM6.0379,8.0923L6.1387,8.0923L6.1387,8.0448L6.0379,8.0448L6.0379,8.0923ZM5.92,8.0923L6.0224,8.0923L6.0224,8.0448L5.92,8.0448L5.92,8.0923ZM5.7947,8.0923L5.9045,8.0923L5.9045,8.0448L5.7947,8.0448L5.7947,8.0923ZM6.3349,8.0299L6.4357,8.0299L6.4357,7.9824L6.3349,7.9824L6.3349,8.0299ZM6.2171,8.0299L6.3189,8.0299L6.3189,7.9824L6.2171,7.9824L6.2171,8.0299ZM6.0917,8.0299L6.2016,8.0299L6.2016,7.9824L6.0917,7.9824L6.0917,8.0299ZM5.9755,8.0299L6.0763,8.0299L6.0763,7.9824L5.9755,7.9824L5.9755,8.0299ZM5.8576,8.0299L5.96,8.0299L5.96,7.9824L5.8576,7.9824L5.8576,8.0299ZM5.7413,8.0299L5.8416,8.0299L5.8416,7.9824L5.7413,7.9824L5.7413,8.0299ZM6.3979,7.9669L6.4987,7.9669L6.4987,7.92L6.3979,7.92L6.3979,7.9669ZM6.2725,7.9669L6.3819,7.9669L6.3819,7.92L6.2725,7.92L6.2725,7.9669ZM6.1547,7.9669L6.2565,7.9669L6.2565,7.92L6.1547,7.92L6.1547,7.9669ZM6.0379,7.9669L6.1387,7.9669L6.1387,7.92L6.0379,7.92L6.0379,7.9669ZM5.92,7.9669L6.0224,7.9669L6.0224,7.92L5.92,7.92L5.92,7.9669ZM5.7947,7.9669L5.9045,7.9669L5.9045,7.92L5.7947,7.92L5.7947,7.9669ZM5.6789,7.9669L5.7792,7.9669L5.7792,7.92L5.6789,7.92L5.6789,7.9669ZM6.2171,7.9045L6.4363,7.9045L6.4363,7.8571L6.2171,7.8571L6.2171,7.9045ZM6.0917,7.9045L6.2016,7.9045L6.2016,7.8571L6.0917,7.8571L6.0917,7.9045ZM5.9755,7.9045L6.0763,7.9045L6.0763,7.8571L5.9755,7.8571L5.9755,7.9045ZM5.7413,7.9045L5.96,7.9045L5.96,7.8571L5.7413,7.8571L5.7413,7.9045ZM5.6789,7.8421L6.4987,7.8421L6.4987,7.7947L5.6789,7.7947L5.6789,7.8421ZM6.0379,7.7797L6.1387,7.7797L6.1387,7.7323L6.0379,7.7323L6.0379,7.7797ZM6.2725,7.7173L6.3819,7.7173L6.3819,7.7072L6.2725,7.7072L6.2725,7.7173ZM5.7947,7.7173L5.9045,7.7173L5.9045,7.7072L5.7947,7.7072L5.7947,7.7173ZM6.3893,7.6939L6.4363,7.6939L6.4363,7.6549L6.2171,7.6549L6.2171,7.6939L6.3893,7.6939ZM5.9131,7.6939L5.96,7.6939L5.96,7.6549L5.7413,7.6549L5.7413,7.6939L5.9131,7.6939ZM6.0379,7.6549L6.1387,7.6549L6.1387,7.6075L6.0379,7.6075L6.0379,7.6549ZM6.2171,7.6405L6.4363,7.6405L6.4363,7.5824L6.3979,7.5824L6.3979,7.616L6.3509,7.616L6.3509,7.5824L6.3115,7.5824L6.3115,7.616L6.2571,7.616L6.2571,7.5824L6.2176,7.5824L6.2176,7.6405L6.2171,7.6405ZM5.7413,7.6405L5.96,7.6405L5.96,7.5824L5.92,7.5824L5.92,7.616L5.8731,7.616L5.8731,7.5824L5.8261,7.5824L5.8261,7.616L5.7797,7.616L5.7797,7.5824L5.7419,7.5824L5.7419,7.6405L5.7413,7.6405ZM6.0379,7.5296L6.1387,7.5296L6.1387,7.52L6.0379,7.52L6.0379,7.5296ZM6.1477,7.5061L6.2016,7.5061L6.2016,7.4672L5.9755,7.4672L5.9755,7.5061L6.1477,7.5061ZM5.9755,7.4533L6.2016,7.4533L6.2016,7.3952L6.1547,7.3952L6.1547,7.4288L6.1077,7.4288L6.1077,7.3952L6.0693,7.3952L6.0693,7.4288L6.0229,7.4288L6.0229,7.3952L5.976,7.3952L5.976,7.4533L5.9755,7.4533Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.2485,8.7947C6.2485,8.7179 6.2485,8.6635 6.2485,8.6309C6.2485,8.6005 6.2331,8.5061 6.0853,8.5061C5.9445,8.5061 5.9291,8.6011 5.9291,8.6309C5.9291,8.6635 5.9291,8.7179 5.9291,8.7947L6.2485,8.7947Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.2565,8.8032L5.92,8.8032L5.92,8.6315C5.92,8.6085 5.9291,8.4992 6.0853,8.4992C6.248,8.4992 6.2571,8.6085 6.2571,8.6315L6.2571,8.8032L6.2565,8.8032ZM5.9355,8.7888L6.2411,8.7888L6.2411,8.6315C6.2411,8.6128 6.2331,8.5157 6.0848,8.5157C5.9429,8.5157 5.9355,8.6128 5.9355,8.6315L5.9355,8.7888L5.9355,8.7888Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9824,8.6405L5.9045,8.6309C5.9045,8.6005 5.9131,8.5531 5.936,8.5381L6.0069,8.5931C5.9984,8.6011 5.9824,8.624 5.9824,8.6405Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9915,8.648L5.8976,8.6395L5.8976,8.6309C5.8976,8.5947 5.9067,8.5477 5.9317,8.5307L5.936,8.5275L6.0181,8.5915L6.0117,8.5973C6.0032,8.6053 5.9909,8.6277 5.9909,8.64L5.9909,8.648L5.9915,8.648ZM5.9131,8.6251L5.9755,8.6315C5.9787,8.6187 5.9877,8.6032 5.9947,8.5941L5.936,8.5472C5.9216,8.5627 5.9131,8.5947 5.9131,8.6251Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1941,8.6405L6.2725,8.6309C6.2725,8.6005 6.264,8.5531 6.2411,8.5381L6.1701,8.5931C6.1787,8.6011 6.1941,8.624 6.1941,8.6405Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1861,8.648L6.1861,8.6405C6.1861,8.6283 6.1728,8.6059 6.1653,8.5979L6.1589,8.592L6.2411,8.528L6.2443,8.5312C6.2704,8.5477 6.2789,8.5947 6.2789,8.6315L6.2789,8.64L6.1861,8.648ZM6.1819,8.5936C6.1888,8.6032 6.1979,8.6181 6.2005,8.6309L6.264,8.6245C6.2629,8.5941 6.256,8.5621 6.2416,8.5467L6.1819,8.5936Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1163,8.5616L6.1547,8.4907C6.1392,8.4821 6.1077,8.4763 6.0853,8.4763C6.0693,8.4763 6.0384,8.4827 6.0229,8.4907L6.0613,8.5616C6.0768,8.5616 6.1003,8.5616 6.1163,8.5616Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.12,8.5685L6.0565,8.5685L6.0112,8.4885L6.0192,8.4821C6.0352,8.4768 6.0677,8.4672 6.0853,8.4672C6.1104,8.4672 6.1419,8.4773 6.1584,8.4821L6.1664,8.4885L6.12,8.5685ZM6.0667,8.5531L6.1115,8.5531L6.1445,8.4949C6.1291,8.4896 6.104,8.4827 6.0853,8.4827C6.0731,8.4827 6.0485,8.4901 6.0331,8.4949L6.0667,8.5531Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9669,8.3659C5.9669,8.3659 5.9669,8.2411 5.9669,8.1941C5.9669,8.1461 5.9355,8.1077 5.8816,8.1077C5.8261,8.1077 5.7947,8.1461 5.7947,8.1941C5.7947,8.2411 5.7947,8.3659 5.7947,8.3659L5.9669,8.3659Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9755,8.3739L5.7877,8.3739L5.7877,8.1936C5.7877,8.1392 5.8251,8.1008 5.8816,8.1008C5.9365,8.1008 5.9755,8.1392 5.9755,8.1936L5.9755,8.3739ZM5.8037,8.3573L5.96,8.3573L5.96,8.1936C5.96,8.1547 5.9349,8.1157 5.8816,8.1157C5.8272,8.1157 5.8037,8.1547 5.8037,8.1936L5.8037,8.3573L5.8037,8.3573Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.2101,8.3659C6.2101,8.3659 6.2101,8.2411 6.2101,8.1941C6.2101,8.1461 6.2416,8.1077 6.2955,8.1077C6.3509,8.1077 6.3819,8.1461 6.3819,8.1941C6.3819,8.2411 6.3819,8.3659 6.3819,8.3659L6.2101,8.3659Z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.3888,8.3739L6.2011,8.3739L6.2011,8.1936C6.2011,8.1392 6.24,8.1008 6.2949,8.1008C6.3504,8.1008 6.3888,8.1392 6.3888,8.1936L6.3888,8.3739ZM6.2171,8.3573L6.3733,8.3573L6.3733,8.1936C6.3733,8.1547 6.3499,8.1157 6.2949,8.1157C6.2411,8.1157 6.2171,8.1547 6.2171,8.1936L6.2171,8.3573L6.2171,8.3573Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1477,7.944l0.0155,-0.1563l-0.1488,0l0.0085,0.1563z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1541,7.9531L6.0149,7.9531L6.0069,7.7797L6.1717,7.7797L6.1541,7.9531ZM6.0288,7.9355L6.1403,7.9355L6.1536,7.7947L6.0224,7.7947L6.0288,7.9355Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.264,7.944l-0.0155,-0.1563l0.1563,0l-0.0155,0.1563z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.3968,7.9531L6.2565,7.9531L6.24,7.7797L6.4128,7.7797L6.3968,7.9531ZM6.2715,7.9355L6.3819,7.9355L6.3968,7.7947L6.2565,7.7947L6.2715,7.9355Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9131,7.944l0.0069,-0.1563l-0.1472,0l0.0155,0.1563z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9195,7.9531L5.7808,7.9531L5.7632,7.7797L5.9291,7.7797L5.9195,7.9531ZM5.7941,7.9355L5.9051,7.9355L5.9131,7.7947L5.7808,7.7947L5.7941,7.9355Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1941,8.7947C6.1941,8.7323 6.1941,8.6779 6.1941,8.6555C6.1941,8.6309 6.1787,8.5611 6.0848,8.5611C5.9979,8.5611 5.9824,8.6309 5.9824,8.6555C5.9824,8.6779 5.9824,8.7323 5.9824,8.7947L6.1941,8.7947ZM5.9515,8.3509C5.9515,8.3509 5.9515,8.2405 5.9515,8.2032C5.9515,8.1637 5.9291,8.1232 5.8821,8.1232C5.8357,8.1232 5.8112,8.1637 5.8112,8.2032C5.8112,8.2405 5.8112,8.3509 5.8112,8.3509L5.9515,8.3509ZM6.2256,8.3509C6.2256,8.3509 6.2256,8.2405 6.2256,8.2032C6.2256,8.1637 6.2485,8.1232 6.2955,8.1232C6.3424,8.1232 6.3664,8.1637 6.3664,8.2032C6.3664,8.2405 6.3664,8.3509 6.3664,8.3509L6.2256,8.3509Z" + android:strokeWidth="1" + android:fillColor="#0039F0" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.3883,9.048C6.3883,8.7072 6.6352,8.4299 6.9381,8.4299C7.2416,8.4299 7.488,8.7077 7.488,9.048C7.488,9.3909 7.2416,9.6672 6.9381,9.6672C6.6352,9.6672 6.3883,9.3904 6.3883,9.048" + android:strokeWidth="1" + android:fillColor="#AD1519" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9381,9.6779C6.6288,9.6779 6.3781,9.3947 6.3781,9.0475C6.3781,8.7029 6.6288,8.4192 6.9381,8.4192C7.248,8.4192 7.4981,8.7024 7.4981,9.0475C7.4981,9.3947 7.2475,9.6779 6.9381,9.6779ZM6.9381,8.4405C6.6416,8.4405 6.3984,8.7136 6.3984,9.048C6.3984,9.3824 6.6416,9.6576 6.9381,9.6576C7.2352,9.6576 7.4784,9.3824 7.4784,9.048C7.4784,8.7136 7.2352,8.4405 6.9381,8.4405Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.5509,9.0459C6.5509,8.7947 6.7253,8.5936 6.9381,8.5936C7.152,8.5936 7.3259,8.7947 7.3259,9.0459C7.3259,9.2981 7.1525,9.5019 6.9381,9.5019C6.7248,9.5019 6.5509,9.2981 6.5509,9.0459" + android:strokeWidth="1" + android:fillColor="#005BBF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9381,9.5115C6.7195,9.5115 6.5413,9.3029 6.5413,9.0459C6.5413,8.7904 6.7189,8.5824 6.9381,8.5824C7.1573,8.5824 7.3355,8.7909 7.3355,9.0459C7.3349,9.3029 7.1568,9.5115 6.9381,9.5115ZM6.9381,8.6032C6.7312,8.6032 6.5621,8.8032 6.5621,9.0459C6.5621,9.2923 6.7312,9.4907 6.9381,9.4907C7.1461,9.4907 7.3152,9.2923 7.3152,9.0459C7.3152,8.8032 7.1461,8.6032 6.9381,8.6032Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.7557,8.7344C6.7557,8.7344 6.7104,8.7845 6.7104,8.8325C6.7104,8.8784 6.7291,8.9184 6.7291,8.9184C6.7227,8.8992 6.704,8.8853 6.6821,8.8853C6.6544,8.8853 6.6315,8.9072 6.6315,8.9323C6.6315,8.9408 6.6357,8.9531 6.6389,8.9595L6.656,8.9936C6.6608,8.9813 6.6741,8.9744 6.6885,8.9744C6.7093,8.9744 6.7259,8.9904 6.7259,9.0075C6.7259,9.0117 6.7253,9.016 6.7243,9.0176L6.6827,9.0176L6.6827,9.0533L6.72,9.0533L6.6923,9.1067L6.7296,9.0928L6.7563,9.1237L6.7851,9.0928L6.8203,9.1067L6.7936,9.0533L6.8299,9.0533L6.8299,9.0176L6.7888,9.0176C6.7888,9.016 6.7888,9.0117 6.7888,9.0075C6.7888,8.9909 6.8048,8.9744 6.8235,8.9744C6.8384,8.9744 6.8512,8.9813 6.8571,8.9936L6.8731,8.9595C6.8768,8.9531 6.8821,8.9408 6.8821,8.9323C6.8821,8.9072 6.8597,8.8853 6.8315,8.8853C6.8091,8.8853 6.7904,8.8987 6.7829,8.9184C6.7829,8.9184 6.8027,8.8784 6.8027,8.8325C6.8027,8.7845 6.7557,8.7344 6.7557,8.7344" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.7557,9.128L6.7557,9.128C6.7541,9.128 6.7525,9.128 6.7509,9.128L6.7264,9.0987L6.6944,9.1115C6.6917,9.1131 6.6891,9.112 6.688,9.1088C6.6859,9.1067 6.6853,9.1056 6.6869,9.1024L6.7099,9.0565L6.6816,9.0565C6.6784,9.0565 6.6763,9.0549 6.6763,9.0523L6.6763,9.0165C6.6763,9.0149 6.6784,9.0107 6.6816,9.0107L6.7189,9.0107C6.7189,9.0085 6.7189,9.0075 6.7189,9.0064C6.7189,8.9925 6.7051,8.9787 6.6875,8.9787C6.6752,8.9787 6.6645,8.9845 6.6597,8.9936C6.6597,8.9957 6.6571,8.9968 6.6549,8.9979C6.6533,8.9979 6.6501,8.9957 6.6501,8.9936L6.6336,8.9621C6.6309,8.9557 6.6251,8.9424 6.6251,8.9307C6.6251,8.9013 6.6501,8.8789 6.6811,8.8789C6.6917,8.8789 6.7035,8.8805 6.7125,8.8891C6.7072,8.8715 6.7035,8.8517 6.7035,8.8309C6.7035,8.7851 6.744,8.7392 6.7499,8.7307C6.752,8.7264 6.7568,8.7264 6.7595,8.7296C6.7648,8.736 6.8075,8.784 6.8075,8.8304C6.8075,8.8512 6.8032,8.8709 6.8,8.8885C6.8085,8.88 6.8187,8.8784 6.8309,8.8784C6.8619,8.8784 6.8869,8.9008 6.8869,8.9301C6.8869,8.9413 6.8811,8.9541 6.8784,8.9616L6.8619,8.9931C6.8603,8.9952 6.8592,8.9973 6.8565,8.9973C6.8539,8.9979 6.8523,8.9952 6.8507,8.9931C6.8475,8.9835 6.8363,8.9781 6.8224,8.9781C6.8064,8.9781 6.7931,8.9915 6.7931,9.0059C6.7931,9.0069 6.7931,9.008 6.7931,9.0101L6.8288,9.0101C6.832,9.0101 6.8347,9.0144 6.8347,9.016L6.8347,9.0517C6.8347,9.0544 6.832,9.056 6.8288,9.056L6.8021,9.056L6.8251,9.1019C6.8251,9.1051 6.8251,9.1061 6.8245,9.1083C6.8224,9.1115 6.8197,9.1125 6.8181,9.1109L6.7851,9.0981L6.76,9.1275C6.7589,9.128 6.7568,9.128 6.7557,9.128ZM6.7291,9.0864C6.7296,9.0864 6.7317,9.0875 6.7323,9.0896L6.7563,9.1157L6.7797,9.0896C6.7819,9.0864 6.7845,9.0853 6.7861,9.0875L6.8085,9.0949L6.7883,9.0549C6.7872,9.0533 6.7877,9.0523 6.7883,9.0491C6.7888,9.0469 6.7915,9.0448 6.7931,9.0448L6.824,9.0448L6.824,9.0219L6.7883,9.0219C6.7856,9.0219 6.784,9.0197 6.7824,9.0187C6.7819,9.0155 6.7819,9.0112 6.7819,9.0075C6.7819,8.9867 6.8005,8.9691 6.8229,8.9691C6.8373,8.9691 6.848,8.9733 6.8565,8.9824L6.8677,8.9573C6.872,8.952 6.8752,8.9408 6.8752,8.9323C6.8752,8.9104 6.8555,8.8907 6.8309,8.8907C6.8128,8.8907 6.7973,8.9019 6.7909,8.9157C6.7888,8.9189 6.7877,8.92 6.7877,8.92C6.7872,8.9232 6.7835,8.9243 6.7808,8.9221C6.7787,8.9211 6.776,8.9189 6.7776,8.9157C6.7781,8.9147 6.7781,8.9115 6.7797,8.9083C6.7845,8.8976 6.7963,8.8683 6.7963,8.832C6.7963,8.7947 6.7659,8.7568 6.7552,8.7435C6.744,8.7568 6.7152,8.7947 6.7152,8.832C6.7152,8.8667 6.7264,8.8976 6.7312,8.9093C6.7317,8.9115 6.7333,8.9147 6.7344,8.9157C6.7344,8.9189 6.7339,8.9211 6.7312,8.9221C6.7285,8.9243 6.7248,8.9232 6.7232,8.92C6.7232,8.92 6.7221,8.9189 6.7211,8.9157C6.7125,8.9013 6.6976,8.8907 6.6811,8.8907C6.656,8.8907 6.6357,8.9104 6.6357,8.9323C6.6357,8.9408 6.64,8.9509 6.6437,8.9573L6.656,8.9824C6.6624,8.9728 6.6747,8.9691 6.6875,8.9691C6.7115,8.9691 6.7307,8.9867 6.7307,9.0075C6.7307,9.0128 6.7301,9.016 6.7285,9.0187C6.7285,9.0197 6.7253,9.0219 6.7232,9.0219L6.688,9.0219L6.688,9.0448L6.7195,9.0448C6.7216,9.0448 6.7227,9.0469 6.7243,9.0491C6.7253,9.0523 6.7253,9.0533 6.7248,9.0549L6.704,9.0949L6.7259,9.0875C6.7264,9.0864 6.728,9.0864 6.7291,9.0864Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.6821,9.0533l0.1472,0l0,-0.0357l-0.1472,0z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8352,9.0571L6.6768,9.0571L6.6768,9.0112L6.8352,9.0112L6.8352,9.0571ZM6.688,9.0448L6.824,9.0448L6.824,9.0219L6.688,9.0219L6.688,9.0448Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.1157,8.7344C7.1157,8.7344 7.0693,8.7845 7.0693,8.8325C7.0693,8.8784 7.088,8.9184 7.088,8.9184C7.0816,8.8992 7.0629,8.8853 7.0416,8.8853C7.0133,8.8853 6.9909,8.9072 6.9909,8.9323C6.9909,8.9408 6.9947,8.9531 6.9984,8.9595L7.0155,8.9936C7.0203,8.9813 7.0336,8.9744 7.048,8.9744C7.0688,8.9744 7.0853,8.9904 7.0853,9.0075C7.0853,9.0117 7.0848,9.016 7.0837,9.0176L7.0421,9.0176L7.0421,9.0533L7.0795,9.0533L7.0517,9.1067L7.0885,9.0928L7.1163,9.1237L7.1451,9.0928L7.1803,9.1067L7.1536,9.0533L7.1899,9.0533L7.1899,9.0176L7.1488,9.0176C7.1488,9.016 7.1488,9.0117 7.1488,9.0075C7.1488,8.9909 7.1643,8.9744 7.184,8.9744C7.1989,8.9744 7.2117,8.9813 7.2176,8.9936L7.2336,8.9595C7.2373,8.9531 7.2427,8.9408 7.2427,8.9323C7.2427,8.9072 7.2203,8.8853 7.192,8.8853C7.1701,8.8853 7.1515,8.8987 7.144,8.9184C7.144,8.9184 7.1637,8.8784 7.1637,8.8325C7.1621,8.7845 7.1152,8.7344 7.1157,8.7344" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.1157,9.128C7.1136,9.128 7.1125,9.128 7.1104,9.128L7.0859,9.0987L7.0539,9.1115C7.0512,9.1131 7.0485,9.112 7.0475,9.1088C7.0453,9.1067 7.0448,9.1056 7.0464,9.1024L7.0688,9.0565L7.0411,9.0565C7.0379,9.0565 7.0357,9.0549 7.0357,9.0523L7.0357,9.0165C7.0357,9.0149 7.0379,9.0107 7.0411,9.0107L7.0784,9.0107C7.0784,9.0085 7.0784,9.0075 7.0784,9.0064C7.0784,8.9925 7.0645,8.9787 7.0469,8.9787C7.0347,8.9787 7.0245,8.9845 7.0187,8.9936C7.0187,8.9957 7.0155,8.9989 7.0144,8.9979C7.0123,8.9979 7.0096,8.9957 7.0096,8.9936L6.9931,8.9621C6.9899,8.9557 6.9845,8.9424 6.9845,8.9307C6.9845,8.9013 7.0096,8.8789 7.0405,8.8789C7.0512,8.8789 7.0624,8.8805 7.072,8.8891C7.0667,8.8715 7.0624,8.8517 7.0624,8.8309C7.0624,8.7851 7.1035,8.7381 7.1093,8.7307C7.112,8.7264 7.1168,8.7264 7.1184,8.7296C7.1248,8.736 7.1669,8.784 7.1669,8.8304C7.1669,8.8512 7.1621,8.8709 7.1595,8.8885C7.168,8.88 7.1781,8.8784 7.1899,8.8784C7.2213,8.8784 7.2469,8.9008 7.2469,8.9301C7.2469,8.9413 7.2405,8.9541 7.2373,8.9616L7.2213,8.9931C7.2197,8.9952 7.2176,8.9973 7.216,8.9973C7.2133,8.9973 7.2117,8.9952 7.2101,8.9931C7.2064,8.9835 7.1957,8.9781 7.1824,8.9781C7.1659,8.9781 7.1525,8.9915 7.1525,9.0059C7.1525,9.0069 7.1525,9.008 7.1525,9.0101L7.1883,9.0101C7.1915,9.0101 7.1936,9.0144 7.1936,9.016L7.1936,9.0517C7.1936,9.0544 7.1915,9.056 7.1883,9.056L7.1611,9.056L7.1845,9.1019C7.1851,9.1051 7.1845,9.1061 7.184,9.1083C7.1813,9.1115 7.1792,9.1125 7.1776,9.1109L7.144,9.0981L7.1189,9.1275C7.1189,9.128 7.1163,9.128 7.1157,9.128ZM7.088,9.0864C7.0891,9.0864 7.0912,9.0875 7.0912,9.0896L7.1152,9.1157L7.1387,9.0896C7.1408,9.0864 7.1435,9.0853 7.1451,9.0875L7.1675,9.0949L7.1472,9.0549C7.1461,9.0533 7.1467,9.0523 7.1472,9.0491C7.1477,9.0469 7.1499,9.0448 7.152,9.0448L7.1829,9.0448L7.1829,9.0219L7.1472,9.0219C7.1445,9.0219 7.1429,9.0197 7.1419,9.0187C7.1413,9.0155 7.1413,9.0123 7.1413,9.0075C7.1413,8.9867 7.16,8.9691 7.1829,8.9691C7.1968,8.9691 7.208,8.9733 7.2165,8.9824L7.2277,8.9573C7.2315,8.952 7.2352,8.9408 7.2352,8.9323C7.2352,8.9104 7.2155,8.8907 7.1909,8.8907C7.1733,8.8907 7.1573,8.9019 7.1509,8.9157C7.1493,8.9189 7.1483,8.92 7.1483,8.92C7.1477,8.9232 7.144,8.9243 7.1413,8.9232C7.1387,8.9211 7.1365,8.9189 7.1387,8.9157C7.1387,8.9147 7.1392,8.9115 7.1408,8.9083C7.1445,8.8976 7.1573,8.8672 7.1573,8.832C7.1573,8.7947 7.1264,8.7568 7.1163,8.7435C7.1045,8.7568 7.0763,8.7947 7.0763,8.832C7.0763,8.8667 7.0875,8.8976 7.0923,8.9093C7.0928,8.9115 7.0944,8.9147 7.0949,8.9157C7.0949,8.9189 7.0949,8.9211 7.0923,8.9232C7.0891,8.9243 7.0859,8.9232 7.0843,8.92C7.0843,8.92 7.0827,8.9189 7.0821,8.9157C7.0736,8.9013 7.0587,8.8907 7.0421,8.8907C7.0171,8.8907 6.9968,8.9104 6.9968,8.9323C6.9968,8.9408 7.0011,8.9509 7.0048,8.9573L7.0171,8.9824C7.0235,8.9728 7.0357,8.9691 7.0485,8.9691C7.0725,8.9691 7.0912,8.9867 7.0912,9.0075C7.0912,9.0128 7.0907,9.016 7.0896,9.0187C7.0891,9.0197 7.0869,9.0219 7.0843,9.0219L7.0485,9.0219L7.0485,9.0448L7.08,9.0448C7.0821,9.0448 7.0832,9.0469 7.0853,9.0491C7.0864,9.0523 7.0864,9.0533 7.0853,9.0549L7.064,9.0949L7.0864,9.0875C7.0864,9.0864 7.0875,9.0864 7.088,9.0864Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0416,9.0533l0.1472,0l0,-0.0357l-0.1472,0z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.1947,9.0571L7.0363,9.0571L7.0363,9.0112L7.1947,9.0112L7.1947,9.0571ZM7.0475,9.0448L7.1835,9.0448L7.1835,9.0219L7.0475,9.0219L7.0475,9.0448Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9349,9.0448C6.9349,9.0448 6.8891,9.0949 6.8891,9.1408C6.8891,9.1888 6.9088,9.2283 6.9088,9.2283C6.9013,9.2075 6.8827,9.1947 6.8603,9.1947C6.8325,9.1947 6.8096,9.2155 6.8096,9.2432C6.8096,9.2523 6.8149,9.2635 6.8187,9.2699L6.8347,9.3035C6.8411,9.2912 6.8533,9.2827 6.8683,9.2827C6.8875,9.2827 6.9035,9.2992 6.9035,9.3184C6.9035,9.32 6.9035,9.3243 6.9035,9.3285L6.8624,9.3285L6.8624,9.3621L6.8987,9.3621L6.872,9.4165L6.9067,9.4043L6.9344,9.4336L6.9627,9.4043L7,9.4165L6.9723,9.3621L7.0096,9.3621L7.0096,9.328L6.968,9.328C6.9669,9.3237 6.9664,9.3195 6.9664,9.3179C6.9664,9.2987 6.9829,9.2821 7.0037,9.2821C7.0181,9.2821 7.0309,9.2907 7.0363,9.3029L7.0539,9.2693C7.0565,9.2629 7.0613,9.2517 7.0613,9.2427C7.0613,9.2149 7.0384,9.1941 7.0101,9.1941C6.9877,9.1941 6.9691,9.2064 6.9632,9.2277C6.9632,9.2277 6.9819,9.1883 6.9819,9.1403C6.9819,9.0949 6.9349,9.0448 6.9349,9.0448" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.9349,9.4395C6.9339,9.4395 6.9317,9.4373 6.9317,9.4363L6.9067,9.4069L6.8736,9.4192C6.872,9.4203 6.8693,9.4192 6.8672,9.4192C6.8661,9.4176 6.8661,9.4149 6.8661,9.4139L6.8896,9.3664L6.8629,9.3664C6.8592,9.3664 6.8565,9.3648 6.8565,9.3605L6.8565,9.328C6.8565,9.3227 6.8592,9.3195 6.8629,9.3195L6.8987,9.3195C6.8987,9.3195 6.8987,9.3184 6.8987,9.3179C6.8987,9.3029 6.8848,9.2901 6.8683,9.2901C6.8549,9.2901 6.8437,9.2944 6.84,9.3051C6.8389,9.3067 6.8368,9.3067 6.8347,9.3067C6.832,9.3067 6.8309,9.3067 6.8293,9.3051L6.8128,9.2704C6.8101,9.2651 6.8037,9.2528 6.8037,9.2427C6.8037,9.2139 6.8293,9.1899 6.8603,9.1899C6.872,9.1899 6.8827,9.1925 6.8912,9.1973C6.8875,9.1819 6.8832,9.1632 6.8832,9.1403C6.8832,9.0944 6.9232,9.0475 6.9296,9.04C6.9312,9.0379 6.9376,9.0379 6.9397,9.04C6.9445,9.0453 6.9877,9.0944 6.9877,9.1403C6.9877,9.1632 6.984,9.1819 6.9787,9.1973C6.9877,9.1925 6.9989,9.1899 7.0096,9.1899C7.0411,9.1899 7.0661,9.2139 7.0661,9.2427C7.0661,9.2528 7.0608,9.2651 7.0576,9.2704L7.0411,9.3051C7.0411,9.3067 7.0379,9.3067 7.0363,9.3067L7.0363,9.3067C7.0352,9.3067 7.0315,9.3067 7.0315,9.3051C7.0261,9.2939 7.016,9.2901 7.0037,9.2901C6.9861,9.2901 6.9723,9.3024 6.9723,9.3179C6.9723,9.3184 6.9723,9.3195 6.9723,9.3195L7.0096,9.3195C7.0123,9.3195 7.0149,9.3227 7.0149,9.328L7.0149,9.3616C7.0149,9.3659 7.0123,9.3675 7.0096,9.3675L6.9813,9.3675L7.0048,9.4149C7.0064,9.416 7.0059,9.4187 7.0037,9.4203C7.0032,9.4203 7.0005,9.4213 6.9973,9.4203L6.9653,9.408L6.9392,9.4373C6.9381,9.4373 6.9371,9.4395 6.9349,9.4395ZM6.9077,9.3947C6.9104,9.3947 6.9109,9.3947 6.9131,9.3968L6.9355,9.424L6.9605,9.3968C6.9611,9.3947 6.9632,9.3947 6.9669,9.3947L6.9888,9.4048L6.968,9.3659C6.9675,9.3627 6.9675,9.3595 6.968,9.3573C6.9696,9.3573 6.9707,9.3563 6.9733,9.3563L7.0048,9.3563L7.0048,9.3323L6.9696,9.3323C6.9675,9.3323 6.9643,9.3307 6.9643,9.328C6.9632,9.3248 6.9627,9.3195 6.9627,9.3179C6.9627,9.2944 6.9813,9.2779 7.0053,9.2779C7.0176,9.2779 7.0304,9.2821 7.0368,9.2901L7.0491,9.2667C7.0528,9.2576 7.0571,9.2485 7.0571,9.2427C7.0571,9.2192 7.0363,9.2016 7.0117,9.2016C6.9952,9.2016 6.9797,9.2091 6.9712,9.2245C6.9707,9.2277 6.9696,9.2293 6.9696,9.2293C6.968,9.232 6.9643,9.232 6.9616,9.232C6.9589,9.2309 6.9584,9.2277 6.9584,9.2245C6.9595,9.2224 6.9611,9.2192 6.9616,9.2192C6.9664,9.2069 6.9776,9.1776 6.9776,9.1403C6.9776,9.1056 6.9483,9.0651 6.9365,9.0528C6.9253,9.0651 6.896,9.1056 6.896,9.1403C6.896,9.1776 6.9077,9.2069 6.9131,9.2192C6.9141,9.2192 6.9141,9.2213 6.9152,9.2245C6.9168,9.2277 6.9147,9.2309 6.912,9.232C6.9093,9.232 6.9061,9.232 6.9051,9.2293C6.9051,9.2293 6.9045,9.2277 6.9019,9.2235C6.8955,9.2091 6.88,9.2016 6.8619,9.2016C6.8373,9.2016 6.8176,9.2192 6.8176,9.2427C6.8176,9.2491 6.8208,9.2587 6.8245,9.2651L6.8363,9.2901C6.8448,9.2816 6.8555,9.2779 6.8699,9.2779C6.8923,9.2779 6.9115,9.2944 6.9115,9.3179C6.9115,9.3195 6.9115,9.3248 6.9109,9.328C6.9099,9.3307 6.9083,9.3323 6.9056,9.3323L6.8699,9.3323L6.8699,9.3563L6.9008,9.3563C6.9019,9.3563 6.9056,9.3573 6.9056,9.3573C6.9067,9.3595 6.9067,9.3627 6.9056,9.3659L6.8853,9.4048L6.9077,9.3947C6.9067,9.3947 6.9067,9.3947 6.9077,9.3947Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.8629,9.3616l0.1472,0l0,-0.0336l-0.1472,0z" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0155,9.3669L6.8565,9.3669L6.8565,9.3195L7.0155,9.3195L7.0155,9.3669ZM6.8683,9.3563L7.0037,9.3563L7.0037,9.3323L6.8683,9.3323L6.8683,9.3563Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0357,7.4155L8.0256,7.4155C8.0256,7.4155 8.0219,7.4229 8.0171,7.4277C8.0085,7.4352 7.9952,7.4363 7.9883,7.4293C7.9856,7.4267 7.9824,7.4192 7.984,7.4155C7.9787,7.4187 7.9728,7.4187 7.9669,7.4155C7.9573,7.4101 7.9557,7.3979 7.9621,7.3893C7.9632,7.3861 7.9632,7.3819 7.9659,7.3819L7.9648,7.3696L7.9536,7.3749L7.9499,7.3813C7.9419,7.3909 7.9323,7.3909 7.9259,7.3867C7.9232,7.3824 7.9216,7.3781 7.9216,7.3781C7.9216,7.3781 7.9189,7.3808 7.9157,7.3813C7.8976,7.3856 7.8901,7.3451 7.8896,7.3344L7.8837,7.344C7.8837,7.344 7.8885,7.3685 7.8859,7.3888C7.8837,7.4075 7.8757,7.4283 7.8757,7.4283C7.9013,7.4336 7.9392,7.456 7.9765,7.4837C8.0139,7.5141 8.0437,7.544 8.056,7.5659C8.056,7.5659 8.0747,7.5557 8.0955,7.5493C8.1157,7.5424 8.1408,7.5424 8.1408,7.5424L8.1488,7.5333C8.1371,7.5365 8.0949,7.5397 8.0965,7.52C8.0965,7.5173 8.0981,7.5157 8.0987,7.5157C8.0987,7.5157 8.0912,7.5157 8.088,7.5125C8.0821,7.5072 8.0821,7.4971 8.0891,7.4907L8.0949,7.4832L8.0955,7.472L8.0837,7.4752C8.0832,7.4773 8.0805,7.4784 8.0779,7.4784C8.0693,7.488 8.056,7.488 8.0491,7.4811C8.0453,7.4773 8.0432,7.4699 8.0464,7.4661C8.04,7.4661 8.0352,7.4661 8.0304,7.464C8.0213,7.4576 8.0203,7.4453 8.0277,7.4357C8.0304,7.4315 8.0368,7.4261 8.0368,7.4251L8.0357,7.4155" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0544,7.5707L8.0533,7.5685C8.0411,7.5445 8.0107,7.5152 7.9755,7.4885C7.9387,7.4592 7.9013,7.4405 7.8763,7.4325L7.8715,7.4315L7.8736,7.4283C7.8736,7.4283 7.88,7.4075 7.8827,7.3877C7.8859,7.3691 7.88,7.3451 7.88,7.3451L7.88,7.3435L7.8955,7.3211L7.8955,7.3344C7.8955,7.3467 7.9024,7.3781 7.9141,7.3781C7.9141,7.3781 7.9141,7.3781 7.9152,7.3781C7.9173,7.3781 7.9173,7.3771 7.9184,7.376L7.9237,7.368L7.9264,7.3781L7.9264,7.3781C7.9264,7.3797 7.9285,7.3824 7.9296,7.3824C7.9301,7.3835 7.9323,7.3835 7.9333,7.3835C7.9387,7.3835 7.9429,7.3824 7.9467,7.3781L7.9509,7.3696L7.9696,7.3653L7.9696,7.3829L7.9691,7.3851C7.968,7.3861 7.9669,7.3883 7.9669,7.3904L7.9669,7.3904C7.9637,7.3947 7.9627,7.4 7.9637,7.4027C7.9637,7.4069 7.9669,7.4091 7.9696,7.4112C7.9733,7.4155 7.9776,7.4155 7.9824,7.4117L7.9888,7.4069L7.9888,7.4155C7.9888,7.4197 7.9888,7.424 7.992,7.4277C7.9973,7.4309 8.0075,7.4304 8.0144,7.4235C8.0187,7.4192 8.0224,7.4149 8.0235,7.4139L8.0235,7.4107L8.0261,7.4096L8.0373,7.4085L8.0405,7.4107L8.0421,7.4139L8.0448,7.4272L8.0421,7.4272C8.0405,7.4288 8.0357,7.4315 8.0325,7.4379C8.0299,7.4416 8.0288,7.4453 8.0299,7.4523C8.0299,7.4539 8.0325,7.4565 8.0352,7.4565C8.0389,7.4597 8.0421,7.4608 8.0464,7.4587L8.0549,7.4565L8.0517,7.4651C8.0517,7.4693 8.0517,7.4736 8.0549,7.4773C8.0613,7.4816 8.0704,7.4816 8.0779,7.4763C8.0784,7.4752 8.08,7.4741 8.08,7.4731C8.0805,7.472 8.0827,7.4699 8.0827,7.4699L8.0827,7.4688L8.1013,7.4672L8.1013,7.4859L8.0944,7.4912C8.0917,7.4939 8.0891,7.5003 8.0901,7.5024C8.0907,7.5056 8.0923,7.5067 8.0923,7.5067C8.0939,7.5067 8.0976,7.5077 8.0987,7.5088L8.1109,7.5088L8.1024,7.5184L8.1003,7.52C8.1003,7.5211 8.1008,7.5232 8.1029,7.5253C8.1067,7.5285 8.1184,7.5317 8.1339,7.5317C8.1408,7.5317 8.1461,7.5317 8.1488,7.5312L8.1627,7.5285L8.1445,7.5451L8.1419,7.5451C8.1419,7.5451 8.1168,7.5451 8.0976,7.5536C8.0779,7.5579 8.0587,7.5701 8.0587,7.5701L8.0544,7.5707ZM7.8816,7.4261C7.9088,7.4325 7.944,7.4533 7.9792,7.4816C8.0139,7.5077 8.0443,7.5376 8.0576,7.5595C8.0645,7.5563 8.0789,7.5499 8.0939,7.5451C8.1029,7.5424 8.1109,7.5408 8.1189,7.5408C8.1099,7.5397 8.1003,7.5355 8.0965,7.5312C8.0939,7.528 8.0917,7.5237 8.0917,7.52C8.0917,7.52 8.0917,7.5189 8.0923,7.5184C8.0912,7.5173 8.0875,7.5173 8.0869,7.5157C8.0832,7.5147 8.0816,7.5093 8.0805,7.5056C8.0789,7.4992 8.0811,7.4923 8.0864,7.4853L8.0875,7.4843L8.0907,7.4821L8.0907,7.4779L8.0869,7.4779C8.0859,7.4795 8.0848,7.4805 8.0848,7.4811C8.0843,7.4811 8.0832,7.4821 8.0821,7.4821C8.072,7.4907 8.0565,7.4923 8.0475,7.4821C8.0443,7.4795 8.0411,7.4747 8.0411,7.4699C8.0379,7.4699 8.0325,7.4688 8.0288,7.4656C8.0245,7.4645 8.0213,7.4571 8.0192,7.4533C8.0192,7.4448 8.0192,7.4411 8.0245,7.4325C8.0261,7.4299 8.0309,7.4261 8.0336,7.4229L8.032,7.4197L8.0288,7.4197C8.0267,7.4219 8.0229,7.4283 8.0197,7.4309C8.0101,7.4411 7.9941,7.4411 7.9851,7.4325C7.9819,7.4299 7.9797,7.4272 7.9787,7.4213C7.9739,7.4224 7.9691,7.4213 7.9632,7.4203C7.9589,7.416 7.9552,7.4123 7.9536,7.4069C7.9525,7.4005 7.9536,7.3931 7.9573,7.3872L7.9579,7.3851C7.9589,7.3829 7.9595,7.3829 7.9595,7.3819L7.9595,7.3787L7.9552,7.3787L7.9531,7.3829C7.9435,7.3941 7.9291,7.3952 7.9216,7.3915C7.9205,7.3904 7.9184,7.3872 7.9184,7.384C7.9173,7.3851 7.9157,7.3851 7.9157,7.3851C7.9147,7.3861 7.9125,7.3861 7.9125,7.3861C7.9013,7.3861 7.8939,7.3765 7.8907,7.3653C7.8907,7.3707 7.8907,7.3803 7.8907,7.3904C7.888,7.4032 7.8853,7.4181 7.8816,7.4261Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.96,7.4384C7.9611,7.4352 7.9653,7.4352 7.9675,7.4384C7.9696,7.4405 7.9712,7.4437 7.9691,7.4448C7.968,7.4459 7.9643,7.4459 7.9616,7.4448C7.9595,7.4432 7.9579,7.4405 7.96,7.4384" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0757,7.5408C8.0741,7.5408 8.0731,7.5408 8.0704,7.5408C8.0693,7.5397 8.0677,7.5365 8.0677,7.5344C8.0677,7.5323 8.0683,7.5323 8.0693,7.5312C8.0704,7.528 8.0752,7.528 8.0784,7.5312C8.0789,7.5323 8.0811,7.5333 8.0811,7.5365C8.0811,7.5387 8.0811,7.5408 8.0795,7.5408C8.0789,7.5408 8.0773,7.5408 8.0757,7.5408Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9856,7.3344l-0.0192,0.0011l-0.0037,0.0304l0.0011,0.0043l0.0053,0l0.0251,-0.0165l-0.0085,-0.0192" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9317,7.3531l0,0.0165l0.0315,0.0043l0.0037,-0.0043l0,-0.0043l-0.0181,-0.0235l-0.0171,0.0112" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9963,7.3888l-0.0171,0.0075l-0.0181,-0.0229l-0.0005,-0.0048l0.0059,-0.0027l0.0315,0.0043l-0.0016,0.0187" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9557,7.3659C7.9584,7.3605 7.9643,7.3584 7.9691,7.3627C7.9733,7.3659 7.9755,7.3701 7.9723,7.3749C7.9691,7.3781 7.9627,7.3808 7.9589,7.3781C7.9541,7.376 7.9541,7.3696 7.9557,7.3659" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9637,7.3824C7.9616,7.3824 7.9595,7.3824 7.9568,7.3824C7.9541,7.3797 7.9504,7.3781 7.9504,7.3728C7.9499,7.3696 7.9504,7.3653 7.9515,7.3632C7.9563,7.3557 7.9648,7.3541 7.9712,7.3568C7.9744,7.3589 7.976,7.3643 7.9776,7.3669C7.9781,7.3696 7.9781,7.3739 7.9749,7.3781C7.9733,7.3813 7.9691,7.3824 7.9637,7.3824Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8827,7.3344C7.8816,7.3344 7.8789,7.32 7.8741,7.3104C7.8715,7.3045 7.8608,7.2949 7.8608,7.2949C7.8624,7.2949 7.8752,7.2907 7.8912,7.3003C7.9035,7.3088 7.8896,7.3285 7.8896,7.3285C7.8896,7.3285 7.8859,7.3323 7.8827,7.3344" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9179,7.3445l-0.0139,0.0123l-0.0229,-0.0187l0.0011,-0.0053l0.0011,-0.0037l0.0315,-0.0016l0.0032,0.0171" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8789,7.3323C7.8805,7.328 7.8853,7.3248 7.888,7.3269C7.8917,7.328 7.8944,7.3323 7.8912,7.3376C7.8901,7.3424 7.8848,7.3451 7.8816,7.344C7.8789,7.3435 7.8773,7.3387 7.8789,7.3323" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.8837,7.3488C7.8821,7.3488 7.8821,7.3488 7.8821,7.3477C7.8752,7.3445 7.8731,7.3403 7.8752,7.3312C7.8773,7.3248 7.8848,7.32 7.8901,7.3205C7.896,7.3237 7.8987,7.3312 7.8965,7.3392C7.8944,7.3445 7.8885,7.3488 7.8837,7.3488Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0629,7.3824l-0.0203,-0.0011l-0.0075,0.0272l0,0.0075l0.0059,0l0.0277,-0.0133l-0.0059,-0.0203" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0069,7.392l-0.0027,0.0171l0.0293,0.0091l0.0048,-0.0027l0,-0.0043l-0.0133,-0.0272l-0.0181,0.008" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0651,7.4363l-0.0171,0.0075l-0.0155,-0.0267l0.0005,-0.0048l0.0053,-0.0021l0.0304,0.0085l-0.0037,0.0176" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0288,7.4075C8.0315,7.4048 8.0379,7.4048 8.0411,7.4075C8.0459,7.4107 8.0464,7.416 8.0432,7.4197C8.0395,7.4251 8.0336,7.4251 8.0288,7.4208C8.0256,7.4187 8.0256,7.4133 8.0288,7.4075" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0352,7.4283C8.032,7.4283 8.0288,7.4283 8.0267,7.4261C8.024,7.4229 8.0224,7.4197 8.0219,7.4155C8.0219,7.4123 8.0224,7.4069 8.0256,7.4059C8.0288,7.4016 8.0379,7.3995 8.0443,7.4027C8.0475,7.4059 8.0496,7.408 8.0507,7.4133C8.0507,7.4155 8.0496,7.4197 8.048,7.4229C8.0443,7.4283 8.04,7.4283 8.0352,7.4283Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1291,7.4448l0.0037,0.0208l-0.0288,0.0085l-0.0059,-0.0021l0,-0.0037l0.0123,-0.0277l0.0187,0.0043" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1243,7.4992l-0.0192,0.0043l-0.0112,-0.0272l0.0016,-0.0064l0.0043,0l0.0293,0.0112l-0.0048,0.0181" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0725,7.4459l-0.0064,0.0197l0.0288,0.0112l0.0053,-0.0011l0.0011,-0.0064l-0.0101,-0.0277l-0.0187,0.0043" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1045,7.4795C8.1088,7.4768 8.1088,7.4693 8.1051,7.4656C8.1008,7.4635 8.0944,7.4635 8.0912,7.4656C8.088,7.4699 8.088,7.4763 8.0912,7.4779C8.0944,7.4821 8.1003,7.4821 8.1045,7.4795" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1504,7.5408C8.1504,7.5408 8.168,7.5408 8.1781,7.544C8.1851,7.5451 8.1957,7.5536 8.1957,7.5536C8.1979,7.5536 8.2,7.5403 8.1861,7.5275C8.1728,7.5163 8.1568,7.5328 8.1568,7.5328C8.1568,7.5328 8.152,7.5376 8.1504,7.5408" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1957,7.5573L8.1936,7.5563C8.1909,7.5547 8.1824,7.5488 8.1771,7.5467C8.1717,7.5445 8.1632,7.5445 8.1568,7.5445C8.1504,7.5445 8.1493,7.5445 8.1477,7.5435L8.1472,7.5403L8.1477,7.5403C8.1477,7.5339 8.1525,7.5307 8.1541,7.5301C8.1541,7.5291 8.1648,7.5184 8.1771,7.5184C8.1819,7.5184 8.1851,7.5195 8.1883,7.5216C8.2005,7.5323 8.2016,7.5445 8.2011,7.5488C8.2011,7.552 8.2011,7.5547 8.1984,7.5563L8.1957,7.5573Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1328,7.5093l-0.0101,0.0176l0.0261,0.0165l0.0032,-0.0032l0.0048,0l-0.0043,-0.0325l-0.0197,0.0016" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1541,7.544C8.1589,7.5408 8.1611,7.5365 8.1595,7.5328C8.1568,7.5312 8.1515,7.5312 8.1477,7.5328C8.1419,7.536 8.1403,7.5413 8.1413,7.544C8.1445,7.5445 8.1493,7.5445 8.1541,7.544" + android:strokeWidth="1" + android:fillColor="#C8B100" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.504,6.7947L9.4085,6.7947L9.4085,6.7653L9.4405,6.7653L9.4405,6.7307L9.4197,6.7307L9.4197,6.7019L9.4405,6.7019L9.4405,6.6811L9.4715,6.6811L9.4715,6.7019L9.4923,6.7019L9.4923,6.7307L9.4715,6.7307L9.4715,6.7653L9.5045,6.7653L9.5045,6.7947L9.504,6.7947ZM9.4192,6.7835L9.4949,6.7835L9.4949,6.7749L9.4608,6.7749L9.4608,6.72L9.4827,6.72L9.4827,6.7104L9.4608,6.7104L9.4608,6.6907L9.4507,6.6907L9.4507,6.7104L9.4293,6.7104L9.4293,6.72L9.4512,6.72L9.4512,6.7755L9.4192,6.7755L9.4192,6.7835Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_eu.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_eu.xml new file mode 100644 index 0000000000000000000000000000000000000000..8a53ac1d2b8a7ebe6eaf7c9588fd601f3a101f6e --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_eu.xml @@ -0,0 +1,18 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <path + android:pathData="M0,0l24,0l0,16l-24,0z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M12,2L12.2735,2.558L12.8845,2.647L12.4425,3.081L12.547,3.6945L12,3.405L11.4535,3.6945L11.558,3.081L11.116,2.647L11.727,2.558L12,2ZM9.373,2.791L9.6465,3.349L10.2575,3.4385L9.8155,3.8725L9.92,4.486L9.3735,4.1965L8.827,4.486L8.931,3.8725L8.489,3.4385L9.1005,3.349L9.373,2.791ZM7.5065,4.5245L7.78,5.0825L8.3915,5.1715L7.9495,5.6055L8.0535,6.219L7.507,5.9295L6.9605,6.219L7.065,5.6055L6.623,5.1715L7.234,5.0825L7.5065,4.5245ZM14.627,2.791L14.3535,3.349L13.7425,3.4385L14.1845,3.8725L14.08,4.486L14.6265,4.1965L15.173,4.486L15.069,3.8725L15.511,3.4385L14.8995,3.349L14.627,2.791ZM9.373,11.2225L9.6465,11.7805L10.2575,11.87L9.8155,12.304L9.92,12.9175L9.3735,12.628L8.827,12.9175L8.931,12.304L8.489,11.87L9.1005,11.7805L9.373,11.2225ZM14.627,11.2225L14.3535,11.7805L13.7425,11.87L14.1845,12.304L14.08,12.9175L14.6265,12.628L15.173,12.9175L15.069,12.304L15.511,11.87L14.8995,11.7805L14.627,11.2225ZM16.4935,4.5245L16.22,5.0825L15.6085,5.1715L16.0505,5.6055L15.9465,6.219L16.493,5.9295L17.0395,6.219L16.935,5.6055L17.377,5.1715L16.766,5.0825L16.4935,4.5245ZM7.5065,9.464L7.78,10.022L8.3915,10.1115L7.9495,10.5455L8.0535,11.159L7.507,10.8695L6.9605,11.159L7.065,10.5455L6.623,10.1115L7.234,10.022L7.5065,9.464ZM16.4935,9.464L16.22,10.022L15.6085,10.1115L16.0505,10.5455L15.9465,11.159L16.493,10.8695L17.0395,11.159L16.935,10.5455L17.377,10.1115L16.766,10.022L16.4935,9.464ZM17.1155,7.1525L17.389,7.7105L18,7.8L17.558,8.234L17.6625,8.8475L17.116,8.558L16.5695,8.8475L16.674,8.234L16.2305,7.8L16.842,7.7105L17.1155,7.1525ZM6.8845,7.1525L7.158,7.7105L7.7695,7.8L7.327,8.234L7.4315,8.8475L6.885,8.558L6.3385,8.8475L6.443,8.234L6,7.8L6.611,7.7105L6.8845,7.1525ZM12,12.305L12.2735,12.863L12.8845,12.9525L12.4425,13.3865L12.5465,14L12,13.7105L11.4535,14L11.558,13.3865L11.116,12.9525L11.727,12.863L12,12.305Z" + android:strokeWidth="1" + android:fillColor="#FFEB3B" + android:fillType="nonZero" + android:strokeColor="#00000000"/> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_fi.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_fi.xml new file mode 100644 index 0000000000000000000000000000000000000000..508f22f3a7ff97c14299ae8a5591ac70f71b1613 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_fi.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0h24v16h-24z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,6h24v4.2667h-24z" + android:strokeWidth="1" + android:fillColor="#003580" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.6667,0h4v16h-4z" + android:strokeWidth="1" + android:fillColor="#003580" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_fr.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_fr.xml new file mode 100644 index 0000000000000000000000000000000000000000..db1fadc8372675e18398bf60913e752f05755318 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_fr.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M7.6364,0l8.7273,0l0,16l-8.7273,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M16.3636,0l7.6364,0l0,16l-7.6364,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M-0,0l7.6364,0l0,16l-7.6364,0z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_gr.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_gr.xml new file mode 100644 index 0000000000000000000000000000000000000000..8aaf3c23a235d16cc9ee2be41dbeddf592143fe1 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_gr.xml @@ -0,0 +1,22 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l24,0l0,16l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,16L24,16L24,14.1749L0,14.1749L0,16ZM0,12.4976L24,12.4976L24,10.6725L0,10.6725L0,12.4976ZM8.5489,3.5664L8.5489,1.8245L24,1.8245L24,0L-0.0002,0L-0.0002,8.9125L8.5489,8.9125L24,8.9056L24,7.0805L8.5489,7.0805L8.5489,5.4165L24,5.4165L24,3.5915L8.5762,3.5915L8.5762,5.4048L5.1878,5.4048L5.1878,8.9109L3.4102,8.9109L3.4102,5.4048L0.0008,5.4048L0.0008,3.5659L3.4102,3.5659L3.4102,-0.002L5.1878,-0.002L5.1878,3.5664L8.5489,3.5664Z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_hr.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_hr.xml new file mode 100644 index 0000000000000000000000000000000000000000..7c1ce141612214134e986ff05d2a9b0daceca57e --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_hr.xml @@ -0,0 +1,88 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M24,5.33l-24,-0l-0,-5.33l24,-0z" + android:strokeWidth="1" + android:fillColor="#F44336" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M24,15.99l-24,-0l-0,-5.33l24,-0z" + android:strokeWidth="1" + android:fillColor="#0D47A1" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M24,10.66l-24,-0l-0,-5.33l24,-0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M12,12.2393C10.2976,12.2393 8.9122,10.8538 8.9122,9.1515L8.9122,5.4211L15.0878,5.4211L15.0878,9.1515C15.0878,10.8538 13.7024,12.2393 12,12.2393Z" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M14.9515,5.5575L14.9515,9.1515C14.9515,10.7791 13.6276,12.1029 12,12.1029C10.3724,12.1029 9.0485,10.7791 9.0485,9.1515L9.0485,5.5575L14.9515,5.5575M15.2242,5.2847L8.7758,5.2847L8.7758,9.1515C8.7758,10.9324 10.2191,12.3756 12,12.3756C13.7809,12.3756 15.2242,10.9324 15.2242,9.1515L15.2242,5.2847L15.2242,5.2847Z" + android:strokeWidth="1" + android:fillColor="#F44336" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.8393,5.4669L15.0595,5.4669L15.0595,6.8065L13.8393,6.8065L13.8393,5.4669ZM11.394,5.4669L12.6142,5.4669L12.6142,6.8065L11.394,6.8065L11.394,5.4669ZM8.9493,5.4669L10.1695,5.4669L10.1695,6.8065L8.9493,6.8065L8.9493,5.4669ZM13.8393,8.1555L15.0595,8.1555L15.0595,9.4951L13.8393,9.4951L13.8393,8.1555ZM11.394,8.1555L12.6142,8.1555L12.6142,9.4951L11.394,9.4951L11.394,8.1555ZM8.9493,8.1555L10.1695,8.1555L10.1695,9.4951L8.9493,9.4951L8.9493,8.1555ZM13.8393,11.5733C14.2402,11.2695 14.4502,10.9591 14.5304,10.8418L13.8393,10.8418L13.8393,11.5733ZM10.1684,11.5733C9.7675,11.2695 9.5575,10.9591 9.4773,10.8418L10.1684,10.8418L10.1684,11.5733ZM11.394,12.1275C11.394,12.1275 11.6116,12.188 12.0065,12.188C12.4009,12.188 12.6142,12.188 12.6142,12.188L12.6142,10.8418L11.394,10.8418L11.394,12.1275L11.394,12.1275ZM12.6158,9.4956L13.836,9.4956L13.836,10.8353L12.6158,10.8353L12.6158,9.4956ZM10.1705,9.4956L11.3907,9.4956L11.3907,10.8353L10.1705,10.8353L10.1705,9.4956ZM12.6158,6.8071L13.836,6.8071L13.836,8.1467L12.6158,8.1467L12.6158,6.8071ZM10.1705,6.8071L11.3907,6.8071L11.3907,8.1467L10.1705,8.1467L10.1705,6.8071Z" + android:strokeWidth="1" + android:fillColor="#F44336" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.1238,5.2793L8.4545,3.7662L8.9482,2.9578L9.8345,3.2873L10.242,4.8887C10.2415,4.8893 9.612,5.0529 9.1238,5.2793Z" + android:strokeWidth="1" + android:fillColor="#4FC3F7" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.406,4.6978L11.2729,3.0495L10.4536,2.576L9.834,3.2873L10.2431,4.8871C10.2436,4.8871 10.8895,4.7278 11.406,4.6978ZM12.5956,4.6978L12.7287,3.0495L13.548,2.576L14.1676,3.2873L13.7585,4.8871C13.7585,4.8871 13.1127,4.7278 12.5956,4.6978Z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M12.5956,4.6978L12.7287,3.0495L12.0011,2.45L11.2729,3.0495L11.406,4.6978C11.406,4.6978 12.1315,4.6422 12.5956,4.6978ZM14.8762,5.2793L15.5455,3.7662L15.0518,2.9578L14.1655,3.2873L13.758,4.8887C13.7585,4.8893 14.388,5.0529 14.8762,5.2793Z" + android:strokeWidth="1" + android:fillColor="#4FC3F7" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M14.8762,5.2793L15.5455,3.7662L15.0518,2.9578L14.1655,3.2873L13.758,4.8887C13.7585,4.8893 14.388,5.0529 14.8762,5.2793Z" + android:strokeWidth="1" + android:fillColor="#4FC3F7" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9376,3.6915C10.7984,3.4984 11.0662,3.4727 11.3062,3.4564L11.2735,3.0495L11.2713,3.0484C11.1153,3.0565 10.584,3.0996 9.8345,3.2889L9.9376,3.6915ZM11.3733,4.2876L11.34,3.8725C10.8409,3.8971 10.1918,4.0493 10.0391,4.0864L10.1449,4.4993C10.6598,4.3504 11.16,4.3018 11.3733,4.2876Z" + android:strokeWidth="1" + android:fillColor="#F44336" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.8595,4.4922C14.406,4.6318 14.8342,4.8085 15.0431,4.9029L15.3005,4.3209C14.7071,4.0438 14.1425,3.8998 14.0176,3.8698L13.8595,4.4922Z" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.8878,4.3798C14.0493,4.4158 14.4916,4.5304 15.0878,4.8015L15.258,4.4169C15.1129,4.3542 14.5042,4.0967 13.9904,3.9767L13.8878,4.3798Z" + android:strokeWidth="1" + android:fillColor="#F44336" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_hu.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_hu.xml new file mode 100644 index 0000000000000000000000000000000000000000..11981ea63f26c8590e715d86c32f8b08bf3f700c --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_hu.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,10.66l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#689F38" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.33l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,-0l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_ie.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_ie.xml new file mode 100644 index 0000000000000000000000000000000000000000..5866f260127cbcf8204fc1145da7381bc372bb07 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_ie.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M7.6364,0l8.7273,0l0,16l-8.7273,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M16.3636,0l7.6364,0l0,16l-7.6364,0z" + android:strokeWidth="1" + android:fillColor="#FF9800" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,0l7.6364,0l0,16l-7.6364,0z" + android:strokeWidth="1" + android:fillColor="#689F38" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_is.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_is.xml new file mode 100644 index 0000000000000000000000000000000000000000..f1609e2208091fd749cb111b07653fe9ba2b8ee7 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_is.xml @@ -0,0 +1,40 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l24,0l0,16l-24,0z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,6l24,0l0,4.3636l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0909,0l4.3636,0l0,16l-4.3636,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1818,0l2.1818,0l0,16l-2.1818,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,7.0909l24,0l0,2.1818l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_it.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_it.xml new file mode 100644 index 0000000000000000000000000000000000000000..732c0f51cf5f812b0f50d17bb022fb2b57d353fe --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_it.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M7.6364,0l8.7273,0l0,16l-8.7273,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M16.3636,0l7.6364,0l0,16l-7.6364,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,0l7.6364,0l0,16l-7.6364,0z" + android:strokeWidth="1" + android:fillColor="#689F38" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_li.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_li.xml new file mode 100644 index 0000000000000000000000000000000000000000..6bd23985f440f6ca7b2c2b9f7c965aab210b2b04 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_li.xml @@ -0,0 +1,590 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0h24v8h-24z" + android:strokeWidth="1" + android:fillColor="#002B7F" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,8h24v8h-24z" + android:strokeWidth="1" + android:fillColor="#CE1126" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M4.9191,3.431L4.875,4.931L3.3529,4.931C3.1657,4.567 3.011,4.2578 3.011,3.8391C3.011,3.4887 3.2866,3.2104 3.6838,3.2104C4.1043,3.2104 4.5662,3.3521 4.9191,3.431Z" + android:strokeLineJoin="round" + android:strokeWidth="1" + android:fillColor="#FFD83D" + android:fillType="nonZero" + android:strokeColor="#00000000" + android:strokeLineCap="round"/> + <path + android:pathData="M3.231,3.4999L3.231,4.3657" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.3532,3.4116L3.3532,4.5644" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.4755,3.3509L3.4755,4.7243" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.5977,3.3226L3.5977,4.3997" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.72,3.3172L3.72,4.4051" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.8422,3.2792L3.8422,4.4045" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.9644,3.2792L3.9644,4.4045" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.0867,3.2902L4.0867,4.4155" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.2089,3.3013L4.2089,4.4265" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.3312,3.373L4.3312,4.4982" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.4534,3.384L4.4534,4.6526" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.5757,3.384L4.5757,4.5092" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.6979,3.384L4.6979,4.5092" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.9595,3.3262C4.2179,3.3688 4.7853,3.6343 4.7206,3.9935C4.6288,4.5025 4.3316,4.2982 3.9375,4.2251L3.6397,4.3244C3.5331,4.4331 3.3762,4.5328 3.2702,4.4016L3.0937,4.4016L3.0937,5.0909L5.0459,5.0909L5.0459,3.4255L3.9595,3.3262Z" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#000000" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.8336,3.2077m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.5672,3.1435m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.2968,3.0756m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.0255,3.0304m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.7541,3.0036m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.488,3.0188m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.2343,3.1056m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M3.0207,3.2628m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M2.869,3.482m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M2.7959,3.7398m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M2.7987,4.0073m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M2.8497,4.2692m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M4.886,3.3648L4.875,3.5192C4.58,3.474 4.1618,3.3097 3.772,3.3097C3.4119,3.3097 3.1323,3.4537 3.1323,3.817C3.1323,4.1751 3.284,4.5007 3.4853,4.8317L3.2757,4.931C3.0884,4.567 2.9338,4.2578 2.9338,3.8391C2.9338,3.4887 3.2094,3.1442 3.6838,3.1442C4.1043,3.1442 4.5332,3.2859 4.886,3.3648Z" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.1875,3.431L5.2316,4.931L6.7537,4.931C6.9409,4.567 7.0956,4.2578 7.0956,3.8391C7.0956,3.4887 6.82,3.2104 6.4228,3.2104C6.0023,3.2104 5.5403,3.3521 5.1875,3.431Z" + android:strokeLineJoin="round" + android:strokeWidth="1" + android:fillColor="#FFD83D" + android:fillType="nonZero" + android:strokeColor="#00000000" + android:strokeLineCap="round"/> + <path + android:pathData="M6.8756,3.4999L6.8756,4.3657" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.7533,3.4116L6.7533,4.5644" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.6311,3.3509L6.6311,4.7243" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.5089,3.3226L6.5089,4.3997" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.3866,3.3172L6.3866,4.4051" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.2644,3.2792L6.2644,4.4045" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.1421,3.2792L6.1421,4.4045" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.0199,3.2902L6.0199,4.4155" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.8977,3.3013L5.8977,4.4265" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.7754,3.373L5.7754,4.4982" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.6532,3.384L5.6532,4.6526" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.5309,3.384L5.5309,4.5092" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.4087,3.384L5.4087,4.5092" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.147,3.3262C5.8887,3.3688 5.3213,3.6343 5.386,3.9935C5.4777,4.5025 5.775,4.2982 6.1691,4.2251L6.4669,4.3244C6.5735,4.4331 6.7304,4.5328 6.8364,4.4016L7.0129,4.4016L7.0129,5.0909L5.0607,5.0909L5.0607,3.4255L6.147,3.3262Z" + android:strokeLineJoin="round" + android:strokeWidth="0.05" + android:fillColor="#000000" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.273,3.2077m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.5394,3.1435m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.8097,3.0756m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.0811,3.0304m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.3525,3.0036m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.6186,3.0188m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M6.8722,3.1056m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M7.0859,3.2628m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M7.2376,3.482m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M7.3107,3.7398m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M7.3079,4.0073m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M7.2569,4.2692m1,0a1,1 0,1 0,-2 0a1,1 0,1 0,2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.2206,3.3648L5.2316,3.5192C5.5266,3.474 5.9448,3.3097 6.3345,3.3097C6.6947,3.3097 6.9743,3.4537 6.9743,3.817C6.9743,4.1751 6.8226,4.5007 6.6213,4.8317L6.8309,4.931C7.0181,4.567 7.1728,4.2578 7.1728,3.8391C7.1728,3.4887 6.8972,3.1442 6.4228,3.1442C6.0023,3.1442 5.5734,3.2859 5.2206,3.3648Z" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.0533,1.7711L4.9295,2.0028L5.0533,2.2338L5.177,2.0028L5.0533,1.7711ZM5.0533,2.3561L4.9295,2.5871L5.0533,2.8188L5.177,2.5871L5.0533,2.3561Z" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:fillType="nonZero" + android:strokeColor="#000000" + android:strokeLineCap="round"/> + <path + android:pathData="M4.6121,2.2949L4.8073,2.4187L5.0018,2.2949L4.8073,2.1712L4.6121,2.2949ZM5.1048,2.2949L5.2993,2.4187L5.4944,2.2949L5.2993,2.1712L5.1048,2.2949Z" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:fillType="nonZero" + android:strokeColor="#000000" + android:strokeLineCap="round"/> + <path + android:pathData="M5.0533,2.2977m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:fillType="nonZero" + android:strokeColor="#000000" + android:strokeLineCap="round"/> + <path + android:pathData="M5.0533,2.8961m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:fillType="nonZero" + android:strokeColor="#000000" + android:strokeLineCap="round"/> + <path + android:pathData="M4.9903,2.6531C4.9903,2.7278 4.9898,2.7712 4.9895,2.8121C4.929,2.8148 4.8694,2.8211 4.811,2.8308M5.2955,2.8308C5.2372,2.8211 5.1775,2.8148 5.117,2.8121C5.117,2.7713 5.117,2.728 5.117,2.6531M4.8103,3.0276C4.8894,2.9726 4.9705,2.9433 5.0533,2.9433C5.1361,2.9433 5.2172,2.9726 5.2963,3.0276" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#00000000" + android:strokeColor="#000000" + android:fillType="evenOdd" + android:strokeLineCap="round"/> + <path + android:pathData="M4.808,3.3206C4.7842,3.7305 4.7358,4.1481 4.5763,4.4516L4.8358,4.3466C4.9264,4.0027 4.9455,3.5583 4.973,3.3483L4.808,3.3206ZM5.2985,3.3206L5.1335,3.3483C5.1611,3.5583 5.1802,4.0027 5.2708,4.3466L5.5303,4.4516C5.3707,4.1481 5.3223,3.7305 5.2985,3.3206Z" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:fillType="nonZero" + android:strokeColor="#000000" + android:strokeLineCap="round"/> + <path + android:pathData="M5.0529,4.2086C4.743,4.2086 4.5153,4.3546 4.5017,4.7268C4.4259,4.5935 4.1054,4.1742 3.8064,4.2303C3.6286,4.2637 3.4714,4.5103 3.4982,4.7928C3.3509,4.3697 2.9196,4.3004 2.6049,4.5506C2.8843,4.7803 3.0086,5.4586 3.2439,5.7528L5.0529,5.7528L6.8619,5.7528C7.0972,5.4586 7.2223,4.7803 7.5017,4.5506C7.187,4.3004 6.7557,4.3697 6.6084,4.7928C6.6351,4.5103 6.4773,4.2637 6.2994,4.2303C6.0004,4.1742 5.6807,4.5935 5.6049,4.7268C5.5912,4.3546 5.3628,4.2086 5.0529,4.2086Z" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:fillType="nonZero" + android:strokeColor="#000000" + android:strokeLineCap="round"/> + <path + android:pathData="M6.8566,5.7527C6.8566,5.8866 6.0487,6.0339 5.0533,6.0339C4.0579,6.0339 3.25,5.8866 3.25,5.7527C3.25,5.6187 4.0579,5.5486 5.0533,5.5486C6.0487,5.5486 6.8566,5.6187 6.8566,5.7527Z" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#000000" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.0533,3.2427m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.0533,3.4247m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.0533,3.6205m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.0533,3.8383m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.0533,4.081m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + <path + android:pathData="M5.0275,4.317C5.001,4.3168 4.9759,4.328 4.9826,4.3493C4.9904,4.3743 5.0002,4.4211 5.0095,4.4528C5.0201,4.4886 5.0619,4.4799 5.0725,4.452C5.0831,4.4241 5.0788,4.4063 5.0815,4.3545C5.0828,4.3286 5.054,4.3172 5.0275,4.317ZM5.129,4.317C5.1025,4.3172 5.0737,4.3286 5.0751,4.3545C5.0777,4.4063 5.0734,4.4241 5.0841,4.452C5.0947,4.4799 5.1364,4.4886 5.147,4.4528C5.1563,4.4211 5.1661,4.3743 5.1739,4.3493C5.1806,4.328 5.1555,4.3168 5.129,4.317ZM4.9457,4.3305C4.9193,4.3322 4.892,4.3444 4.8936,4.3575C4.8964,4.3814 4.9108,4.41 4.9164,4.446C4.9221,4.4832 4.979,4.4687 4.9848,4.4475C4.9905,4.4263 4.997,4.3949 4.9913,4.3538C4.9891,4.3383 4.9745,4.3315 4.9571,4.3305C4.9535,4.3303 4.9494,4.3303 4.9457,4.3305ZM5.2034,4.3305C5.186,4.3315 5.1714,4.3383 5.1692,4.3538C5.1635,4.3949 5.17,4.4263 5.1758,4.4475C5.1815,4.4687 5.2384,4.4832 5.2441,4.446C5.2497,4.41 5.2641,4.3814 5.2669,4.3575C5.2685,4.3444 5.2412,4.3322 5.2148,4.3305C5.2111,4.3303 5.2071,4.3303 5.2034,4.3305ZM4.84,4.3725C4.8129,4.3754 4.7881,4.3887 4.7962,4.404C4.8123,4.4345 4.8272,4.4683 4.8272,4.4993C4.8272,4.5258 4.8823,4.5163 4.8855,4.4978C4.8887,4.4792 4.8947,4.4398 4.8947,4.404C4.8947,4.3773 4.867,4.3696 4.84,4.3725ZM5.3073,4.3725C5.2881,4.3747 5.2708,4.3839 5.2708,4.404C5.2708,4.4398 5.2767,4.4792 5.2799,4.4978C5.2831,4.5163 5.3382,4.5258 5.3382,4.4993C5.3382,4.4683 5.3531,4.4345 5.3692,4.404C5.3773,4.3887 5.3525,4.3754 5.3255,4.3725C5.3187,4.3718 5.3136,4.3718 5.3073,4.3725ZM3.8727,4.3766C3.8554,4.3762 3.8433,4.3942 3.8551,4.4141C3.8741,4.446 3.8943,4.4661 3.9136,4.5004C3.9309,4.5309 3.9573,4.5119 3.9487,4.4906C3.9401,4.4694 3.9307,4.4457 3.9048,4.4006C3.8951,4.3837 3.883,4.3769 3.8727,4.3766ZM6.257,4.3766C6.2466,4.3769 6.2345,4.3837 6.2248,4.4006C6.1989,4.4457 6.1896,4.4694 6.1809,4.4906C6.1723,4.5119 6.1988,4.5309 6.216,4.5004C6.2354,4.4661 6.2555,4.446 6.2745,4.4141C6.2864,4.3942 6.2742,4.3762 6.257,4.3766ZM3.9684,4.3781C3.9547,4.3811 3.9464,4.3935 3.9547,4.4081C3.9715,4.4373 3.9956,4.4672 4.0124,4.4989C4.0273,4.5267 4.0603,4.5188 4.0491,4.4936C4.038,4.4684 4.0347,4.4536 4.0124,4.4059C4.0013,4.382 3.9821,4.3751 3.9684,4.3781ZM6.1562,4.3781C6.1445,4.3799 6.131,4.388 6.1226,4.4059C6.1004,4.4536 6.0971,4.4684 6.0859,4.4936C6.0748,4.5188 6.1078,4.5267 6.1226,4.4989C6.1395,4.4672 6.1636,4.4373 6.1803,4.4081C6.1887,4.3935 6.1804,4.3811 6.1667,4.3781C6.1633,4.3774 6.1601,4.3775 6.1562,4.3781ZM4.0897,4.4014C4.0728,4.4037 4.0597,4.4225 4.0712,4.4456C4.0858,4.4748 4.1065,4.5024 4.1247,4.5356C4.1428,4.5688 4.173,4.5621 4.1658,4.5409C4.1585,4.5196 4.1496,4.4844 4.1277,4.4314C4.1182,4.4081 4.1029,4.3995 4.0897,4.4014ZM6.0439,4.4014C6.0307,4.3995 6.0154,4.4081 6.0059,4.4314C5.984,4.4844 5.9751,4.5196 5.9678,4.5409C5.9606,4.5621 5.9908,4.5688 6.0089,4.5356C6.0271,4.5024 6.0478,4.4748 6.0624,4.4456C6.0739,4.4225 6.0608,4.4037 6.0439,4.4014ZM3.7994,4.4179C3.7774,4.4192 3.7574,4.441 3.771,4.4576C3.7929,4.4842 3.8067,4.4932 3.8277,4.5214C3.8496,4.5506 3.8735,4.5279 3.8647,4.5094C3.856,4.4908 3.8448,4.4691 3.8339,4.4426C3.8259,4.4232 3.8126,4.417 3.7994,4.4179ZM6.3464,4.4179C6.3332,4.417 6.3198,4.4232 6.3118,4.4426C6.3009,4.4691 6.2897,4.4908 6.281,4.5094C6.2723,4.5279 6.2962,4.5506 6.318,4.5214C6.3391,4.4932 6.3529,4.4842 6.3747,4.4576C6.3883,4.441 6.3683,4.4192 6.3464,4.4179ZM4.7283,4.485C4.7047,4.485 4.6796,4.5036 4.688,4.521C4.7013,4.5489 4.722,4.5736 4.7371,4.6095C4.7505,4.6414 4.7885,4.6255 4.7862,4.6043C4.784,4.583 4.7779,4.5541 4.7623,4.509C4.7564,4.4921 4.7424,4.485 4.7283,4.485ZM5.4188,4.485C5.4047,4.485 5.3906,4.4921 5.3848,4.509C5.3692,4.5541 5.3631,4.583 5.3608,4.6043C5.3586,4.6255 5.3966,4.6414 5.41,4.6095C5.425,4.5736 5.4457,4.5489 5.4591,4.521C5.4675,4.5036 5.4423,4.485 5.4188,4.485ZM5.0533,4.5135C5.036,4.5135 5.0336,4.5367 5.033,4.5555C5.0311,4.6172 5.0054,4.6772 4.9835,4.707C4.9616,4.7369 4.9294,4.7289 4.8995,4.713C4.8697,4.6971 4.8519,4.6852 4.82,4.6613C4.7882,4.6374 4.764,4.6513 4.802,4.7055C4.9129,4.8634 5.033,4.9984 5.033,5.256C5.033,5.2893 5.0389,5.2995 5.0533,5.2995C5.0677,5.2995 5.0743,5.2893 5.0743,5.256C5.0743,4.9984 5.1937,4.8634 5.3045,4.7055C5.3425,4.6513 5.3184,4.6374 5.2865,4.6613C5.2547,4.6852 5.2369,4.6971 5.207,4.713C5.1772,4.7289 5.1449,4.7369 5.123,4.707C5.1011,4.6772 5.0755,4.6172 5.0735,4.5555C5.0729,4.5367 5.0705,4.5135 5.0533,4.5135ZM4.2166,4.4749C4.214,4.4748 4.2111,4.4752 4.2087,4.4756C4.1975,4.4776 4.19,4.4854 4.1943,4.4989C4.2021,4.5229 4.2312,4.5701 4.2428,4.5926C4.2544,4.6152 4.3029,4.6104 4.2913,4.5799C4.2797,4.5493 4.2803,4.5401 4.2664,4.5056C4.2588,4.4867 4.2351,4.4752 4.2166,4.4749ZM5.9327,4.4749C5.9143,4.4752 5.8906,4.4867 5.8829,4.5056C5.869,4.5401 5.8697,4.5493 5.858,4.5799C5.8465,4.6104 5.8949,4.6152 5.9065,4.5926C5.9181,4.5701 5.9472,4.5229 5.955,4.4989C5.9594,4.4854 5.9519,4.4776 5.9406,4.4756C5.9383,4.4752 5.9354,4.4748 5.9327,4.4749ZM3.7067,4.4846C3.6899,4.4857 3.678,4.5032 3.6949,4.5289C3.7132,4.5566 3.7446,4.5915 3.759,4.6114C3.7734,4.6313 3.7982,4.6178 3.7807,4.5926C3.7631,4.5674 3.7572,4.5384 3.7364,4.5026C3.7287,4.4892 3.7167,4.484 3.7067,4.4846ZM6.4168,4.4846C6.4068,4.484 6.3948,4.4892 6.387,4.5026C6.3663,4.5384 6.3604,4.5674 6.3428,4.5926C6.3252,4.6178 6.3501,4.6313 6.3645,4.6114C6.3788,4.5915 6.4102,4.5566 6.4285,4.5289C6.4455,4.5032 6.4335,4.4857 6.4168,4.4846ZM2.9441,4.5645C2.9267,4.5637 2.9212,4.5926 2.9376,4.6118C2.9615,4.6396 2.9781,4.6544 3.0054,4.677C3.0271,4.6949 3.0334,4.6717 3.0226,4.6538C3.0117,4.6358 2.9961,4.6176 2.9744,4.5878C2.9625,4.5714 2.9521,4.5649 2.9441,4.5645ZM7.1707,4.5645C7.1627,4.5649 7.1523,4.5714 7.1404,4.5878C7.1187,4.6176 7.1031,4.6358 7.0922,4.6538C7.0814,4.6717 7.0877,4.6949 7.1094,4.677C7.1367,4.6544 7.1533,4.6396 7.1772,4.6118C7.1936,4.5926 7.1881,4.5637 7.1707,4.5645ZM3.066,4.5885C3.0512,4.5887 3.0415,4.5981 3.053,4.62C3.0694,4.6514 3.0912,4.6869 3.105,4.7108C3.1188,4.7346 3.1609,4.7427 3.144,4.7055C3.1271,4.6684 3.1238,4.6493 3.1084,4.6148C3.1008,4.5975 3.0807,4.5883 3.066,4.5885ZM7.0541,4.5885C7.0393,4.5883 7.0193,4.5975 7.0116,4.6148C6.9963,4.6493 6.9929,4.6684 6.9761,4.7055C6.9592,4.7427 7.0013,4.7346 7.0151,4.7108C7.0289,4.6869 7.0506,4.6514 7.0671,4.62C7.0786,4.5981 7.0688,4.5887 7.0541,4.5885ZM2.8295,4.5968C2.811,4.597 2.8094,4.6165 2.8258,4.6291C2.8477,4.6458 2.8738,4.6644 2.8993,4.6858C2.9291,4.7109 2.9407,4.6878 2.9248,4.6669C2.9089,4.646 2.8934,4.6248 2.8535,4.6039C2.8436,4.5986 2.8357,4.5967 2.8295,4.5968ZM7.277,4.5968C7.2708,4.5967 7.263,4.5986 7.253,4.6039C7.2132,4.6248 7.1977,4.646 7.1818,4.6669C7.1659,4.6878 7.1774,4.7109 7.2073,4.6858C7.2328,4.6644 7.2589,4.6458 7.2808,4.6291C7.2972,4.6165 7.2956,4.597 7.277,4.5968ZM4.6577,4.614C4.6393,4.6155 4.6234,4.6273 4.6312,4.6425C4.6453,4.6704 4.6613,4.6999 4.671,4.7288C4.6804,4.7566 4.7375,4.757 4.7281,4.7318C4.7187,4.7065 4.714,4.675 4.6976,4.6365C4.6914,4.6221 4.6785,4.6151 4.6657,4.614C4.663,4.6138 4.6604,4.6138 4.6577,4.614ZM5.4844,4.614C5.4716,4.6151 5.4587,4.6221 5.4525,4.6365C5.4361,4.675 5.4314,4.7065 5.422,4.7318C5.4126,4.757 5.4697,4.7566 5.4791,4.7288C5.4889,4.6999 5.5049,4.6704 5.519,4.6425C5.5267,4.6273 5.5108,4.6155 5.4924,4.614C5.4898,4.6138 5.4871,4.6138 5.4844,4.614ZM3.923,4.5664C3.9149,4.5686 3.9102,4.5842 3.9163,4.6061C3.9501,4.7275 3.9605,4.7915 3.9545,4.8214C3.9486,4.8512 3.9322,4.8553 3.9103,4.8454C3.8884,4.8354 3.8627,4.821 3.8428,4.8071C3.8229,4.7932 3.8022,4.8098 3.8308,4.8334C3.9761,4.9528 4.0768,5.0893 4.1158,5.2549C4.1238,5.2887 4.145,5.2927 4.139,5.2549C4.1061,5.0463 4.0998,4.8749 4.1495,4.7674C4.1682,4.727 4.1494,4.6882 4.1195,4.7539C4.0996,4.7977 4.0674,4.8149 4.0415,4.7771C4.0157,4.7393 3.9622,4.6384 3.9463,4.5926C3.9403,4.5754 3.9329,4.5675 3.9268,4.5664C3.9255,4.5661 3.9242,4.566 3.923,4.5664ZM6.1798,4.5664C6.1736,4.5675 6.1663,4.5754 6.1603,4.5926C6.1444,4.6384 6.0909,4.7393 6.065,4.7771C6.0392,4.8149 6.0069,4.7977 5.987,4.7539C5.9572,4.6882 5.9383,4.727 5.957,4.7674C6.0068,4.8749 6.0005,5.0463 5.9675,5.2549C5.9616,5.2927 5.9828,5.2887 5.9908,5.2549C6.0297,5.0893 6.1305,4.9528 6.2758,4.8334C6.3044,4.8098 6.2837,4.7932 6.2638,4.8071C6.2439,4.821 6.2182,4.8354 6.1963,4.8454C6.1744,4.8553 6.158,4.8512 6.152,4.8214C6.1461,4.7915 6.1564,4.7275 6.1903,4.6061C6.1964,4.5842 6.1917,4.5686 6.1835,4.5664C6.1824,4.566 6.1811,4.5661 6.1798,4.5664ZM3.2045,4.6245C3.1834,4.6247 3.166,4.6339 3.1756,4.6538C3.191,4.6856 3.2228,4.7201 3.2335,4.74C3.2441,4.7599 3.2785,4.7506 3.2721,4.7228C3.2657,4.6949 3.2625,4.6783 3.254,4.6478C3.2497,4.6325 3.2256,4.6243 3.2045,4.6245ZM6.9399,4.6245C6.9188,4.6243 6.8947,4.6325 6.8904,4.6478C6.8819,4.6783 6.8787,4.6949 6.8723,4.7228C6.8659,4.7506 6.9003,4.7599 6.9109,4.74C6.9216,4.7201 6.9534,4.6856 6.9688,4.6538C6.9784,4.6339 6.961,4.6247 6.9399,4.6245ZM3.6435,4.5829C3.628,4.5801 3.6258,4.6194 3.6389,4.6354C3.6564,4.6566 3.6807,4.6823 3.705,4.7111C3.7252,4.735 3.7377,4.7138 3.7256,4.6939C3.7135,4.674 3.6955,4.6528 3.6632,4.6024C3.6552,4.5898 3.6486,4.5838 3.6435,4.5829ZM6.4644,4.5829C6.4593,4.5838 6.4528,4.5898 6.4447,4.6024C6.4124,4.6528 6.3945,4.674 6.3824,4.6939C6.3702,4.7138 6.3827,4.735 6.4029,4.7111C6.4272,4.6823 6.4515,4.6566 6.469,4.6354C6.4821,4.6194 6.4799,4.5801 6.4644,4.5829ZM3.3129,4.6778C3.292,4.6771 3.2743,4.6848 3.2831,4.704C3.2953,4.7308 3.3131,4.753 3.3278,4.7783C3.3424,4.8035 3.3807,4.7992 3.3807,4.7753C3.3807,4.7514 3.3713,4.7247 3.3625,4.6995C3.3581,4.6869 3.3337,4.6784 3.3129,4.6778ZM6.8484,4.6778C6.8275,4.6784 6.8031,4.6869 6.7988,4.6995C6.79,4.7247 6.7805,4.7514 6.7805,4.7753C6.7805,4.7992 6.8189,4.8035 6.8335,4.7783C6.8482,4.753 6.866,4.7308 6.8782,4.704C6.887,4.6848 6.8693,4.6771 6.8484,4.6778ZM3.6095,4.7119C3.5947,4.7141 3.5816,4.7285 3.599,4.7509C3.6269,4.7867 3.6574,4.8118 3.668,4.8251C3.6787,4.8384 3.7055,4.8335 3.6883,4.8056C3.6707,4.7771 3.644,4.7428 3.632,4.7216C3.6276,4.7137 3.6185,4.7105 3.6095,4.7119ZM6.491,4.7119C6.4845,4.7125 6.4779,4.7156 6.4745,4.7216C6.4626,4.7428 6.4359,4.7771 6.4183,4.8056C6.401,4.8335 6.4279,4.8384 6.4385,4.8251C6.4492,4.8118 6.4797,4.7867 6.5075,4.7509C6.525,4.7285 6.5119,4.7141 6.497,4.7119C6.4948,4.7115 6.4932,4.7116 6.491,4.7119ZM3.1138,4.812C3.1021,4.8109 3.098,4.8204 3.1138,4.842C3.1496,4.8911 3.1891,4.9654 3.1918,4.9973C3.1945,5.0291 3.1787,5.0288 3.164,5.0288C3.1202,5.0288 3.0988,4.9968 3.059,4.9875C3.0192,4.9782 3.0134,4.9992 3.0418,5.0198C3.1878,5.1259 3.3341,5.2444 3.3928,5.352C3.4167,5.3958 3.449,5.4118 3.431,5.37C3.3761,5.2419 3.3628,5.1335 3.3748,5.0678C3.3867,5.0021 3.403,4.9578 3.401,4.92C3.399,4.8822 3.3776,4.8848 3.3688,4.92C3.3628,4.9439 3.3513,4.9756 3.3433,4.9875C3.3353,4.9995 3.3033,5.0061 3.2728,4.965C3.2423,4.9239 3.1653,4.8447 3.14,4.8248C3.1306,4.8173 3.1208,4.8126 3.1138,4.812ZM6.9928,4.812C6.9858,4.8126 6.976,4.8173 6.9665,4.8248C6.9413,4.8447 6.8643,4.9239 6.8338,4.965C6.8033,5.0061 6.7713,4.9995 6.7633,4.9875C6.7553,4.9756 6.7438,4.9439 6.7378,4.92C6.729,4.8848 6.7075,4.8822 6.7055,4.92C6.7035,4.9578 6.7198,5.0021 6.7318,5.0678C6.7437,5.1335 6.7304,5.2419 6.6755,5.37C6.6576,5.4118 6.6899,5.3958 6.7138,5.352C6.7725,5.2444 6.9188,5.1259 7.0648,5.0198C7.0931,4.9992 7.0874,4.9782 7.0475,4.9875C7.0077,4.9968 6.9863,5.0288 6.9425,5.0288C6.9279,5.0288 6.9121,5.0291 6.9148,4.9973C6.9174,4.9654 6.957,4.8911 6.9928,4.842C7.0086,4.8204 7.0045,4.8109 6.9928,4.812Z" + android:strokeLineJoin="round" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000" + android:strokeLineCap="round"/> + <path + android:pathData="M3.3291,5.5997L3.4291,5.7479M3.4253,5.5716L3.5253,5.7214M3.5293,5.5545L3.6293,5.7073M3.6258,5.5352L3.7258,5.6876M3.7495,5.523L3.8495,5.6764M3.8812,5.5232L3.9812,5.6762M4.0171,5.4797L4.0975,5.6339M4.138,5.4875L4.2184,5.6417M4.255,5.4719L4.3353,5.6261M4.3861,5.4598L4.4303,5.6148M4.5139,5.4597L4.5522,5.6149M4.6298,5.4519L4.6624,5.6071M4.7573,5.4441L4.7845,5.5993M4.9016,5.4402L4.9287,5.5954M6.8307,5.5997L6.7307,5.7479M6.7398,5.5716L6.6398,5.7214M6.6488,5.5545L6.5488,5.7073M6.5503,5.5352L6.4503,5.6876M6.4323,5.523L6.3323,5.6764M6.2987,5.5232L6.1987,5.6762M6.1655,5.4797L6.0851,5.6339M6.0446,5.4875L5.9642,5.6417M5.9276,5.4719L5.8472,5.6261M5.7964,5.4598L5.7522,5.6148M5.6687,5.4597L5.6304,5.6149M5.5528,5.4519L5.5201,5.6071M5.4252,5.4441L5.3981,5.5993M5.281,5.4402L5.2538,5.5954M5.0913,5.4301L5.0913,5.601" + android:strokeLineJoin="round" + android:strokeWidth="0.01" + android:fillColor="#FFD83D" + android:strokeColor="#000000" + android:fillType="nonZero" + android:strokeLineCap="round"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_lt.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_lt.xml new file mode 100644 index 0000000000000000000000000000000000000000..9fe84631800b0af02d0cf70d60afb63ab3da3241 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_lt.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,10.66l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.33l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#689F38" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,-0l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#FFEB3B" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_lu.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_lu.xml new file mode 100644 index 0000000000000000000000000000000000000000..e530dac7ebc0010aeb0a2721b59c0cf76d85cfcd --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_lu.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,-0l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#F44336" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.33l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,10.66l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#64B5F6" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_lv.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_lv.xml new file mode 100644 index 0000000000000000000000000000000000000000..45c635d9384a677aa326683e28f2f1988d8f4ff6 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_lv.xml @@ -0,0 +1,22 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l24,0l0,16l-24,0z" + android:strokeWidth="1" + android:fillColor="#B71C1C" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,6l24,0l0,4.3636l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_mt.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_mt.xml new file mode 100644 index 0000000000000000000000000000000000000000..de07d43126dae2d530bd63a9a82567bd0646803c --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_mt.xml @@ -0,0 +1,388 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M12,0h12v16h-12z" + android:strokeWidth="1" + android:fillColor="#CF142B" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,0h12v16h-12z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0.5925,2.2088L0.5925,3.4211L1.8048,3.4211C1.8048,3.6229 2.0067,3.8251 2.2088,3.8251L2.2088,5.0371L3.4208,5.0371L3.4208,3.8251C3.6229,3.8251 3.8248,3.6229 3.8248,3.4211L5.0371,3.4211L5.0371,2.2088L3.8248,2.2088C3.8248,2.0067 3.6229,1.8048 3.4208,1.8048L3.4208,0.5925L2.2088,0.5925L2.2088,1.8048C2.0067,1.8048 1.8048,2.0067 1.8048,2.2088L0.5925,2.2088Z" + android:strokeWidth="1" + android:fillColor="#E60D2E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0.6733,2.2896L0.6733,3.34L1.8856,3.34C1.8856,3.5421 2.0875,3.744 2.2896,3.744L2.2896,4.9563L3.34,4.9563L3.34,3.744C3.5421,3.744 3.744,3.5421 3.744,3.34L4.956,3.34L4.956,2.2896L3.744,2.2896C3.744,2.0875 3.5421,1.8856 3.34,1.8856L3.34,0.6733L2.2896,0.6733L2.2896,1.8856C2.0875,1.8856 1.8856,2.0875 1.8856,2.2896L0.6733,2.2896Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0.7139,2.3299L0.7139,3.2997L1.9259,3.2997C1.9259,3.5016 2.128,3.7037 2.3299,3.7037L2.3299,4.9157L3.2997,4.9157L3.2997,3.7037C3.5016,3.7037 3.7037,3.5016 3.7037,3.2997L4.9157,3.2997L4.9157,2.3299L3.7037,2.3299C3.7037,2.128 3.5016,1.9259 3.2997,1.9259L3.2997,0.7139L2.3299,0.7139L2.3299,1.9259C2.128,1.9259 1.9259,2.128 1.9259,2.3299L0.7139,2.3299Z" + android:strokeWidth="1" + android:fillColor="#CCCCCC" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.2544,1.9115C2.3253,1.9824 2.3061,2.1168 2.2115,2.2115C2.1168,2.3061 1.9824,2.3253 1.9115,2.2544C1.8405,2.1835 1.8597,2.0491 1.9544,1.9544C2.0491,1.8597 2.1832,1.84 2.2544,1.9115Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M1.8971,2.1256l0.0285,-0.0285l0.1144,0.0571l-0.0571,-0.1141l0.0285,-0.0285l0.1141,0.2285l-0.2285,-0.1144z" + android:strokeWidth="1" + android:fillColor="#D0D0D0" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.0685,1.9544l0.0285,-0.0285l0.1715,0.1712l-0.0285,0.0288z" + android:strokeWidth="1" + android:fillColor="#D0D0D0" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.7181,2.2544C3.6472,2.3253 3.5128,2.3061 3.4181,2.2115C3.3235,2.1168 3.3043,1.9824 3.3752,1.9115C3.4461,1.8405 3.5805,1.8597 3.6752,1.9544C3.7699,2.0491 3.7891,2.1835 3.7181,2.2544Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.504,1.8971l0.0285,0.0288l-0.0571,0.1141l0.1141,-0.0571l0.0285,0.0285l-0.2285,0.1144z" + android:strokeWidth="1" + android:fillColor="#D0D0D0" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.6752,2.0685l0.0288,0.0288l-0.1715,0.1712l-0.0285,-0.0285z" + android:strokeWidth="1" + android:fillColor="#D0D0D0" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.3752,3.7181C3.3043,3.6472 3.3235,3.5128 3.4181,3.4181C3.5128,3.3235 3.6472,3.3043 3.7181,3.3755C3.7891,3.4467 3.7699,3.5808 3.6752,3.6755C3.5805,3.7701 3.4464,3.7893 3.3752,3.7181Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.7333,3.504l-0.0285,0.0285l-0.1144,-0.0571l0.0571,0.1141l-0.0285,0.0288l-0.1141,-0.2285z" + android:strokeWidth="1" + android:fillColor="#D0D0D0" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.5611,3.6755l-0.0285,0.0285l-0.1725,-0.1715l0.0285,-0.0285z" + android:strokeWidth="1" + android:fillColor="#D0D0D0" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M1.9115,3.3755C1.9824,3.3043 2.1168,3.3221 2.2115,3.4181C2.3061,3.5141 2.3253,3.6472 2.2544,3.7181C2.1835,3.7891 2.0491,3.7701 1.9544,3.6752C1.8597,3.5803 1.84,3.4464 1.9115,3.3755Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.1256,3.7333l-0.0285,-0.0285l0.0571,-0.1144l-0.1141,0.0573l-0.0285,-0.0288l0.2285,-0.1149z" + android:strokeWidth="1" + android:fillColor="#D0D0D0" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M1.9544,3.5611l-0.0288,-0.0285l0.1715,-0.1725l0.0285,0.0285z" + android:strokeWidth="1" + android:fillColor="#D0D0D0" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.8149,3.6704C2.4689,3.6705 2.1569,3.4621 2.0244,3.1425C1.8919,2.8228 1.965,2.4548 2.2097,2.2101C2.4543,1.9654 2.8223,1.8922 3.142,2.0246C3.4617,2.157 3.6701,2.4689 3.6701,2.8149C3.6695,3.287 3.287,3.6697 2.8149,3.6704ZM2.8149,1.9731C2.4744,1.973 2.1673,2.178 2.037,2.4926C1.9066,2.8072 1.9785,3.1693 2.2193,3.4101C2.46,3.651 2.8222,3.723 3.1368,3.5927C3.4514,3.4625 3.6565,3.1555 3.6565,2.8149C3.6559,2.3504 3.2795,1.9739 2.8149,1.9733L2.8149,1.9731Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.8149,3.4683C2.5507,3.4683 2.3125,3.3091 2.2113,3.065C2.1102,2.8208 2.1661,2.5398 2.353,2.353C2.5398,2.1661 2.8208,2.1102 3.065,2.2113C3.3091,2.3125 3.4683,2.5507 3.4683,2.8149C3.4678,3.1756 3.1756,3.4678 2.8149,3.4683L2.8149,3.4683ZM2.8149,2.1752C2.4615,2.1752 2.1749,2.4617 2.1749,2.8152C2.1749,3.1687 2.4615,3.4552 2.8149,3.4552C3.1684,3.4552 3.4549,3.1687 3.4549,2.8152C3.4549,2.4617 3.1684,2.1752 2.8149,2.1752Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.5012,3.5113m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.1479,3.5113m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.788,3.5016L2.788,3.5437L2.7347,3.5437C2.6813,3.5437 2.6813,3.5859 2.7347,3.5859L2.788,3.5859L2.788,3.628C2.788,3.6717 2.8349,3.6771 2.8384,3.6317L2.8419,3.5861L2.8952,3.5861C2.9485,3.5861 2.9485,3.544 2.8952,3.544L2.8419,3.544L2.8419,3.5019C2.8419,3.4871 2.8299,3.4752 2.8152,3.4752C2.8005,3.4752 2.7885,3.4871 2.7885,3.5019L2.788,3.5016Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.0267,3.024L2.0824,3.0107L2.0763,2.984C2.0755,2.9792 2.0729,2.9749 2.0691,2.972C2.0639,2.9695 2.0581,2.9688 2.0525,2.9701L2.0525,2.9661L2.1005,2.9549L2.1005,2.9587C2.0964,2.9594 2.0924,2.9612 2.0891,2.9637C2.0869,2.9655 2.0853,2.9679 2.0845,2.9707C2.0836,2.9743 2.0836,2.9782 2.0845,2.9819L2.0907,3.0085L2.1352,2.9979C2.14,2.997 2.1447,2.9954 2.1491,2.9931C2.1508,2.9917 2.152,2.9898 2.1525,2.9877C2.1533,2.9844 2.1533,2.9809 2.1525,2.9776L2.1525,2.9723L2.1563,2.9723L2.1709,3.0328L2.1669,3.0328L2.1669,3.0277C2.1661,3.0229 2.163,3.0186 2.1587,3.0163C2.1531,3.0152 2.1474,3.0157 2.1421,3.0176L2.0507,3.0395C2.0459,3.0403 2.0412,3.0418 2.0368,3.044C2.0351,3.0454 2.0339,3.0473 2.0333,3.0493C2.0325,3.0528 2.0325,3.0563 2.0333,3.0597L2.0333,3.0645L2.0267,3.0667L2.0016,2.96L2.0325,2.9515L2.0325,2.9549C2.0276,2.9574 2.0232,2.9607 2.0195,2.9648C2.0171,2.9678 2.0155,2.9714 2.0149,2.9752C2.0145,2.9809 2.0152,2.9866 2.0168,2.992L2.0267,3.024ZM1.9896,2.7733C1.9905,2.7547 1.9993,2.7373 2.0139,2.7256C2.0286,2.7129 2.0478,2.7065 2.0672,2.7077C2.0874,2.7084 2.1066,2.7171 2.1205,2.7317C2.1338,2.7456 2.1407,2.7643 2.1395,2.7835C2.1387,2.8026 2.1299,2.8205 2.1152,2.8328C2.0995,2.8458 2.0792,2.852 2.0589,2.8499C2.0376,2.8494 2.0176,2.8397 2.004,2.8232C1.9922,2.8094 1.9864,2.7915 1.9877,2.7733L1.9896,2.7733ZM1.9973,2.7785C1.9962,2.7913 2.0009,2.804 2.0101,2.8124C2.0248,2.8249 2.0431,2.8315 2.0619,2.8311C2.0812,2.8336 2.1007,2.8291 2.1173,2.8184C2.1273,2.8111 2.1334,2.7992 2.1336,2.7864C2.1347,2.7726 2.1295,2.759 2.1197,2.7499C2.1056,2.7382 2.088,2.7321 2.0701,2.7326C2.0505,2.7299 2.0307,2.7342 2.0136,2.7448C2.0035,2.7526 1.9974,2.7651 1.9973,2.7785L1.9973,2.7785ZM2.2077,2.5091L2.1941,2.5453L2.1141,2.5672C2.1141,2.5707 2.112,2.5733 2.1112,2.5755C2.1104,2.5776 2.1112,2.5773 2.1112,2.5784C2.1111,2.5794 2.1111,2.5804 2.1112,2.5813L2.1507,2.5963C2.1558,2.5991 2.1616,2.6003 2.1675,2.5997C2.1717,2.5979 2.1749,2.5943 2.1763,2.5899L2.1784,2.5845L2.1821,2.5845L2.16,2.6429L2.1563,2.6413L2.1547,2.64C2.1571,2.6355 2.1571,2.6301 2.1547,2.6256C2.1506,2.622 2.1458,2.6194 2.1405,2.6179L2.0533,2.5835C2.0482,2.5808 2.0423,2.5797 2.0365,2.5803C2.0322,2.5821 2.0289,2.5857 2.0275,2.5901L2.0256,2.5952L2.0219,2.5952L2.0408,2.5456C2.0445,2.5347 2.0496,2.5244 2.056,2.5149C2.0607,2.5089 2.0671,2.5044 2.0744,2.5019C2.0818,2.4991 2.0899,2.4991 2.0973,2.5019C2.1053,2.5049 2.1119,2.5108 2.1157,2.5184C2.1202,2.5278 2.1214,2.5384 2.1192,2.5485L2.1688,2.5355C2.1774,2.5336 2.1856,2.5303 2.1931,2.5256C2.1983,2.5213 2.2026,2.5159 2.2056,2.5099L2.2091,2.5099L2.2077,2.5091ZM2.1351,2.6196C2.1349,2.6177 2.1349,2.6159 2.1351,2.6141L2.1351,2.61C2.1437,2.5938 2.1469,2.5749 2.1441,2.5566C2.1394,2.5422 2.1288,2.531 2.1154,2.526C2.1032,2.5205 2.0894,2.5205 2.0772,2.526C2.0651,2.5322 2.0558,2.5434 2.0515,2.557C2.0487,2.5661 2.0466,2.5754 2.0451,2.5849L2.1359,2.6219L2.1351,2.6196ZM2.4107,2.0989L2.4373,2.1352L2.4341,2.1373C2.4265,2.1307 2.4173,2.126 2.4075,2.1237C2.3954,2.1215 2.3829,2.1242 2.3728,2.1312C2.3581,2.1398 2.3492,2.1555 2.3493,2.1725C2.3494,2.1882 2.3542,2.2034 2.3632,2.2163C2.37,2.227 2.3791,2.2361 2.3899,2.2429C2.3992,2.2492 2.4101,2.2525 2.4213,2.2525C2.4308,2.2525 2.44,2.2499 2.448,2.2448C2.4524,2.2419 2.4564,2.2385 2.46,2.2347C2.4635,2.2307 2.4664,2.2263 2.4688,2.2216L2.4483,2.1867C2.446,2.1824 2.4428,2.1787 2.4389,2.1757C2.4368,2.1744 2.4342,2.1738 2.4317,2.1741C2.4277,2.175 2.4239,2.1768 2.4205,2.1792L2.4184,2.1757L2.4656,2.1453L2.4677,2.1488L2.4656,2.1501C2.4614,2.1521 2.4588,2.1564 2.4589,2.1611C2.4601,2.1663 2.4624,2.1712 2.4656,2.1755L2.4899,2.2128C2.4856,2.2205 2.4805,2.2276 2.4747,2.2341C2.4685,2.2406 2.4616,2.2464 2.4541,2.2512C2.4344,2.2658 2.4091,2.2702 2.3856,2.2632C2.3696,2.2582 2.3558,2.2477 2.3467,2.2336C2.3397,2.2228 2.3355,2.2104 2.3344,2.1976C2.333,2.1828 2.3356,2.1678 2.3421,2.1544C2.3483,2.1427 2.3575,2.133 2.3688,2.1261C2.3728,2.1234 2.3771,2.1211 2.3816,2.1192C2.3876,2.1171 2.3938,2.1154 2.4,2.1141C2.4028,2.1136 2.4055,2.1127 2.408,2.1115C2.4093,2.1108 2.41,2.1094 2.4099,2.108C2.4098,2.1055 2.409,2.1031 2.4075,2.1011L2.4109,2.0989L2.4107,2.0989ZM2.6472,2.1152L2.5939,2.1296L2.5901,2.1544C2.5895,2.1587 2.5895,2.1631 2.5901,2.1675C2.5908,2.1697 2.5925,2.1715 2.5947,2.1723C2.5993,2.1735 2.6042,2.1735 2.6088,2.1723L2.6088,2.176L2.5643,2.1867L2.5643,2.1827C2.5682,2.1812 2.5718,2.1788 2.5747,2.1757C2.5783,2.1684 2.5804,2.1604 2.5811,2.1523L2.5997,2.0237L2.6032,2.0237L2.6832,2.1275C2.6873,2.1337 2.6926,2.139 2.6989,2.1429C2.7037,2.1446 2.7089,2.1446 2.7136,2.1429L2.7136,2.1469L2.6584,2.1616L2.6584,2.1579C2.6624,2.1569 2.6661,2.1548 2.6691,2.152C2.67,2.1499 2.67,2.1475 2.6691,2.1453C2.6672,2.1405 2.6645,2.136 2.6611,2.132L2.6472,2.1141L2.6472,2.1152ZM2.6939,2.1376L2.6132,2.0579L2.5939,2.1579L2.6939,2.1376L2.6939,2.1376ZM2.8987,2.1083L2.9024,2.1083L2.8883,2.1472L2.776,2.1427L2.776,2.1387L2.7816,2.1387C2.7867,2.1393 2.7917,2.1373 2.7949,2.1333C2.7972,2.1284 2.7982,2.123 2.7979,2.1176L2.8013,2.0237C2.8024,2.018 2.8016,2.012 2.7992,2.0067C2.796,2.0032 2.7916,2.0013 2.7869,2.0013L2.7813,2.0013L2.7813,1.9973L2.8469,1.9997L2.8469,2.0037C2.8415,2.0032 2.8359,2.0038 2.8307,2.0053C2.8279,2.0064 2.8256,2.0082 2.824,2.0107C2.8222,2.0159 2.8214,2.0214 2.8216,2.0269L2.8181,2.1184C2.8173,2.1224 2.8173,2.1266 2.8181,2.1307C2.8189,2.1323 2.8202,2.1335 2.8219,2.1341C2.8273,2.1354 2.8328,2.1359 2.8384,2.1357L2.8491,2.1357C2.8569,2.1363 2.8648,2.1357 2.8725,2.1341C2.8774,2.1324 2.8818,2.1296 2.8853,2.1259C2.8903,2.12 2.8943,2.1134 2.8973,2.1064L2.8987,2.1083ZM3.0933,2.16L3.0965,2.1616L3.0723,2.1952L2.9656,2.16L2.9656,2.1563L2.9709,2.1579C2.9757,2.1599 2.9811,2.1592 2.9853,2.1563C2.9888,2.1521 2.9912,2.1472 2.9923,2.1419L3.0219,2.0533C3.0243,2.0479 3.0252,2.0419 3.0243,2.036C3.0224,2.0313 3.0183,2.0278 3.0133,2.0267L3.0083,2.0251L3.0083,2.0211L3.0707,2.0419L3.0707,2.0456C3.0656,2.0435 3.0601,2.0425 3.0547,2.0427C3.0518,2.0427 3.049,2.0438 3.0469,2.0459C3.0437,2.0505 3.0413,2.0556 3.04,2.0611L3.0133,2.148C3.0118,2.1518 3.011,2.1559 3.0109,2.16C3.0114,2.1618 3.0124,2.1634 3.0139,2.1645C3.0188,2.1671 3.024,2.1692 3.0293,2.1707L3.0395,2.1741C3.0468,2.1769 3.0546,2.1786 3.0624,2.1792C3.0675,2.1788 3.0724,2.1773 3.0768,2.1747C3.083,2.1706 3.0885,2.1656 3.0933,2.16ZM3.2493,2.2424L3.2035,2.2099L3.1821,2.2229C3.1783,2.2251 3.1748,2.2279 3.1717,2.2312C3.1709,2.2333 3.1709,2.2357 3.1717,2.2379C3.1739,2.2421 3.1771,2.2457 3.1811,2.2483L3.1789,2.2517L3.1416,2.2251L3.1437,2.2219C3.1474,2.224 3.1515,2.2251 3.1557,2.2253C3.1637,2.2233 3.1712,2.2199 3.1779,2.2152L3.2885,2.1472L3.2917,2.1493L3.2632,2.2773C3.2611,2.2844 3.2604,2.2919 3.2613,2.2992C3.2627,2.3041 3.2657,2.3083 3.2699,2.3112L3.2675,2.3144L3.2205,2.2813L3.2229,2.2779C3.2261,2.2805 3.23,2.2821 3.2341,2.2824C3.2365,2.2822 3.2387,2.2811 3.2403,2.2792C3.2427,2.2746 3.2444,2.2697 3.2453,2.2645L3.2501,2.2424L3.2493,2.2424ZM3.286,2.272L3.312,2.172L3.212,2.2254L3.2885,2.272L3.286,2.272ZM3.4227,2.2667L3.4461,2.2984L3.4115,2.4347L3.4789,2.3845C3.4861,2.3792 3.4899,2.3752 3.4907,2.3723C3.4913,2.3676 3.4898,2.3629 3.4867,2.3595L3.4837,2.3555L3.4869,2.3531L3.5171,2.3939L3.5139,2.396L3.5107,2.392C3.5082,2.3875 3.5035,2.3848 3.4984,2.3848C3.4932,2.3861 3.4885,2.3887 3.4845,2.3923L3.3867,2.464L3.3843,2.4611L3.4213,2.3144L3.3493,2.3677C3.3421,2.3731 3.3384,2.3771 3.3376,2.38C3.337,2.3846 3.3385,2.3892 3.3416,2.3925L3.3445,2.3968L3.3413,2.3992L3.3115,2.3584L3.3144,2.3563L3.3176,2.3603C3.3202,2.3646 3.3248,2.3673 3.3299,2.3675C3.335,2.3662 3.3398,2.3636 3.3437,2.36L3.4237,2.3C3.4248,2.2955 3.4255,2.291 3.4259,2.2864C3.4257,2.2828 3.4249,2.2793 3.4237,2.276C3.4225,2.2731 3.4208,2.2704 3.4187,2.268L3.4219,2.2656L3.4227,2.2667ZM3.6059,2.6043L3.5733,2.616L3.5733,2.6123C3.5774,2.6104 3.5811,2.6079 3.5843,2.6048C3.5872,2.6017 3.5893,2.5978 3.5901,2.5936C3.5905,2.5886 3.5898,2.5836 3.588,2.5789L3.5811,2.5595L3.4765,2.5965C3.4709,2.5979 3.4657,2.6007 3.4616,2.6048C3.4597,2.609 3.4597,2.6139 3.4616,2.6181L3.4632,2.6229L3.4595,2.6229L3.44,2.5661L3.4437,2.5661L3.4456,2.5709C3.4469,2.5758 3.4504,2.5798 3.4552,2.5816C3.4605,2.5818 3.4658,2.5807 3.4707,2.5784L3.5733,2.5403L3.5675,2.5237C3.566,2.519 3.5639,2.5145 3.5611,2.5104C3.5584,2.5072 3.5547,2.5051 3.5507,2.5043C3.5453,2.5028 3.5397,2.5028 3.5344,2.5043L3.5344,2.5005L3.5669,2.4907L3.6067,2.6027L3.6059,2.6043ZM3.4909,2.8619L3.4891,2.8232L3.5541,2.7699C3.5541,2.7661 3.5541,2.7632 3.5541,2.7611C3.5543,2.76 3.5543,2.7589 3.5541,2.7579L3.5541,2.7547L3.512,2.7568C3.5061,2.7564 3.5003,2.7578 3.4952,2.7608C3.4921,2.7641 3.4906,2.7686 3.4912,2.7731L3.4912,2.7789L3.4872,2.7789L3.484,2.7168L3.488,2.7168L3.488,2.7224C3.4877,2.7276 3.4903,2.7325 3.4947,2.7352C3.4998,2.7365 3.5052,2.7365 3.5104,2.7352L3.6043,2.7304C3.6101,2.7307 3.6159,2.7294 3.6211,2.7267C3.6241,2.7232 3.6256,2.7185 3.6251,2.7139L3.6251,2.7085L3.6291,2.7085L3.6317,2.7619C3.6328,2.7734 3.6322,2.7849 3.6301,2.7963C3.6282,2.8036 3.6243,2.8102 3.6189,2.8155C3.6131,2.8208 3.6055,2.8239 3.5976,2.8243C3.589,2.8247 3.5806,2.8219 3.5739,2.8165C3.5661,2.8095 3.5607,2.8002 3.5587,2.7899L3.5187,2.8219C3.5115,2.8269 3.5054,2.8332 3.5005,2.8405C3.4974,2.8466 3.4956,2.8534 3.4955,2.8603L3.4909,2.8619ZM3.5604,2.7582L3.5604,2.7658C3.5602,2.7674 3.5602,2.769 3.5604,2.7706C3.56,2.7933 3.5658,2.8155 3.5768,2.8333C3.5864,2.8462 3.6,2.8531 3.6139,2.8522C3.627,2.8518 3.6395,2.8446 3.6484,2.8322C3.657,2.8194 3.6611,2.8026 3.6597,2.7858C3.659,2.7744 3.6575,2.7632 3.6551,2.7523L3.56,2.7582L3.5604,2.7582ZM3.6,3.0528L3.5872,3.1019L3.5835,3.1019L3.5835,3.0989C3.5841,3.0962 3.5841,3.0934 3.5835,3.0907C3.5827,3.0866 3.5812,3.0828 3.5792,3.0792C3.5757,3.0742 3.5717,3.0695 3.5675,3.0651L3.5229,3.0171L3.4877,3.008C3.4789,3.0056 3.4733,3.0051 3.4707,3.008C3.4667,3.0105 3.4639,3.0146 3.4629,3.0192L3.4629,3.0237L3.4592,3.0237L3.4747,2.964L3.4787,2.964L3.4787,2.9691C3.4769,2.9738 3.4777,2.9792 3.4808,2.9832C3.4851,2.9863 3.49,2.9884 3.4952,2.9893L3.5285,2.9981L3.5976,2.9749C3.6028,2.9733 3.6079,2.9713 3.6128,2.9691C3.6163,2.9667 3.6193,2.9638 3.6219,2.9605C3.6232,2.9589 3.624,2.957 3.6243,2.9549L3.6283,2.9549L3.6125,3.0152L3.6085,3.0152L3.6085,3.012C3.6093,3.0089 3.6093,3.0057 3.6085,3.0027C3.6079,2.9997 3.6056,2.9975 3.6027,2.9968C3.5975,2.9965 3.5923,2.9974 3.5875,2.9995L3.5341,3.0168L3.5704,3.0557C3.5737,3.0601 3.5781,3.0636 3.5832,3.0659C3.585,3.0664 3.587,3.0664 3.5888,3.0659C3.5907,3.0651 3.5923,3.0639 3.5936,3.0624C3.5953,3.06 3.5964,3.0573 3.5971,3.0544L3.6008,3.0544L3.6,3.0528Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.276,2.9393C3.2937,2.9364 3.3117,2.9364 3.3294,2.9393C3.3294,2.9393 3.3324,2.9556 3.3237,2.9609C3.3382,2.9653 3.3532,2.9668 3.368,2.9654C3.368,2.9654 3.3548,2.9778 3.348,2.9826C3.3587,2.9863 3.3684,2.9934 3.376,3.003C3.3623,3.0069 3.348,3.0069 3.3343,3.003C3.3388,3.0136 3.3412,3.0253 3.3412,3.0371C3.3155,3.0296 3.2928,3.012 3.2771,2.9871" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.3376,3.0339L3.3335,3.0339C3.3097,3.0267 3.2888,3.0094 3.2744,2.9851L3.2801,2.981C3.2927,3.0014 3.3106,3.016 3.3308,3.0223C3.3302,3.0139 3.3283,3.0056 3.3254,2.9979L3.3203,2.9864L3.3301,2.9926C3.3391,2.9961 3.3486,2.9971 3.3578,2.9955C3.353,2.9895 3.3469,2.9854 3.3403,2.9835L3.3298,2.9835L3.3386,2.9768C3.3419,2.9745 3.345,2.9718 3.348,2.969C3.3376,2.9698 3.3272,2.9681 3.3173,2.964L3.3119,2.9603L3.3173,2.9566C3.321,2.9541 3.321,2.9479 3.321,2.9442C3.3066,2.9413 3.2919,2.9413 3.2774,2.9442L3.2774,2.9359C3.2936,2.9333 3.3099,2.9333 3.3261,2.9359L3.3285,2.9359L3.3285,2.9388C3.3294,2.9454 3.3287,2.9522 3.3264,2.9582C3.3377,2.9598 3.349,2.9598 3.3602,2.9582L3.371,2.9582L3.3626,2.9661L3.3501,2.9773C3.3575,2.9816 3.3641,2.9876 3.3697,2.995L3.3744,3.0008L3.368,3.0008C3.3575,3.0027 3.3468,3.0027 3.3362,3.0008C3.3387,3.0089 3.3398,3.0175 3.3396,3.0261L3.3376,3.0339Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.2536,2.9399C3.2416,2.9829 3.1536,2.9027 3.1536,2.9027C3.1759,2.9529 3.2105,2.9888 3.2504,3.0027" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.2445,3.0003C3.2059,2.9881 3.1723,2.9547 3.1512,2.9076L3.1564,2.9003C3.1731,2.9154 3.2207,2.9526 3.2389,2.9437C3.2414,2.9425 3.2434,2.9398 3.2445,2.9364L3.2512,2.9406C3.2495,2.9469 3.2458,2.9517 3.2412,2.9537C3.2154,2.9541 3.1902,2.9433 3.169,2.9228C3.188,2.9574 3.2152,2.9812 3.2456,2.9898L3.2445,3.0003Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.4848,3.2976l0.6901,0l0.0533,-0.0424l-0.0888,-0.0477l-0.1368,-0.0464l-0.0533,-0.0301l-0.1011,0.0053l-0.0848,0.0451l-0.116,0.0139l-0.0267,0.0315l-0.0861,0.0067l-0.1352,-0.0027l0.2256,0.0355l-0.1867,-0.0096l0.0477,0.0411z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.1757,3.3003L2.4837,3.3003L2.4304,3.2536L2.5725,3.2608L2.3981,3.2341L2.3981,3.2288L2.5336,3.2315L2.6181,3.2248L2.6448,3.1933L2.6448,3.1933L2.7603,3.1797L2.8456,3.1344L2.9477,3.1291L2.9477,3.1291L3.0024,3.1592L3.1387,3.2053L3.2315,3.2552L3.1757,3.3003ZM2.4859,3.2949L3.1733,3.2949L3.2227,3.2557L3.1376,3.2099L3.0013,3.1635L2.948,3.1336L2.8483,3.1389L2.7629,3.1843L2.648,3.1976L2.6213,3.2291L2.6213,3.2291L2.5352,3.2357L2.4395,3.2339L2.6261,3.2632L2.6261,3.2685L2.4483,3.2595L2.4859,3.2949Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.8565,3.0995C2.7701,3.0531 2.7448,3.1675 2.7075,3.1952C2.7579,3.2037 2.7957,3.1565 2.8387,3.1336C2.8715,3.2224 2.9229,3.1637 2.9229,3.1637C2.9229,3.1637 2.9763,3.2488 3.0477,3.2101C3.06,3.2185 3.076,3.2191 3.0888,3.2115C3.0888,3.2115 3.1155,3.2163 3.1203,3.2048C3.1339,3.2093 3.1491,3.1923 3.1491,3.1923C3.1491,3.1923 3.1787,3.1923 3.1845,3.1773C3.2285,3.1853 3.2869,3.0872 3.2869,3.0872L3.3048,3.0531L3.3315,3.0475C3.3315,3.0475 3.3331,3.0304 3.3192,3.0312C3.3192,3.0208 3.3099,3.0155 3.2973,3.0176C3.2997,3.0112 3.2904,3.0067 3.2904,3.0067C3.2659,3.0128 3.2637,3.0749 3.2637,3.0749C3.2449,3.0895 3.2253,3.1032 3.2051,3.1157C3.2051,3.0803 3.1448,3.0323 3.1571,3.0091C3.1693,2.9859 3.208,3.0443 3.2419,3.0336C3.2757,3.0229 3.2923,2.9803 3.2952,2.9448C3.2854,2.9237 3.2745,2.9031 3.2624,2.8832L3.2405,2.8832L3.2213,2.8368C3.2213,2.8368 3.1811,2.8635 3.1816,2.8859C3.1821,2.9083 3.224,2.9283 3.224,2.9283C3.2102,2.9368 3.1936,2.9398 3.1776,2.9365C3.1755,2.9597 3.2043,2.9555 3.216,2.9557C3.2199,2.9669 3.2277,2.9763 3.2379,2.9824C3.2379,2.9824 3.248,3.0091 3.2213,3.0056C3.1947,3.0021 3.1632,2.9419 3.1256,2.9701C3.088,2.9984 3.1435,3.0549 3.1435,3.0549C3.1184,3.0704 3.0988,3.0933 3.0875,3.1205C3.0024,3.0488 2.9525,3.0821 2.8579,3.1013L2.8565,3.0995Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.0104,3.2229C2.991,3.2224 2.9723,3.2156 2.9571,3.2035C2.9437,3.1936 2.932,3.1816 2.9224,3.168C2.9114,3.1798 2.8956,3.186 2.8795,3.1848C2.8624,3.1819 2.8483,3.1659 2.8373,3.1376C2.8252,3.1447 2.8134,3.1526 2.8021,3.1611C2.7733,3.1821 2.7432,3.2037 2.7072,3.1979L2.7008,3.1979L2.7059,3.1941C2.7181,3.1827 2.7285,3.1694 2.7365,3.1547C2.7632,3.1144 2.7941,3.0645 2.8571,3.0976C2.8739,3.0941 2.8891,3.0904 2.904,3.0867C2.9688,3.0704 3.016,3.0584 3.0851,3.1152C3.0967,3.09 3.1152,3.0687 3.1384,3.0536C3.1216,3.0379 3.111,3.0167 3.1085,2.9939C3.1092,2.9832 3.1147,2.9733 3.1235,2.9672C3.1501,2.948 3.1715,2.9672 3.1912,2.9837C3.1993,2.9924 3.2096,2.9988 3.2211,3.0021C3.2259,3.0035 3.2312,3.002 3.2347,2.9984C3.2368,2.9937 3.2368,2.9882 3.2347,2.9835C3.2251,2.9775 3.2175,2.9688 3.2131,2.9584L3.2096,2.9584C3.1987,2.9601 3.1875,2.9575 3.1784,2.9512C3.1748,2.9471 3.1733,2.9416 3.1741,2.9363L3.1741,2.9333L3.1773,2.9333C3.1908,2.9364 3.2049,2.9345 3.2171,2.928C3.2059,2.9219 3.1787,2.9053 3.1779,2.8856C3.1779,2.8613 3.2171,2.8352 3.2187,2.8341L3.2216,2.8323L3.2413,2.8803L3.2629,2.8816L3.2629,2.8816C3.2752,2.9015 3.2862,2.9222 3.296,2.9435L3.296,2.9435C3.2944,2.98 3.2768,3.0235 3.2427,3.0349C3.2243,3.0405 3.2048,3.0275 3.1893,3.0171C3.1792,3.0101 3.1696,3.0037 3.1627,3.0051C3.1627,3.0051 3.16,3.0051 3.1584,3.0091C3.1528,3.0195 3.1656,3.0376 3.1789,3.0571C3.1915,3.0728 3.2006,3.0909 3.2056,3.1104C3.2213,3.1011 3.2531,3.0771 3.2589,3.0725C3.2589,3.0629 3.2624,3.0091 3.2856,3.0029L3.2856,3.0029L3.2856,3.0029C3.2899,3.0047 3.2931,3.0085 3.2941,3.0131C3.2997,3.0124 3.3054,3.0139 3.3099,3.0173C3.313,3.0197 3.315,3.0233 3.3155,3.0272C3.3186,3.0274 3.3215,3.0287 3.3237,3.0309C3.3271,3.0353 3.3286,3.0409 3.328,3.0464L3.328,3.0485L3.3013,3.0541L3.284,3.0872C3.2816,3.0912 3.2285,3.1792 3.1843,3.1792L3.1808,3.1792C3.1736,3.1925 3.1504,3.1939 3.1448,3.1941C3.1378,3.2026 3.1272,3.2073 3.1163,3.2067C3.1091,3.2165 3.0896,3.2141 3.084,3.2133C3.0712,3.2209 3.0552,3.2209 3.0424,3.2133C3.0325,3.2187 3.0216,3.222 3.0104,3.2229L3.0104,3.2229ZM2.9232,3.1592L2.9251,3.1621C2.9272,3.1656 2.9784,3.2448 3.0467,3.2077L3.0467,3.2077L3.0467,3.2077C3.0583,3.215 3.0731,3.215 3.0848,3.2077L3.0848,3.2077L3.0848,3.2077C3.0915,3.2077 3.1096,3.2104 3.1133,3.2024L3.1133,3.2003L3.1155,3.2003C3.1272,3.2043 3.1421,3.1888 3.1421,3.1888L3.1421,3.1888L3.1421,3.1888C3.1421,3.1888 3.1688,3.1888 3.1749,3.1757L3.1749,3.1736L3.1773,3.1736L3.1819,3.1736C3.2232,3.1736 3.2763,3.0851 3.2768,3.0843L3.2952,3.0491L3.3203,3.0437C3.3204,3.0404 3.3194,3.0371 3.3173,3.0344C3.3155,3.0328 3.3131,3.032 3.3107,3.0323L3.308,3.0323L3.308,3.0296C3.308,3.0264 3.3065,3.0233 3.304,3.0213C3.2998,3.0183 3.2944,3.0173 3.2893,3.0187L3.2845,3.0187L3.2861,3.0144C3.2861,3.0115 3.2835,3.0085 3.2816,3.0075C3.264,3.0133 3.2592,3.0563 3.2587,3.0728L3.2587,3.0728L3.2587,3.0728C3.2397,3.0876 3.2199,3.1013 3.1995,3.1139L3.1957,3.116L3.1957,3.1117C3.1916,3.092 3.1824,3.0736 3.1691,3.0584C3.1547,3.0379 3.1424,3.0181 3.1483,3.0051C3.1498,3.0019 3.1526,2.9996 3.156,2.9987C3.164,2.9965 3.1741,3.0035 3.1859,3.0112C3.1976,3.0189 3.2187,3.0333 3.2347,3.0283C3.2653,3.0187 3.2829,2.9781 3.2845,2.9427C3.2752,2.9223 3.2647,2.9024 3.2531,2.8832L3.2309,2.8832L3.2123,2.8384C3.2035,2.8445 3.1763,2.8651 3.1768,2.8832C3.1773,2.9013 3.2171,2.9229 3.2176,2.9232L3.2219,2.9253L3.2179,2.928C3.2043,2.9362 3.1883,2.9395 3.1725,2.9373C3.1726,2.9401 3.1736,2.9428 3.1755,2.9448C3.1811,2.9509 3.1939,2.9507 3.2021,2.9504L3.2096,2.9504L3.2096,2.9523C3.2136,2.9625 3.2209,2.9711 3.2304,2.9765L3.2304,2.9765L3.2304,2.9765C3.2334,2.9833 3.2334,2.9911 3.2304,2.9979C3.2257,3.0029 3.2187,3.0051 3.212,3.0035C3.1994,3.0002 3.188,2.9934 3.1792,2.9837C3.16,2.9677 3.1403,2.9509 3.1181,2.9675C3.1107,2.9727 3.106,2.981 3.1053,2.9901C3.1037,3.0168 3.136,3.0477 3.1363,3.048L3.1389,3.0507L3.1357,3.0525C3.1111,3.0677 3.0919,3.0902 3.0808,3.1168L3.0808,3.12L3.0779,3.1176C3.0096,3.06 2.9656,3.0712 2.8989,3.088C2.8837,3.0917 2.868,3.0957 2.8507,3.0992L2.8507,3.0992L2.8507,3.0992C2.7917,3.0675 2.7624,3.1133 2.7365,3.1539C2.729,3.167 2.72,3.1794 2.7099,3.1907C2.7408,3.1933 2.7672,3.1741 2.7949,3.1539C2.807,3.144 2.8199,3.1351 2.8333,3.1272L2.836,3.1272L2.836,3.1301C2.8464,3.1568 2.8595,3.1741 2.8752,3.1768C2.8906,3.1774 2.9054,3.1709 2.9155,3.1592L2.9232,3.1592Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.7323,2.9779C2.7677,3.0115 2.7429,3.0669 2.7568,3.0776C2.7707,3.0883 2.7923,3.0723 2.7923,3.0723C2.8273,3.076 2.8628,3.0722 2.8963,3.0613C2.9256,3.0776 2.9139,3.0533 2.9317,3.0544C2.9475,3.0947 3,3.0872 3,3.0872C2.9769,3.0629 2.9507,3.0418 2.9221,3.0243C2.8898,3.0358 2.8553,3.0404 2.8211,3.0379C2.8083,3.0357 2.8163,3.02 2.8101,3.0112C2.8347,2.9875 2.8152,2.9283 2.8019,2.9045C2.7485,2.8685 2.6827,2.9312 2.7323,2.9771L2.7323,2.9779Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.9907,3.0904C2.9656,3.0925 2.9416,3.0793 2.9299,3.0571C2.9256,3.0571 2.9243,3.0597 2.9221,3.0627C2.92,3.0656 2.9133,3.0736 2.8955,3.0643C2.8623,3.075 2.8272,3.0788 2.7925,3.0752C2.7877,3.0787 2.7691,3.0909 2.7547,3.0797C2.7483,3.0749 2.7485,3.0635 2.7491,3.0493C2.7533,3.0244 2.7463,2.9989 2.7299,2.9797L2.7299,2.9797C2.7199,2.9721 2.7134,2.9607 2.7118,2.9483C2.7103,2.9358 2.7138,2.9232 2.7216,2.9133C2.7417,2.8899 2.7763,2.8855 2.8016,2.9032L2.8016,2.9032C2.8163,2.9275 2.8339,2.9848 2.8109,3.0099C2.8125,3.0139 2.8132,3.0181 2.8131,3.0224C2.8131,3.0301 2.8131,3.0331 2.8189,3.0339C2.8525,3.0364 2.8863,3.032 2.9181,3.0208L2.9181,3.0208L2.9181,3.0208C2.9475,3.0383 2.9744,3.0597 2.9981,3.0843L3.0019,3.088L2.9965,3.088C2.9946,3.0889 2.9927,3.0897 2.9907,3.0904L2.9907,3.0904ZM2.9307,3.0517L2.9333,3.0517L2.9333,3.0533C2.9446,3.0753 2.9683,3.0879 2.9928,3.0851C2.9715,3.0629 2.9475,3.0435 2.9213,3.0275C2.8886,3.0387 2.854,3.0431 2.8195,3.0405C2.8096,3.0389 2.8093,3.0304 2.8091,3.0237C2.8094,3.0198 2.8087,3.0158 2.8069,3.0123L2.8069,3.0104L2.8085,3.0088C2.832,2.9859 2.8125,2.9288 2.8003,2.9075C2.7771,2.891 2.7452,2.8949 2.7267,2.9165C2.7196,2.9254 2.7164,2.9367 2.7179,2.9479C2.7193,2.9591 2.7253,2.9693 2.7344,2.976L2.7344,2.976C2.752,2.9961 2.7597,3.023 2.7555,3.0493C2.7555,3.0616 2.7555,3.0723 2.7587,3.076C2.7715,3.0859 2.7907,3.0707 2.7909,3.0707L2.7909,3.0707L2.7909,3.0707C2.8255,3.0743 2.8603,3.0705 2.8933,3.0597L2.8933,3.0597L2.8933,3.0597C2.9085,3.0683 2.9107,3.0651 2.9133,3.0597C2.9163,3.0531 2.9237,3.0496 2.9307,3.0517Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.496,2.8779C2.4512,2.8899 2.3739,2.82 2.3376,2.8469C2.3013,2.8739 2.3181,2.9397 2.3424,2.9725C2.3667,3.0053 2.3077,3.0163 2.292,3.0355C2.2763,3.0547 2.2968,3.0741 2.2968,3.0741L2.3133,3.0845L2.3104,3.1088L2.3192,3.1379C2.3192,3.1379 2.3272,3.1448 2.3299,3.1357C2.3373,3.1435 2.3299,3.1651 2.3491,3.1677C2.3424,3.1539 2.3539,3.1144 2.3539,3.1144C2.3539,3.1144 2.3864,3.1168 2.3944,3.1029C2.4024,3.0891 2.3867,3.0584 2.3867,3.0584L2.3965,3.0584C2.3886,3.0503 2.3834,3.0398 2.3819,3.0285C2.3819,3.0285 2.4267,3.0152 2.4267,2.9813C2.4267,2.9475 2.3536,2.9109 2.3803,2.8933C2.4069,2.8757 2.4603,2.944 2.5051,2.9117C2.5499,2.8795 2.5203,2.9117 2.5203,2.9117C2.5203,2.9117 2.5403,2.8669 2.4963,2.8789L2.496,2.8779Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.3539,3.1712L2.3488,3.1712C2.3352,3.1691 2.3331,3.1584 2.3315,3.1496C2.3313,3.147 2.3307,3.1444 2.3299,3.1419C2.329,3.1427 2.328,3.1434 2.3269,3.1437C2.3234,3.1441 2.3199,3.143 2.3173,3.1405L2.3173,3.1405L2.3083,3.1104L2.3083,3.1104L2.3109,3.0877L2.296,3.0781C2.2837,3.0673 2.2815,3.049 2.2907,3.0355C2.2979,3.0283 2.3063,3.0224 2.3155,3.0179C2.3291,3.0101 2.3421,3.0021 2.3453,2.9912C2.3461,2.9856 2.3445,2.9798 2.3408,2.9755C2.3141,2.9397 2.3,2.8731 2.3365,2.8461C2.3571,2.8307 2.3899,2.8448 2.4219,2.8587C2.4442,2.8717 2.4699,2.8779 2.4957,2.8765L2.4957,2.8765C2.5093,2.8731 2.5189,2.8741 2.5237,2.88C2.5272,2.8846 2.5287,2.8903 2.5277,2.896C2.5288,2.8951 2.5304,2.8951 2.5315,2.896C2.5315,2.896 2.5347,2.8995 2.5227,2.9128L2.5181,2.9099C2.5189,2.9082 2.5195,2.9065 2.52,2.9048L2.5069,2.9141C2.4803,2.9333 2.4536,2.9189 2.4288,2.9061C2.4099,2.8965 2.3939,2.888 2.3821,2.8957C2.3797,2.8971 2.3779,2.8994 2.3773,2.9021C2.3773,2.9099 2.3875,2.9211 2.3989,2.9331C2.4104,2.9451 2.4293,2.9645 2.4296,2.9816C2.4296,3.0131 2.3952,3.028 2.3856,3.0317C2.3869,3.0418 2.3914,3.0511 2.3984,3.0584L2.4056,3.0632L2.3917,3.0632C2.3957,3.0723 2.4045,3.0944 2.3973,3.1064C2.3901,3.1184 2.3643,3.1197 2.3565,3.1195C2.351,3.1349 2.3495,3.1515 2.352,3.1677L2.3539,3.1712ZM2.3272,3.1307L2.3304,3.1339C2.3334,3.1379 2.3351,3.1427 2.3355,3.1477C2.3371,3.1557 2.3384,3.1613 2.3437,3.1637C2.3429,3.1471 2.3451,3.1305 2.3501,3.1147L2.3501,3.1128L2.3523,3.1128C2.3608,3.1128 2.3843,3.1128 2.3904,3.1027C2.3965,3.0925 2.3867,3.0688 2.3824,3.0608L2.3805,3.0568L2.388,3.0568C2.3826,3.0487 2.379,3.0397 2.3773,3.0301L2.3773,3.028L2.3795,3.028C2.3795,3.028 2.4227,3.0139 2.4221,2.9824C2.4221,2.9677 2.4064,2.9517 2.3928,2.9376C2.3792,2.9235 2.3688,2.9125 2.3699,2.9024C2.3706,2.8982 2.3731,2.8945 2.3768,2.8923C2.3912,2.8827 2.4096,2.8923 2.4301,2.9021C2.4544,2.9147 2.4795,2.9288 2.5027,2.9107C2.5085,2.9062 2.5145,2.902 2.5208,2.8981C2.5223,2.8931 2.5215,2.8876 2.5187,2.8832C2.5141,2.8781 2.504,2.8795 2.4963,2.8816L2.4963,2.8816C2.4691,2.8833 2.4421,2.8769 2.4187,2.8632C2.3883,2.8501 2.3568,2.8365 2.3387,2.8501C2.3048,2.8752 2.3189,2.9379 2.344,2.972C2.3487,2.9775 2.3507,2.9848 2.3496,2.992C2.3469,3.0048 2.3317,3.0133 2.3171,3.0219C2.3084,3.026 2.3005,3.0315 2.2936,3.0381C2.2805,3.0541 2.2981,3.0731 2.2984,3.0733L2.3157,3.0843L2.3128,3.1096L2.3211,3.1363C2.3224,3.1367 2.3238,3.1367 2.3251,3.1363C2.3251,3.1363 2.3264,3.1347 2.3267,3.1339L2.3272,3.1307Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.7267,2.4C2.6669,2.3752 2.5448,2.3733 2.4765,2.34C2.4561,2.3403 2.4382,2.3538 2.4323,2.3733C2.4011,2.3733 2.3789,2.4211 2.3843,2.4309C2.3275,2.4077 2.3011,2.4979 2.3195,2.5163C2.2709,2.5181 2.2768,2.5803 2.2723,2.5976C2.2568,2.6352 2.2757,2.648 2.3064,2.6344C2.3093,2.6403 2.3092,2.6472 2.3061,2.6529C2.3029,2.6586 2.2972,2.6625 2.2907,2.6632C2.3749,2.7595 2.4227,2.6037 2.4965,2.6043C2.5451,2.5932 2.5896,2.5686 2.6248,2.5333L2.6611,2.5381L2.7267,2.4Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.3451,2.6979L2.3427,2.6979C2.3212,2.6947 2.302,2.683 2.2893,2.6653L2.2864,2.6619L2.2907,2.6619C2.2959,2.661 2.3006,2.6581 2.3037,2.6539C2.3055,2.6492 2.3055,2.6441 2.3037,2.6395C2.2885,2.6453 2.2771,2.6451 2.2691,2.6395C2.2611,2.6339 2.2592,2.6229 2.2691,2.5992C2.2691,2.5963 2.2691,2.5912 2.2709,2.5853C2.2731,2.5611 2.2771,2.5213 2.3136,2.5165C2.3074,2.4944 2.3115,2.4705 2.3248,2.4517C2.3348,2.4306 2.3587,2.4199 2.3811,2.4267C2.3825,2.4154 2.3867,2.4047 2.3933,2.3955C2.401,2.3819 2.4145,2.3728 2.4299,2.3707C2.4367,2.3505 2.4553,2.3367 2.4765,2.336L2.4765,2.336L2.4765,2.336C2.5221,2.3549 2.57,2.3674 2.6189,2.3733C2.656,2.3778 2.6924,2.3861 2.7277,2.3981L2.7304,2.3981L2.7304,2.4005L2.664,2.5405L2.6272,2.5357C2.5917,2.5712 2.5472,2.5961 2.4984,2.6077L2.4984,2.6077C2.4717,2.6077 2.4467,2.6309 2.4229,2.6531C2.3992,2.6752 2.3733,2.6979 2.3451,2.6979ZM2.2957,2.6651C2.3073,2.6799 2.3243,2.6894 2.3429,2.6917L2.3467,2.6917C2.3733,2.6917 2.3944,2.6704 2.4184,2.648C2.4424,2.6256 2.468,2.6013 2.4984,2.6013L2.4984,2.6013C2.5465,2.5899 2.5904,2.5651 2.6251,2.5299L2.6251,2.5299L2.6608,2.5347L2.7243,2.4013C2.6901,2.3903 2.655,2.3826 2.6195,2.3781C2.5707,2.3728 2.5229,2.3608 2.4773,2.3427C2.458,2.3425 2.4409,2.355 2.4349,2.3733L2.4349,2.3757L2.4323,2.3757C2.4178,2.3768 2.4049,2.3853 2.3981,2.3981C2.391,2.407 2.3871,2.418 2.3872,2.4293L2.3901,2.4357L2.3837,2.4331C2.3637,2.4246 2.3406,2.4328 2.3304,2.452C2.3152,2.4749 2.3128,2.5053 2.3216,2.5141L2.3261,2.5184L2.32,2.5184C2.2835,2.52 2.28,2.5576 2.2776,2.5824C2.2774,2.5875 2.2766,2.5926 2.2755,2.5976C2.2685,2.6144 2.2683,2.6267 2.2755,2.6325C2.2827,2.6384 2.2928,2.6379 2.3072,2.6325L2.3101,2.6325L2.3101,2.6355C2.3132,2.6423 2.3132,2.6502 2.3101,2.6571C2.3067,2.6616 2.3014,2.6645 2.2957,2.6651Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.8037,2.3301m-1,0a1,1 0,1 1,2 0a1,1 0,1 1,-2 0" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.804,2.4211C2.7672,2.4212 2.734,2.3991 2.7198,2.3651C2.7056,2.3311 2.7134,2.292 2.7393,2.2659C2.7653,2.2399 2.8045,2.232 2.8385,2.2461C2.8725,2.2602 2.8947,2.2933 2.8947,2.3301C2.8947,2.3803 2.8541,2.4209 2.804,2.4211L2.804,2.4211ZM2.804,2.2448C2.7693,2.2447 2.738,2.2655 2.7247,2.2975C2.7114,2.3295 2.7187,2.3664 2.7432,2.3909C2.7677,2.4154 2.8046,2.4228 2.8366,2.4094C2.8686,2.3961 2.8894,2.3648 2.8893,2.3301C2.8892,2.2831 2.8511,2.2449 2.804,2.2448L2.804,2.2448Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.6488,3.0243C2.5955,3.0144 2.5037,2.9576 2.4944,2.8835C2.5453,2.6837 2.8077,2.788 2.8304,2.6376C2.8217,2.5394 2.8453,2.441 2.8976,2.3573C2.9126,2.3382 2.9331,2.324 2.9563,2.3165C2.9595,2.3283 2.9585,2.3408 2.9536,2.352C2.9968,2.3472 3.0563,2.3715 3.0971,2.3739C3.1063,2.3879 3.1092,2.4053 3.1051,2.4216C3.1024,2.4363 3.0861,2.4325 3.0861,2.4325C3.0726,2.4472 3.052,2.453 3.0328,2.4477C3.0122,2.4592 2.9894,2.4661 2.9659,2.468C2.9659,2.468 3.0608,2.5683 3.0459,2.5992C3.0653,2.614 3.082,2.632 3.0952,2.6525C3.1277,2.636 3.157,2.6137 3.1816,2.5867C3.2192,2.5867 3.2808,2.6261 3.3115,2.6304C3.3491,2.6611 3.3867,2.6933 3.3867,2.6933C3.3867,2.6933 3.3419,2.7227 3.3224,2.6837C3.2989,2.6859 3.248,2.6304 3.1776,2.6469C3.1755,2.7093 3.1067,2.7536 3.1067,2.7536C3.1404,2.7485 3.1749,2.7527 3.2064,2.7659C3.2429,2.7968 3.2965,2.8384 3.2965,2.8384L3.3443,2.9203C3.3443,2.9203 3.3005,2.928 3.2843,2.8712C3.2677,2.9171 3.2672,2.8429 3.2021,2.8083C3.186,2.8131 3.1686,2.8095 3.1557,2.7987C3.1091,2.8115 3.0536,2.8387 2.9877,2.8315C2.9408,2.8461 2.9077,2.8848 2.8592,2.9067C2.8107,2.9285 2.7979,2.9176 2.7979,2.9176L2.7595,2.9176C2.7539,2.9408 2.7571,2.9757 2.7363,2.9819C2.7496,2.9963 2.7267,3.0573 2.7035,3.068C2.7144,3.1072 2.7464,3.1192 2.78,3.1389C2.7959,3.1314 2.8147,3.133 2.8291,3.1432C2.8459,3.1637 2.8593,3.1867 2.8688,3.2115C2.851,3.213 2.833,3.2121 2.8155,3.2088C2.8027,3.2032 2.8016,3.1899 2.7867,3.1936C2.6941,3.1115 2.6453,3.144 2.6365,3.1253C2.6277,3.1067 2.6584,3.056 2.6488,3.0243L2.6488,3.0243Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.8469,3.2149C2.836,3.2155 2.825,3.2142 2.8144,3.2112C2.8099,3.209 2.8058,3.2059 2.8024,3.2021C2.7979,3.1976 2.7949,3.1944 2.7875,3.1963L2.7875,3.1963L2.7875,3.1963C2.7259,3.1429 2.6851,3.1384 2.6605,3.1363C2.6483,3.1363 2.64,3.1347 2.6365,3.1272C2.6335,3.1122 2.6353,3.0966 2.6416,3.0827C2.6485,3.065 2.651,3.046 2.6491,3.0272C2.5899,3.0155 2.5029,2.9565 2.4941,2.8845L2.4941,2.8845C2.5208,2.7779 2.6107,2.7557 2.6893,2.7376C2.7595,2.7213 2.82,2.7075 2.8301,2.6389C2.8211,2.5403 2.8448,2.4414 2.8976,2.3576C2.9129,2.3377 2.9339,2.323 2.9579,2.3155L2.9605,2.3155L2.9605,2.3181C2.9637,2.3289 2.9637,2.3404 2.9605,2.3512C2.9885,2.3515 3.0163,2.3556 3.0432,2.3632C3.0617,2.3681 3.0805,2.3716 3.0995,2.3736L3.1011,2.3736L3.1011,2.3736C3.1105,2.3883 3.1135,2.4062 3.1093,2.4232C3.1089,2.4276 3.1064,2.4316 3.1027,2.4339C3.0985,2.4365 3.0934,2.4375 3.0885,2.4365C3.0749,2.4511 3.0544,2.4568 3.0352,2.4515C3.0162,2.4625 2.995,2.4692 2.9731,2.4712C2.9917,2.4915 3.06,2.568 3.0501,2.5992C3.0685,2.6133 3.0843,2.6306 3.0968,2.6501C3.1279,2.6341 3.1559,2.6126 3.1795,2.5867L3.1795,2.5867L3.1795,2.5867C3.2074,2.5902 3.2345,2.5986 3.2595,2.6117C3.2758,2.6199 3.2929,2.6262 3.3107,2.6304L3.3107,2.6304C3.3477,2.6605 3.3853,2.6917 3.3856,2.692L3.3885,2.6944L3.3856,2.6963C3.3723,2.7051 3.3563,2.7086 3.3405,2.7061C3.3307,2.7033 3.3226,2.6964 3.3181,2.6872C3.3063,2.6852 3.295,2.6806 3.2851,2.6739C3.2539,2.6526 3.2157,2.644 3.1784,2.6499C3.172,2.6908 3.1489,2.7271 3.1147,2.7504C3.1458,2.7464 3.1774,2.7512 3.2059,2.7643C3.2424,2.7947 3.2957,2.8363 3.2963,2.8368L3.2963,2.8368L3.3459,2.9221L3.3421,2.9221C3.3138,2.9246 3.288,2.906 3.2813,2.8784C3.2784,2.8845 3.2757,2.8872 3.2725,2.8875C3.2693,2.8877 3.2629,2.8816 3.2565,2.8704C3.2434,2.8454 3.2234,2.8246 3.1989,2.8104C3.1829,2.8147 3.1657,2.8112 3.1525,2.8011C3.1419,2.8037 3.1307,2.8075 3.1189,2.8115C3.0766,2.8285 3.0311,2.8361 2.9856,2.8336C2.9607,2.8428 2.9373,2.856 2.9165,2.8725C2.8982,2.8863 2.8785,2.8983 2.8579,2.9083C2.8152,2.9277 2.7987,2.9219 2.7947,2.9195L2.7592,2.9208C2.7592,2.9264 2.7573,2.9325 2.7565,2.9389C2.7544,2.9576 2.752,2.9771 2.7381,2.9837C2.741,2.9924 2.741,3.0017 2.7381,3.0104C2.7342,3.034 2.7219,3.0554 2.7035,3.0707C2.7128,3.1016 2.7363,3.1144 2.7632,3.1296L2.7771,3.1373C2.7936,3.1296 2.813,3.1316 2.8277,3.1424C2.8449,3.1632 2.8585,3.1866 2.868,3.2117L2.8696,3.2152L2.8659,3.2152C2.8659,3.2152 2.8584,3.2149 2.8469,3.2149ZM2.7915,3.1904C2.7974,3.1908 2.8028,3.1937 2.8064,3.1984C2.8091,3.2018 2.8126,3.2044 2.8165,3.2061C2.8324,3.2094 2.8487,3.2104 2.8648,3.2091C2.8559,3.1858 2.8432,3.1642 2.8272,3.1451C2.8136,3.1357 2.796,3.1344 2.7811,3.1416L2.7797,3.1416L2.7797,3.1416L2.7648,3.1333C2.7355,3.122 2.7126,3.0986 2.7019,3.0691L2.7019,3.0667L2.704,3.0667C2.7219,3.0523 2.7339,3.0318 2.7376,3.0091C2.74,2.9973 2.7395,2.9885 2.7357,2.9848L2.7328,2.9816L2.7371,2.9816C2.7507,2.9776 2.7528,2.9587 2.7552,2.94C2.7558,2.9331 2.7569,2.9262 2.7584,2.9195L2.7584,2.9173L2.7997,2.9173L2.7997,2.9173C2.7997,2.9173 2.8136,2.9264 2.8584,2.9061C2.8787,2.8962 2.898,2.8843 2.916,2.8707C2.937,2.8523 2.9609,2.8374 2.9867,2.8267L2.9867,2.8267C3.0322,2.8295 3.0778,2.8221 3.12,2.8048C3.1323,2.8008 3.1437,2.7971 3.1549,2.7941L3.1549,2.7941L3.1549,2.7941C3.1671,2.8045 3.1837,2.8079 3.1989,2.8032L3.2011,2.8032C3.2266,2.818 3.2475,2.8397 3.2613,2.8659C3.2653,2.8725 3.2701,2.8803 3.2723,2.8803L3.2723,2.8803C3.2723,2.8803 3.2749,2.8803 3.2792,2.8677L3.2821,2.8597L3.2843,2.8677C3.2968,2.9109 3.3259,2.9152 3.3376,2.9152L3.3376,2.9152L3.2923,2.8376C3.2872,2.8336 3.2368,2.7944 3.2024,2.7653C3.1688,2.7451 3.1053,2.7536 3.1048,2.7536L3.1029,2.7488C3.1029,2.7488 3.1707,2.7048 3.1728,2.6443L3.1728,2.6424L3.1749,2.6424C3.2144,2.6351 3.2551,2.6438 3.2883,2.6664C3.2979,2.6728 3.3087,2.6772 3.32,2.6792L3.3219,2.6792L3.3219,2.6808C3.3255,2.6894 3.3329,2.6959 3.3419,2.6984C3.3547,2.7006 3.3679,2.698 3.3789,2.6912L3.3075,2.6328C3.2906,2.628 3.2742,2.6214 3.2587,2.6133C3.235,2.601 3.2095,2.5926 3.1832,2.5885C3.1586,2.6153 3.1293,2.6374 3.0968,2.6539L3.0947,2.6539L3.0947,2.652C3.082,2.6315 3.0658,2.6134 3.0467,2.5987L3.044,2.5987L3.0453,2.5963C3.0576,2.572 2.992,2.4955 2.9653,2.468L2.9613,2.464L2.9669,2.464C2.9899,2.4621 3.0123,2.4554 3.0325,2.4443L3.0325,2.4443L3.0325,2.4443C3.0505,2.4492 3.0696,2.4436 3.0821,2.4299L3.0821,2.4299L3.0821,2.4299C3.086,2.4308 3.0901,2.4302 3.0936,2.4283C3.0961,2.4267 3.0977,2.424 3.0979,2.4211C3.1019,2.4059 3.0993,2.3897 3.0907,2.3765C3.0719,2.3743 3.0533,2.3708 3.0349,2.3661C3.0072,2.3579 2.9783,2.354 2.9493,2.3547L2.9437,2.3547L2.9467,2.3501C2.9512,2.3406 2.9522,2.3297 2.9496,2.3195C2.9285,2.3273 2.91,2.3409 2.8963,2.3587C2.8441,2.4416 2.8207,2.5395 2.8299,2.6371C2.8189,2.7096 2.7536,2.7248 2.6848,2.7408C2.6077,2.7587 2.5205,2.7789 2.4936,2.8832C2.5035,2.9584 2.5963,3.012 2.6459,3.0211L2.6459,3.0229L2.6475,3.0229L2.6536,3.0291L2.6493,3.0291C2.6506,3.0481 2.6479,3.0672 2.6413,3.0851C2.6358,3.0978 2.6338,3.1118 2.6357,3.1256C2.6379,3.1301 2.6437,3.1307 2.6555,3.1317C2.7043,3.1354 2.7501,3.1569 2.7843,3.192L2.7915,3.1904Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.4267,2.6573C2.4315,2.6515 2.4653,2.6643 2.4653,2.6643L2.5272,2.7029L2.6528,2.7829L2.6973,2.8477L2.6173,2.8211L2.5067,2.7269L2.4467,2.6883C2.4467,2.6883 2.4227,2.6635 2.4275,2.6573L2.4267,2.6573Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.7037,2.8533L2.6149,2.8243L2.5037,2.7285L2.4443,2.6901C2.4341,2.6797 2.4176,2.6621 2.4243,2.6552L2.4243,2.6552C2.4299,2.6485 2.4552,2.6571 2.4661,2.6611L2.5283,2.7L2.6547,2.7819L2.7037,2.8533ZM2.6181,2.8197L2.6901,2.8432L2.6507,2.7856L2.5253,2.7056L2.4637,2.6667C2.4528,2.6614 2.4407,2.659 2.4285,2.6595C2.4285,2.6619 2.4352,2.6739 2.4477,2.6861L2.5067,2.7248L2.6181,2.8197Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.1693,2.8632C3.1259,2.8523 3.0189,2.9821 3.0189,2.9821L3.0989,3.0696C3.0989,3.0696 3.1021,2.9205 3.1693,2.8632Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.1021,3.0763L3.0155,2.9821L3.0171,2.9803C3.0211,2.9752 3.1168,2.86 3.164,2.86C3.166,2.8597 3.1681,2.8597 3.1701,2.86L3.1752,2.86L3.1712,2.8635C3.1056,2.9195 3.1024,3.0661 3.1024,3.0677L3.1021,3.0763ZM3.0221,2.9819L3.0965,3.0619C3.0965,3.0325 3.1064,2.9173 3.1624,2.8643C3.1216,2.8661 3.0352,2.9672 3.0227,2.9819L3.0221,2.9819Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.64,2.5011C2.6165,2.5315 2.6133,2.5925 2.6451,2.6171C2.648,2.6541 2.6795,2.7291 2.7043,2.736C2.7291,2.7429 2.8395,2.7688 2.8819,2.7627C2.8739,2.8312 2.9277,2.8864 2.9776,2.9227C2.9766,2.9302 2.9785,2.9378 2.9829,2.944C2.9885,2.9515 3.0147,2.9528 3.0157,2.9488C3.0275,2.9651 3.0837,2.9723 3.0877,2.9648C3.0917,2.9573 3.0051,2.8973 2.9859,2.8789C2.9602,2.831 2.9422,2.7794 2.9325,2.7259C2.9022,2.6945 2.8605,2.6766 2.8168,2.6763L2.8189,2.5771L2.8232,2.4651L2.7835,2.4445C2.788,2.4424 2.7921,2.4396 2.7957,2.4363C2.8053,2.4403 2.8224,2.4211 2.8259,2.4155C2.8349,2.4189 2.8432,2.4187 2.8448,2.4139C2.8464,2.4091 2.848,2.3904 2.8512,2.3805C2.8811,2.3539 2.8469,2.2984 2.8011,2.2976C2.7552,2.2968 2.7459,2.3509 2.7477,2.3557C2.752,2.3728 2.7509,2.3824 2.7477,2.3856C2.7418,2.3908 2.7353,2.3955 2.7285,2.3995C2.7106,2.3923 2.6905,2.3923 2.6725,2.3995C2.6419,2.4112 2.6072,2.4261 2.6056,2.4472C2.5873,2.4522 2.5722,2.4653 2.5645,2.4827C2.5523,2.4803 2.5363,2.4907 2.5112,2.5333C2.464,2.5541 2.4613,2.6549 2.4613,2.6549C2.4552,2.6634 2.4506,2.673 2.448,2.6832C2.448,2.6931 2.4525,2.7021 2.4587,2.7003C2.4587,2.7069 2.468,2.7125 2.4717,2.7107C2.4744,2.7171 2.4811,2.7209 2.488,2.7197C2.488,2.7243 2.5067,2.7232 2.5083,2.7197C2.5099,2.7163 2.5064,2.6931 2.5083,2.6912C2.5101,2.6893 2.5253,2.7011 2.5293,2.6981C2.5333,2.6952 2.5293,2.6851 2.5264,2.6813C2.5235,2.6776 2.5115,2.6741 2.5083,2.6581C2.5075,2.6449 2.5104,2.6317 2.5165,2.62C2.5165,2.62 2.5677,2.5795 2.5736,2.5451C2.612,2.5488 2.6325,2.5152 2.6435,2.5024L2.64,2.5011Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.076,2.9696C3.0546,2.97 3.0337,2.9637 3.016,2.9517L3.0133,2.9517C3.0021,2.9537 2.9905,2.951 2.9813,2.9443C2.9765,2.9382 2.9744,2.9304 2.9755,2.9227C2.9077,2.8733 2.8747,2.8189 2.8795,2.7645C2.832,2.7701 2.7227,2.7435 2.704,2.7379C2.6773,2.7304 2.6467,2.6563 2.6429,2.6176C2.6193,2.5916 2.6128,2.5543 2.6261,2.5219C2.6131,2.5378 2.5934,2.5467 2.5728,2.5459C2.5607,2.575 2.541,2.6004 2.5157,2.6195C2.51,2.6306 2.5074,2.643 2.508,2.6555C2.5095,2.6633 2.5144,2.67 2.5213,2.6739C2.523,2.675 2.5245,2.6763 2.5259,2.6779C2.528,2.6813 2.5344,2.6933 2.5283,2.6981C2.5221,2.7029 2.5179,2.6981 2.5117,2.6944L2.5067,2.6933C2.5067,2.696 2.5067,2.7008 2.5067,2.704C2.5076,2.7091 2.5076,2.7144 2.5067,2.7195C2.5051,2.7243 2.4944,2.7253 2.4891,2.7245C2.4866,2.7245 2.4843,2.7237 2.4824,2.7221L2.4824,2.7221C2.4758,2.7221 2.4696,2.7187 2.4661,2.7131L2.4661,2.7131C2.4645,2.7135 2.4627,2.7135 2.4611,2.7131C2.4572,2.7112 2.4543,2.708 2.4528,2.704C2.451,2.7039 2.4493,2.7032 2.448,2.7019C2.4431,2.6972 2.4408,2.6904 2.4416,2.6837C2.4441,2.6733 2.4486,2.6635 2.4549,2.6549C2.4549,2.6445 2.46,2.5531 2.5056,2.532C2.5283,2.4955 2.5453,2.4787 2.5589,2.4805C2.567,2.4638 2.5817,2.4511 2.5995,2.4456C2.6032,2.4253 2.6379,2.4093 2.6677,2.3976C2.686,2.3907 2.7062,2.3907 2.7245,2.3976C2.7307,2.3941 2.7365,2.39 2.7419,2.3853C2.744,2.3827 2.7459,2.3755 2.7419,2.3587C2.743,2.343 2.749,2.3281 2.7589,2.316C2.7678,2.3019 2.7833,2.2933 2.8,2.2933L2.8,2.2933C2.8273,2.2948 2.8512,2.3121 2.8611,2.3376C2.868,2.3523 2.8649,2.3699 2.8533,2.3813C2.8514,2.3884 2.85,2.3956 2.8491,2.4029C2.8491,2.408 2.8491,2.412 2.8472,2.4139C2.8466,2.4159 2.8451,2.4175 2.8432,2.4184C2.8379,2.4203 2.8322,2.4203 2.8269,2.4184C2.8235,2.4232 2.8195,2.4275 2.8149,2.4312C2.81,2.4362 2.8033,2.4389 2.7963,2.4387C2.7941,2.4408 2.7917,2.4426 2.7891,2.444L2.8256,2.4627L2.8216,2.5765L2.8192,2.6731C2.8628,2.674 2.9042,2.6922 2.9344,2.7237L2.9344,2.7251C2.9444,2.7781 2.9623,2.8292 2.9877,2.8768C2.9949,2.8837 3.0117,2.8965 3.0291,2.9099C3.0824,2.9509 3.0931,2.9603 3.0899,2.9656C3.0867,2.9709 3.0851,2.9696 3.0787,2.9699L3.076,2.9696ZM3.0152,2.9429L3.0187,2.9477C3.0334,2.9592 3.0515,2.9654 3.0701,2.9653C3.0752,2.9664 3.0805,2.9664 3.0856,2.9653C3.0672,2.9475 3.0475,2.9311 3.0267,2.9163C3.0088,2.9027 2.9917,2.8896 2.9845,2.8824L2.9845,2.8824C2.9585,2.8345 2.9399,2.7829 2.9296,2.7293C2.8997,2.699 2.8591,2.6817 2.8165,2.6811L2.8136,2.6811L2.816,2.5789L2.82,2.4688L2.7771,2.4464L2.7821,2.444C2.7863,2.4421 2.7901,2.4395 2.7936,2.4365L2.7949,2.4352L2.7965,2.4352C2.7997,2.4365 2.8053,2.4352 2.8115,2.4288C2.8161,2.4251 2.82,2.4207 2.8232,2.4157L2.8232,2.4136L2.8256,2.4136C2.8301,2.4156 2.8352,2.4161 2.84,2.4149C2.84,2.4145 2.84,2.414 2.84,2.4136C2.84,2.412 2.84,2.408 2.8416,2.4035C2.8426,2.3956 2.8441,2.3879 2.8461,2.3803L2.8461,2.3803L2.8461,2.3803C2.8566,2.3708 2.8597,2.3555 2.8539,2.3427C2.8448,2.3193 2.8229,2.3034 2.7979,2.3021C2.7848,2.3016 2.7723,2.307 2.7637,2.3168C2.754,2.3282 2.7479,2.3422 2.7461,2.3571C2.7501,2.3733 2.7499,2.3837 2.7461,2.3893C2.7401,2.3948 2.7334,2.3996 2.7261,2.4035L2.7261,2.4035L2.7248,2.4035C2.7077,2.3967 2.6886,2.3967 2.6715,2.4035C2.6448,2.4141 2.6077,2.4301 2.6061,2.4491L2.6061,2.4512L2.604,2.4512C2.5871,2.4556 2.573,2.467 2.5653,2.4827L2.5653,2.4851L2.5627,2.4851C2.5496,2.4824 2.5333,2.4981 2.5109,2.5344L2.5109,2.5344L2.5109,2.5344C2.4659,2.5544 2.4627,2.6525 2.4627,2.6536L2.4627,2.6552C2.4567,2.6632 2.4523,2.6722 2.4496,2.6819C2.4491,2.6868 2.4507,2.6917 2.4539,2.6955C2.4555,2.6955 2.4565,2.6955 2.4568,2.6955L2.46,2.6955L2.46,2.6987C2.4607,2.7019 2.4629,2.7047 2.4659,2.7061C2.4675,2.7061 2.4688,2.7061 2.4691,2.7061L2.4723,2.7043L2.4723,2.708C2.4723,2.7128 2.4811,2.7157 2.4856,2.7149L2.4883,2.7149L2.4883,2.7176C2.4883,2.7176 2.4904,2.7176 2.4939,2.7176L2.4955,2.7176C2.4983,2.7176 2.501,2.7169 2.5035,2.7155C2.5037,2.7112 2.5037,2.7069 2.5035,2.7027C2.5035,2.6917 2.5035,2.688 2.5035,2.6861C2.5035,2.6843 2.5085,2.6861 2.5139,2.6888C2.5173,2.6908 2.521,2.6922 2.5248,2.6931C2.5248,2.6931 2.5248,2.6861 2.5208,2.6797L2.5179,2.6776C2.5099,2.6728 2.5042,2.6649 2.5024,2.6557C2.5015,2.6419 2.5045,2.628 2.5109,2.6157L2.5109,2.6157C2.5109,2.6157 2.5616,2.5755 2.5672,2.5424L2.5672,2.54L2.5699,2.54C2.5955,2.5411 2.6199,2.5284 2.6336,2.5067L2.6387,2.5005L2.6427,2.504C2.62,2.5333 2.6181,2.5931 2.6472,2.6163L2.6472,2.6163L2.6472,2.6163C2.6501,2.652 2.6813,2.7264 2.7045,2.7328C2.7277,2.7392 2.8397,2.7653 2.8811,2.7595L2.8845,2.7595L2.8845,2.7632C2.8781,2.8165 2.9112,2.8699 2.9792,2.9205L2.9792,2.9205L2.9792,2.9221C2.9782,2.929 2.9799,2.936 2.984,2.9416C2.9924,2.9468 3.0025,2.9486 3.0123,2.9467L3.0152,2.9429Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.5515,2.3636C2.5632,2.3317 2.6048,2.3338 2.6048,2.3338C2.6048,2.3338 2.62,2.2892 2.6771,2.3156C2.6984,2.2972 2.7549,2.3237 2.7549,2.3237C2.7664,2.3064 2.7845,2.2962 2.8037,2.296C2.836,2.2979 2.8612,2.3281 2.8605,2.3641C2.8323,2.3722 2.7837,2.3386 2.7467,2.3481C2.7213,2.3595 2.6978,2.3756 2.6771,2.3957C2.6427,2.3999 2.6061,2.3606 2.5509,2.3627L2.5515,2.3636Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.6723,2.3949C2.6562,2.3934 2.6406,2.3888 2.6261,2.3814C2.604,2.3703 2.5799,2.364 2.5555,2.363L2.5475,2.363L2.5491,2.3588C2.56,2.3305 2.5952,2.3305 2.6024,2.3305C2.6069,2.3212 2.6144,2.3138 2.6235,2.3096C2.641,2.3032 2.6602,2.3045 2.6768,2.3133C2.6979,2.2983 2.7443,2.3164 2.7544,2.3206C2.7662,2.3041 2.7847,2.2945 2.8043,2.2949C2.8252,2.2965 2.8442,2.3087 2.8552,2.3277C2.8619,2.3382 2.8648,2.351 2.8632,2.3636L2.8632,2.365L2.8632,2.365C2.8458,2.3668 2.8282,2.3644 2.8117,2.3579C2.792,2.3501 2.7708,2.3473 2.7499,2.3497L2.7299,2.3605C2.7117,2.368 2.6952,2.3794 2.6813,2.3938L2.6813,2.3938L2.6747,2.3938L2.6723,2.3949ZM2.5557,2.3648C2.5808,2.366 2.6055,2.3732 2.6283,2.386C2.6431,2.3952 2.6594,2.4002 2.676,2.4008C2.6903,2.384 2.7073,2.3708 2.7259,2.3619C2.7331,2.3577 2.74,2.3535 2.7459,2.3494L2.7459,2.3494C2.7679,2.3462 2.7902,2.3494 2.8109,2.3587C2.8259,2.3654 2.8419,2.3683 2.8579,2.3674C2.8578,2.3559 2.855,2.3448 2.8499,2.3352C2.84,2.3152 2.8225,2.3023 2.8032,2.3008C2.7849,2.3014 2.7679,2.3119 2.7568,2.3294L2.7568,2.3317L2.7549,2.3317C2.7549,2.3317 2.6997,2.304 2.6797,2.3223L2.6797,2.3223L2.6797,2.3223C2.6644,2.3127 2.6465,2.311 2.6301,2.3175C2.6217,2.3218 2.615,2.3297 2.6112,2.3397L2.6112,2.342L2.6053,2.342C2.6053,2.342 2.5688,2.3375 2.5557,2.3648L2.5557,2.3648Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.6584,2.404C2.6712,2.3963 2.7027,2.3824 2.724,2.3992C2.7413,2.4165 2.7603,2.4321 2.7808,2.4456L2.8197,2.4621L2.8373,2.4731L2.8267,2.6515C2.7904,2.6144 2.7568,2.608 2.7309,2.5645C2.7171,2.5459 2.7277,2.5013 2.7043,2.4717C2.6808,2.4421 2.6547,2.4221 2.66,2.404L2.6584,2.404Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.828,2.6576L2.8237,2.6533C2.811,2.6406 2.7971,2.6292 2.7821,2.6192C2.7604,2.6058 2.7422,2.5876 2.7288,2.5659C2.7227,2.5547 2.7195,2.5423 2.7195,2.5296C2.719,2.5096 2.7129,2.4901 2.7019,2.4733L2.6835,2.4523C2.6661,2.4333 2.6525,2.4181 2.6568,2.4032L2.6568,2.4032L2.6568,2.4032C2.6611,2.4008 2.6995,2.3781 2.7253,2.3987C2.7425,2.416 2.7615,2.4316 2.7819,2.4451L2.8203,2.4611L2.84,2.4731L2.84,2.4749L2.828,2.6576ZM2.6608,2.4059C2.6581,2.4176 2.6707,2.4325 2.6875,2.4488C2.6936,2.4555 2.6997,2.4624 2.7059,2.4699C2.7179,2.4873 2.7245,2.5079 2.7248,2.5291C2.7249,2.5409 2.7278,2.5525 2.7333,2.5629C2.7467,2.5846 2.765,2.6029 2.7867,2.6163C2.8003,2.6253 2.8132,2.6354 2.8251,2.6467L2.8363,2.4757L2.8197,2.4659L2.7813,2.4496C2.7598,2.4352 2.7399,2.4186 2.7219,2.4C2.7005,2.384 2.6667,2.4016 2.6608,2.4059Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.752,2.4572C2.752,2.4572 2.7832,2.4496 2.7925,2.4572C2.8018,2.4647 2.8135,2.4663 2.8168,2.4788C2.8285,2.4831 2.8366,2.4912 2.8366,2.5031C2.8475,2.5068 2.852,2.5333 2.852,2.5333L2.8415,2.5538C2.835,2.5457 2.8305,2.5352 2.8285,2.5236C2.8208,2.5187 2.8046,2.5133 2.8006,2.4993C2.7893,2.4991 2.7795,2.4886 2.7771,2.4739C2.765,2.4771 2.7528,2.455 2.7528,2.455L2.752,2.4572Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.8376,2.5517L2.8342,2.5479C2.8282,2.5405 2.8238,2.5313 2.8214,2.5212L2.8176,2.5212C2.8089,2.5185 2.8013,2.512 2.7961,2.5029C2.786,2.502 2.7772,2.4937 2.7738,2.4818C2.7645,2.4797 2.7563,2.4729 2.7512,2.463L2.7467,2.4546L2.7527,2.4546C2.758,2.4546 2.7829,2.448 2.7904,2.4546L2.7904,2.4546C2.7997,2.4565 2.8079,2.4631 2.8131,2.4729C2.8244,2.4776 2.8312,2.4855 2.8323,2.4949C2.8425,2.501 2.8463,2.5212 2.8467,2.5235L2.8467,2.5235L2.8376,2.5517ZM2.7812,2.4626L2.7812,2.4702C2.7835,2.486 2.7934,2.4972 2.8048,2.4969L2.8077,2.4969L2.8077,2.501C2.8106,2.5126 2.8227,2.5188 2.8314,2.5235L2.8387,2.5283L2.8387,2.5283L2.8387,2.5324C2.8402,2.5429 2.8437,2.5526 2.8488,2.5605L2.8565,2.5441C2.8565,2.5352 2.8493,2.5167 2.842,2.514L2.8382,2.514L2.8382,2.5105C2.8382,2.4975 2.8275,2.49 2.8184,2.4859L2.8184,2.4859L2.8184,2.4859C2.816,2.4743 2.8058,2.4695 2.7947,2.464L2.7908,2.464C2.7796,2.4593 2.7677,2.4593 2.7565,2.464C2.7614,2.4708 2.7686,2.4784 2.7744,2.4763L2.7812,2.4626Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.9248,2.3392C2.9131,2.3261 2.8928,2.3357 2.8928,2.3357L2.8395,2.4299L2.8155,2.4499L2.8133,2.5235L2.8333,2.5925L2.8264,2.6459C2.8391,2.6345 2.8495,2.6209 2.8571,2.6056C2.8565,2.5857 2.8531,2.5659 2.8469,2.5469C2.8365,2.521 2.8377,2.4918 2.8504,2.4669C2.8701,2.4136 2.9152,2.372 2.9261,2.3392L2.9248,2.3392Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.8213,2.6531L2.8291,2.5928L2.8093,2.524L2.8115,2.4485L2.836,2.4283L2.8907,2.3336L2.8907,2.3336C2.8907,2.3336 2.9133,2.3232 2.9261,2.3376L2.9261,2.3376L2.9261,2.3392C2.9181,2.3583 2.9075,2.3762 2.8947,2.3925C2.8767,2.4157 2.8618,2.4411 2.8501,2.468C2.8381,2.4923 2.8368,2.5206 2.8467,2.5459C2.8531,2.5654 2.8566,2.5858 2.8571,2.6064C2.8498,2.6221 2.8394,2.6361 2.8267,2.6477L2.8213,2.6531ZM2.8147,2.5232L2.8347,2.5923L2.8347,2.5923L2.8288,2.6376C2.839,2.6282 2.8473,2.6169 2.8531,2.6043C2.8525,2.5847 2.8491,2.5653 2.8429,2.5467C2.8322,2.5202 2.8335,2.4905 2.8464,2.4651C2.8582,2.4377 2.8735,2.4119 2.8917,2.3883C2.9038,2.3732 2.9138,2.3566 2.9216,2.3389C2.9137,2.3336 2.9035,2.3329 2.8949,2.3371L2.84,2.4312L2.8171,2.4504L2.8147,2.5232Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.0597,2.4232C3.0027,2.4993 2.9244,2.5569 2.8347,2.5885C2.796,2.5976 2.8101,2.4984 2.8101,2.4984L2.8005,2.5011C2.8005,2.5011 2.7789,2.5984 2.8307,2.5995C2.9709,2.5728 3.0763,2.424 3.0763,2.424L3.0595,2.424L3.0597,2.4232Z" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.8312,2.6021C2.8208,2.6026 2.8109,2.5981 2.8045,2.5899C2.7837,2.5632 2.7968,2.5029 2.7973,2.5005L2.7973,2.4989L2.8125,2.4947L2.8125,2.4987C2.8125,2.4987 2.8032,2.5667 2.8211,2.5832C2.8246,2.5862 2.8294,2.5872 2.8339,2.5859C2.9228,2.5541 3.0005,2.497 3.0573,2.4216L3.0589,2.4216L3.0589,2.4195L3.0656,2.4195L3.0656,2.4195L3.0824,2.4195L3.0795,2.4237C3.0773,2.4267 2.9709,2.5744 2.8312,2.6021ZM2.8029,2.5032C2.8008,2.5128 2.7917,2.5643 2.8093,2.5867C2.8145,2.5932 2.8224,2.5969 2.8307,2.5968C2.9549,2.5723 3.0528,2.4504 3.0707,2.4264L3.0605,2.4264C3.0032,2.5025 2.9247,2.56 2.8349,2.5917C2.8288,2.5936 2.8221,2.5921 2.8173,2.5877C2.7997,2.5717 2.8045,2.5181 2.8064,2.5027L2.8029,2.5032Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.1176,3.1243C3.1084,3.1301 3.0967,3.1301 3.0875,3.1243C3.0811,3.1117 3.0687,3.1034 3.0547,3.1024C3.0547,3.1024 3.0395,3.0581 3.0152,3.0709C3.0115,3.048 2.9851,3.06 2.9851,3.06C2.9851,3.06 2.9851,3.0269 2.9536,3.0315C2.964,2.9933 2.9112,2.9957 2.9112,2.9957C2.9112,2.9957 2.9096,2.9531 2.8312,2.9616C2.9981,2.8869 3.1304,3.0792 3.1304,3.0792" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.1029,3.1312C3.097,3.1311 3.0913,3.1296 3.0861,3.1267L3.0861,3.1267L3.0861,3.1267C3.0802,3.1151 3.0687,3.1074 3.0557,3.1064L3.0539,3.1064L3.0539,3.1045C3.0539,3.1045 3.0448,3.0779 3.0307,3.0736C3.0266,3.0718 3.0219,3.0718 3.0179,3.0736L3.0147,3.0755L3.0147,3.0717C3.0143,3.0674 3.012,3.0636 3.0083,3.0613C3.0018,3.0589 2.9947,3.0589 2.9883,3.0613L2.9845,3.0632L2.9845,3.0589C2.9842,3.0508 2.9808,3.0432 2.9752,3.0373C2.9699,3.0331 2.9629,3.0315 2.9563,3.0331L2.952,3.0331L2.952,3.0291C2.9546,3.0222 2.9536,3.0145 2.9493,3.0085C2.9392,2.996 2.9128,2.9971 2.9125,2.9968L2.9099,2.9968L2.9099,2.9941C2.909,2.9863 2.9049,2.9792 2.8987,2.9744C2.8794,2.9619 2.856,2.9576 2.8336,2.9624L2.8336,2.9573C3.0008,2.8824 3.1349,3.0739 3.1363,3.0757L3.1317,3.0789C3.1075,3.0459 3.0784,3.0168 3.0453,2.9925C2.98,2.9459 2.9149,2.9333 2.8515,2.956C2.8704,2.9539 2.8895,2.959 2.9048,2.9704C2.9112,2.9757 2.9157,2.983 2.9173,2.9912C2.9316,2.9904 2.9457,2.9954 2.9563,3.0051C2.961,3.0111 2.9626,3.019 2.9608,3.0264C2.9678,3.0257 2.9748,3.0278 2.9803,3.0323C2.9864,3.0382 2.9902,3.046 2.9912,3.0544C2.9981,3.0517 3.0057,3.0517 3.0125,3.0544C3.0135,3.0592 3.0167,3.0632 3.021,3.0654C3.0254,3.0676 3.0305,3.0677 3.0349,3.0656C3.0491,3.0712 3.0581,3.0923 3.0616,3.0981C3.0756,3.0995 3.088,3.108 3.0944,3.1205C3.1027,3.1253 3.1128,3.1253 3.1211,3.1205L3.1243,3.1248C3.1183,3.1297 3.1106,3.132 3.1029,3.1312Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.1968,3.1405C3.1968,3.1405 3.2355,3.2042 3.2555,3.2046C3.2755,3.205 3.2773,3.1425 3.2773,3.1425C3.2773,3.1425 3.284,3.1695 3.2939,3.1624C3.2935,3.1737 3.2986,3.1839 3.3061,3.1866C3.3061,3.1866 3.2712,3.3039 3.1728,3.1925" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.2488,3.2387C3.2198,3.2353 3.1923,3.2191 3.1707,3.1925L3.1733,3.1859C3.208,3.2223 3.2381,3.2368 3.2632,3.2278C3.2798,3.2214 3.2938,3.2061 3.3019,3.1852C3.2958,3.182 3.2915,3.1744 3.2907,3.1656C3.2892,3.1661 3.2876,3.1661 3.2861,3.1656C3.2831,3.1633 3.2805,3.1601 3.2787,3.1561C3.2768,3.1739 3.2712,3.2045 3.2552,3.2045L3.2552,3.2045C3.2341,3.2045 3.196,3.1463 3.1944,3.1438L3.1987,3.1387C3.2091,3.155 3.2397,3.1968 3.2552,3.1972L3.2552,3.1972C3.2693,3.1972 3.2739,3.1579 3.2741,3.143L3.2795,3.143C3.2795,3.1467 3.284,3.1572 3.2883,3.1598C3.2894,3.1607 3.2908,3.1607 3.292,3.1598L3.2963,3.1572L3.2963,3.1634C3.296,3.1722 3.3004,3.18 3.3067,3.1819L3.3096,3.1819L3.3083,3.1859C3.2997,3.2103 3.284,3.2285 3.2651,3.2361C3.2597,3.2379 3.2543,3.2387 3.2488,3.2387L3.2488,3.2387Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.8947,3.1585L2.8811,3.226C2.8811,3.226 2.8635,3.245 2.8688,3.2492C2.8741,3.2534 2.9016,3.2424 2.9016,3.2424C2.9213,3.2403 2.9404,3.233 2.9576,3.2212C2.9627,3.2353 2.9735,3.2453 2.9861,3.2476C2.9874,3.2421 2.9874,3.2363 2.9861,3.2309C2.992,3.2327 2.9981,3.2327 3.004,3.2309C3.004,3.2309 3.0093,3.2119 2.9971,3.2045C2.9971,3.1907 3.0043,3.1781 2.9835,3.1797C2.968,3.1997 2.9301,3.2222 2.9205,3.2144C2.9109,3.2067 2.9581,3.1823 2.9451,3.1501" + android:strokeWidth="1" + android:fillColor="#96877D" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M2.8731,3.2462C2.8711,3.2468 2.8691,3.2468 2.8672,3.2462C2.8659,3.2454 2.8651,3.2438 2.8651,3.2421C2.8651,3.2358 2.8747,3.2248 2.8787,3.2209L2.892,3.1592L2.8973,3.1592L2.8835,3.2227L2.8835,3.2227C2.8768,3.2292 2.8707,3.2373 2.8709,3.2397C2.8812,3.2393 2.8914,3.237 2.9011,3.2328C2.9205,3.2307 2.9393,3.2241 2.9563,3.2134L2.9589,3.2105L2.9605,3.2146C2.965,3.2257 2.9737,3.2339 2.9843,3.2367C2.9851,3.2333 2.9851,3.2297 2.9843,3.2263L2.9816,3.2209L2.9872,3.2209C2.9922,3.2222 2.9974,3.2222 3.0024,3.2209C3.0047,3.2137 3.0023,3.2057 2.9965,3.2015L2.9947,3.2015L2.9947,3.1994L2.9947,3.1932C2.9947,3.1884 2.9963,3.1839 2.9947,3.1821C2.9931,3.1804 2.9912,3.1795 2.9843,3.1798C2.9688,3.1973 2.9309,3.2203 2.9187,3.2117C2.9173,3.2106 2.9164,3.209 2.916,3.2072C2.916,3.2027 2.9197,3.1982 2.9259,3.1917C2.932,3.1851 2.9493,3.166 2.9421,3.1491L2.9472,3.1467C2.956,3.1672 2.94,3.1845 2.9296,3.1962C2.9261,3.1997 2.9216,3.2048 2.9216,3.2066C2.9285,3.2119 2.9648,3.1941 2.9811,3.175L2.9811,3.175L2.9811,3.175C2.9896,3.175 2.9944,3.175 2.9971,3.1792C2.9997,3.1833 2.9995,3.1893 2.9971,3.1956C2.9972,3.1968 2.9972,3.1981 2.9971,3.1994C3.0045,3.2058 3.0071,3.2169 3.0035,3.2266L3.0035,3.2266L3.0021,3.2266C2.9974,3.2282 2.9924,3.2289 2.9875,3.2286C2.9882,3.2327 2.9882,3.2368 2.9875,3.2409L2.9875,3.2438L2.9867,3.2438C2.9742,3.242 2.9633,3.2336 2.9573,3.2212C2.9403,3.2311 2.9218,3.2371 2.9027,3.2391C2.8931,3.2429 2.8832,3.2453 2.8731,3.2462L2.8731,3.2462Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_nl.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_nl.xml new file mode 100644 index 0000000000000000000000000000000000000000..bc872e80f0e390d41674aec201b6cbb04535c898 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_nl.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,10.9091l24,0l0,5l-24,0z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.4545l24,0l0,5.4545l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,0l24,0l0,5.4545l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_no.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_no.xml new file mode 100644 index 0000000000000000000000000000000000000000..f51735c2ea4e24a0c476bad9ec49dcbeb93fd137 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_no.xml @@ -0,0 +1,40 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l24,0l0,16l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,6l24,0l0,4.3636l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0909,0l4.3636,0l0,16l-4.3636,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1818,0l2.1818,0l0,16l-2.1818,0z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,7.0909l24,0l0,2.1818l-24,0z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_pl.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_pl.xml new file mode 100644 index 0000000000000000000000000000000000000000..009984d349b65cceecdd0301004b21265402cf3d --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_pl.xml @@ -0,0 +1,22 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,8l24,0l0,8l-24,0z" + android:strokeWidth="1" + android:fillColor="#F44336" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,0l24,0l0,8l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_pt.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_pt.xml new file mode 100644 index 0000000000000000000000000000000000000000..821daa5667b574be948b2bc7c75eba54dd9fd65d --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_pt.xml @@ -0,0 +1,550 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l0,8l0,8l24,0l0,-8l0,-8z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,0l0,8l0,8l9.8182,0l0,-8l0,-8z" + android:strokeWidth="1" + android:fillColor="#2E7D32" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.2191,10.8573C11.9078,10.818 5.8942,7.0789 5.8527,6.4833L6.1849,5.9318C6.7816,6.7953 12.9295,10.4313 13.5333,10.3025L13.2191,10.8573" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.2191,10.8693C13.2191,10.8693 13.2191,10.8693 13.2191,10.8693C12.5198,10.8485 10.5382,9.7893 9.0529,8.8893C7.5213,7.9609 5.8625,6.8122 5.8402,6.4838C5.8402,6.4811 5.8407,6.4789 5.8418,6.4767L6.174,5.9253C6.1762,5.9215 6.18,5.9193 6.1844,5.9193C6.1887,5.9193 6.1925,5.9209 6.1947,5.9247C6.5002,6.3671 8.2571,7.5262 9.8624,8.4785C11.7562,9.6022 13.2627,10.3467 13.53,10.2905C13.5349,10.2895 13.5398,10.2916 13.5425,10.2955C13.5453,10.2993 13.5458,10.3047 13.5436,10.3091L13.2305,10.8622C13.2289,10.866 13.2245,10.8693 13.2191,10.8693ZM5.8653,6.486C5.8958,6.7604 7.2382,7.7596 9.066,8.868C10.5431,9.7636 12.5111,10.8158 13.212,10.8442L13.5104,10.3173C13.1318,10.3358 11.4164,9.4287 9.8504,8.4993C8.2615,7.5562 6.5231,6.4102 6.1865,5.9536L5.8653,6.486Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1151,5.8565C5.9973,6.1718 7.6844,7.2109 9.714,8.4404C11.7436,9.6698 13.4935,10.4296 13.6233,10.3205C13.6315,10.3064 13.6871,10.2109 13.6822,10.2115C13.6576,10.248 13.5987,10.2595 13.5065,10.2327C12.9584,10.0751 11.5282,9.4211 9.7571,8.3515C7.986,7.2813 6.4451,6.2956 6.2056,5.8767C6.1887,5.8478 6.1773,5.7949 6.1795,5.7535L6.1735,5.7535L6.1227,5.8424L6.1151,5.8565L6.1151,5.8565L6.1151,5.8565ZM13.2502,10.8742C13.2278,10.9145 13.1864,10.9156 13.1078,10.9069C12.6175,10.8529 11.1289,10.1318 9.3676,9.0818C7.3184,7.86 5.6258,6.7462 5.8091,6.4555L5.8593,6.3676L5.8691,6.3709C5.7038,6.864 9.2095,8.8609 9.4156,8.988C11.4442,10.2398 13.1542,10.9707 13.3053,10.7809L13.2502,10.8742L13.2502,10.8742L13.2502,10.8742Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.1695,10.9244C13.1509,10.9244 13.1296,10.9222 13.1062,10.92C12.606,10.8649 11.1011,10.1307 9.3611,9.0927C7.0358,7.7062 5.8669,6.8716 5.7878,6.5411C5.7791,6.5051 5.7829,6.474 5.7987,6.4489L5.8484,6.3616C5.8511,6.3567 5.8571,6.354 5.8631,6.3562L5.8729,6.3595C5.8762,6.3605 5.8789,6.3627 5.88,6.3655C5.8816,6.3682 5.8816,6.372 5.8805,6.3753C5.826,6.5389 6.1953,7.0838 9.2847,8.8969C9.3551,8.9384 9.4031,8.9662 9.4222,8.9782C11.4245,10.2136 13.1487,10.9582 13.2955,10.7738C13.2993,10.7689 13.3069,10.7673 13.3124,10.7711C13.3179,10.7749 13.3195,10.782 13.3162,10.7875L13.2611,10.8818L13.26,10.8818C13.2409,10.9145 13.2109,10.9244 13.1695,10.9244ZM5.8505,6.4069L5.8195,6.4615C5.8069,6.4816 5.8042,6.5056 5.8113,6.5351C5.8893,6.8585 7.0544,7.6882 9.3736,9.0709C11.1109,10.1067 12.612,10.8398 13.1089,10.8944C13.1858,10.9025 13.2207,10.9009 13.2393,10.8676L13.2398,10.8665L13.2715,10.812C13.2545,10.8164 13.2338,10.8185 13.2098,10.8185C12.7822,10.8185 11.2315,10.1215 9.4091,8.9967C9.39,8.9847 9.3425,8.9569 9.2722,8.916C7.002,7.5851 5.8522,6.7418 5.8505,6.4069ZM13.5835,10.3418C13.2627,10.3418 11.6144,9.6065 9.7075,8.4513C7.5235,7.128 5.9858,6.1669 6.1036,5.8527C6.1036,5.8522 6.1042,5.8516 6.1042,5.8516L6.1113,5.8375L6.1625,5.748C6.1647,5.7442 6.1691,5.742 6.1735,5.742L6.1795,5.742C6.1827,5.742 6.186,5.7436 6.1882,5.7458C6.1904,5.7485 6.1915,5.7518 6.1915,5.7551C6.1893,5.7927 6.2002,5.8435 6.216,5.8713C6.4696,6.3147 8.2445,7.4242 9.7631,8.3416C11.4284,9.3475 12.9082,10.0489 13.5098,10.2218C13.5905,10.2447 13.6495,10.2393 13.6718,10.2055C13.6735,10.2027 13.6767,10.2005 13.68,10.2C13.6849,10.1995 13.6898,10.2016 13.6925,10.2055C13.698,10.2136 13.6991,10.2147 13.6407,10.3162L13.6342,10.3276C13.6336,10.3287 13.6325,10.3298 13.6315,10.3309C13.6222,10.338 13.6058,10.3418 13.5835,10.3418ZM6.126,5.862C6.0115,6.1833 7.9816,7.3767 9.72,8.43C11.8053,9.6933 13.4842,10.4035 13.6135,10.3129L13.6189,10.3036C13.6304,10.2835 13.6402,10.266 13.6478,10.2524C13.6124,10.2649 13.5627,10.2627 13.5022,10.2458C12.8995,10.0724 11.4169,9.3704 9.7495,8.3635C8.2287,7.4449 6.45,6.3327 6.1936,5.8844C6.18,5.8609 6.1702,5.8244 6.1669,5.79L6.126,5.862Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8302,6.8438C11.1425,6.8335 12.7625,6.6649 13.6947,6.2951L13.494,5.97C12.9431,6.2738 11.3144,6.4735 9.8193,6.5035C8.0509,6.4871 6.8029,6.3235 6.1773,5.9051L5.9875,6.2515C7.1373,6.7358 8.3149,6.8389 9.8302,6.8438" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8302,6.8564L9.8302,6.8564C8.3122,6.8515 7.1389,6.7505 5.9825,6.2629C5.9793,6.2618 5.9771,6.2591 5.9755,6.2558C5.9744,6.2525 5.9744,6.2487 5.9765,6.246L6.1664,5.8996C6.168,5.8964 6.1707,5.8942 6.1745,5.8936C6.1778,5.8925 6.1816,5.8936 6.1844,5.8953C6.7669,6.2847 7.9222,6.474 9.8198,6.4915C11.1709,6.4642 12.8956,6.2864 13.4885,5.9596C13.4945,5.9564 13.5016,5.9585 13.5049,5.964L13.7056,6.2891C13.7073,6.2924 13.7078,6.2962 13.7067,6.2995C13.7056,6.3027 13.7029,6.3055 13.6996,6.3071C12.7162,6.6976 11.0569,6.8471 9.8313,6.8569L9.8302,6.8564ZM6.0049,6.2455C7.1531,6.7265 8.3204,6.8269 9.8296,6.8318C9.8296,6.8318 9.8302,6.8318 9.8302,6.8318C11.0476,6.822 12.6944,6.6747 13.6767,6.2896L13.4896,5.9875C12.8836,6.3125 11.166,6.4898 9.8193,6.5165C7.9282,6.4991 6.7718,6.3109 6.1816,5.9236L6.0049,6.2455Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.7487,6.3027C13.7165,6.354 13.1089,6.5629 12.2133,6.7167C11.6062,6.8089 10.8142,6.888 9.8253,6.8885C8.886,6.8896 8.1191,6.8231 7.5382,6.7445C6.5978,6.5978 6.1129,6.3933 5.9335,6.3213C5.9504,6.2875 5.9618,6.2635 5.9782,6.2318C6.4947,6.4364 6.9818,6.5602 7.5529,6.6475C8.13,6.7255 8.8876,6.7931 9.822,6.792C10.806,6.7909 11.5893,6.7064 12.1931,6.6169C13.1116,6.4691 13.6129,6.2793 13.6838,6.1915L13.7487,6.3027L13.7487,6.3027L13.7487,6.3027ZM13.5725,5.9727C13.4733,6.0524 12.9769,6.2275 12.1042,6.3665C11.5216,6.4495 10.7815,6.5242 9.8351,6.5253C8.9362,6.5264 8.202,6.4658 7.6435,6.3845C6.7571,6.2695 6.2858,6.0611 6.1156,6.0005C6.1325,5.9716 6.15,5.9427 6.1675,5.9133C6.3,5.9798 6.7549,6.1636 7.6533,6.2902C8.2053,6.3682 8.9411,6.4265 9.8351,6.4255C10.7765,6.4244 11.5085,6.3485 12.0873,6.2662C12.9644,6.1462 13.4362,5.9225 13.5082,5.8664L13.5725,5.9727L13.5725,5.9727L13.5725,5.9727Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8067,6.9011C9.0093,6.9011 8.2456,6.8525 7.5365,6.7571C6.6267,6.6153 6.1336,6.4156 5.9482,6.3409L5.9291,6.3327C5.9258,6.3316 5.9231,6.3289 5.922,6.3256C5.9209,6.3224 5.9209,6.3185 5.9225,6.3158C5.9296,6.3022 5.9356,6.2902 5.9411,6.2782C5.9493,6.2613 5.9575,6.2449 5.9673,6.2258C5.97,6.2204 5.9771,6.2176 5.9831,6.2198C6.4778,6.4162 6.9627,6.5438 7.5551,6.6349C8.2653,6.7309 9.0224,6.7795 9.8051,6.7795C9.8111,6.7795 9.8165,6.7795 9.8225,6.7795C10.6265,6.7789 11.4016,6.7211 12.1915,6.6044C13.0985,6.4587 13.6042,6.2705 13.674,6.1833C13.6767,6.18 13.68,6.1784 13.6849,6.1784C13.6887,6.1789 13.6925,6.1811 13.6947,6.1844L13.7596,6.2956C13.7618,6.2995 13.7618,6.3044 13.7596,6.3082C13.7591,6.3093 13.7585,6.3098 13.758,6.3104C13.7084,6.372 13.0822,6.5787 12.2155,6.7282C11.4687,6.8416 10.6647,6.8995 9.8258,6.9005C9.8193,6.9011 9.8127,6.9011 9.8067,6.9011ZM5.9509,6.3147L5.958,6.3175C6.1429,6.3922 6.6338,6.5907 7.5404,6.732C8.2478,6.8275 9.0109,6.876 9.8067,6.876C9.8127,6.876 9.8193,6.876 9.8253,6.876C10.6631,6.8755 11.4655,6.8176 12.2111,6.7042C13.098,6.5515 13.6713,6.3513 13.7335,6.3005L13.6816,6.2111C13.5813,6.3005 13.1149,6.4811 12.1958,6.6284C11.4044,6.7456 10.6282,6.8029 9.8231,6.804C9.0316,6.8051 8.2691,6.756 7.5518,6.6595C6.9616,6.5689 6.4778,6.4418 5.9847,6.2471C5.9771,6.2618 5.9705,6.2749 5.964,6.2885C5.9596,6.2973 5.9553,6.3055 5.9509,6.3147ZM9.8171,6.5373C9.0284,6.5373 8.2767,6.4887 7.6424,6.3965C6.858,6.2945 6.4025,6.1216 6.1838,6.0387C6.156,6.0278 6.132,6.0191 6.1124,6.012C6.1091,6.0109 6.1064,6.0082 6.1047,6.0044C6.1031,6.0005 6.1036,5.9973 6.1058,5.994C6.1227,5.9645 6.1402,5.9356 6.1576,5.9067C6.1609,5.9013 6.168,5.8991 6.174,5.9018C6.2515,5.9405 6.6862,6.1407 7.656,6.2776C8.0935,6.3393 8.8216,6.4129 9.8155,6.4129C9.8225,6.4129 9.8291,6.4129 9.8362,6.4129C10.8611,6.4118 11.6111,6.3213 12.0867,6.2536C12.9256,6.1385 13.4171,5.9225 13.5016,5.8565C13.5044,5.8544 13.5082,5.8533 13.5115,5.8544C13.5147,5.8549 13.518,5.8571 13.5196,5.8604L13.5835,5.9662C13.5845,5.9684 13.5851,5.9705 13.5851,5.9705C13.5851,5.9765 13.5835,5.9804 13.5802,5.9825C13.4825,6.0605 12.996,6.2373 12.1064,6.3785C11.364,6.4844 10.6211,6.5362 9.8356,6.5373C9.8291,6.5373 9.8231,6.5373 9.8171,6.5373ZM6.1342,5.994C6.1511,6 6.1702,6.0076 6.1925,6.0158C6.4107,6.0987 6.864,6.2705 7.6456,6.372C8.2789,6.4636 9.0295,6.5122 9.8171,6.5122C9.8231,6.5122 9.8296,6.5122 9.8356,6.5122C10.62,6.5116 11.3618,6.4598 12.1025,6.354C12.9638,6.2171 13.4427,6.0485 13.5562,5.9695L13.5049,5.8844C13.4095,5.9471 12.9562,6.1598 12.0895,6.2782C11.6133,6.3464 10.8616,6.4369 9.8356,6.438C9.8285,6.438 9.822,6.438 9.8149,6.438C8.8195,6.438 8.0896,6.3644 7.6516,6.3027C6.7145,6.1707 6.2738,5.9787 6.1724,5.9296C6.1598,5.9509 6.1467,5.9727 6.1342,5.994Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.52,8.4191C6.3273,8.8516 8.1207,9.0698 9.8176,9.0845C11.3629,9.0867 13.3756,8.8467 14.1284,8.4491L14.1076,8.016C13.872,8.3825 11.7153,8.7344 9.8013,8.7196C7.8873,8.7055 6.1096,8.4109 5.5173,8.0296L5.52,8.4191" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.84,9.0971C9.8324,9.0971 9.8247,9.0971 9.8171,9.0971C8.3138,9.084 6.3938,8.9018 5.514,8.43C5.5096,8.4278 5.5075,8.4229 5.5075,8.4185L5.5042,8.0302C5.5042,8.0258 5.5064,8.0215 5.5107,8.0193C5.5145,8.0171 5.5195,8.0171 5.5233,8.0198C6.1211,8.4044 7.92,8.694 9.8007,8.7082C11.6973,8.7213 13.8655,8.37 14.0967,8.01C14.0995,8.0056 14.1055,8.0035 14.1104,8.0045C14.1158,8.0062 14.1191,8.0105 14.1196,8.016L14.1404,8.4491C14.1404,8.454 14.1382,8.4584 14.1338,8.4605C13.3767,8.8598 11.3618,9.0971 9.84,9.0971ZM5.532,8.412C6.4113,8.8789 8.3204,9.0595 9.8171,9.0725C11.3329,9.0747 13.3522,8.8402 14.1147,8.4425L14.0962,8.0515C13.7722,8.4136 11.6902,8.7475 9.8002,8.7333C7.9353,8.7191 6.1489,8.4344 5.5287,8.0536L5.532,8.412Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M14.1687,8.3569L14.1687,8.46C14.0558,8.5947 13.3462,8.7982 12.4565,8.9416C11.7796,9.0453 10.8971,9.1233 9.7969,9.1233C8.7518,9.1233 7.9189,9.0491 7.2725,8.9504C6.2509,8.802 5.598,8.5429 5.4665,8.4655L5.4671,8.3449C5.8609,8.6056 6.9284,8.7965 7.2867,8.8549C7.9287,8.9531 8.7567,9.0267 9.7964,9.0267C10.8911,9.0267 11.7687,8.9493 12.4413,8.8467C13.0805,8.7545 13.9898,8.5162 14.1687,8.3569L14.1687,8.3569L14.1687,8.3569ZM14.1693,7.9898L14.1693,8.0929C14.0564,8.2276 13.3467,8.4311 12.4571,8.5745C11.7802,8.6782 10.8976,8.7562 9.7975,8.7562C8.7524,8.7562 7.9195,8.682 7.2731,8.5833C6.2515,8.4355 5.5985,8.1758 5.4671,8.0984L5.4676,7.9778C5.8615,8.2385 6.9289,8.4295 7.2873,8.4878C7.9293,8.586 8.7573,8.6596 9.7969,8.6596C10.8916,8.6596 11.7693,8.5822 12.4418,8.4791C13.0811,8.3875 13.9904,8.1485 14.1693,7.9898L14.1693,7.9898L14.1693,7.9898Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.7975,9.1358C8.8729,9.1358 8.0231,9.0775 7.2715,8.9629C6.2935,8.8211 5.6187,8.5691 5.4611,8.4764C5.4573,8.4742 5.4551,8.4698 5.4551,8.4655L5.4556,8.3449C5.4556,8.3405 5.4584,8.3362 5.4622,8.334C5.466,8.3318 5.4709,8.3318 5.4747,8.3345C5.8696,8.5964 6.9638,8.7895 7.2895,8.8429C8.034,8.9569 8.8778,9.0147 9.7975,9.0147C10.7689,9.0147 11.658,8.9542 12.4407,8.8347C13.074,8.7436 13.9816,8.5064 14.1605,8.3482C14.1638,8.3455 14.1676,8.3444 14.172,8.3449C14.1775,8.346 14.1818,8.3515 14.1818,8.3569L14.1818,8.46C14.1818,8.4627 14.1807,8.4655 14.1791,8.4682C14.0618,8.6084 13.3385,8.8124 12.4593,8.9542C11.67,9.0747 10.7749,9.1358 9.7975,9.1358ZM5.4796,8.4584C5.5964,8.5233 6.2242,8.7856 7.2747,8.9384C8.0253,9.0529 8.8735,9.1113 9.7969,9.1113C10.7727,9.1113 11.6673,9.0502 12.4544,8.9302C13.3069,8.7927 14.0345,8.5898 14.1556,8.4562L14.1556,8.3836C13.9342,8.544 13.0587,8.7715 12.4435,8.8598C11.6596,8.9793 10.7689,9.0404 9.7964,9.0404C8.8756,9.0404 8.0307,8.9825 7.2845,8.8685C6.9622,8.8162 5.8931,8.6269 5.4791,8.3689L5.4796,8.4584ZM9.798,8.7682C8.8724,8.7682 8.0225,8.7098 7.272,8.5953C6.294,8.4535 5.6193,8.202 5.4616,8.1087C5.4578,8.1065 5.4556,8.1022 5.4556,8.1022L5.4562,7.9773C5.4562,7.9729 5.4589,7.9685 5.4627,7.9664C5.4665,7.9642 5.4715,7.9642 5.4753,7.9669C5.8707,8.2287 6.9644,8.4218 7.29,8.4753C8.0345,8.5893 8.8784,8.6471 9.798,8.6471C10.7695,8.6471 11.6591,8.5865 12.4413,8.4671C13.0751,8.376 13.9833,8.1387 14.1611,7.9805C14.1638,7.9778 14.1682,7.9767 14.1715,7.9778C14.1753,7.9784 14.1785,7.9811 14.1802,7.9844C14.1813,7.986 14.1818,7.9876 14.1818,7.9898L14.1818,8.0929C14.1818,8.0929 14.1807,8.0984 14.1791,8.1011C14.0618,8.2407 13.3385,8.4453 12.4598,8.5871C11.6711,8.7071 10.7755,8.7682 9.798,8.7682ZM5.4802,8.0907C5.5969,8.1556 6.2247,8.418 7.2753,8.5707C8.0247,8.6853 8.8735,8.7436 9.7975,8.7436C10.7738,8.7436 11.6678,8.6825 12.4549,8.5625C13.3075,8.4251 14.0351,8.2222 14.1562,8.0885L14.1562,8.0155C13.9347,8.1758 13.0593,8.4033 12.444,8.4916C11.6607,8.6111 10.77,8.6722 9.7969,8.6722C8.8762,8.6722 8.0313,8.6144 7.2851,8.5004C6.9633,8.448 5.8942,8.2593 5.4796,8.0007L5.4802,8.0907Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8133,10.7825C7.9565,10.7716 6.3655,10.2785 6.0295,10.1967L6.2744,10.5785C6.8678,10.8273 8.4196,11.1976 9.8307,11.1567C11.2418,11.1158 12.4751,11.0067 13.344,10.5856L13.5955,10.1896C13.0036,10.4678 10.9882,10.7798 9.8133,10.7825" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6142,11.1725C8.2827,11.1725 6.8531,10.8344 6.2705,10.59C6.2684,10.5889 6.2662,10.5873 6.2651,10.5851L6.0202,10.2033C6.0175,10.1989 6.0175,10.1935 6.0207,10.1896C6.0235,10.1853 6.0289,10.1836 6.0338,10.1847C6.0736,10.1945 6.1315,10.2098 6.2045,10.2295C6.7445,10.3745 8.1791,10.7602 9.8144,10.77C10.9964,10.7673 13.008,10.452 13.5911,10.1787C13.596,10.1765 13.602,10.1776 13.6058,10.1815C13.6096,10.1858 13.6102,10.1918 13.6069,10.1962L13.356,10.5922C13.3549,10.5944 13.3527,10.5955 13.3511,10.5965C12.4445,11.0362 11.1245,11.1316 9.8329,11.1693C9.7598,11.172 9.6867,11.1725 9.6142,11.1725ZM6.2831,10.5693C6.8978,10.8256 8.4464,11.1845 9.8307,11.1453C11.118,11.1076 12.4331,11.0133 13.3358,10.5769L13.5633,10.2185C12.9333,10.4891 10.974,10.7924 9.8138,10.7951C9.8138,10.7951 9.8138,10.7951 9.8138,10.7951C8.1753,10.7853 6.738,10.3991 6.1975,10.254C6.1413,10.2387 6.0944,10.2262 6.0578,10.2169L6.2831,10.5693Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.4389,10.4973C13.4018,10.5535 13.3642,10.6091 13.326,10.6631C12.9164,10.8071 12.2705,10.9582 11.9978,11.0024C11.4409,11.1164 10.5796,11.2009 9.8155,11.2015C8.1704,11.1775 6.8242,10.8567 6.1909,10.5829L6.1396,10.4956L6.1478,10.4825L6.2345,10.5158C7.3609,10.9173 8.6258,11.0776 9.8247,11.106C10.5862,11.1087 11.3482,11.0193 11.9645,10.9091C12.9098,10.7204 13.2916,10.5785 13.4089,10.5136L13.4389,10.4973L13.4389,10.4973L13.4389,10.4973ZM13.6565,10.1395C13.6576,10.1405 13.6587,10.1416 13.6593,10.1427C13.6315,10.1891 13.6031,10.2365 13.5742,10.284C13.3555,10.362 12.7625,10.5349 11.8958,10.6555C11.3253,10.7329 10.9702,10.8082 9.8345,10.83C7.7067,10.776 6.3289,10.3615 6.0016,10.2595L5.9531,10.1667C7.1864,10.4875 8.4458,10.7111 9.8345,10.734C10.8736,10.7122 11.3155,10.6358 11.8816,10.5589C12.8918,10.4024 13.4007,10.2365 13.5535,10.1891C13.5513,10.1864 13.5491,10.1836 13.5469,10.1804L13.6565,10.1395L13.6565,10.1395L13.6565,10.1395Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8155,11.2129C8.1382,11.1884 6.8122,10.8638 6.186,10.5938C6.1838,10.5927 6.1816,10.5911 6.1805,10.5889L6.1293,10.5016C6.1271,10.4978 6.1271,10.4929 6.1293,10.4891L6.1375,10.476C6.1407,10.4711 6.1467,10.4695 6.1516,10.4711L6.2384,10.5044C7.2436,10.8627 8.4502,11.0607 9.8242,11.094C10.6615,11.0978 11.4491,10.9887 11.9618,10.8976C13.0167,10.6871 13.3315,10.5431 13.4029,10.5038L13.4324,10.4875C13.4373,10.4847 13.4433,10.4858 13.4471,10.4896C13.4509,10.4935 13.4515,10.4995 13.4482,10.5044C13.41,10.5627 13.3718,10.6184 13.3353,10.6702C13.3336,10.6724 13.332,10.674 13.3293,10.6745C12.9218,10.8175 12.2798,10.9685 11.9989,11.0144C11.4213,11.1327 10.5431,11.2129 9.8155,11.2129ZM6.1991,10.5736C6.8738,10.8638 8.2522,11.1665 9.8155,11.1895C10.542,11.1889 11.418,11.1093 11.9951,10.9909C12.2749,10.9456 12.912,10.7956 13.3184,10.6533C13.3456,10.6145 13.3735,10.5736 13.4018,10.5316C13.3091,10.5791 12.972,10.7209 11.9667,10.9216C11.4529,11.0133 10.6647,11.1207 9.8247,11.1185C8.4475,11.0853 7.2387,10.8867 6.2307,10.5273L6.1549,10.4978L6.1991,10.5736ZM9.8351,10.8415C7.9336,10.7935 6.6153,10.4629 5.9984,10.2704C5.9951,10.2693 5.9929,10.2671 5.9913,10.2644L5.9427,10.1716C5.9405,10.1673 5.9411,10.1624 5.9438,10.1585C5.9465,10.1547 5.9515,10.1531 5.9564,10.1547C7.3658,10.5213 8.598,10.7013 9.8345,10.7215C10.7607,10.7018 11.2167,10.6385 11.7005,10.5715C11.7595,10.5633 11.8189,10.5551 11.88,10.5469C12.8553,10.3958 13.3658,10.2355 13.5333,10.1825L13.5349,10.182C13.5349,10.1804 13.5349,10.1787 13.5349,10.1771C13.536,10.1733 13.5387,10.1705 13.542,10.1689L13.6516,10.128C13.6571,10.1258 13.6631,10.128 13.6658,10.1329L13.6658,10.1329L13.6658,10.1329L13.6675,10.1351C13.6707,10.1389 13.6707,10.1444 13.6685,10.1487C13.6407,10.1951 13.6124,10.2425 13.5835,10.29C13.5818,10.2922 13.5796,10.2944 13.5775,10.2949C13.284,10.3996 12.6682,10.5595 11.8969,10.6669C11.8129,10.6784 11.7333,10.6898 11.6553,10.7007C11.1987,10.7667 10.8038,10.8229 9.8351,10.8415ZM6.0104,10.2491C6.6278,10.4416 7.9418,10.7695 9.8351,10.8175C10.8022,10.7989 11.196,10.7422 11.6525,10.6773C11.7305,10.6664 11.8102,10.6549 11.8942,10.6435C12.66,10.5365 13.272,10.3784 13.566,10.2742C13.5895,10.236 13.6124,10.1978 13.6353,10.1602L13.5655,10.1864C13.566,10.1885 13.566,10.1907 13.5649,10.1929C13.5638,10.1967 13.5611,10.1995 13.5573,10.2005L13.5409,10.206C13.3729,10.2589 12.8607,10.4198 11.8838,10.5709C11.8227,10.5791 11.7633,10.5873 11.7044,10.5955C11.2205,10.6625 10.7629,10.7264 9.8356,10.746C8.604,10.7258 7.3773,10.5475 5.9771,10.1847L6.0104,10.2491Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8073,3.9115C7.4422,3.9115 5.5129,5.8287 5.5129,8.1796C5.5129,10.5305 7.4422,12.4478 9.8073,12.4478C12.1724,12.4478 14.118,10.5305 14.118,8.1796C14.1175,5.8287 12.1724,3.9115 9.8073,3.9115ZM12.5564,10.8676C11.844,11.5489 10.8998,11.9875 9.7969,12.0076C8.5653,12.03 7.404,11.2304 7.0925,10.8791C6.4838,10.1924 5.988,9.3202 5.9716,8.1442C6.0469,6.8165 6.5705,5.8915 7.3287,5.2571C8.0875,4.6227 9.0976,4.314 9.9387,4.3358C10.9091,4.3615 12.0431,4.8355 12.8264,5.7769C13.3396,6.3938 13.5616,7.0631 13.6784,8.0771C13.6849,9.294 13.0598,10.386 12.5564,10.8676Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8187,12.4729C7.4416,12.4729 5.508,10.5464 5.508,8.1785C5.508,5.8107 7.4416,3.8842 9.8187,3.8842C12.1958,3.8842 14.1295,5.8107 14.1295,8.1785C14.1295,10.5464 12.1958,12.4729 9.8187,12.4729ZM9.8187,3.9093C7.4558,3.9093 5.5331,5.8244 5.5331,8.1785C5.5331,10.5327 7.4558,12.4478 9.8187,12.4478C12.1816,12.4478 14.1044,10.5327 14.1044,8.1785C14.1044,5.8244 12.1816,3.9093 9.8187,3.9093ZM9.8187,12.3791C8.7,12.3791 7.6435,11.9411 6.8438,11.1453C6.0436,10.3489 5.6029,9.2956 5.6029,8.1791C5.6029,7.0625 6.0436,6.0093 6.8438,5.2129C7.6435,4.4171 8.7,3.9791 9.8187,3.9791C10.9375,3.9791 11.994,4.4171 12.7936,5.2129C13.5938,6.0093 14.0345,7.0625 14.0345,8.1791C14.0345,9.2956 13.5938,10.3489 12.7936,11.1453C11.994,11.9405 10.9375,12.3791 9.8187,12.3791ZM9.8187,4.0036C7.5076,4.0036 5.6275,5.8767 5.6275,8.1791C5.6275,10.4815 7.5076,12.3545 9.8187,12.3545C12.1298,12.3545 14.01,10.4815 14.01,8.1791C14.01,5.8767 12.1298,4.0036 9.8187,4.0036Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.822,12.1096C8.7736,12.1096 7.7842,11.6989 7.0353,10.9538C6.2853,10.2076 5.8729,9.2209 5.8729,8.1753C5.8729,7.1296 6.2858,6.1424 7.0353,5.3967C7.7842,4.6516 8.7742,4.2409 9.822,4.2409C10.8704,4.2409 11.8598,4.6516 12.6087,5.3967C13.3582,6.1429 13.7711,7.1296 13.7711,8.1753C13.7711,9.2209 13.3582,10.2082 12.6087,10.9538C11.8598,11.6989 10.8704,12.1096 9.822,12.1096ZM9.822,4.2655C7.6582,4.2655 5.8975,6.0196 5.8975,8.1753C5.8975,10.3309 7.6582,12.0851 9.822,12.0851C11.9858,12.0851 13.7465,10.3309 13.7465,8.1753C13.7471,6.0191 11.9864,4.2655 9.822,4.2655ZM9.822,12.0153C8.7987,12.0153 7.8327,11.6149 7.1018,10.8873C6.3698,10.1591 5.9673,9.1958 5.9673,8.1753C5.9673,7.1542 6.3704,6.1915 7.1018,5.4633C7.8327,4.7356 8.7987,4.3353 9.822,4.3353C10.8453,4.3353 11.8113,4.7362 12.5422,5.4633C13.2742,6.1915 13.6767,7.1547 13.6767,8.1753C13.6767,9.1958 13.2736,10.1591 12.5422,10.8873C11.8113,11.6149 10.8453,12.0153 9.822,12.0153ZM9.822,4.3593C7.71,4.3593 5.9918,6.0709 5.9918,8.1747C5.9918,10.2785 7.71,11.9902 9.822,11.9902C11.934,11.9902 13.6522,10.2785 13.6522,8.1747C13.6522,6.0709 11.934,4.3593 9.822,4.3593Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9955,3.8798l-0.3682,0l0.0005,8.6035l0.3698,0z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9971,12.4953L9.6273,12.4953C9.6202,12.4953 9.6147,12.4898 9.6147,12.4827L9.6142,3.8793C9.6142,3.8793 9.6153,3.8727 9.618,3.8705C9.6207,3.8684 9.6235,3.8667 9.6267,3.8667L9.9949,3.8667C10.002,3.8667 10.0075,3.8722 10.0075,3.8793L10.0091,12.4827C10.0091,12.4827 10.008,12.4893 10.0053,12.4915C10.0036,12.4942 10.0004,12.4953 9.9971,12.4953ZM9.6398,12.4707L9.9845,12.4707L9.9829,3.8924L9.6393,3.8924L9.6398,12.4707Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9584,3.8307L10.0522,3.8307L10.0527,12.5329L9.9589,12.5329L9.9584,3.8307L9.9584,3.8307ZM9.5929,3.8307L9.6873,3.8307L9.6873,12.5329L9.5929,12.5329L9.5929,3.8307L9.5929,3.8307Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6878,12.5455L9.5935,12.5455C9.5864,12.5455 9.5809,12.54 9.5809,12.5329L9.5809,3.8318L9.5809,3.8307C9.5809,3.8236 9.5869,3.8165 9.5935,3.8182L9.6878,3.8182C9.6949,3.8182 9.7004,3.8236 9.7004,3.8307L9.7004,12.5329C9.7004,12.5329 9.6993,12.5395 9.6965,12.5416C9.6938,12.5444 9.6911,12.5455 9.6878,12.5455ZM9.6055,12.5209L9.6753,12.5209L9.6753,3.8433L9.6055,3.8433L9.6055,12.5209ZM10.0533,12.5455L9.9595,12.5455C9.9524,12.5455 9.9469,12.54 9.9469,12.5329L9.9464,3.8307C9.9464,3.8307 9.9475,3.8242 9.9502,3.822C9.9518,3.8198 9.9551,3.8182 9.9584,3.8182L10.0522,3.8182C10.0593,3.8182 10.0647,3.8236 10.0647,3.8307L10.0653,12.5329C10.0653,12.5329 10.0642,12.5395 10.0615,12.5416C10.0593,12.5438 10.0565,12.5455 10.0533,12.5455ZM9.9715,12.5204L10.0402,12.5204L10.0396,3.8427L9.9709,3.8427L9.9715,12.5204Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M14.1196,8.3444l0,-0.318l-0.2602,-0.2411l-1.476,-0.3889l-2.1273,-0.216l-2.5615,0.1298l-1.8235,0.4325l-0.3682,0.2716l0,0.318l0.9327,-0.4167l2.214,-0.3458l2.1273,0l1.5627,0.1729l1.0855,0.2596z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M14.1196,8.3569C14.118,8.3569 14.1158,8.3564 14.1142,8.3558L13.4198,8.0127L12.3371,7.7542L10.776,7.5813L8.6504,7.5813L6.4402,7.9265L5.5091,8.3433C5.5053,8.3449 5.5009,8.3449 5.4971,8.3422C5.4938,8.34 5.4916,8.3362 5.4916,8.3318L5.4916,8.0138C5.4916,8.01 5.4933,8.0062 5.4965,8.004L5.8647,7.7324C5.8658,7.7313 5.8675,7.7307 5.8691,7.7302L7.6925,7.2976L10.2562,7.1678L12.3851,7.3838L13.8627,7.7733C13.8649,7.7738 13.8665,7.7749 13.8682,7.776L14.1284,8.0171C14.1311,8.0193 14.1322,8.0225 14.1322,8.0264L14.1322,8.3444C14.1322,8.3487 14.13,8.3525 14.1262,8.3547C14.1245,8.3564 14.1224,8.3569 14.1196,8.3569ZM10.7776,7.5567L12.342,7.7296L13.4285,7.9893L14.1076,8.3247L14.1076,8.0318L13.854,7.7962L12.3813,7.4078L10.2562,7.1918L7.6969,7.3216L5.8784,7.7531L5.5173,8.0193L5.5173,8.3122L6.432,7.9031C6.4331,7.9025 6.4342,7.9025 6.4353,7.902L8.6493,7.5562L10.7776,7.5567Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8204,7.5158C10.8355,7.5142 11.8205,7.6118 12.6016,7.7629C13.4078,7.9233 13.9751,8.124 14.1687,8.3498L14.1687,8.4616C13.9347,8.1807 13.1716,7.9751 12.5836,7.8578C11.8085,7.7078 10.83,7.6107 9.8209,7.6124C8.7556,7.6145 7.764,7.7149 6.9998,7.8633C6.3867,7.9844 5.5696,8.2249 5.4671,8.4627L5.4671,8.3465C5.5233,8.1824 6.132,7.9369 6.9856,7.7662C7.7553,7.6167 8.7491,7.518 9.8204,7.5158L9.8204,7.5158ZM9.8209,7.1487C10.836,7.1471 11.8211,7.2447 12.6022,7.3958C13.4084,7.5562 13.9756,7.7569 14.1693,7.9827L14.1693,8.0945C13.9353,7.8142 13.1722,7.608 12.5842,7.4907C11.8091,7.3402 10.8305,7.2436 9.8215,7.2453C8.7562,7.2469 7.7689,7.3478 7.0053,7.4962C6.414,7.608 5.5631,7.8584 5.4682,8.0956L5.4682,7.9795C5.5244,7.8169 6.1451,7.5627 6.9867,7.3991C7.7558,7.2496 8.7496,7.1509 9.8209,7.1487L9.8209,7.1487Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.4671,8.4747C5.466,8.4747 5.4655,8.4747 5.4644,8.4747C5.4589,8.4736 5.4545,8.4682 5.4545,8.4627L5.4545,8.3465C5.4545,8.3465 5.4545,8.3438 5.4551,8.3427C5.5151,8.1665 6.1576,7.9189 6.9829,7.7542C7.8049,7.5944 8.8124,7.5055 9.8204,7.5038L9.8204,7.5164L9.8204,7.5038C9.8296,7.5038 9.8395,7.5038 9.8493,7.5038C10.8033,7.5038 11.7802,7.5916 12.6038,7.7515C13.4455,7.9189 13.9898,8.1235 14.178,8.3422C14.1796,8.3444 14.1813,8.3471 14.1807,8.3504L14.1807,8.4622C14.1807,8.4676 14.1775,8.472 14.1725,8.4736C14.1676,8.4753 14.1622,8.4736 14.1589,8.4698C13.9118,8.1731 13.0642,7.9669 12.5809,7.8698C11.7644,7.7116 10.7951,7.6249 9.8487,7.6249C9.8395,7.6249 9.8296,7.6249 9.8204,7.6249C8.8249,7.6265 7.824,7.716 7.0015,7.8758C6.3338,8.0078 5.5718,8.2495 5.478,8.4676C5.4764,8.472 5.472,8.4747 5.4671,8.4747ZM9.8487,7.5998C10.7967,7.5998 11.7676,7.6871 12.5858,7.8453C13.0593,7.9402 13.8796,8.1398 14.1562,8.4289L14.1562,8.3542C13.9685,8.1409 13.4302,7.9407 12.5989,7.7749C11.7682,7.614 10.7804,7.5251 9.8204,7.5278C8.8145,7.5295 7.8082,7.6184 6.9878,7.7776C6.0758,7.9593 5.5315,8.2064 5.4791,8.3476L5.4791,8.4164C5.6613,8.1715 6.504,7.9478 6.9965,7.8502C7.8207,7.6898 8.8233,7.6009 9.8198,7.5993C9.8302,7.5998 9.8395,7.5998 9.8487,7.5998ZM5.4676,8.1076C5.4671,8.1076 5.466,8.1076 5.4655,8.1076C5.4595,8.1065 5.4551,8.1016 5.4551,8.0956L5.4551,7.9795C5.4551,7.9795 5.4551,7.9767 5.4556,7.9756C5.5173,7.7973 6.174,7.5442 6.984,7.3871C7.8055,7.2273 8.8135,7.1384 9.8209,7.1367L9.8209,7.1367C10.7831,7.1356 11.772,7.2229 12.6044,7.3844C13.446,7.5518 13.9904,7.7564 14.1785,7.9751C14.1807,7.9767 14.1818,7.98 14.1818,7.9827L14.1818,8.0945C14.1818,8.1 14.1785,8.1044 14.1736,8.106C14.1687,8.1076 14.1633,8.1065 14.16,8.1022C13.9124,7.8055 13.0653,7.5993 12.582,7.5027C11.7573,7.3429 10.7776,7.2551 9.8215,7.2578C8.8298,7.2595 7.8305,7.3484 7.0075,7.5087C6.33,7.6364 5.5647,7.8873 5.4796,8.1005C5.4769,8.1049 5.4725,8.1076 5.4676,8.1076ZM9.8504,7.2327C10.7978,7.2327 11.7682,7.32 12.5858,7.4782C13.0593,7.5725 13.8796,7.7727 14.1562,8.0618L14.1562,7.9871C13.9685,7.7738 13.4307,7.5736 12.5989,7.4078C11.7682,7.2469 10.7809,7.1575 9.8204,7.1607L9.8204,7.1607C8.814,7.1624 7.8082,7.2513 6.9878,7.4105C6.1113,7.5807 5.5342,7.8333 5.4791,7.9805L5.4791,8.0482C5.6525,7.8125 6.4664,7.5845 7.0015,7.4831C7.8256,7.3227 8.8271,7.2338 9.8198,7.2322C9.8307,7.2327 9.8405,7.2327 9.8504,7.2327Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8002,5.2756C11.4,5.2675 12.7953,5.4982 13.4335,5.8244L13.6664,6.2258C13.1116,5.928 11.6062,5.6182 9.8024,5.6645C8.3329,5.6738 6.7625,5.8255 5.9744,6.2444L6.2525,5.7813C6.8995,5.4469 8.424,5.2773 9.8002,5.2756" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.9744,6.2564C5.9711,6.2564 5.9678,6.2553 5.9651,6.2525C5.9613,6.2487 5.9607,6.2422 5.9635,6.2378L6.2416,5.7747C6.2427,5.7725 6.2444,5.7709 6.2465,5.7698C6.9196,5.4224 8.5151,5.2647 9.7985,5.2631C9.7991,5.2631 9.7996,5.2631 9.8002,5.2631C11.3416,5.2565 12.7696,5.4715 13.4389,5.8129C13.4411,5.814 13.4427,5.8156 13.4438,5.8178L13.6767,6.2193C13.6795,6.2242 13.6789,6.2302 13.6751,6.234C13.6713,6.2378 13.6653,6.2389 13.6604,6.2362C13.0784,5.9236 11.5669,5.6307 9.8029,5.6765C8.7698,5.6831 6.9,5.7665 5.9809,6.2547C5.9787,6.2558 5.9765,6.2564 5.9744,6.2564ZM6.2613,5.79L6.0076,6.2127C6.9442,5.7398 8.7813,5.658 9.8024,5.6515C11.5331,5.6073 13.0233,5.8882 13.6342,6.1942L13.4247,5.8331C12.7571,5.4944 11.3367,5.2805 9.8018,5.2876C9.8013,5.2876 9.8007,5.2876 9.8002,5.2876C8.5216,5.2898 6.9327,5.4458 6.2613,5.79Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8215,5.6067C10.734,5.6045 11.6155,5.6558 12.3164,5.7818C12.9693,5.9029 13.5922,6.0845 13.6811,6.1822L13.7504,6.3038C13.5338,6.1631 12.9949,6.006 12.3033,5.8756C11.6084,5.7458 10.7275,5.7027 9.8204,5.7049C8.7905,5.7016 7.9904,5.7556 7.3036,5.8745C6.5776,6.0098 6.0736,6.2035 5.9493,6.2951L6.0169,6.1669C6.2585,6.0442 6.6415,5.8964 7.2856,5.7807C7.9953,5.6509 8.8036,5.6122 9.8215,5.6067L9.8215,5.6067L9.8215,5.6067ZM9.8209,5.2396C10.6942,5.2375 11.556,5.286 12.228,5.406C12.7582,5.5085 13.2824,5.6695 13.4738,5.8118L13.5747,5.9716C13.4029,5.7818 12.7571,5.6013 12.1865,5.5009C11.5195,5.3864 10.6936,5.3411 9.8204,5.334C8.904,5.3367 8.0575,5.3924 7.4002,5.5118C6.7735,5.6307 6.3687,5.7715 6.1975,5.8811L6.2864,5.7475C6.5225,5.6236 6.9044,5.5096 7.3849,5.4169C8.0471,5.2969 8.8991,5.2424 9.8209,5.2396L9.8209,5.2396Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.7498,6.3158C13.7476,6.3158 13.7449,6.3153 13.7433,6.3136C13.5311,6.1756 13.0053,6.0202 12.3005,5.8871C11.6815,5.7715 10.8464,5.7136 9.8198,5.7164C8.7911,5.7125 7.992,5.7665 7.3053,5.886C6.5831,6.0207 6.0818,6.2116 5.9564,6.3044C5.9515,6.3076 5.9455,6.3076 5.9411,6.3038C5.9367,6.3 5.9356,6.294 5.9384,6.2885L6.006,6.1598C6.0071,6.1576 6.0093,6.1555 6.0115,6.1544C6.3371,5.9891 6.7533,5.862 7.2835,5.7671C7.9265,5.6498 8.6618,5.5996 9.822,5.5936L9.822,5.5936L9.822,5.5936C10.8044,5.5915 11.6678,5.6515 12.3191,5.7687C12.9845,5.892 13.5998,6.0736 13.6909,6.1729L13.7613,6.2967C13.764,6.3016 13.7629,6.3082 13.7591,6.312C13.7564,6.3147 13.7531,6.3158 13.7498,6.3158ZM9.888,5.6918C10.8856,5.6918 11.6984,5.7491 12.3049,5.8631C12.9715,5.9891 13.4793,6.1353 13.7155,6.2684L13.6696,6.1882C13.5851,6.096 12.9633,5.9144 12.3136,5.7938C11.6635,5.6771 10.8011,5.616 9.8209,5.6193L9.8209,5.6193C8.6629,5.6258 7.9287,5.676 7.2867,5.7927C6.7609,5.8871 6.348,6.0125 6.0251,6.1762L5.9815,6.2596C6.1555,6.1593 6.6355,5.9869 7.3004,5.8625C7.9887,5.7431 8.7889,5.6891 9.8193,5.6924C9.8427,5.6918 9.8656,5.6918 9.888,5.6918ZM13.5753,5.9847C13.572,5.9847 13.5687,5.9831 13.566,5.9804C13.3893,5.7845 12.7118,5.6062 12.1849,5.5135C11.5784,5.4093 10.8055,5.3547 9.8209,5.3465C8.8647,5.3493 8.0285,5.4104 7.4029,5.5238C6.8471,5.6291 6.3993,5.7665 6.2045,5.8915C6.1996,5.8947 6.1931,5.8936 6.1887,5.8898C6.1844,5.8855 6.1838,5.8789 6.1871,5.8745L6.276,5.7409C6.2771,5.7393 6.2787,5.7376 6.2804,5.7365C6.5149,5.6138 6.8956,5.4987 7.3822,5.4049C8.0067,5.2915 8.85,5.2304 9.8204,5.2276L9.8204,5.2276L9.8204,5.2276C10.7738,5.2255 11.6067,5.2827 12.2296,5.3945C12.798,5.5047 13.3009,5.6689 13.4809,5.8031C13.482,5.8042 13.4831,5.8053 13.4842,5.8064L13.5851,5.9662C13.5884,5.9716 13.5873,5.9787 13.5818,5.9825C13.5802,5.9836 13.578,5.9847 13.5753,5.9847ZM9.8209,5.3215C10.8071,5.3296 11.5816,5.3842 12.1893,5.4889C12.6693,5.574 13.2742,5.7295 13.5191,5.9067L13.4645,5.8205C13.2856,5.6891 12.7882,5.5271 12.2253,5.418C11.604,5.3067 10.7711,5.2489 9.8204,5.2516L9.8204,5.2516C8.8516,5.2544 8.01,5.3155 7.3871,5.4284C6.9055,5.5216 6.5275,5.6351 6.2951,5.7562L6.2378,5.8418C6.4544,5.7229 6.8798,5.5969 7.3975,5.4987C8.0253,5.3858 8.8631,5.3242 9.8209,5.3215Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.9564,9.9584C11.1655,9.8111 10.3735,9.7898 9.8198,9.7964C7.1542,9.8275 6.2929,10.3418 6.1876,10.4973L5.9885,10.1738C6.6671,9.684 8.1191,9.4091 9.834,9.4369C10.7247,9.4516 11.4933,9.5105 12.1402,9.6349L11.9564,9.9584" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1876,10.5098L6.1876,10.5098C6.1833,10.5098 6.1795,10.5076 6.1773,10.5038L5.9782,10.1804C5.9749,10.1749 5.976,10.1678 5.9815,10.164C6.6616,9.6731 8.1027,9.3965 9.8345,9.4249C10.7749,9.4402 11.5304,9.5051 12.1429,9.6235C12.1467,9.624 12.15,9.6267 12.1516,9.6305C12.1533,9.6344 12.1533,9.6382 12.1511,9.642L11.9673,9.9649C11.9645,9.9698 11.958,9.9725 11.9525,9.9704C11.3258,9.8542 10.6085,9.7996 9.8198,9.8089C7.2262,9.8395 6.3131,10.3336 6.198,10.5044C6.1958,10.5076 6.192,10.5098 6.1876,10.5098ZM6.0055,10.1776L6.1893,10.476C6.3464,10.29 7.2867,9.8144 9.8198,9.7844C10.6069,9.7751 11.3236,9.8291 11.9498,9.9447L12.1205,9.6442C11.5124,9.5285 10.764,9.4647 9.834,9.4495C8.1147,9.4216 6.6851,9.6933 6.0055,10.1776Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8045,9.7511C10.5458,9.762 11.274,9.7925 11.9765,9.9229L11.9258,10.0124C11.2735,9.8924 10.5775,9.8465 9.8073,9.8504C8.8233,9.8427 7.8284,9.9344 6.9622,10.182C6.6889,10.2578 6.2362,10.4329 6.1904,10.5775L6.1396,10.4945C6.1544,10.4089 6.4276,10.2316 6.9393,10.0887C7.9309,9.8051 8.8587,9.7576 9.8045,9.7511L9.8045,9.7511L9.8045,9.7511ZM9.8378,9.3791C10.6064,9.3933 11.3995,9.4287 12.1707,9.5809L12.1178,9.6742C11.4213,9.5367 10.7558,9.4904 9.8422,9.4767C8.8555,9.4784 7.8082,9.5487 6.8564,9.8242C6.5493,9.9131 6.0185,10.1062 6.0011,10.2589L5.9504,10.1695C5.9618,10.0309 6.4211,9.8498 6.834,9.7304C7.794,9.4527 8.8435,9.3813 9.8378,9.3791L9.8378,9.3791Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M6.1898,10.5895C6.1855,10.5895 6.1816,10.5873 6.1795,10.5835L6.1287,10.5005C6.1271,10.4984 6.1265,10.4951 6.1265,10.4951C6.1435,10.3958 6.432,10.2175 6.9349,10.0767C7.8829,9.8062 8.7676,9.7462 9.804,9.7391C9.8051,9.7391 9.8051,9.7391 9.8056,9.7391C10.5093,9.7495 11.2587,9.7778 11.9782,9.9115C11.982,9.912 11.9853,9.9147 11.9869,9.918C11.9885,9.9213 11.9885,9.9256 11.9864,9.9289L11.9356,10.0184C11.9329,10.0227 11.928,10.0249 11.9231,10.0244C11.3089,9.9115 10.6173,9.8575 9.8067,9.8624C8.7185,9.8531 7.7629,9.9655 6.9649,10.1935C6.6731,10.2742 6.2433,10.4482 6.2007,10.5813C6.1991,10.5856 6.1953,10.5889 6.1909,10.5895C6.1909,10.5895 6.1904,10.5895 6.1898,10.5895ZM6.1516,10.4924L6.1882,10.5518C6.27,10.4073 6.6955,10.2431 6.9584,10.1705C7.7585,9.942 8.7169,9.8296 9.8067,9.8384C10.6145,9.8345 11.3056,9.8869 11.9193,9.9993L11.9575,9.9316C11.2445,9.8007 10.5011,9.7735 9.804,9.7631C9.804,9.7631 9.8035,9.7631 9.8029,9.7631C8.7693,9.7702 7.8867,9.8302 6.9415,10.0996C6.4331,10.242 6.1729,10.4155 6.1516,10.4924ZM6.0016,10.2709C5.9973,10.2709 5.9935,10.2687 5.9913,10.2649L5.9405,10.1755C5.9395,10.1733 5.9389,10.1711 5.9389,10.1689C5.9542,9.9873 6.6256,9.7789 6.8313,9.7195C7.6516,9.4816 8.6067,9.3704 9.8378,9.3676L9.8378,9.3676C10.5895,9.3818 11.3929,9.4156 12.1729,9.57C12.1767,9.5705 12.18,9.5733 12.1816,9.5765C12.1833,9.5798 12.1833,9.5842 12.1811,9.5875L12.1282,9.6807C12.1255,9.6851 12.1205,9.6878 12.1156,9.6867C11.376,9.5405 10.6718,9.5018 9.8422,9.4893C8.6176,9.4915 7.6702,9.6016 6.8602,9.8362C6.4625,9.9518 6.0278,10.1335 6.0131,10.2605C6.0125,10.2655 6.0087,10.2698 6.0038,10.2709C6.0033,10.2704 6.0022,10.2709 6.0016,10.2709ZM5.9635,10.1667L5.9984,10.2284C6.0851,10.0407 6.7718,9.8362 6.8536,9.8127C7.6658,9.5776 8.6155,9.4669 9.8427,9.4647C10.6707,9.4773 11.3733,9.5155 12.1118,9.6611L12.1522,9.5896C11.3793,9.4385 10.5829,9.4053 9.8378,9.3911C8.6089,9.3933 7.656,9.5045 6.8378,9.7418C6.3207,9.8918 5.9793,10.0576 5.9635,10.1667Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.6244,10.2235l-0.3202,0.4953l-0.9202,-0.8144l-2.3875,-1.5998l-2.6913,-1.47l-1.3975,-0.4762l0.2978,-0.5498l0.1009,-0.0551l0.8684,0.216l2.8653,1.47l1.6495,1.038l1.3893,0.9944l0.5645,0.6485z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.3042,10.7307C13.3009,10.7307 13.2982,10.7296 13.296,10.7275L12.3758,9.9131L9.9895,8.3144L7.2987,6.8449L5.9035,6.3698C5.9002,6.3687 5.8975,6.366 5.8958,6.3627C5.8947,6.3595 5.8947,6.3556 5.8964,6.3524L6.1942,5.8025C6.1953,5.8004 6.1969,5.7987 6.1991,5.7976L6.3,5.7425C6.3027,5.7409 6.306,5.7409 6.3087,5.7415L7.1771,5.9575L10.0451,7.4285L11.6956,8.4671L13.0855,9.462L13.6522,10.1127C13.6549,10.1155 13.6555,10.1193 13.6549,10.1231L13.6369,10.2262C13.6364,10.2278 13.6358,10.2295 13.6353,10.2305L13.3151,10.7258C13.3129,10.7291 13.3102,10.7307 13.3064,10.7313C13.3053,10.7307 13.3047,10.7307 13.3042,10.7307ZM5.9253,6.3507L7.3085,6.822L10.002,8.2931L12.3905,9.8935L13.3015,10.6991L13.6124,10.2185L13.6293,10.1242L13.0691,9.48L11.682,8.4873L10.0331,7.4498L7.1689,5.9804L6.3082,5.7665L6.2144,5.8173L5.9253,6.3507Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M5.8571,6.3709C6.102,6.2051 7.9036,7.0047 9.7882,8.1365C11.6678,9.2716 13.464,10.5545 13.302,10.7945L13.2485,10.878L13.224,10.8971C13.2295,10.8933 13.2562,10.8605 13.2213,10.7716C13.1411,10.5093 11.8669,9.4964 9.7533,8.2249C7.6925,7.0009 5.9749,6.2629 5.8031,6.474L5.8571,6.3709L5.8571,6.3709L5.8571,6.3709ZM13.6904,10.2164C13.8453,9.9115 12.1745,8.658 10.1035,7.4373C7.9844,6.2411 6.4571,5.5369 6.1784,5.7469L6.1161,5.8593C6.1156,5.8653 6.1184,5.8516 6.1315,5.8413C6.1822,5.7971 6.2662,5.8004 6.3044,5.7993C6.7849,5.8064 8.1567,6.4353 10.0811,7.5344C10.9244,8.0236 13.644,9.7609 13.6336,10.2496C13.6342,10.2916 13.6369,10.3004 13.6211,10.3211L13.6904,10.2164L13.6904,10.2164L13.6904,10.2164Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.224,10.9096C13.2202,10.9096 13.2164,10.908 13.2142,10.9047C13.2104,10.8993 13.2109,10.8916 13.2164,10.8873L13.2169,10.8867C13.218,10.8851 13.242,10.8578 13.2098,10.776C13.1275,10.506 11.7802,9.4582 9.7467,8.2353C7.5851,6.9513 5.9673,6.2918 5.8124,6.4816C5.8085,6.4865 5.8009,6.4876 5.796,6.4844C5.7905,6.4811 5.7889,6.474 5.7916,6.4685L5.8456,6.3655C5.8467,6.3638 5.8478,6.3622 5.8495,6.3611C6.1064,6.1882 7.9124,6.9965 9.7942,8.1267C11.4862,9.1489 13.2415,10.3724 13.3211,10.734C13.3271,10.7613 13.3238,10.7842 13.3118,10.8022L13.2589,10.8856C13.2584,10.8867 13.2573,10.8878 13.2562,10.8889L13.2316,10.908L13.2316,10.908L13.2311,10.9085C13.2289,10.9091 13.2267,10.9096 13.224,10.9096ZM5.9193,6.4276C6.3922,6.4276 7.9882,7.1624 9.7598,8.2145C11.8255,9.4571 13.1482,10.4885 13.2338,10.7684C13.2475,10.8033 13.2518,10.83 13.2518,10.8507L13.2916,10.788C13.3004,10.7755 13.302,10.7591 13.2976,10.7384C13.2202,10.3876 11.4284,9.1413 9.7822,8.1469C7.9467,7.0445 6.1222,6.2204 5.8669,6.3791L5.8358,6.4385C5.8576,6.4315 5.8855,6.4276 5.9193,6.4276ZM13.6211,10.3336C13.6184,10.3336 13.6162,10.3331 13.614,10.3315C13.6085,10.3276 13.6069,10.32 13.6107,10.3145L13.6178,10.3042C13.6222,10.2955 13.6222,10.2867 13.6216,10.2655L13.6211,10.2502C13.6315,9.7636 10.86,8.0013 10.0751,7.5458C8.1584,6.4511 6.7838,5.8195 6.3044,5.8124L6.2945,5.8124C6.2558,5.8129 6.1833,5.8135 6.1396,5.8511C6.1331,5.856 6.1298,5.862 6.1282,5.8653C6.1255,5.8707 6.1178,5.8745 6.1124,5.8729C6.1069,5.8713 6.1031,5.8642 6.1036,5.8582C6.1036,5.8582 6.1042,5.8549 6.1053,5.8533L6.1675,5.7409C6.1685,5.7393 6.1696,5.7382 6.1707,5.7371C6.5056,5.4851 8.4976,6.5165 10.1095,7.4269C11.9798,8.5287 13.8742,9.8831 13.7013,10.2224C13.7013,10.2229 13.7007,10.2229 13.7007,10.2229L13.6385,10.3167C13.6364,10.3205 13.6342,10.3244 13.6309,10.3287C13.6282,10.3315 13.6249,10.3336 13.6211,10.3336ZM6.3038,5.7867C6.7882,5.7938 8.1671,6.4271 10.0871,7.5235C10.6424,7.8458 13.6571,9.7167 13.6456,10.2496L13.6456,10.2605L13.6789,10.2104C13.8202,9.9284 12.2471,8.7153 10.0964,7.4476C7.8333,6.1702 6.4456,5.5691 6.1871,5.7545L6.1565,5.8096C6.2035,5.7878 6.2596,5.7873 6.2935,5.7867L6.3038,5.7867Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.2442,8.6504C7.2442,9.354 7.5333,9.9905 8.0018,10.4553C8.4715,10.9211 9.1091,11.2156 9.8165,11.2156C10.5278,11.2156 11.1731,10.9282 11.6405,10.4635C12.108,9.9993 12.3976,9.3584 12.3976,8.6525L12.3976,8.6525L12.3976,5.2282L7.2431,5.2222L7.2442,8.6504L7.2442,8.6504L7.2442,8.6504Z" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.3402,8.6553L7.3402,8.6575C7.3402,9.33 7.62,9.9425 8.0684,10.3876C8.5178,10.8333 9.1369,11.1104 9.8138,11.1104C10.4945,11.1104 11.1125,10.8355 11.5598,10.3915C12.0071,9.9475 12.2847,9.3349 12.2847,8.6596L12.2847,8.6596L12.2847,5.3378L7.3429,5.3373L7.3402,8.6553M11.2915,6.3311L11.2915,8.4453L11.2898,8.6689L11.2898,8.6689C11.2898,8.7278 11.286,8.7949 11.2795,8.8522C11.2391,9.1865 11.0847,9.4778 10.8562,9.7042C10.5884,9.9693 10.2191,10.134 9.8122,10.134C9.4075,10.134 9.0464,9.9638 8.778,9.6971C8.5025,9.4238 8.3427,9.0491 8.3427,8.6618L8.3422,6.3256L11.2915,6.3311L11.2915,6.3311L11.2915,6.3311Z" + android:strokeWidth="1" + android:fillColor="#FF0000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.5713,9.6316C8.5593,9.6196 8.5407,9.6185 8.5304,9.6295L8.0335,10.128C8.0231,10.1384 8.0242,10.1569 8.0362,10.1684C8.0482,10.1804 8.0667,10.1815 8.0771,10.1705L8.574,9.672C8.5844,9.6622 8.5833,9.6436 8.5713,9.6316ZM7.9527,9.6464L7.9151,9.684L7.9151,9.684L7.9151,9.684L7.9762,9.7445C7.9849,9.7533 8.0007,9.7522 8.01,9.7429L8.1447,9.6076C8.154,9.5984 8.1551,9.5847 8.1453,9.5749L8.0831,9.5138L8.0444,9.5525L8.0716,9.5798L8.0444,9.6076L8.0171,9.5804L7.9784,9.6185L8.0056,9.6458L7.9784,9.6731L7.9527,9.6464ZM8.3465,9.8122L8.1393,9.6245L8.0242,9.7385L8.2145,9.9442L8.3465,9.8122ZM8.2358,8.2249C8.2358,8.2064 8.2233,8.1911 8.2075,8.1911L8.0171,8.1911C8.0165,8.1758 8.0116,8.1655 8.0095,8.1524C8.0116,8.166 8.0176,8.1753 8.0182,8.1905L8.1982,8.1905L8.1665,7.9238L8.1764,7.9238C8.1905,7.9238 8.202,7.9102 8.202,7.8933C8.202,7.8764 8.1905,7.8627 8.1764,7.8627L7.5016,7.8627C7.4875,7.8627 7.476,7.8764 7.476,7.8933C7.476,7.9102 7.4875,7.9238 7.5016,7.9238L7.512,7.9238L7.4831,8.19L7.6631,8.1905L7.6631,8.1911L7.4716,8.1911C7.4564,8.1911 7.4433,8.2064 7.4433,8.2249C7.4433,8.2435 7.4558,8.2587 7.4716,8.2587L8.2075,8.2587C8.2233,8.2587 8.2358,8.2435 8.2358,8.2249ZM7.7253,8.0073C7.6958,8.0476 7.6718,8.1033 7.6653,8.1824C7.668,8.0989 7.6942,8.046 7.7253,8.0073ZM7.4607,7.8316C7.4607,7.8485 7.4727,7.8622 7.488,7.8622L8.1933,7.8622C8.208,7.8622 8.2205,7.8485 8.2205,7.8316C8.2205,7.8147 8.2085,7.8011 8.1933,7.8011L7.488,7.8011C7.4727,7.8011 7.4607,7.8147 7.4607,7.8316ZM7.7204,7.4045L7.7204,7.4045L7.7204,7.4045L7.7204,7.4907C7.7204,7.5033 7.7324,7.5136 7.7449,7.5136L7.9364,7.5136C7.9489,7.5136 7.9604,7.5049 7.9604,7.4913L7.9604,7.404L7.9058,7.404L7.9058,7.4427L7.8671,7.4427L7.8671,7.4045L7.8125,7.4045L7.8125,7.4433L7.7738,7.4433L7.7738,7.4056L7.7204,7.4045ZM7.746,7.7995L7.9331,7.8L7.9205,7.5213L7.7585,7.5202L7.746,7.7995ZM7.5196,7.8005L7.6985,7.8005L7.6931,7.6505L7.5245,7.6505L7.5196,7.8005ZM7.98,7.8005L8.1589,7.8005L8.1535,7.6505L7.9849,7.6505L7.98,7.8005Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.4913,7.5415L7.4913,7.5415L7.4913,7.5415L7.4913,7.6276C7.4913,7.6402 7.5027,7.6505 7.5158,7.6505L7.7035,7.6505C7.716,7.6505 7.7269,7.6418 7.7269,7.6282L7.7269,7.5415L7.6735,7.5415L7.6735,7.5802L7.6353,7.5802L7.6353,7.542L7.5818,7.542L7.5818,7.5807L7.5436,7.5807L7.5436,7.5431L7.4913,7.5415ZM7.9522,7.5415L7.9522,7.5415L7.9522,7.5415L7.9522,7.6276C7.9522,7.6402 7.9636,7.6505 7.9767,7.6505L8.1644,7.6505C8.1769,7.6505 8.1878,7.6418 8.1878,7.6282L8.1878,7.5415L8.1344,7.5415L8.1344,7.5802L8.0962,7.5802L8.0962,7.542L8.0427,7.542L8.0427,7.5807L8.0045,7.5807L8.0045,7.5431L7.9522,7.5415ZM8.0558,10.1051L8.1818,9.9785L8.0711,9.8765L7.9522,9.9955L8.0558,10.1051ZM8.5064,9.6529L8.3956,9.5509L8.2767,9.6698L8.3804,9.7795L8.5064,9.6529ZM8.0782,9.8367L8.0165,9.7751L7.9789,9.8127L8.0062,9.84L7.9795,9.8667L7.9522,9.8395L7.9145,9.8771L7.9418,9.9044L7.9151,9.9311L7.8884,9.9044L7.8518,9.9409L7.8518,9.9409L7.8518,9.9409L7.9129,10.0015C7.9216,10.0102 7.9375,10.0091 7.9462,10.0004L8.0782,9.8678C8.0869,9.8602 8.088,9.8465 8.0782,9.8367ZM8.2396,9.6065L8.2129,9.5798L8.1764,9.6164L8.1764,9.6164L8.1764,9.6164L8.2375,9.6769C8.2462,9.6856 8.262,9.6845 8.2707,9.6758L8.4027,9.5433C8.4115,9.5345 8.4125,9.5204 8.4033,9.5111L8.3416,9.45L8.304,9.4876L8.3313,9.5149L8.3045,9.5416L8.2773,9.5144L8.2396,9.552L8.2669,9.5793L8.2396,9.6065ZM8.8184,9.8935L8.6842,10.0282C8.6727,10.0178 8.6624,10.014 8.6509,10.0058C8.6624,10.014 8.6727,10.0162 8.6842,10.0271L8.8113,9.8995L8.5991,9.7336L8.6062,9.7265C8.616,9.7167 8.6144,9.6987 8.6029,9.6867C8.5909,9.6747 8.5729,9.6736 8.5631,9.6835L8.088,10.1602C8.0782,10.17 8.0798,10.188 8.0913,10.2C8.1033,10.212 8.1213,10.2131 8.1311,10.2033L8.1382,10.1962L8.3078,10.404L8.4349,10.2775C8.4349,10.2775 8.4349,10.278 8.4355,10.278L8.3002,10.4133C8.2893,10.4242 8.2909,10.4438 8.3045,10.4569C8.3176,10.47 8.3373,10.4716 8.3482,10.4607L8.8664,9.9409C8.8773,9.93 8.8756,9.9104 8.862,9.8973C8.8495,9.8842 8.8293,9.8825 8.8184,9.8935ZM8.3482,10.1051C8.3558,10.1531 8.3787,10.2076 8.4273,10.266C8.3727,10.2076 8.3536,10.1531 8.3482,10.1051ZM7.9522,5.5385L7.9522,5.5385L7.9522,5.5385L7.9522,5.6247C7.9522,5.6373 7.9636,5.6476 7.9767,5.6476L8.1644,5.6476C8.1769,5.6476 8.1878,5.6389 8.1878,5.6253L8.1878,5.538L8.1344,5.538L8.1344,5.5767L8.0962,5.5767L8.0962,5.538L8.0427,5.538L8.0427,5.5767L8.0045,5.5767L8.0045,5.5391L7.9522,5.5385ZM7.5158,5.6471L7.7035,5.6471C7.716,5.6471 7.7269,5.6384 7.7269,5.6247L7.7269,5.5375L7.6735,5.5375L7.6735,5.5762L7.6353,5.5762L7.6353,5.5375L7.5818,5.5375L7.5818,5.5762L7.5436,5.5762L7.5436,5.5385L7.4918,5.5385L7.4918,5.5385L7.4918,5.5385L7.4918,5.6247C7.4918,5.6373 7.5033,5.6471 7.5158,5.6471Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1535,5.6476L7.9849,5.6476L7.98,5.7976L8.1589,5.7976L8.1535,5.6476ZM7.6931,5.6476L7.5245,5.6476L7.5196,5.7976L7.6985,5.7976L7.6931,5.6476ZM7.746,5.7965L7.9331,5.7971L7.9205,5.5178L7.7585,5.5173L7.746,5.7965ZM7.7449,5.5107L7.9364,5.5107C7.9489,5.5107 7.9604,5.502 7.9604,5.4884L7.9604,5.4016L7.9058,5.4016L7.9058,5.4404L7.8671,5.4404L7.8671,5.4022L7.8125,5.4022L7.8125,5.4409L7.7738,5.4409L7.7738,5.4033L7.7204,5.4033L7.7204,5.4033L7.7204,5.4033L7.7204,5.4895C7.7204,5.5004 7.7324,5.5107 7.7449,5.5107ZM8.1927,5.8593C8.2075,5.8593 8.22,5.8456 8.22,5.8287C8.22,5.8118 8.208,5.7982 8.1927,5.7982L7.4875,5.7982C7.4727,5.7982 7.4602,5.8118 7.4602,5.8287C7.4602,5.8456 7.4722,5.8593 7.4875,5.8593L8.1927,5.8593Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.2075,6.2558C8.2227,6.2558 8.2358,6.2405 8.2358,6.222C8.2358,6.2035 8.2233,6.1882 8.2075,6.1882L8.0171,6.1882C8.0165,6.1729 8.0116,6.1625 8.0095,6.1489C8.0116,6.1625 8.0176,6.1718 8.0182,6.1871L8.1982,6.1871L8.1665,5.9204L8.1764,5.9204C8.1905,5.9204 8.202,5.9067 8.202,5.8898C8.202,5.8729 8.1905,5.8593 8.1764,5.8593L7.5016,5.8593C7.4875,5.8593 7.476,5.8729 7.476,5.8898C7.476,5.9067 7.4875,5.9204 7.5016,5.9204L7.512,5.9204L7.4831,6.1865L7.6631,6.1871L7.6631,6.1876L7.4716,6.1876C7.4564,6.1876 7.4433,6.2029 7.4433,6.2215C7.4433,6.24 7.4558,6.2553 7.4716,6.2553L8.2075,6.2553L8.2075,6.2558ZM7.7253,6.0044C7.6958,6.0447 7.6718,6.1004 7.6653,6.1795C7.668,6.0955 7.6942,6.0431 7.7253,6.0044ZM10.1378,5.6476L9.9698,5.6476L9.9644,5.7976L10.1438,5.7976L10.1378,5.6476ZM9.5002,5.6471L9.6878,5.6471C9.7004,5.6471 9.7113,5.6384 9.7113,5.6247L9.7113,5.5375L9.6578,5.5375L9.6578,5.5762L9.6196,5.5762L9.6196,5.5375L9.5662,5.5375L9.5662,5.5762L9.528,5.5762L9.528,5.5385L9.4762,5.5385L9.4762,5.5385L9.4762,5.5385L9.4762,5.6247C9.4762,5.6373 9.4876,5.6471 9.5002,5.6471Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9365,5.5385L9.9365,5.5385L9.9365,5.5385L9.9365,5.6247C9.9365,5.6373 9.948,5.6476 9.9605,5.6476L10.1482,5.6476C10.1607,5.6476 10.1716,5.6389 10.1716,5.6253L10.1716,5.538L10.1182,5.538L10.1182,5.5767L10.08,5.5767L10.08,5.538L10.0265,5.538L10.0265,5.5767L9.9884,5.5767L9.9884,5.5391L9.9365,5.5385ZM9.6775,5.6476L9.5089,5.6476L9.504,5.7976L9.6829,5.7976L9.6775,5.6476ZM9.7304,5.7965L9.9175,5.7971L9.9055,5.5178L9.7429,5.5173L9.7304,5.7965ZM9.7298,5.5107L9.9213,5.5107C9.9338,5.5107 9.9453,5.502 9.9453,5.4884L9.9453,5.4016L9.8907,5.4016L9.8907,5.4404L9.852,5.4404L9.852,5.4022L9.7975,5.4022L9.7975,5.4409L9.7582,5.4409L9.7582,5.4033L9.7047,5.4033L9.7047,5.4033L9.7047,5.4033L9.7047,5.4895C9.7047,5.5004 9.7167,5.5107 9.7298,5.5107ZM10.1771,5.8593C10.1918,5.8593 10.2044,5.8456 10.2044,5.8287C10.2044,5.8118 10.1924,5.7982 10.1771,5.7982L9.4718,5.7982C9.4571,5.7982 9.4445,5.8118 9.4445,5.8287C9.4445,5.8456 9.4565,5.8593 9.4718,5.8593L10.1771,5.8593Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M10.0015,6.1882C10.0009,6.1729 9.996,6.1625 9.9938,6.1489C9.996,6.1625 10.002,6.1718 10.0025,6.1871L10.1825,6.1871L10.1509,5.9204L10.1607,5.9204C10.1749,5.9204 10.1864,5.9067 10.1864,5.8898C10.1864,5.8729 10.1749,5.8593 10.1607,5.8593L9.486,5.8593C9.4718,5.8593 9.4604,5.8729 9.4604,5.8898C9.4604,5.9067 9.4718,5.9204 9.486,5.9204L9.4964,5.9204L9.4675,6.1865L9.6475,6.1871L9.6475,6.1876L9.456,6.1876C9.4407,6.1876 9.4276,6.2029 9.4276,6.2215C9.4276,6.24 9.4402,6.2553 9.456,6.2553L10.1918,6.2553C10.2071,6.2553 10.2202,6.24 10.2202,6.2215C10.2202,6.2029 10.2076,6.1876 10.1918,6.1876L10.0015,6.1876L10.0015,6.1882ZM9.7096,6.0044C9.6802,6.0447 9.6562,6.1004 9.6496,6.1795C9.6524,6.0955 9.6785,6.0431 9.7096,6.0044ZM11.3656,9.6758C11.3744,9.6845 11.3902,9.6856 11.3989,9.6769L11.4605,9.6164L11.4605,9.6164L11.4605,9.6164L11.424,9.5798L11.3973,9.6065L11.3705,9.5798L11.3978,9.5525L11.3602,9.5149L11.3329,9.5422L11.3062,9.5155L11.3335,9.4882L11.2958,9.4505L11.2342,9.5116C11.2244,9.5215 11.226,9.5351 11.2347,9.5438L11.3656,9.6758ZM11.7213,9.9322L11.6945,9.9055L11.7218,9.8782L11.6842,9.8405L11.6569,9.8678L11.6302,9.8411L11.6575,9.8138L11.6198,9.7762L11.5582,9.8378C11.5484,9.8476 11.55,9.8613 11.5587,9.87L11.6907,10.0025C11.6995,10.0113 11.7153,10.0124 11.724,10.0036L11.7851,9.9431L11.7851,9.9431L11.7851,9.9431L11.7485,9.9065L11.7213,9.9322ZM11.3596,9.6698L11.2407,9.5509L11.13,9.6529L11.256,9.7795L11.3596,9.6698Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.454,9.9785L11.5805,10.1051L11.6842,9.9955L11.5653,9.8765L11.454,9.9785ZM11.0335,9.6873C11.0215,9.6993 11.0198,9.7167 11.0302,9.7271L11.0373,9.7342L10.8251,9.9L10.9522,10.0276C10.9636,10.0167 10.974,10.0151 10.9855,10.0064C10.9745,10.0145 10.9636,10.0184 10.9522,10.0287L10.818,9.894C10.8071,9.8831 10.7875,9.8847 10.7738,9.8978C10.7607,9.9109 10.7585,9.9305 10.7695,9.9415L11.2876,10.4613C11.2985,10.4722 11.3182,10.4705 11.3318,10.4575C11.3449,10.4444 11.3471,10.4247 11.3362,10.4138L11.2009,10.2785C11.2009,10.2785 11.2009,10.278 11.2015,10.278L11.3285,10.4045L11.4982,10.1967L11.5053,10.2038C11.5151,10.2136 11.5331,10.2125 11.5451,10.2005C11.5571,10.1885 11.5587,10.1711 11.5484,10.1607L11.0733,9.684C11.0629,9.6742 11.0449,9.6753 11.0335,9.6873ZM11.2882,10.1056C11.2827,10.1536 11.2636,10.2076 11.2091,10.2665C11.2576,10.2076 11.28,10.1536 11.2882,10.1056ZM11.5522,9.5138L11.4905,9.5749C11.4807,9.5847 11.4824,9.5984 11.4911,9.6076L11.6258,9.7429C11.6351,9.7522 11.6504,9.7533 11.6596,9.7445L11.7207,9.684L11.7207,9.684L11.7207,9.684L11.6831,9.6464L11.6564,9.6731L11.6291,9.6458L11.6564,9.6185L11.6176,9.5804L11.5904,9.6076L11.5631,9.5798L11.5904,9.5525L11.5522,9.5138ZM11.4218,9.9442L11.6116,9.7385L11.4971,9.6245L11.2898,9.8122L11.4218,9.9442ZM11.0651,9.6316C11.0531,9.6436 11.052,9.6616 11.0624,9.672L11.5593,10.1705C11.5696,10.1809 11.5882,10.1798 11.6002,10.1684C11.6122,10.1564 11.6133,10.1384 11.6029,10.128L11.106,9.6295C11.0951,9.6191 11.0765,9.6202 11.0651,9.6316ZM11.4491,7.5409L11.4491,7.6276C11.4491,7.6413 11.46,7.65 11.4725,7.65L11.6602,7.65C11.6727,7.65 11.6842,7.6396 11.6847,7.6271L11.6847,7.5409L11.6847,7.5409L11.6847,7.5409L11.6329,7.5409L11.6329,7.5785L11.5947,7.5785L11.5947,7.5398L11.5413,7.5398L11.5413,7.578L11.5031,7.578L11.5031,7.5393L11.4491,7.5409ZM11.9095,7.5409L11.9095,7.6276C11.9095,7.6413 11.9204,7.65 11.9329,7.65L12.1205,7.65C12.1331,7.65 12.1445,7.6396 12.1451,7.6271L12.1451,7.5409L12.1451,7.5409L12.1451,7.5409L12.0933,7.5409L12.0933,7.5785L12.0545,7.5785L12.0545,7.5398L12.0011,7.5398L12.0011,7.578L11.9629,7.578L11.9629,7.5393L11.9095,7.5409ZM11.6564,7.8005L11.6509,7.6505L11.4829,7.6505L11.4769,7.8005L11.6564,7.8005ZM12.1167,7.8005L12.1118,7.6505L11.9433,7.6505L11.9378,7.8005L12.1167,7.8005ZM11.7033,7.8L11.8904,7.7995L11.8778,7.5202L11.7153,7.5213L11.7033,7.8ZM11.676,7.404L11.676,7.4913C11.676,7.5049 11.6869,7.5136 11.7,7.5136L11.8909,7.5136C11.904,7.5136 11.9155,7.5033 11.9155,7.4907L11.9155,7.4045L11.9155,7.4045L11.9155,7.4045L11.862,7.4045L11.862,7.4422L11.8233,7.4422L11.8233,7.4035L11.7687,7.4035L11.7687,7.4416L11.73,7.4416L11.73,7.4029L11.676,7.4029L11.676,7.404ZM11.4164,7.8316C11.4164,7.8485 11.4284,7.8622 11.4436,7.8622L12.1489,7.8622C12.1636,7.8622 12.1762,7.8485 12.1762,7.8316C12.1762,7.8147 12.1642,7.8011 12.1489,7.8011L11.4436,7.8011C11.4284,7.8011 11.4164,7.8147 11.4164,7.8316ZM11.9727,8.1911L11.9727,8.1905L12.1527,8.19L12.1238,7.9238L12.1342,7.9238C12.1484,7.9238 12.1598,7.9102 12.1598,7.8933C12.1598,7.8764 12.1484,7.8627 12.1342,7.8627L11.4595,7.8627C11.4453,7.8627 11.4338,7.8764 11.4338,7.8933C11.4338,7.9102 11.4453,7.9238 11.4595,7.9238L11.4693,7.9238L11.4376,8.1905L11.6176,8.1905C11.6182,8.1747 11.6242,8.166 11.6264,8.1518C11.6242,8.1655 11.6193,8.1764 11.6187,8.1911L11.4284,8.1911C11.4131,8.1911 11.4,8.2064 11.4,8.2249C11.4,8.2435 11.4125,8.2587 11.4284,8.2587L12.1642,8.2587C12.1795,8.2587 12.1925,8.2435 12.1925,8.2249C12.1925,8.2064 12.18,8.1911 12.1642,8.1911L11.9727,8.1911L11.9727,8.1911ZM11.9111,8.0078C11.9422,8.046 11.9678,8.0984 11.9705,8.1813C11.964,8.1027 11.9405,8.0476 11.9111,8.0078ZM11.4725,5.6471L11.6602,5.6471C11.6727,5.6471 11.6842,5.6367 11.6847,5.6242L11.6847,5.538L11.6847,5.538L11.6847,5.538L11.6329,5.538L11.6329,5.5756L11.5947,5.5756L11.5947,5.5369L11.5413,5.5369L11.5413,5.5756L11.5031,5.5756L11.5031,5.5369L11.4496,5.5369L11.4496,5.6242C11.4491,5.6384 11.46,5.6471 11.4725,5.6471ZM11.6564,5.7976L11.6509,5.6476L11.4829,5.6476L11.4829,5.6476L11.4769,5.7976L11.6564,5.7976ZM11.9095,5.538L11.9095,5.6253C11.9095,5.6389 11.9204,5.6476 11.9329,5.6476L12.1205,5.6476C12.1331,5.6476 12.1445,5.6373 12.1451,5.6247L12.1451,5.5385L12.1451,5.5385L12.1451,5.5385L12.0933,5.5385L12.0933,5.5762L12.0545,5.5762L12.0545,5.5375L12.0011,5.5375L12.0011,5.5762L11.9629,5.5762L11.9629,5.5375L11.9095,5.538ZM12.1167,5.7976L12.1118,5.6476L11.9433,5.6476L11.9433,5.6476L11.9378,5.7976L12.1167,5.7976ZM11.7033,5.7971L11.8904,5.7965L11.8778,5.5173L11.7153,5.5178L11.7033,5.7971ZM11.6995,5.5107L11.8909,5.5107C11.904,5.5107 11.9155,5.5004 11.9155,5.4878L11.9155,5.4016L11.9155,5.4016L11.9155,5.4016L11.862,5.4016L11.862,5.4393L11.8233,5.4393L11.8233,5.4005L11.7687,5.4005L11.7687,5.4387L11.73,5.4387L11.73,5.4L11.6755,5.4L11.6755,5.4867C11.676,5.5015 11.6869,5.5107 11.6995,5.5107ZM12.1489,5.8593C12.1636,5.8593 12.1762,5.8456 12.1762,5.8287C12.1762,5.8118 12.1642,5.7982 12.1489,5.7982L11.4436,5.7982C11.4289,5.7982 11.4164,5.8118 11.4164,5.8287C11.4164,5.8456 11.4284,5.8593 11.4436,5.8593L12.1489,5.8593ZM12.1642,6.2558C12.1795,6.2558 12.1925,6.2405 12.1925,6.222C12.1925,6.2035 12.18,6.1882 12.1642,6.1882L11.9727,6.1882L11.9727,6.1876L12.1527,6.1871L12.1238,5.9209L12.1342,5.9209C12.1484,5.9209 12.1598,5.9073 12.1598,5.8904C12.1598,5.8735 12.1484,5.8598 12.1342,5.8598L11.4595,5.8598C11.4453,5.8598 11.4338,5.8735 11.4338,5.8904C11.4338,5.9073 11.4453,5.9209 11.4595,5.9209L11.4693,5.9209L11.4376,6.1876L11.6176,6.1876C11.6182,6.1718 11.6242,6.1631 11.6264,6.1489C11.6242,6.1625 11.6193,6.1735 11.6187,6.1882L11.4284,6.1882C11.4131,6.1882 11.4,6.2035 11.4,6.222C11.4,6.2405 11.4125,6.2558 11.4284,6.2558L12.1642,6.2558L12.1642,6.2558ZM11.9111,6.0049C11.9422,6.0431 11.9678,6.0955 11.9705,6.1784C11.964,6.0998 11.9405,6.0447 11.9111,6.0049Z" + android:strokeWidth="1" + android:fillColor="#FFFF00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0558,10.1209L7.9375,9.9955L8.0711,9.8618L8.1982,9.9785L8.0558,10.1209ZM7.9675,9.996L8.0564,10.0898L8.1665,9.9791L8.0716,9.8918L7.9675,9.996ZM8.3804,9.7953L8.262,9.6698L8.3956,9.5362L8.5227,9.6529L8.3804,9.7953ZM8.292,9.6704L8.3809,9.7642L8.4911,9.6535L8.3962,9.5662L8.292,9.6704Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9282,10.0195C7.9195,10.0195 7.9113,10.0162 7.9047,10.0102L7.8355,9.942L7.8431,9.9344L7.8507,9.942L7.8431,9.9344L7.8873,9.8902L7.914,9.9169L7.9255,9.9055L7.8982,9.8782L7.9511,9.8253L7.9784,9.8525L7.9898,9.8411L7.9625,9.8138L8.0155,9.7609L8.0853,9.8302C8.0989,9.8433 8.0984,9.864 8.0847,9.8776L7.9527,10.0102C7.9467,10.0162 7.9375,10.0195 7.9282,10.0195ZM7.8665,9.942L7.92,9.9949C7.9244,9.9993 7.9331,9.9987 7.938,9.9938L8.07,9.8613C8.0744,9.8569 8.076,9.8498 8.0705,9.8444L8.0165,9.7904L7.9942,9.8127L8.0215,9.84L7.9795,9.8825L7.9522,9.8553L7.9298,9.8776L7.9571,9.9049L7.9151,9.9469L7.8884,9.9202L7.8665,9.942ZM8.2527,9.6944C8.244,9.6944 8.2358,9.6911 8.2293,9.6851L8.1649,9.6213L8.1649,9.6125L8.2124,9.5651L8.2391,9.5918L8.2505,9.5804L8.2233,9.5531L8.2762,9.5002L8.3035,9.5275L8.3149,9.516L8.2876,9.4887L8.3405,9.4358L8.4104,9.5045C8.424,9.5182 8.4235,9.5384 8.4098,9.552L8.2778,9.6845C8.2713,9.6905 8.262,9.6944 8.2527,9.6944ZM8.1911,9.6164L8.2445,9.6693C8.2489,9.6736 8.2576,9.6731 8.2625,9.6682L8.3945,9.5356C8.3989,9.5313 8.4005,9.5242 8.3951,9.5187L8.3411,9.4653L8.3187,9.4876L8.346,9.5149L8.304,9.5575L8.2767,9.5302L8.2544,9.5525L8.2816,9.5798L8.2396,9.6218L8.2129,9.5951L8.1911,9.6164ZM8.1322,9.7565C8.112,9.738 8.1393,9.7102 8.1589,9.7298L8.2064,9.7767L8.1796,9.8035L8.1322,9.7565M8.0378,9.9884C8.0193,9.9698 8.0444,9.9436 8.0629,9.9633L8.0995,9.9993L8.0744,10.0244L8.0378,9.9884M8.3635,9.6616C8.3449,9.6431 8.37,9.6169 8.3885,9.6365L8.4251,9.6725L8.4,9.6982L8.3635,9.6616M7.6745,8.2009L7.4722,8.2004L7.5038,7.9118L7.5065,7.9042L8.1764,7.9025L8.2113,8.2004L8.0073,8.2004L8.0073,8.19C8.0029,7.9827 7.8404,7.9369 7.8387,7.9364C7.8393,7.9369 7.6762,7.9685 7.6745,8.1895L7.6745,8.2009ZM8.0285,8.1791L8.1862,8.1791L8.1562,7.9244L7.8693,7.9249C7.8884,7.9336 7.914,7.9489 7.9385,7.9713C7.9773,8.0073 8.0236,8.0722 8.0285,8.1791ZM7.4962,8.1791L7.6533,8.1796C7.6571,8.0602 7.7078,7.9942 7.7504,7.9598C7.77,7.944 7.7902,7.9331 7.8071,7.926L7.5235,7.9265L7.4962,8.1791Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.2075,8.2691L7.4716,8.2691C7.4504,8.2691 7.4324,8.2489 7.4324,8.2244C7.4324,8.1998 7.4498,8.1796 7.4716,8.1796L8.2075,8.1796C8.2287,8.1796 8.2467,8.1998 8.2467,8.2244C8.2467,8.2495 8.2293,8.2691 8.2075,8.2691ZM7.4722,8.2015C7.4629,8.2015 7.4547,8.2118 7.4547,8.2244C7.4547,8.2369 7.4629,8.2473 7.4722,8.2473L8.208,8.2473C8.2173,8.2473 8.2255,8.2369 8.2255,8.2244C8.2255,8.2118 8.2173,8.2015 8.208,8.2015L7.4722,8.2015Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9516,8.2004L7.7395,8.2004L7.7395,8.1895L7.7285,8.1895C7.7291,8.0967 7.7684,8.0444 7.8005,8.0171C7.8011,8.0171 7.8295,7.9936 7.8398,7.9953C7.8458,7.9953 7.9505,8.0444 7.9516,8.1895L7.9516,8.2004ZM7.7504,8.1785L7.9293,8.1785C7.9244,8.0684 7.8556,8.0269 7.8382,8.0176C7.8218,8.0264 7.7553,8.0684 7.7504,8.1785ZM8.1927,7.8731L7.4875,7.8731C7.4667,7.8731 7.4498,7.8545 7.4498,7.8316C7.4498,7.8087 7.4667,7.7902 7.4875,7.7902L8.1927,7.7902C8.2135,7.7902 8.2304,7.8087 8.2304,7.8316C8.2309,7.8545 8.2135,7.8731 8.1927,7.8731ZM7.4875,7.812C7.4787,7.812 7.4711,7.8213 7.4711,7.8316C7.4711,7.842 7.4787,7.8513 7.4875,7.8513L8.1927,7.8513C8.2015,7.8513 8.2091,7.8425 8.2091,7.8316C8.2091,7.8207 8.2015,7.812 8.1927,7.812L7.4875,7.812ZM7.9364,7.5245L7.7449,7.5245C7.7258,7.5245 7.7095,7.5093 7.7095,7.4913L7.7095,7.3996L7.7171,7.3947L7.7204,7.3947L7.7847,7.3947L7.7847,7.4324L7.8016,7.4324L7.8016,7.3936L7.878,7.3936L7.878,7.4318L7.8955,7.4318L7.8955,7.3931L7.9718,7.3931L7.9718,7.4907C7.9713,7.5098 7.9565,7.5245 7.9364,7.5245ZM7.7313,7.4155L7.7313,7.4907C7.7313,7.4967 7.7378,7.5027 7.7455,7.5027L7.9369,7.5027C7.9429,7.5027 7.95,7.4989 7.95,7.4913L7.95,7.4149L7.9173,7.4149L7.9173,7.4536L7.8567,7.4536L7.8567,7.4155L7.824,7.4155L7.824,7.4542L7.7635,7.4542L7.7635,7.4165L7.7313,7.4155Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1769,7.9342L7.5022,7.9342C7.482,7.9342 7.4656,7.9156 7.4656,7.8927C7.4656,7.8698 7.482,7.8513 7.5022,7.8513L8.1769,7.8513C8.1971,7.8513 8.2135,7.8698 8.2135,7.8927C8.2135,7.9156 8.1971,7.9342 8.1769,7.9342ZM7.5022,7.8736C7.494,7.8736 7.4875,7.8824 7.4875,7.8933C7.4875,7.9042 7.4945,7.9129 7.5022,7.9129L8.1769,7.9129C8.1851,7.9129 8.1916,7.9042 8.1916,7.8933C8.1916,7.8824 8.1845,7.8736 8.1769,7.8736L7.5022,7.8736ZM7.944,7.8109L7.7345,7.8104L7.7476,7.5098L7.9309,7.5104L7.944,7.8109ZM7.7575,7.7885L7.9216,7.7891L7.9107,7.5316L7.7689,7.5311L7.7575,7.7885ZM7.5082,7.8115L7.5142,7.6396L7.7035,7.6396L7.71,7.8115L7.5082,7.8115ZM7.5349,7.6609L7.5305,7.7896L7.6871,7.7896L7.6822,7.6609L7.5349,7.6609ZM7.9691,7.8115L7.9751,7.6396L8.1644,7.6396L8.1709,7.8115L7.9691,7.8115ZM7.9958,7.6609L7.9915,7.7896L8.148,7.7896L8.1431,7.6609L7.9958,7.6609Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.7035,7.6609L7.5158,7.6609C7.4967,7.6609 7.4809,7.6456 7.4809,7.6276L7.4809,7.536L7.4885,7.5311L7.4918,7.5311L7.5545,7.5311L7.5545,7.5687L7.5709,7.5687L7.5709,7.53L7.6462,7.5305L7.6462,7.5687L7.6625,7.5687L7.6625,7.53L7.7378,7.53L7.7378,7.6276C7.7373,7.6462 7.7225,7.6609 7.7035,7.6609ZM7.5022,7.5524L7.5022,7.6276C7.5022,7.6336 7.5087,7.6396 7.5158,7.6396L7.7035,7.6396C7.7095,7.6396 7.716,7.6358 7.716,7.6282L7.716,7.5518L7.6844,7.5518L7.6844,7.5905L7.6244,7.5905L7.6244,7.5518L7.5927,7.5518L7.5927,7.5905L7.5327,7.5905L7.5327,7.5529L7.5022,7.5524ZM8.1638,7.6609L7.9762,7.6609C7.9571,7.6609 7.9413,7.6456 7.9413,7.6276L7.9413,7.536L7.9489,7.5311L7.9522,7.5311L8.0149,7.5311L8.0149,7.5687L8.0313,7.5687L8.0313,7.53L8.1065,7.5305L8.1065,7.5687L8.1229,7.5687L8.1229,7.53L8.1982,7.53L8.1982,7.6276C8.1976,7.6467 8.1835,7.6609 8.1638,7.6609ZM7.9631,7.5524L7.9631,7.6276C7.9631,7.6336 7.9696,7.6396 7.9767,7.6396L8.1644,7.6396C8.1704,7.6396 8.1769,7.6358 8.1769,7.6282L8.1769,7.5518L8.1453,7.5518L8.1453,7.5905L8.0853,7.5905L8.0853,7.5518L8.0536,7.5518L8.0536,7.5905L7.9936,7.5905L7.9936,7.5529L7.9631,7.5524ZM7.8213,7.6091C7.8202,7.5818 7.8595,7.5818 7.8589,7.6091L7.8589,7.6756L7.8213,7.6756L7.8213,7.6091M7.59,7.7056C7.59,7.6795 7.6265,7.6789 7.626,7.7056L7.626,7.7569L7.59,7.7569L7.59,7.7056M8.052,7.7056C8.052,7.6795 8.0885,7.6789 8.088,7.7056L8.088,7.7569L8.052,7.7569L8.052,7.7056M8.0591,10.1891C8.0482,10.1891 8.0373,10.1847 8.0291,10.1765C8.0127,10.1607 8.0116,10.1356 8.0264,10.1209L8.5233,9.6224C8.5298,9.6158 8.5391,9.612 8.5489,9.612C8.5489,9.612 8.5489,9.612 8.5489,9.612C8.5598,9.612 8.5713,9.6169 8.5795,9.6245C8.5958,9.6404 8.5969,9.6655 8.5822,9.6802L8.0853,10.1787C8.0776,10.1853 8.0684,10.1891 8.0591,10.1891ZM8.0416,10.1356C8.0356,10.1416 8.0367,10.1536 8.0444,10.1607C8.052,10.1684 8.0635,10.1695 8.07,10.1629L8.5669,9.6644C8.5729,9.6584 8.5718,9.6464 8.5642,9.6393C8.5598,9.6349 8.5544,9.6327 8.5495,9.6327C8.5467,9.6316 8.5424,9.6333 8.5391,9.6365L8.0416,10.1356Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1142,10.2213C8.1033,10.2213 8.0924,10.2169 8.0836,10.2082C8.0673,10.1924 8.0656,10.1673 8.0804,10.1531L8.5555,9.6764C8.5696,9.6622 8.5947,9.6633 8.6105,9.6796C8.6187,9.6878 8.6236,9.6993 8.6236,9.7102C8.6236,9.7195 8.6204,9.7282 8.6138,9.7347L8.1387,10.2115C8.1322,10.218 8.1235,10.2213 8.1142,10.2213ZM8.58,9.6884C8.5762,9.6884 8.5729,9.6895 8.5707,9.6916L8.0956,10.1684C8.0902,10.1744 8.0913,10.1853 8.0989,10.1929C8.1065,10.2005 8.118,10.2016 8.1235,10.1962L8.5985,9.7195C8.6013,9.7167 8.6018,9.7129 8.6018,9.7102C8.6018,9.7047 8.5991,9.6993 8.5947,9.6949C8.5909,9.6905 8.5855,9.6884 8.58,9.6884ZM7.992,9.7615C7.9833,9.7615 7.9751,9.7582 7.9691,9.7522L7.8998,9.684L7.9075,9.6764L7.9151,9.684L7.9075,9.6764L7.9527,9.6311L7.9795,9.6578L7.9915,9.6458L7.9642,9.6185L8.0182,9.5645L8.0455,9.5913L8.0575,9.5793L8.0302,9.552L8.0842,9.498L8.154,9.5673C8.1605,9.5733 8.1638,9.5815 8.1638,9.5902C8.1638,9.5995 8.16,9.6082 8.1535,9.6153L8.0187,9.7505C8.0105,9.7582 8.0013,9.7615 7.992,9.7615ZM7.9304,9.684L7.9838,9.7369C7.9882,9.7413 7.9969,9.7407 8.0024,9.7353L8.1371,9.6C8.1398,9.5973 8.1415,9.594 8.1415,9.5902C8.1415,9.5902 8.1404,9.5847 8.1382,9.5825L8.0842,9.5285L8.0613,9.552L8.0885,9.5793L8.046,9.6224L8.0187,9.5951L7.9953,9.6185L8.0225,9.6458L7.98,9.6889L7.9533,9.6622L7.9304,9.684Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.214,9.9595L8.0095,9.738L8.1393,9.6093L8.3624,9.8116L8.214,9.9595ZM8.0395,9.7391L8.2145,9.9284L8.3307,9.8127L8.1398,9.6393L8.0395,9.7391ZM8.4878,10.2393L8.4802,10.2316C8.4169,10.1684 8.406,10.1067 8.4076,10.0658C8.4087,10.0462 8.4136,10.0211 8.4191,10.0162L8.4218,10.0145C8.4262,10.0129 8.532,9.9715 8.6367,10.074L8.6444,10.0816L8.4878,10.2393ZM8.4349,10.0331C8.4295,10.0511 8.4115,10.1264 8.4878,10.2082L8.6138,10.0816C8.5325,10.008 8.454,10.0265 8.4349,10.0331Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.3302,10.4793C8.3187,10.4793 8.3062,10.4744 8.2969,10.4651C8.2795,10.4476 8.2773,10.4209 8.2925,10.4062L8.8107,9.8864C8.8184,9.8787 8.8293,9.8749 8.8407,9.876C8.8516,9.8771 8.862,9.882 8.8702,9.8902C8.8876,9.9076 8.8898,9.9338 8.8745,9.9491L8.3564,10.4689C8.3493,10.476 8.34,10.4793 8.3302,10.4793ZM8.3078,10.4209C8.3013,10.4275 8.3029,10.4405 8.3122,10.4493C8.3209,10.458 8.334,10.4596 8.3405,10.4531L8.8587,9.9333C8.8653,9.9267 8.8636,9.9136 8.8544,9.9049C8.85,9.9005 8.844,9.8973 8.838,9.8967C8.8331,9.8962 8.8287,9.8978 8.8255,9.9005L8.3078,10.4209Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.3073,10.4204L8.124,10.1945L8.1207,10.1875L8.1262,10.182L8.5915,9.7129L8.8287,9.8984L8.6858,10.0418L8.6782,10.0347C8.5271,9.8918 8.3804,9.9742 8.3787,9.9753L8.3787,9.9753C8.3793,9.9753 8.2871,10.1127 8.4436,10.2698L8.4513,10.2775L8.3073,10.4204ZM8.148,10.1907L8.3089,10.3882L8.4196,10.2775C8.3367,10.1902 8.3258,10.1078 8.3313,10.0533C8.334,10.0287 8.34,10.0069 8.3465,9.99L8.148,10.1907ZM8.4835,9.9295C8.5364,9.9295 8.61,9.9453 8.6842,10.0124L8.7949,9.9011L8.592,9.7429L8.3902,9.9464C8.4098,9.9393 8.4382,9.9316 8.4709,9.93C8.4753,9.9295 8.4796,9.9295 8.4835,9.9295ZM7.8213,5.6062C7.8202,5.5789 7.8595,5.5789 7.8589,5.6062L7.8589,5.6727L7.8213,5.6727L7.8213,5.6062M7.59,5.7027C7.59,5.6765 7.6265,5.676 7.626,5.7027L7.626,5.754L7.59,5.754L7.59,5.7027M8.052,5.7027C8.052,5.6765 8.0885,5.676 8.088,5.7027L8.088,5.754L8.052,5.754L8.052,5.7027M8.1638,5.658L7.9762,5.658C7.9571,5.658 7.9413,5.6427 7.9413,5.6247L7.9413,5.5331L7.9489,5.5282L7.9522,5.5282L8.0149,5.5282L8.0149,5.5658L8.0313,5.5658L8.0313,5.5271L8.1065,5.5276L8.1065,5.5658L8.1229,5.5658L8.1229,5.5271L8.1982,5.5271L8.1982,5.6247C8.1976,5.6433 8.1829,5.658 8.1638,5.658ZM7.9631,5.5495L7.9631,5.6247C7.9631,5.6307 7.9696,5.6367 7.9767,5.6367L8.1644,5.6367C8.1704,5.6367 8.1769,5.6329 8.1769,5.6253L8.1769,5.5489L8.1453,5.5489L8.1453,5.5876L8.0853,5.5876L8.0853,5.5489L8.0536,5.5489L8.0536,5.5876L7.9936,5.5876L7.9936,5.55L7.9631,5.5495ZM7.7035,5.658L7.5158,5.658C7.4967,5.658 7.4809,5.6427 7.4809,5.6247L7.4809,5.5331L7.4885,5.5282L7.4918,5.5282L7.5545,5.5282L7.5545,5.5658L7.5709,5.5658L7.5709,5.5271L7.6462,5.5276L7.6462,5.5658L7.6625,5.5658L7.6625,5.5271L7.7378,5.5271L7.7378,5.6247C7.7373,5.6433 7.7225,5.658 7.7035,5.658ZM7.5022,5.5495L7.5022,5.6247C7.5022,5.6307 7.5087,5.6367 7.5158,5.6367L7.7035,5.6367C7.7095,5.6367 7.716,5.6329 7.716,5.6253L7.716,5.5489L7.6844,5.5489L7.6844,5.5876L7.6244,5.5876L7.6244,5.5489L7.5927,5.5489L7.5927,5.5876L7.5327,5.5876L7.5327,5.55L7.5022,5.5495Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9691,5.8085L7.9751,5.6367L8.1644,5.6367L8.1709,5.8085L7.9691,5.8085ZM7.9958,5.658L7.9915,5.7867L8.148,5.7867L8.1431,5.658L7.9958,5.658ZM7.5082,5.8085L7.5142,5.6367L7.7035,5.6367L7.71,5.8085L7.5082,5.8085ZM7.5349,5.658L7.5305,5.7867L7.6871,5.7867L7.6822,5.658L7.5349,5.658ZM7.944,5.808L7.7345,5.8075L7.7476,5.5069L7.9309,5.5075L7.944,5.808ZM7.7575,5.7856L7.9216,5.7862L7.9107,5.5287L7.7689,5.5282L7.7575,5.7856Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.9364,5.5211L7.7449,5.5211C7.7258,5.5211 7.7095,5.5058 7.7095,5.4878L7.7095,5.3962L7.7171,5.3913L7.7204,5.3913L7.7847,5.3913L7.7847,5.4289L7.8016,5.4289L7.8016,5.3902L7.878,5.3902L7.878,5.4284L7.8955,5.4284L7.8955,5.3896L7.9718,5.3896L7.9718,5.4873C7.9713,5.5069 7.9565,5.5211 7.9364,5.5211ZM7.7313,5.4125L7.7313,5.4878C7.7313,5.4938 7.7378,5.4998 7.7455,5.4998L7.9369,5.4998C7.9429,5.4998 7.95,5.496 7.95,5.4884L7.95,5.412L7.9173,5.412L7.9173,5.4507L7.8567,5.4507L7.8567,5.4125L7.824,5.4125L7.824,5.4513L7.7635,5.4513L7.7635,5.4136L7.7313,5.4125ZM8.1769,5.9313L7.5022,5.9313C7.482,5.9313 7.4656,5.9127 7.4656,5.8898C7.4656,5.8669 7.482,5.8484 7.5022,5.8484L8.1769,5.8484C8.1971,5.8484 8.2135,5.8669 8.2135,5.8898C8.2135,5.9127 8.1971,5.9313 8.1769,5.9313ZM7.5022,5.8707C7.494,5.8707 7.4875,5.8795 7.4875,5.8904C7.4875,5.9013 7.4945,5.91 7.5022,5.91L8.1769,5.91C8.1851,5.91 8.1916,5.9013 8.1916,5.8904C8.1916,5.8795 8.1845,5.8707 8.1769,5.8707L7.5022,5.8707Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1927,5.8702L7.4875,5.8702C7.4667,5.8702 7.4498,5.8516 7.4498,5.8287C7.4498,5.8058 7.4667,5.7873 7.4875,5.7873L8.1927,5.7873C8.2135,5.7873 8.2304,5.8058 8.2304,5.8287C8.2309,5.8516 8.2135,5.8702 8.1927,5.8702ZM7.4875,5.8091C7.4787,5.8091 7.4711,5.8184 7.4711,5.8287C7.4711,5.8391 7.4787,5.8484 7.4875,5.8484L8.1927,5.8484C8.2015,5.8484 8.2091,5.8396 8.2091,5.8287C8.2091,5.8178 8.2015,5.8091 8.1927,5.8091L7.4875,5.8091ZM7.9516,6.1975L7.7395,6.1975L7.7395,6.1865L7.7285,6.1865C7.7291,6.0938 7.7684,6.0415 7.8005,6.0142C7.8011,6.0142 7.8295,5.9907 7.8398,5.9924C7.8458,5.9918 7.9505,6.0415 7.9516,6.1865L7.9516,6.1975ZM7.7504,6.1756L7.9293,6.1756C7.9244,6.0655 7.8556,6.024 7.8382,6.0147C7.8218,6.0235 7.7553,6.0655 7.7504,6.1756Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.2075,6.2662L7.4716,6.2662C7.4504,6.2662 7.4324,6.246 7.4324,6.2215C7.4324,6.1969 7.4498,6.1767 7.4716,6.1767L8.2075,6.1767C8.2287,6.1767 8.2467,6.1969 8.2467,6.2215C8.2467,6.2465 8.2293,6.2662 8.2075,6.2662ZM7.4722,6.1985C7.4629,6.1985 7.4547,6.2089 7.4547,6.2215C7.4547,6.234 7.4629,6.2444 7.4722,6.2444L8.208,6.2444C8.2173,6.2444 8.2255,6.234 8.2255,6.2215C8.2255,6.2089 8.2173,6.1985 8.208,6.1985L7.4722,6.1985Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.6745,6.198L7.4722,6.1975L7.5038,5.9089L7.5065,5.9013L8.1764,5.8996L8.2113,6.198L8.0073,6.198L8.0073,6.1876C8.0029,5.9804 7.8404,5.9345 7.8387,5.934C7.8393,5.9345 7.6762,5.9662 7.6745,6.1871L7.6745,6.198ZM8.0285,6.1762L8.1862,6.1762L8.1562,5.9215L7.8693,5.922C7.8884,5.9307 7.914,5.946 7.9385,5.9684C7.9773,6.0044 8.0236,6.0693 8.0285,6.1762ZM7.4962,6.1762L7.6533,6.1767C7.6571,6.0573 7.7078,5.9913 7.7504,5.9569C7.77,5.9411 7.7902,5.9302 7.8071,5.9231L7.5235,5.9236L7.4962,6.1762Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8144,11.1207C9.156,11.1207 8.5331,10.8627 8.0607,10.3947C7.5889,9.9273 7.3293,9.3098 7.3293,8.6569L7.3511,8.6547L7.3511,8.6569C7.3511,9.3038 7.6085,9.9158 8.076,10.3789C8.544,10.8431 9.1615,11.0984 9.8138,11.0984C10.4695,11.0984 11.0869,10.8442 11.5522,10.3827C12.0153,9.9235 12.2716,9.3147 12.2738,8.6678L12.2738,8.6591L12.2738,5.3482L7.3538,5.3476L7.3505,8.6553L7.3287,8.6553L7.332,5.3258L12.2956,5.3269L12.2956,8.6602C12.2956,9.3164 12.0371,9.9338 11.5675,10.3996C11.0989,10.8644 10.476,11.1207 9.8144,11.1207ZM9.8127,10.1449C9.4265,10.1449 9.0567,9.9889 8.7704,9.7047C8.4916,9.4282 8.3318,9.048 8.3318,8.6613L8.3313,6.3142L8.3422,6.3142L11.2958,6.3196L11.3024,6.3262L11.3024,6.3305L11.3024,8.4447L11.3007,8.6684C11.3007,8.73 11.2969,8.7971 11.2904,8.8527C11.2516,9.1767 11.1038,9.4735 10.8644,9.7113C10.5829,9.9911 10.2093,10.1449 9.8127,10.1449ZM8.3531,6.3365L8.3536,8.6618C8.3536,9.0425 8.5113,9.4173 8.7856,9.6895C9.0676,9.9693 9.432,10.1231 9.8122,10.1231C10.2027,10.1231 10.5709,9.9715 10.8485,9.6965C11.0847,9.462 11.2304,9.1696 11.2685,8.8505C11.2751,8.796 11.2789,8.7295 11.2789,8.6689L11.2805,8.4453L11.2805,6.342L8.3531,6.3365Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8171,11.2304C9.1364,11.2304 8.4884,10.9587 7.992,10.4662C7.5038,9.9818 7.2338,9.3431 7.23,8.6656L7.23,8.6656L7.2295,5.2085L12.4129,5.2145L12.4129,8.6531C12.4129,9.3398 12.1424,9.9867 11.6515,10.4744C11.16,10.9615 10.5087,11.2304 9.8171,11.2304ZM7.2584,8.6362L7.2584,8.6509C7.2584,9.3262 7.5262,9.9633 8.0122,10.4455C8.5031,10.9331 9.144,11.2015 9.8171,11.2015C10.5011,11.2015 11.1453,10.9358 11.6307,10.4536C12.114,9.9742 12.3807,9.3387 12.384,8.6635L12.384,8.6531L12.384,5.2435L7.2584,5.2375L7.2584,8.6362Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9535,5.8085L9.9595,5.6367L10.1487,5.6367L10.1553,5.8085L9.9535,5.8085ZM9.9802,5.658L9.9758,5.7867L10.1324,5.7867L10.1275,5.658L9.9802,5.658Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M10.1482,5.658L9.9605,5.658C9.9415,5.658 9.9256,5.6427 9.9256,5.6247L9.9256,5.5331L9.9333,5.5282L9.9365,5.5282L9.9993,5.5282L9.9993,5.5658L10.0156,5.5658L10.0156,5.5271L10.0909,5.5276L10.0909,5.5658L10.1073,5.5658L10.1073,5.5271L10.1825,5.5271L10.1825,5.6247C10.1825,5.6433 10.1673,5.658 10.1482,5.658ZM9.9475,5.5495L9.9475,5.6247C9.9475,5.6307 9.954,5.6367 9.9611,5.6367L10.1487,5.6367C10.1547,5.6367 10.1613,5.6329 10.1613,5.6253L10.1613,5.5489L10.1296,5.5489L10.1296,5.5876L10.0696,5.5876L10.0696,5.5489L10.038,5.5489L10.038,5.5876L9.978,5.5876L9.978,5.55L9.9475,5.5495ZM9.6878,5.658L9.5002,5.658C9.4811,5.658 9.4653,5.6427 9.4653,5.6247L9.4653,5.5331L9.4729,5.5282L9.4762,5.5282L9.5389,5.5282L9.5389,5.5658L9.5553,5.5658L9.5553,5.5271L9.6305,5.5276L9.6305,5.5658L9.6469,5.5658L9.6469,5.5271L9.7222,5.5271L9.7222,5.6247C9.7216,5.6433 9.7069,5.658 9.6878,5.658ZM9.4865,5.5495L9.4865,5.6247C9.4865,5.6307 9.4931,5.6367 9.5002,5.6367L9.6878,5.6367C9.6938,5.6367 9.7004,5.6329 9.7004,5.6253L9.7004,5.5489L9.6687,5.5489L9.6687,5.5876L9.6087,5.5876L9.6087,5.5489L9.5771,5.5489L9.5771,5.5876L9.5171,5.5876L9.5171,5.55L9.4865,5.5495ZM9.8056,5.6062C9.8045,5.5789 9.8438,5.5789 9.8433,5.6062L9.8433,5.6727L9.8056,5.6727L9.8056,5.6062M9.5744,5.7027C9.5744,5.6765 9.6109,5.676 9.6104,5.7027L9.6104,5.754L9.5744,5.754L9.5744,5.7027M10.0364,5.7027C10.0364,5.6765 10.0729,5.676 10.0724,5.7027L10.0724,5.754L10.0364,5.754L10.0364,5.7027" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.4925,5.8085L9.4985,5.6367L9.6878,5.6367L9.6944,5.8085L9.4925,5.8085ZM9.5193,5.658L9.5149,5.7867L9.6715,5.7867L9.6665,5.658L9.5193,5.658ZM9.9289,5.808L9.7195,5.8075L9.7325,5.5069L9.9158,5.5075L9.9289,5.808ZM9.7418,5.7856L9.906,5.7862L9.8951,5.5287L9.7533,5.5282L9.7418,5.7856Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.9213,5.5211L9.7298,5.5211C9.7107,5.5211 9.6944,5.5058 9.6944,5.4878L9.6944,5.3962L9.702,5.3913L9.7053,5.3913L9.7696,5.3913L9.7696,5.4289L9.7865,5.4289L9.7865,5.3902L9.8629,5.3902L9.8629,5.4284L9.8804,5.4284L9.8804,5.3896L9.9567,5.3896L9.9567,5.4873C9.9556,5.5069 9.9409,5.5211 9.9213,5.5211ZM9.7156,5.4125L9.7156,5.4878C9.7156,5.4938 9.7222,5.4998 9.7298,5.4998L9.9213,5.4998C9.9273,5.4998 9.9344,5.496 9.9344,5.4884L9.9344,5.412L9.9016,5.412L9.9016,5.4507L9.8411,5.4507L9.8411,5.4125L9.8084,5.4125L9.8084,5.4513L9.7473,5.4513L9.7473,5.4136L9.7156,5.4125ZM10.1613,5.9313L9.4865,5.9313C9.4664,5.9313 9.45,5.9127 9.45,5.8898C9.45,5.8669 9.4664,5.8484 9.4865,5.8484L10.1613,5.8484C10.1815,5.8484 10.1978,5.8669 10.1978,5.8898C10.1978,5.9127 10.1815,5.9313 10.1613,5.9313ZM9.4865,5.8707C9.4784,5.8707 9.4718,5.8795 9.4718,5.8904C9.4718,5.9013 9.4789,5.91 9.4865,5.91L10.1613,5.91C10.1695,5.91 10.176,5.9013 10.176,5.8904C10.176,5.8795 10.1689,5.8707 10.1613,5.8707L9.4865,5.8707Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M10.1771,5.8702L9.4718,5.8702C9.4511,5.8702 9.4342,5.8516 9.4342,5.8287C9.4342,5.8058 9.4511,5.7873 9.4718,5.7873L10.1771,5.7873C10.1978,5.7873 10.2147,5.8058 10.2147,5.8287C10.2153,5.8516 10.1984,5.8702 10.1771,5.8702ZM9.4718,5.8091C9.4631,5.8091 9.4555,5.8184 9.4555,5.8287C9.4555,5.8391 9.4631,5.8484 9.4718,5.8484L10.1771,5.8484C10.1858,5.8484 10.1935,5.8396 10.1935,5.8287C10.1935,5.8178 10.1858,5.8091 10.1771,5.8091L9.4718,5.8091ZM9.936,6.1975L9.7238,6.1975L9.7238,6.1865L9.7129,6.1865C9.7135,6.0938 9.7527,6.0415 9.7849,6.0142C9.7855,6.0142 9.8138,5.9907 9.8242,5.9924L9.8242,5.9924C9.8318,5.9924 9.9349,6.042 9.9355,6.1865L9.936,6.1975ZM9.7347,6.1756L9.9136,6.1756C9.9087,6.0655 9.84,6.024 9.8225,6.0147C9.8062,6.0235 9.7396,6.0655 9.7347,6.1756Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M10.1918,6.2662L9.456,6.2662C9.4347,6.2662 9.4167,6.246 9.4167,6.2215C9.4167,6.1969 9.4342,6.1767 9.456,6.1767L10.1918,6.1767C10.2131,6.1767 10.2311,6.1969 10.2311,6.2215C10.2311,6.2465 10.2136,6.2662 10.1918,6.2662ZM9.4565,6.1985C9.4473,6.1985 9.4391,6.2089 9.4391,6.2215C9.4391,6.234 9.4473,6.2444 9.4565,6.2444L10.1924,6.2444C10.2016,6.2444 10.2098,6.234 10.2098,6.2215C10.2098,6.2089 10.2016,6.1985 10.1924,6.1985L9.4565,6.1985Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.6589,6.198L9.4565,6.1975L9.4876,5.9013L10.1602,5.8996L10.1951,6.198L9.9922,6.198L9.9922,6.1876C9.9878,5.9804 9.8253,5.9345 9.8236,5.934C9.8242,5.9345 9.6611,5.9662 9.6595,6.1871L9.6589,6.198ZM10.0129,6.1762L10.1705,6.1762L10.1405,5.9215L9.8536,5.922C9.8727,5.9307 9.8984,5.946 9.9229,5.9684C9.9616,6.0044 10.008,6.0693 10.0129,6.1762ZM9.4805,6.1762L9.6376,6.1767C9.6415,6.0573 9.6922,5.9913 9.7347,5.9569C9.7544,5.9411 9.7745,5.9302 9.7915,5.9231L9.5078,5.9236L9.4805,6.1762ZM11.2729,9.6616C11.2915,9.6431 11.2664,9.6169 11.2478,9.6365L11.2113,9.6725L11.2364,9.6982L11.2729,9.6616M11.5042,9.7565C11.5244,9.738 11.4971,9.7102 11.4775,9.7298L11.43,9.7767L11.4567,9.8035L11.5042,9.7565M11.5985,9.9884C11.6171,9.9698 11.592,9.9436 11.5735,9.9633L11.5369,9.9993L11.562,10.0244L11.5985,9.9884M11.3836,9.6944C11.3744,9.6944 11.3651,9.6911 11.3585,9.684L11.2265,9.5515C11.2129,9.5378 11.2129,9.5171 11.226,9.504L11.2958,9.4353L11.3487,9.4882L11.3215,9.5155L11.3329,9.5269L11.3602,9.4996L11.4131,9.5525L11.3858,9.5798L11.3973,9.5913L11.424,9.5645L11.4725,9.6131L11.4704,9.6218L11.4071,9.6845C11.4005,9.6911 11.3918,9.6944 11.3836,9.6944ZM11.2953,9.4653L11.2413,9.5187C11.2358,9.5242 11.2375,9.5313 11.2418,9.5356L11.3738,9.6682C11.3787,9.6731 11.3875,9.6736 11.3918,9.6693L11.4453,9.6164L11.424,9.5951L11.3973,9.6218L11.3553,9.5798L11.3825,9.5525L11.3602,9.5302L11.3329,9.5575L11.2909,9.5149L11.3182,9.4876L11.2953,9.4653ZM11.7082,10.0195C11.6989,10.0195 11.6896,10.0162 11.6825,10.0091L11.5505,9.8765C11.5369,9.8629 11.5369,9.8422 11.55,9.8291L11.6198,9.7604L11.6727,9.8133L11.6455,9.8405L11.6569,9.852L11.6842,9.8247L11.7371,9.8776L11.7098,9.9049L11.7213,9.9164L11.748,9.8896L11.7955,9.9371L11.7955,9.9464L11.7311,10.0102C11.7251,10.0167 11.7164,10.0195 11.7082,10.0195ZM11.6198,9.7909L11.5658,9.8444C11.5604,9.8498 11.562,9.8569 11.5664,9.8613L11.6984,9.9938C11.7033,9.9987 11.712,9.9993 11.7164,9.9949L11.7698,9.942L11.7485,9.9207L11.7218,9.9475L11.6798,9.9055L11.7071,9.8782L11.6847,9.8558L11.6575,9.8831L11.6155,9.8405L11.6427,9.8133L11.6198,9.7909Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.256,9.7953L11.1142,9.6529L11.2413,9.5362L11.3744,9.6698L11.256,9.7953ZM11.1453,9.6535L11.2555,9.7642L11.3444,9.6704L11.2407,9.5662L11.1453,9.6535ZM11.5805,10.1209L11.4387,9.9785L11.5582,9.8689L11.5653,9.8765L11.5729,9.8689L11.5729,9.8689L11.5805,9.8765L11.5805,9.8765L11.6984,9.9949L11.5805,10.1209ZM11.4698,9.9785L11.58,10.0893L11.6689,9.9955L11.5653,9.8913L11.4698,9.9785ZM11.4224,9.9595L11.274,9.8122L11.4971,9.6098L11.6269,9.7385L11.4224,9.9595ZM11.3056,9.8127L11.4218,9.9284L11.5969,9.7391L11.4965,9.6393L11.3056,9.8127Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.6444,9.7615C11.6351,9.7615 11.6258,9.7576 11.6187,9.7505L11.484,9.6153C11.4775,9.6087 11.4736,9.5995 11.4736,9.5902C11.4736,9.5815 11.4775,9.5733 11.4835,9.5673L11.5533,9.4985L11.6073,9.5525L11.58,9.5798L11.592,9.5918L11.6193,9.5645L11.6733,9.6185L11.646,9.6458L11.658,9.6578L11.6847,9.6311L11.7322,9.6791L11.7355,9.6862L11.6684,9.7522C11.6613,9.7587 11.6525,9.7615 11.6444,9.7615ZM11.5522,9.5291L11.4982,9.5825C11.496,9.5847 11.4949,9.5875 11.4949,9.5875C11.4949,9.594 11.4965,9.5973 11.4993,9.6L11.634,9.7353C11.6389,9.7402 11.6482,9.7407 11.6525,9.7369L11.706,9.684L11.6836,9.6616L11.6569,9.6884L11.6144,9.6453L11.6416,9.618L11.6182,9.5951L11.5909,9.6224L11.5484,9.5793L11.5756,9.552L11.5522,9.5291ZM11.5222,10.2213C11.5129,10.2213 11.5042,10.218 11.4976,10.2115L11.0225,9.7347C11.016,9.7282 11.0127,9.72 11.0127,9.7102C11.0127,9.6993 11.0176,9.6878 11.0258,9.6796C11.0335,9.672 11.0433,9.6676 11.0531,9.6665C11.064,9.666 11.0738,9.6693 11.0809,9.6764L11.556,10.1531C11.5702,10.1673 11.5685,10.1918 11.5527,10.2082C11.544,10.2169 11.5325,10.2213 11.5222,10.2213ZM11.0564,9.6884C11.0558,9.6884 11.0553,9.6884 11.0547,9.6884C11.0498,9.6889 11.0449,9.6911 11.0411,9.6949C11.0367,9.6993 11.034,9.7047 11.034,9.7102C11.034,9.7129 11.0345,9.7167 11.0373,9.7195L11.5124,10.1962C11.5178,10.2016 11.5293,10.2005 11.5369,10.1929C11.5445,10.1853 11.5462,10.1744 11.5402,10.1684L11.0651,9.6916C11.0624,9.6889 11.0585,9.6884 11.0564,9.6884Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.5773,10.1891C11.5675,10.1891 11.5582,10.1858 11.5516,10.1787L11.0547,9.6802C11.04,9.6655 11.0411,9.6404 11.0575,9.6245C11.0656,9.6164 11.0765,9.612 11.0875,9.612L11.0875,9.612C11.0973,9.612 11.1065,9.6158 11.1131,9.6224L11.61,10.1209C11.6247,10.1356 11.6236,10.1607 11.6073,10.1765C11.5991,10.1847 11.5882,10.1891 11.5773,10.1891ZM11.0875,9.6333C11.082,9.6333 11.0765,9.6355 11.0727,9.6398C11.0651,9.6475 11.064,9.6589 11.07,9.6649L11.5669,10.1635C11.5729,10.1695 11.5849,10.1684 11.5925,10.1613C11.6002,10.1536 11.6013,10.1422 11.5953,10.1362L11.0984,9.6376C11.0945,9.6338 11.0907,9.6333 11.0875,9.6333L11.0875,9.6333ZM11.1485,10.2393L10.9915,10.0816L10.9991,10.074C11.1038,9.9715 11.2096,10.0129 11.214,10.0145L11.2167,10.0162C11.2222,10.0211 11.2276,10.0462 11.2282,10.0658C11.2298,10.1067 11.2189,10.1684 11.1556,10.2316L11.1485,10.2393ZM11.0225,10.0816L11.1485,10.2082C11.2249,10.1264 11.2075,10.0505 11.2015,10.0331C11.1824,10.0265 11.1038,10.008 11.0225,10.0816Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.3062,10.4793C11.2964,10.4793 11.2871,10.476 11.28,10.4689L10.7618,9.9491C10.7465,9.9338 10.7487,9.9076 10.7662,9.8902C10.7744,9.882 10.7847,9.8771 10.7956,9.876C10.8071,9.8749 10.818,9.8787 10.8256,9.8864L11.3438,10.4062C11.3591,10.4215 11.3569,10.4476 11.3395,10.4651C11.3296,10.4744 11.3176,10.4793 11.3062,10.4793ZM10.7995,9.8973C10.7989,9.8973 10.7984,9.8973 10.7978,9.8973C10.7918,9.8978 10.7864,9.9005 10.7815,9.9055C10.7727,9.9142 10.7705,9.9273 10.7771,9.9338L11.2953,10.4536C11.3018,10.4602 11.3149,10.4585 11.3236,10.4498C11.3324,10.4411 11.3345,10.428 11.328,10.4215L10.8098,9.9016C10.8076,9.8989 10.8038,9.8973 10.7995,9.8973Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.3291,10.4204L11.1862,10.2775L11.1938,10.2698C11.3498,10.1127 11.2582,9.9753 11.2571,9.9736L11.2571,9.9736C11.2565,9.9736 11.1098,9.8918 10.9593,10.0347L10.9516,10.0418L10.8087,9.8984L11.046,9.7129L11.5178,10.1885L11.5118,10.1962L11.3291,10.4204ZM11.2167,10.2775L11.3275,10.3882L11.4884,10.1907L11.2893,9.99C11.2958,10.0069 11.3024,10.0287 11.3051,10.0533C11.31,10.1078 11.2991,10.1902 11.2167,10.2775ZM10.8409,9.9005L10.9516,10.0118C11.0318,9.9398 11.1115,9.9273 11.1644,9.9295C11.1971,9.9311 11.2255,9.9382 11.2451,9.9458L11.0433,9.7424L10.8409,9.9005ZM11.5844,7.7056C11.5844,7.6795 11.5478,7.6789 11.5484,7.7056L11.5484,7.7569L11.5844,7.7569L11.5844,7.7056M12.0464,7.7056C12.0464,7.6795 12.0098,7.6789 12.0104,7.7056L12.0104,7.7569L12.0464,7.7569L12.0464,7.7056M11.8151,7.6091C11.8162,7.5818 11.7769,7.5818 11.7775,7.6091L11.7775,7.6756L11.8151,7.6756L11.8151,7.6091M11.6596,7.6609L11.472,7.6609C11.4524,7.6609 11.4376,7.6467 11.4376,7.6276L11.4376,7.53L11.5129,7.53L11.5129,7.5687L11.5293,7.5687L11.5293,7.5305L11.6045,7.53L11.6045,7.5687L11.6209,7.5687L11.6209,7.5311L11.6869,7.5311L11.6945,7.536L11.6945,7.6276C11.6951,7.6456 11.6787,7.6609 11.6596,7.6609ZM11.46,7.5513L11.46,7.6276C11.46,7.6358 11.4665,7.6391 11.4725,7.6391L11.6602,7.6391C11.6673,7.6391 11.6738,7.6336 11.6738,7.6271L11.6738,7.5518L11.6433,7.5518L11.6433,7.5895L11.5833,7.5895L11.5833,7.5507L11.5516,7.5507L11.5516,7.5895L11.4916,7.5895L11.4916,7.5507L11.46,7.5513ZM12.1205,7.6609L11.9329,7.6609C11.9138,7.6609 11.8985,7.6462 11.8985,7.6276L11.8985,7.53L11.9738,7.53L11.9738,7.5687L11.9902,7.5687L11.9902,7.5305L12.0655,7.53L12.0655,7.5687L12.0818,7.5687L12.0818,7.5311L12.1478,7.5311L12.1555,7.536L12.1555,7.6276C12.1555,7.6456 12.1396,7.6609 12.1205,7.6609ZM11.9204,7.5513L11.9204,7.6276C11.9204,7.6358 11.9269,7.6391 11.9329,7.6391L12.1205,7.6391C12.1276,7.6391 12.1342,7.6336 12.1342,7.6271L12.1342,7.5518L12.1036,7.5518L12.1036,7.5895L12.0436,7.5895L12.0436,7.5507L12.012,7.5507L12.012,7.5895L11.952,7.5895L11.952,7.5507L11.9204,7.5513Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.6673,7.8115L11.4655,7.8115L11.472,7.6396L11.6613,7.6396L11.6673,7.8115ZM11.4884,7.7896L11.6449,7.7896L11.6405,7.6609L11.4933,7.6609L11.4884,7.7896ZM12.1282,7.8115L11.9264,7.8115L11.9329,7.6396L12.1222,7.6396L12.1282,7.8115ZM11.9487,7.7896L12.1053,7.7896L12.1009,7.6609L11.9536,7.6609L11.9487,7.7896ZM11.6918,7.8109L11.7049,7.5104L11.8882,7.5098L11.9013,7.8104L11.6918,7.8109ZM11.7256,7.5316L11.7147,7.7891L11.8789,7.7885L11.8675,7.5311L11.7256,7.5316Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.8909,7.5245L11.6995,7.5245C11.6798,7.5245 11.6645,7.5104 11.6645,7.4913L11.6645,7.3936L11.7409,7.3936L11.7409,7.4324L11.7584,7.4324L11.7584,7.3942L11.8347,7.3942L11.8347,7.4329L11.8516,7.4329L11.8516,7.3953L11.9193,7.3953L11.9269,7.4002L11.9269,7.4918C11.9269,7.5087 11.9105,7.5245 11.8909,7.5245ZM11.6864,7.4149L11.6864,7.4913C11.6864,7.4995 11.6929,7.5027 11.6995,7.5027L11.8909,7.5027C11.898,7.5027 11.9045,7.4967 11.9051,7.4907L11.9051,7.4155L11.8735,7.4155L11.8735,7.4531L11.8129,7.4531L11.8129,7.4144L11.7802,7.4144L11.7802,7.4525L11.7196,7.4525L11.7196,7.4138L11.6864,7.4138L11.6864,7.4149ZM12.1342,7.9342L11.4595,7.9342C11.4393,7.9342 11.4229,7.9156 11.4229,7.8927C11.4229,7.8698 11.4393,7.8513 11.4595,7.8513L12.1342,7.8513C12.1544,7.8513 12.1707,7.8698 12.1707,7.8927C12.1707,7.9156 12.1544,7.9342 12.1342,7.9342ZM11.4595,7.8736C11.4513,7.8736 11.4447,7.8824 11.4447,7.8933C11.4447,7.9042 11.4518,7.9129 11.4595,7.9129L12.1342,7.9129C12.1424,7.9129 12.1489,7.9042 12.1489,7.8933C12.1489,7.8824 12.1418,7.8736 12.1342,7.8736L11.4595,7.8736Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M12.1489,7.8731L11.4436,7.8731C11.4229,7.8731 11.406,7.8545 11.406,7.8316C11.406,7.8087 11.4229,7.7902 11.4436,7.7902L12.1489,7.7902C12.1696,7.7902 12.1865,7.8087 12.1865,7.8316C12.1865,7.8545 12.1696,7.8731 12.1489,7.8731ZM11.4436,7.812C11.4349,7.812 11.4273,7.8213 11.4273,7.8316C11.4273,7.842 11.4349,7.8513 11.4436,7.8513L12.1489,7.8513C12.1576,7.8513 12.1653,7.8425 12.1653,7.8316C12.1653,7.8207 12.1576,7.812 12.1489,7.812L11.4436,7.812ZM11.9078,8.2004L11.6847,8.2004L11.6847,8.1895C11.6858,8.0444 11.7889,7.9947 11.7982,7.9947C11.8069,7.9936 11.8353,8.0165 11.8358,8.0171C11.8685,8.0444 11.9073,8.0967 11.9078,8.1895L11.9078,8.2004ZM11.7071,8.1785L11.886,8.1785C11.8811,8.0673 11.814,8.0258 11.7982,8.0176C11.784,8.0247 11.712,8.0656 11.7071,8.1785Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M12.1642,8.2691L11.4284,8.2691C11.4071,8.2691 11.3891,8.2489 11.3891,8.2244C11.3891,8.1998 11.4065,8.1796 11.4284,8.1796L12.1642,8.1796C12.1855,8.1796 12.2035,8.1998 12.2035,8.2244C12.2035,8.2495 12.186,8.2691 12.1642,8.2691ZM11.4289,8.2015C11.4196,8.2015 11.4115,8.2118 11.4115,8.2244C11.4115,8.2369 11.4196,8.2473 11.4289,8.2473L12.1647,8.2473C12.174,8.2473 12.1822,8.2369 12.1822,8.2244C12.1822,8.2118 12.174,8.2015 12.1647,8.2015L11.4289,8.2015Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.9618,8.2009L11.9618,8.19C11.9602,7.9691 11.7971,7.9369 11.7955,7.9369C11.796,7.9369 11.6335,7.9827 11.6291,8.19L11.6291,8.2004L11.4262,8.2004L11.4611,7.9025L12.1336,7.9042L12.1336,7.914L12.1647,8.1998L11.9618,8.2009ZM11.4502,8.1791L11.6078,8.1791C11.6127,8.0722 11.6591,8.0073 11.6984,7.9713C11.7229,7.9489 11.7485,7.9336 11.7676,7.9249L11.4807,7.9244L11.4502,8.1791ZM11.8293,7.9255C11.8462,7.9325 11.8664,7.9435 11.886,7.9593C11.9285,7.9936 11.9793,8.0596 11.9831,8.1791L12.1402,8.1785L12.1129,7.9255L11.8293,7.9255ZM11.5844,5.7027C11.5844,5.6765 11.5478,5.676 11.5484,5.7027L11.5484,5.754L11.5844,5.754L11.5844,5.7027M11.8151,5.6062C11.8162,5.5789 11.7769,5.5789 11.7775,5.6062L11.7775,5.6727L11.8151,5.6727L11.8151,5.6062M12.0464,5.7027C12.0464,5.6765 12.0098,5.676 12.0104,5.7027L12.0104,5.754L12.0464,5.754L12.0464,5.7027M11.6596,5.658L11.472,5.658C11.4529,5.658 11.4376,5.6433 11.4376,5.6247L11.4376,5.5271L11.5129,5.5271L11.5129,5.5658L11.5293,5.5658L11.5293,5.5276L11.6045,5.5271L11.6045,5.5658L11.6209,5.5658L11.6209,5.5282L11.6869,5.5282L11.6945,5.5331L11.6945,5.6247C11.6951,5.6427 11.6787,5.658 11.6596,5.658ZM11.46,5.5484L11.46,5.6247C11.46,5.6329 11.4665,5.6362 11.4725,5.6362L11.6602,5.6362C11.6673,5.6362 11.6738,5.6307 11.6738,5.6242L11.6738,5.5489L11.6433,5.5489L11.6433,5.5865L11.5833,5.5865L11.5833,5.5478L11.5516,5.5478L11.5516,5.5865L11.4916,5.5865L11.4916,5.5478L11.46,5.5484ZM12.1205,5.658L11.9329,5.658C11.9138,5.658 11.8985,5.6433 11.8985,5.6247L11.8985,5.5271L11.9738,5.5271L11.9738,5.5658L11.9902,5.5658L11.9902,5.5276L12.0655,5.5271L12.0655,5.5658L12.0818,5.5658L12.0818,5.5282L12.1478,5.5282L12.1555,5.5331L12.1555,5.6247C12.1555,5.6427 12.1396,5.658 12.1205,5.658ZM11.9204,5.5484L11.9204,5.6247C11.9204,5.6329 11.9269,5.6362 11.9329,5.6362L12.1205,5.6362C12.1276,5.6362 12.1342,5.6307 12.1342,5.6242L12.1342,5.5489L12.1036,5.5489L12.1036,5.5865L12.0436,5.5865L12.0436,5.5478L12.012,5.5478L12.012,5.5865L11.952,5.5865L11.952,5.5478L11.9204,5.5484Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.6673,5.8085L11.4655,5.8085L11.472,5.6367L11.6613,5.6367L11.6673,5.8085ZM11.4884,5.7867L11.6449,5.7867L11.6405,5.658L11.4933,5.658L11.4884,5.7867ZM12.1282,5.8085L11.9264,5.8085L11.9329,5.6367L12.1222,5.6367L12.1282,5.8085ZM11.9487,5.7867L12.1053,5.7867L12.1009,5.658L11.9536,5.658L11.9487,5.7867ZM11.6918,5.808L11.7049,5.5075L11.8882,5.5069L11.9013,5.8075L11.6918,5.808ZM11.7256,5.5287L11.7147,5.7862L11.8789,5.7856L11.8675,5.5282L11.7256,5.5287Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.8909,5.5211L11.6995,5.5211C11.6798,5.5211 11.6645,5.5069 11.6645,5.4878L11.6645,5.3902L11.7409,5.3902L11.7409,5.4289L11.7584,5.4289L11.7584,5.3907L11.8347,5.3907L11.8347,5.4295L11.8516,5.4295L11.8516,5.3918L11.9193,5.3918L11.9269,5.3967L11.9269,5.4884C11.9269,5.5058 11.9105,5.5211 11.8909,5.5211ZM11.6864,5.412L11.6864,5.4884C11.6864,5.4965 11.6929,5.4998 11.6995,5.4998L11.8909,5.4998C11.898,5.4998 11.9045,5.4938 11.9051,5.4878L11.9051,5.4125L11.8735,5.4125L11.8735,5.4502L11.8129,5.4502L11.8129,5.4115L11.7802,5.4115L11.7802,5.4496L11.7196,5.4496L11.7196,5.4109L11.6864,5.4109L11.6864,5.412ZM12.1489,5.8702L11.4436,5.8702C11.4229,5.8702 11.406,5.8516 11.406,5.8287C11.406,5.8058 11.4229,5.7873 11.4436,5.7873L12.1489,5.7873C12.1696,5.7873 12.1865,5.8058 12.1865,5.8287C12.1865,5.8516 12.1696,5.8702 12.1489,5.8702ZM11.4436,5.8091C11.4349,5.8091 11.4273,5.8184 11.4273,5.8287C11.4273,5.8391 11.4349,5.8484 11.4436,5.8484L12.1489,5.8484C12.1576,5.8484 12.1653,5.8396 12.1653,5.8287C12.1653,5.8178 12.1576,5.8091 12.1489,5.8091L11.4436,5.8091Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M12.1342,5.9313L11.4595,5.9313C11.4393,5.9313 11.4229,5.9127 11.4229,5.8898C11.4229,5.8669 11.4393,5.8484 11.4595,5.8484L12.1342,5.8484C12.1544,5.8484 12.1707,5.8669 12.1707,5.8898C12.1707,5.9127 12.1544,5.9313 12.1342,5.9313ZM11.4595,5.8707C11.4513,5.8707 11.4447,5.8795 11.4447,5.8904C11.4447,5.9013 11.4518,5.91 11.4595,5.91L12.1342,5.91C12.1424,5.91 12.1489,5.9013 12.1489,5.8904C12.1489,5.8795 12.1418,5.8707 12.1342,5.8707L11.4595,5.8707ZM11.9078,6.1975L11.6847,6.1975L11.6847,6.1865C11.6858,6.0415 11.7889,5.9924 11.7982,5.9924C11.8069,5.9913 11.8353,6.0142 11.8358,6.0147C11.8685,6.042 11.9073,6.0944 11.9078,6.1871L11.9078,6.1975ZM11.7071,6.1756L11.886,6.1756C11.8811,6.0644 11.814,6.0229 11.7982,6.0147C11.784,6.0218 11.712,6.0627 11.7071,6.1756Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M12.1642,6.2662L11.4284,6.2662C11.4071,6.2662 11.3891,6.246 11.3891,6.2215C11.3891,6.1969 11.4065,6.1767 11.4284,6.1767L12.1642,6.1767C12.1855,6.1767 12.2035,6.1969 12.2035,6.2215C12.2035,6.2465 12.186,6.2662 12.1642,6.2662ZM11.4289,6.1985C11.4196,6.1985 11.4115,6.2089 11.4115,6.2215C11.4115,6.234 11.4196,6.2444 11.4289,6.2444L12.1647,6.2444C12.174,6.2444 12.1822,6.234 12.1822,6.2215C12.1822,6.2089 12.174,6.1985 12.1647,6.1985L11.4289,6.1985Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M11.9618,6.198L11.9618,6.1871C11.9602,5.9662 11.7971,5.934 11.7955,5.934C11.796,5.934 11.6335,5.9798 11.6291,6.1876L11.6291,6.198L11.4262,6.198L11.4611,5.8996L12.1336,5.9013L12.1336,5.9111L12.1647,6.1969L11.9618,6.198ZM11.4502,6.1762L11.6078,6.1762C11.6127,6.0693 11.6596,6.0044 11.6984,5.9684C11.7229,5.946 11.7485,5.9307 11.7676,5.922L11.4807,5.9215L11.4502,6.1762ZM11.8293,5.9225C11.8462,5.9296 11.8664,5.9405 11.886,5.9564C11.9285,5.9907 11.9793,6.0567 11.9831,6.1762L12.1402,6.1756L12.1129,5.9225L11.8293,5.9225Z" + android:strokeWidth="1" + android:fillColor="#000000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.504,7.8131L9.5029,8.2784L9.5029,8.2784L9.5029,8.2784C9.5029,8.3738 9.54,8.4611 9.5989,8.5244C9.6584,8.5876 9.7396,8.6269 9.8291,8.6269C9.9191,8.6269 10.0004,8.5876 10.0593,8.5244C10.1182,8.4611 10.1547,8.3744 10.1547,8.2784L10.1547,7.8125L9.504,7.8131ZM9.6524,8.4082C9.6169,8.4082 9.588,8.3793 9.588,8.3438C9.588,8.3084 9.6169,8.2795 9.6524,8.2795C9.6878,8.2795 9.7167,8.3084 9.7167,8.3438C9.7167,8.3793 9.6878,8.4082 9.6524,8.4082ZM9.6524,8.0542C9.6169,8.0542 9.588,8.0253 9.588,7.9898C9.588,7.9544 9.6169,7.9255 9.6524,7.9255C9.6878,7.9255 9.7167,7.9544 9.7167,7.9898C9.7167,8.0253 9.6878,8.0542 9.6524,8.0542ZM9.8324,8.2271C9.7969,8.2271 9.768,8.1982 9.768,8.1627C9.768,8.1273 9.7969,8.0984 9.8324,8.0984C9.8678,8.0984 9.8967,8.1273 9.8967,8.1627C9.8967,8.1982 9.8678,8.2271 9.8324,8.2271ZM10.0129,8.4076C9.9775,8.4076 9.9485,8.3787 9.9485,8.3433C9.9485,8.3078 9.9775,8.2789 10.0129,8.2789C10.0484,8.2789 10.0773,8.3078 10.0773,8.3433C10.0773,8.3787 10.0484,8.4076 10.0129,8.4076ZM10.0135,8.0547C9.978,8.0547 9.9491,8.0258 9.9491,7.9904C9.9491,7.9549 9.978,7.926 10.0135,7.926C10.0489,7.926 10.0778,7.9549 10.0778,7.9904C10.0778,8.0258 10.0489,8.0547 10.0135,8.0547ZM9.504,6.6878L9.5029,7.1536L9.5029,7.1536L9.5029,7.1536C9.5029,7.2491 9.54,7.3364 9.5989,7.3996C9.6584,7.4629 9.7396,7.5027 9.8291,7.5027C9.9191,7.5027 10.0004,7.4635 10.0593,7.4002C10.1182,7.3369 10.1547,7.2502 10.1547,7.1542L10.1547,6.6884L9.504,6.6878ZM9.6524,7.2829C9.6169,7.2829 9.588,7.254 9.588,7.2185C9.588,7.1831 9.6169,7.1542 9.6524,7.1542C9.6878,7.1542 9.7167,7.1831 9.7167,7.2185C9.7167,7.2545 9.6878,7.2829 9.6524,7.2829ZM9.6524,6.9295C9.6169,6.9295 9.588,6.9005 9.588,6.8651C9.588,6.8296 9.6169,6.8007 9.6524,6.8007C9.6878,6.8007 9.7167,6.8296 9.7167,6.8651C9.7167,6.9005 9.6878,6.9295 9.6524,6.9295ZM9.8324,7.1024C9.7969,7.1024 9.768,7.0735 9.768,7.038C9.768,7.0025 9.7969,6.9736 9.8324,6.9736C9.8678,6.9736 9.8967,7.0025 9.8967,7.038C9.8967,7.0735 9.8678,7.1024 9.8324,7.1024ZM10.0129,7.2824C9.9775,7.2824 9.9485,7.2535 9.9485,7.218C9.9485,7.1825 9.9775,7.1536 10.0129,7.1536C10.0484,7.1536 10.0773,7.1825 10.0773,7.218C10.0773,7.254 10.0484,7.2824 10.0129,7.2824ZM10.0135,6.9295C9.978,6.9295 9.9491,6.9005 9.9491,6.8651C9.9491,6.8296 9.978,6.8007 10.0135,6.8007C10.0489,6.8007 10.0778,6.8296 10.0778,6.8651C10.0778,6.9005 10.0489,6.9295 10.0135,6.9295ZM8.6013,7.8131L8.6002,8.2784L8.6002,8.2784L8.6002,8.2784C8.6002,8.3738 8.6373,8.4611 8.6962,8.5244C8.7556,8.5876 8.8369,8.6269 8.9264,8.6269C9.0158,8.6269 9.0976,8.5876 9.1565,8.5244C9.2155,8.4611 9.252,8.3744 9.252,8.2784L9.252,7.8125L8.6013,7.8131ZM8.7491,8.4082C8.7136,8.4082 8.6847,8.3793 8.6847,8.3438C8.6847,8.3084 8.7136,8.2795 8.7491,8.2795C8.7845,8.2795 8.8135,8.3084 8.8135,8.3438C8.8135,8.3793 8.7851,8.4082 8.7491,8.4082ZM8.7491,8.0542C8.7136,8.0542 8.6847,8.0253 8.6847,7.9898C8.6847,7.9544 8.7136,7.9255 8.7491,7.9255C8.7845,7.9255 8.8135,7.9544 8.8135,7.9898C8.814,8.0253 8.7851,8.0542 8.7491,8.0542ZM8.9296,8.2271C8.8942,8.2271 8.8653,8.1982 8.8653,8.1627C8.8653,8.1273 8.8942,8.0984 8.9296,8.0984C8.9651,8.0984 8.994,8.1273 8.994,8.1627C8.994,8.1982 8.9651,8.2271 8.9296,8.2271ZM9.1102,8.4076C9.0747,8.4076 9.0458,8.3787 9.0458,8.3433C9.0458,8.3078 9.0747,8.2789 9.1102,8.2789C9.1456,8.2789 9.1745,8.3078 9.1745,8.3433C9.1745,8.3787 9.1456,8.4076 9.1102,8.4076ZM9.1102,8.0547C9.0747,8.0547 9.0458,8.0258 9.0458,7.9904C9.0458,7.9549 9.0747,7.926 9.1102,7.926C9.1456,7.926 9.1745,7.9549 9.1745,7.9904C9.1751,8.0258 9.1462,8.0547 9.1102,8.0547ZM10.4045,7.8131L10.4035,8.2784L10.4035,8.2784L10.4035,8.2784C10.4035,8.3738 10.4405,8.4611 10.4995,8.5244C10.5589,8.5876 10.6402,8.6269 10.7296,8.6269C10.8196,8.6269 10.9009,8.5876 10.9598,8.5244C11.0187,8.4611 11.0553,8.3744 11.0553,8.2784L11.0553,7.8125L10.4045,7.8131ZM10.5529,8.4082C10.5175,8.4082 10.4885,8.3793 10.4885,8.3438C10.4885,8.3084 10.5175,8.2795 10.5529,8.2795C10.5884,8.2795 10.6173,8.3084 10.6173,8.3438C10.6173,8.3793 10.5884,8.4082 10.5529,8.4082ZM10.5529,8.0542C10.5175,8.0542 10.4885,8.0253 10.4885,7.9898C10.4885,7.9544 10.5175,7.9255 10.5529,7.9255C10.5884,7.9255 10.6173,7.9544 10.6173,7.9898C10.6173,8.0253 10.5884,8.0542 10.5529,8.0542ZM10.7329,8.2271C10.6975,8.2271 10.6685,8.1982 10.6685,8.1627C10.6685,8.1273 10.6975,8.0984 10.7329,8.0984C10.7684,8.0984 10.7973,8.1273 10.7973,8.1627C10.7973,8.1982 10.7684,8.2271 10.7329,8.2271ZM10.9135,8.4076C10.878,8.4076 10.8491,8.3787 10.8491,8.3433C10.8491,8.3078 10.878,8.2789 10.9135,8.2789C10.9489,8.2789 10.9778,8.3078 10.9778,8.3433C10.9778,8.3787 10.9489,8.4076 10.9135,8.4076ZM10.914,8.0547C10.8785,8.0547 10.8496,8.0258 10.8496,7.9904C10.8496,7.9549 10.8785,7.926 10.914,7.926C10.9495,7.926 10.9784,7.9549 10.9784,7.9904C10.9784,8.0258 10.9495,8.0547 10.914,8.0547ZM9.504,8.928L9.5029,9.3938L9.5029,9.3938L9.5029,9.3938C9.5029,9.4893 9.54,9.5765 9.5989,9.6398C9.6584,9.7031 9.7396,9.7429 9.8291,9.7429C9.9191,9.7429 10.0004,9.7036 10.0593,9.6404C10.1182,9.5771 10.1547,9.4904 10.1547,9.3944L10.1547,8.9285L9.504,8.928ZM9.6524,9.5231C9.6169,9.5231 9.588,9.4942 9.588,9.4587C9.588,9.4233 9.6169,9.3944 9.6524,9.3944C9.6878,9.3944 9.7167,9.4233 9.7167,9.4587C9.7167,9.4942 9.6878,9.5231 9.6524,9.5231ZM9.6524,9.1691C9.6169,9.1691 9.588,9.1402 9.588,9.1047C9.588,9.0693 9.6169,9.0404 9.6524,9.0404C9.6878,9.0404 9.7167,9.0693 9.7167,9.1047C9.7167,9.1402 9.6878,9.1691 9.6524,9.1691ZM9.8324,9.342C9.7969,9.342 9.768,9.3131 9.768,9.2776C9.768,9.2422 9.7969,9.2133 9.8324,9.2133C9.8678,9.2133 9.8967,9.2422 9.8967,9.2776C9.8967,9.3131 9.8678,9.342 9.8324,9.342ZM10.0129,9.5225C9.9775,9.5225 9.9485,9.4936 9.9485,9.4582C9.9485,9.4227 9.9775,9.3938 10.0129,9.3938C10.0484,9.3938 10.0773,9.4227 10.0773,9.4582C10.0773,9.4936 10.0484,9.5225 10.0129,9.5225ZM10.0135,9.1696C9.978,9.1696 9.9491,9.1407 9.9491,9.1053C9.9491,9.0698 9.978,9.0409 10.0135,9.0409C10.0489,9.0409 10.0778,9.0698 10.0778,9.1053C10.0778,9.1407 10.0489,9.1696 10.0135,9.1696Z" + android:strokeWidth="1" + android:fillColor="#003399" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_ro.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_ro.xml new file mode 100644 index 0000000000000000000000000000000000000000..f8feec1e7119fa7fcce5aa81926f798f97cbae4e --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_ro.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M7.6364,0l8.7273,0l0,16l-8.7273,0z" + android:strokeWidth="1" + android:fillColor="#FFCA28" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M16.3636,0l7.6364,0l0,16l-7.6364,0z" + android:strokeWidth="1" + android:fillColor="#D50000" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M-0,0l7.6364,0l0,16l-7.6364,0z" + android:strokeWidth="1" + android:fillColor="#1A237E" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_se.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_se.xml new file mode 100644 index 0000000000000000000000000000000000000000..0ce3b524fa789a57623a180309a861dba238cc07 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_se.xml @@ -0,0 +1,28 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l24,0l0,16l-24,0z" + android:strokeWidth="1" + android:fillColor="#1976D2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,6.5455l24,0l0,3.2727l-24,0z" + android:strokeWidth="1" + android:fillColor="#FFC107" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.6364,0l3.2727,0l0,16l-3.2727,0z" + android:strokeWidth="1" + android:fillColor="#FFC107" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_si.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_si.xml new file mode 100644 index 0000000000000000000000000000000000000000..7f0537242748973398610f1a485c2d86d281f3c8 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_si.xml @@ -0,0 +1,46 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,10.66l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.33l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#1976D2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,-0l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.8182,2.7273L3.8182,3.8182C3.8182,7.6364 6,8.1818 6,8.1818C6,8.1818 8.1818,7.6364 8.1818,3.8182L8.1818,2.7273L3.8182,2.7273Z" + android:strokeWidth="1" + android:fillColor="#1976D2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.1818,2.7273L8.1818,3.8182C8.1818,7.6364 6,8.1818 6,8.1818C6,8.1818 3.8182,7.6364 3.8182,3.8182L3.8182,2.7273L3.2727,2.7273L3.2727,3.8182C3.2727,8.0138 5.7616,8.6847 5.868,8.7115L6,8.7442L6.132,8.7109C6.2384,8.6847 8.7273,8.0138 8.7273,3.8182L8.7273,2.7273L8.1818,2.7273Z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0909,4.9091L6.5455,5.4545L6,4.3636L5.4545,5.4545L4.9091,4.9091L4.056,5.7622C4.62,7.83 6,8.1818 6,8.1818C6,8.1818 7.38,7.83 7.944,5.7622L7.0909,4.9091Z" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_sk.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_sk.xml new file mode 100644 index 0000000000000000000000000000000000000000..901f8f843fc269a67532e10f30ab2d1b35ad848e --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_sk.xml @@ -0,0 +1,48 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <path + android:pathData="M0,10.66l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.33l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#1976D2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,-0l24,0l0,5.33l-24,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.0909,12C5.7753,11.3667 3.8182,10.6702 3.8182,8.1818C3.8182,5.694 3.8182,4.3636 3.8182,4.3636L10.3636,4.3636C10.3636,4.3636 10.3636,5.718 10.3636,8.1818C10.3636,10.6707 8.4065,11.3667 7.0909,12" + android:strokeWidth="1" + android:fillColor="#FF3D00" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M3.2727,3.8182C3.2727,3.8182 3.2727,5.4693 3.2727,8.1818C3.2727,10.8955 5.5467,11.8549 7.0909,12.5455C8.6356,11.8549 10.9091,10.8955 10.9091,8.1818C10.9091,5.4693 10.9091,3.8182 10.9091,3.8182L3.2727,3.8182ZM10.3636,8.1818C10.3636,10.6707 8.4065,11.3667 7.0909,12C5.7753,11.3667 3.8182,10.6702 3.8182,8.1818C3.8182,5.694 3.8182,4.3636 3.8182,4.3636L10.3636,4.3636C10.3636,4.3636 10.3636,5.718 10.3636,8.1818Z" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M7.4056,7.9025C7.8038,7.9091 8.5811,7.9249 9.2727,7.6931C9.2727,7.6931 9.2547,7.9407 9.2547,8.2282C9.2547,8.5167 9.2727,8.7644 9.2727,8.7644C8.6378,8.5516 7.8545,8.5478 7.4056,8.5527L7.4056,10.0909L6.7767,10.0909L6.7767,8.5538C6.3273,8.5484 5.544,8.5527 4.9091,8.7655C4.9091,8.7655 4.9271,8.5178 4.9271,8.2293C4.9271,7.9418 4.9091,7.6942 4.9091,7.6942C5.6007,7.926 6.3791,7.9102 6.7767,7.9036L6.7767,6.9382C6.4135,6.9349 6.0464,6.8836 5.4545,7.0827C5.4545,7.0827 5.4545,6.8351 5.4545,6.5465C5.4545,6.258 5.4545,6.0115 5.4545,6.0115C6.0453,6.2078 6.4124,6.2935 6.7751,6.2913C6.7565,5.6793 6.5776,4.9091 6.5776,4.9091C6.5776,4.9091 6.9453,4.9369 7.0909,4.9369C7.2365,4.9369 7.6036,4.9091 7.6036,4.9091C7.6036,4.9091 7.4253,5.6793 7.4073,6.2896C7.77,6.2918 8.1371,6.2155 8.7273,6.0191C8.7273,6.0191 8.7093,6.2656 8.7093,6.5542C8.7093,6.8427 8.7273,7.0909 8.7273,7.0909C8.1365,6.8924 7.7684,6.9344 7.4056,6.9376L7.4056,7.9025Z" + android:strokeWidth="1" + android:fillColor="#FFFFFF" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.0875,10.1727C8.0875,10.1727 7.74,9.2727 7.0909,9.2727C6.4424,9.2727 6.0944,10.1727 6.0944,10.1727C6.0944,10.1727 5.9013,9.7456 5.3722,9.7456C5.0455,9.7456 4.7029,10.0816 4.5349,10.3511C5.2244,11.2025 6.3164,11.6269 7.0909,12C7.8655,11.6269 8.9264,11.2407 9.6153,10.3893C9.4478,10.1204 9.1369,9.7456 8.8107,9.7456C8.2811,9.7456 8.0875,10.1727 8.0875,10.1727Z" + android:strokeWidth="1" + android:fillColor="#1976D2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_country_uk.xml b/Corona-Warn-App/src/main/res/drawable/ic_country_uk.xml new file mode 100644 index 0000000000000000000000000000000000000000..7e4825fd11130b6b62a66490f52fe4ef01350e74 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_country_uk.xml @@ -0,0 +1,64 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="16dp" + android:viewportWidth="24" + android:viewportHeight="16"> + <group> + <clip-path + android:pathData="M0,0h24v16h-24z"/> + <path + android:pathData="M0,0l24.1758,0l0,16l-24.1758,0z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,2.4091l11.4341,7.268l1.7192,-2.9257l-10.6214,-6.7514l-2.5319,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M24.1758,0l-1.983,0l-10.6209,6.7509l1.7187,2.9263l10.8852,-6.9194z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M13.2907,5.8691l-1.7187,2.9257l11.3352,7.2051l1.2687,0l0,-3.212z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,13.1377l0,2.8623l1.8187,0l11.3346,-7.2046l-1.7187,-2.9263z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M0,5.7143l24.1758,0l0,4.5714l-24.1758,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M9.8901,0l4.3956,0l0,16l-4.3956,0z" + android:strokeWidth="1" + android:fillColor="#EDF0F2" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M8.3615,5.7143L0,0.3994L0,1.7389L6.2538,5.7143L8.3615,5.7143ZM23.2467,0L14.2566,5.7143L16.3637,5.7143L24.1758,0.7491L24.1758,0L23.2467,0ZM17.078,10.2857L24.1758,14.7971L24.1758,13.4577L19.1852,10.2857L17.078,10.2857ZM7.6473,10.2857L0,15.1463L0,16L0.7648,16L9.7544,10.2857L7.6473,10.2857ZM0,6.8571L24.1758,6.8571L24.1758,9.1429L0,9.1429L0,6.8571Z" + android:strokeWidth="1" + android:fillColor="#E53935" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M10.989,0l2.1978,0l0,16l-2.1978,0z" + android:strokeWidth="1" + android:fillColor="#E53935" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/drawable/ic_illustration_interoperability.xml b/Corona-Warn-App/src/main/res/drawable/ic_illustration_interoperability.xml new file mode 100644 index 0000000000000000000000000000000000000000..9000e1ab170b30f045442c7ac041f45085ccc2e8 --- /dev/null +++ b/Corona-Warn-App/src/main/res/drawable/ic_illustration_interoperability.xml @@ -0,0 +1,134 @@ +<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="M253.634,-1.772L246.507,0.715L248.993,9.699L244.965,8.771L240.009,17.142L237.207,13.429L232.251,22.711L232.881,27.667L228.853,30.469L227.295,26.126L224.195,22.413L220.167,23.026L222.636,31.082L225.754,32.01L226.367,36.669L222.339,34.497L218.311,42.553L222.339,48.438L212.724,45.968L212.111,48.438L217.067,51.853L214.598,53.394L209.624,51.853L206.524,47.194L204.353,43.166L198.784,42.553L197.855,39.138L210.255,41.012L217.067,36.966L215.526,31.397L203.74,27.054L189.799,26.441L187.926,21.783L179.887,19.926L163.775,32.01L147.961,58.665L129.677,70.434L127.803,87.807L130.605,93.061L136.192,92.448L142.076,89.348L145.789,83.148L149.204,107.947L153.53,109.803L156.017,105.145L161.288,104.532L163.145,91.204L168.416,83.464L163.46,78.805L163.46,70.136L169.957,63.008L173.372,49.681L178.941,48.14L182.356,53.394L174.3,64.549L173.985,76.949L182.672,81.59L197.855,74.777L200.342,80.679L185.141,85.635L185.456,96.791L179.257,93.989L178.328,107.316L169.957,114.129L154.773,119.103L143.32,116.616L141.446,98.647L135.246,100.188L134.318,119.103L131.849,116.931L121.936,120.031L116.963,129.015L108.294,130.258L102.392,137.684L94.353,134.584L80.098,139.54L88.452,147.614L92.182,153.183L91.551,159.085L84.424,165.897L67.068,164.969L61.814,161.239L57.471,160.626L54.686,160.941L56.228,163.41L55.299,167.438L50.641,179.225L47.559,181.379L46.613,185.109L49.1,186.65L46,194.409L50.028,197.193L53.741,195.652L57.769,199.049L55.912,202.465L59.012,204.934L64.897,201.834L76.07,203.393L88.767,196.265L86.91,190.381L95.895,184.181L105.509,180.468L105.509,175.197L109.222,172.395L119.765,176.423L129.362,168.997L134.318,169.61L141.148,182.64L155.386,192.85L160.658,196.58L159.117,205.564L161.288,206.493L166.244,199.365L163.775,196.878L165.631,192.85L172.129,195.021L170.272,190.065L160.658,186.965L161.603,184.496L156.945,183.55L152.602,180.153L149.204,173.025L145.789,170.854L143.618,164.969L151.061,162.798L176.157,183.253L176.472,192.237L193.827,212.062L201.27,202.78L190.097,190.065L196.612,191.309L195.369,188.209L201.883,185.722L207.768,189.137L217.995,182.64L210.868,173.34L215.824,152.57L222.023,148.542L224.808,151.642L237.207,147.614L249.309,139.243L246.191,152.885L288.03,173.025L294.545,172.71L298.888,167.438L301.357,171.782L306.629,169.925L305.403,157.211L290.517,150.714L289.886,146.37L287.417,143.883L283.704,143.586L284.632,135.53L288.66,130.258L283.704,124.374L277.505,124.672L274.405,113.218L284.93,98.647L297.014,97.404L314.387,89.348L315,81.905L302.916,81.59L297.329,70.434L291.76,74.777L293.617,67.649L287.102,67.649L284.632,64.252L284.632,54.952L262.619,23.341L265.736,5.355L253.634,-1.772ZM74.038,25.548L68.171,28.105L71.481,30.206L69.975,33.219L65.457,38.49L72.83,45.408L81.096,44.952L88.171,42.693L88.924,39.243L87.121,32.921L81.096,34.129L80.501,31.555L73.741,32.623L74.932,27.492L74.038,25.548ZM97.05,84.076L91.184,89.786L91.937,98.21L94.336,98.525L90.431,103.183L90.728,105.285L96.157,104.689L95.247,108.595L95.842,114.304L92.69,112.658L87.874,115.652L91.184,116.721L88.767,119.278L85.317,118.822L84.861,121.082L92.094,124.391L90.273,125.145L86.823,124.234L81.096,127.701L82.147,129.505L86.21,128.454L87.716,129.961L90.431,127.544L94.494,129.208L101.569,129.208L104.126,129.961L108.189,127.999L104.721,125.74L110.448,122.132L110.133,119.278L104.879,118.367L106.683,116.406L105.176,108.297L102.917,107.089L103.215,102.43L100.501,99.12L99.747,97.019L103.81,94.602L105.176,90.837L100.22,90.399L97.646,91.134L97.804,89.33L103.057,86.178L102.164,84.672L97.05,84.076ZM83.058,98.963L77.646,100.924L79.292,102.728L77.191,104.532L73.741,102.273L71.026,106.791L73.741,109.19L67.716,112.815L68.014,116.265L70.273,117.474L79.292,116.406L82.147,115.968L84.108,111.747L85.159,108.139L88.171,105.74L87.121,101.222L83.058,98.963ZM132.724,178.682L129.012,180.118L129.152,183.761L131.078,185.967L132.287,183.113L132.497,182.044L133.075,180.836L132.724,178.682ZM131.411,187.123L125.089,189.4L127.348,199.768L132.707,198.944L133.022,190.853L131.411,187.123ZM145.737,203.778L144.196,206.457L155.281,212.972L157.558,211.344L157.103,207.911L158.276,205.564L158.241,203.971L152.006,205.477L145.737,203.778Z" + android:strokeWidth="1" + android:fillColor="#DBE1E5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> + <group> + <clip-path + android:pathData="M0,0h360v220h-360z"/> + <path + android:pathData="M16,8l80,0l0,54.545l-80,0z" + android:strokeWidth="1" + android:fillColor="#3F51B5" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + <path + android:pathData="M56,13.455L56.995,15.484L59.216,15.807L57.609,17.385L57.989,19.616L56,18.564L54.013,19.616L54.393,17.385L52.785,15.807L55.007,15.484L56,13.455ZM46.447,16.331L47.442,18.36L49.664,18.685L48.056,20.264L48.436,22.495L46.449,21.442L44.462,22.495L44.84,20.264L43.233,18.685L45.456,18.36L46.447,16.331ZM39.66,22.635L40.655,24.664L42.878,24.987L41.271,26.565L41.649,28.796L39.662,27.744L37.675,28.796L38.055,26.565L36.447,24.987L38.669,24.664L39.66,22.635ZM65.553,16.331L64.558,18.36L62.336,18.685L63.944,20.264L63.564,22.495L65.551,21.442L67.538,22.495L67.16,20.264L68.767,18.685L66.544,18.36L65.553,16.331ZM46.447,46.991L47.442,49.02L49.664,49.345L48.056,50.924L48.436,53.155L46.449,52.102L44.462,53.155L44.84,50.924L43.233,49.345L45.456,49.02L46.447,46.991ZM65.553,46.991L64.558,49.02L62.336,49.345L63.944,50.924L63.564,53.155L65.551,52.102L67.538,53.155L67.16,50.924L68.767,49.345L66.544,49.02L65.553,46.991ZM72.34,22.635L71.345,24.664L69.122,24.987L70.729,26.565L70.351,28.796L72.338,27.744L74.325,28.796L73.945,26.565L75.553,24.987L73.331,24.664L72.34,22.635ZM39.66,40.596L40.655,42.625L42.878,42.951L41.271,44.529L41.649,46.76L39.662,45.707L37.675,46.76L38.055,44.529L36.447,42.951L38.669,42.625L39.66,40.596ZM72.34,40.596L71.345,42.625L69.122,42.951L70.729,44.529L70.351,46.76L72.338,45.707L74.325,46.76L73.945,44.529L75.553,42.951L73.331,42.625L72.34,40.596ZM74.602,32.191L75.596,34.22L77.818,34.545L76.211,36.124L76.591,38.355L74.604,37.302L72.616,38.355L72.996,36.124L71.384,34.545L73.607,34.22L74.602,32.191ZM37.398,32.191L38.393,34.22L40.616,34.545L39.007,36.124L39.387,38.355L37.4,37.302L35.413,38.355L35.793,36.124L34.182,34.545L36.404,34.22L37.398,32.191ZM56,50.927L56.995,52.956L59.216,53.282L57.609,54.86L57.987,57.091L56,56.038L54.013,57.091L54.393,54.86L52.785,53.282L55.007,52.956L56,50.927Z" + android:strokeWidth="1" + android:fillColor="#FFEB3B" + android:fillType="nonZero" + android:strokeColor="#00000000"/> + </group> + <group> + <clip-path + android:pathData="M0,0h360v220h-360z"/> + <path + android:pathData="M212.567,107.982C212.172,114.249 206.767,118.941 200.593,118.569C194.418,118.198 189.645,112.894 190.041,106.626C190.436,100.359 195.841,95.668 202.016,96.039C208.19,96.41 212.963,101.715 212.567,107.982Z" + android:strokeWidth="5.643" + android:fillColor="#00000000" + android:strokeColor="#C2D6E1" + android:fillType="evenOdd"/> + <path + android:pathData="M263.252,112.042C261.097,146.822 231.577,173.236 197.407,171.142C163.235,169.047 137.2,139.226 139.356,104.446C141.511,69.667 171.031,43.253 205.201,45.347C239.372,47.442 265.408,77.263 263.252,112.042Z" + android:strokeAlpha="0.35999998" + android:strokeWidth="5.643" + android:fillColor="#00000000" + android:strokeColor="#C2D6E1" + android:fillType="evenOdd" + android:fillAlpha="0.35999998"/> + <path + android:pathData="M280.147,112.065C277.405,155.67 239.833,188.786 196.344,186.16C152.853,183.534 119.717,146.146 122.461,102.542C125.203,58.938 162.775,25.822 206.264,28.448C249.754,31.074 282.891,68.462 280.147,112.065Z" + android:strokeAlpha="0.14" + android:strokeWidth="5.643" + android:fillColor="#00000000" + android:strokeColor="#C2D6E1" + android:fillType="evenOdd" + android:fillAlpha="0.14"/> + <path + android:pathData="M296.416,113.048C293.108,165.651 247.783,205.6 195.32,202.432C142.855,199.263 102.882,154.162 106.192,101.559C109.5,48.957 154.825,9.008 207.288,12.176C259.751,15.345 299.726,60.446 296.416,113.048Z" + android:strokeAlpha="0.04" + android:strokeWidth="5.643" + android:fillColor="#00000000" + android:strokeColor="#C2D6E1" + android:fillType="evenOdd" + android:fillAlpha="0.04"/> + <path + android:pathData="M246.357,111.022C244.788,136.471 223.307,155.775 198.468,154.244C173.63,152.713 154.682,130.917 156.251,105.468C157.82,80.018 179.302,60.714 204.14,62.245C228.978,63.777 247.926,85.573 246.357,111.022Z" + android:strokeAlpha="0.5" + android:strokeWidth="5.643" + android:fillColor="#00000000" + android:strokeColor="#C2D6E1" + android:fillType="evenOdd" + android:fillAlpha="0.5"/> + <path + android:pathData="M229.274,108.903C228.294,124.45 214.896,136.211 199.443,135.278C183.988,134.346 172.166,121.063 173.146,105.516C174.125,89.969 187.523,78.208 202.977,79.141C218.431,80.073 230.252,93.356 229.274,108.903Z" + android:strokeWidth="5.643" + android:fillColor="#00000000" + android:strokeColor="#C2D6E1" + android:fillType="evenOdd"/> + </group> + <group> + <clip-path + android:pathData="M0,0h360v220h-360z"/> + <path + android:pathData="M187.66,203.46C186.84,194.26 186.26,185.05 185.15,175.86C182.83,156.73 179.65,137.72 176.86,118.65C167.15,117.4 160.39,116.57 160.39,116.57C160.39,116.57 142.52,113.72 142.27,121.91C142.02,130.1 162.17,134.25 162.17,134.25L163.8,134.25L165.24,146.16C165.24,146.16 149.51,165.16 150.64,171.5C151.77,177.84 161.64,175.08 161.64,175.08C161.64,175.08 155.84,192.37 160.29,196.93C163.55,200.28 166.84,198.81 166.84,198.81C166.84,198.81 158.59,206.29 162.31,212.95C163.94,215.88 173.55,216.73 173.55,216.73L189.08,216.24C188.055,212.06 187.585,207.763 187.68,203.46" + android:strokeWidth="1" + android:fillColor="#F7B994" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M193,251.3C187.134,252.12 181.711,248.035 180.88,242.17L160.68,98.44C159.86,92.574 163.945,87.151 169.81,86.32L227.42,78.23C233.288,77.405 238.714,81.492 239.54,87.36L259.74,231.08C260.559,236.95 256.469,242.374 250.6,243.2L193,251.3Z" + android:strokeWidth="1" + android:fillColor="#F8F8F8" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + <path + android:pathData="M251,243.15L193.39,251.25C187.522,252.069 182.101,247.978 181.28,242.11L161.08,98.39C160.681,95.572 161.419,92.71 163.132,90.437C164.844,88.163 167.391,86.664 170.21,86.27L227.81,78.17C233.676,77.35 239.099,81.435 239.93,87.3L260.12,231C260.525,233.821 259.791,236.688 258.08,238.967C256.37,241.246 253.822,242.751 251,243.15Z" + android:strokeWidth="4.03" + android:fillColor="#00000000" + android:strokeColor="#4A4A4A" + android:fillType="evenOdd"/> + <path + android:pathData="M304.33,189.85C304.33,189.85 296.68,187.85 288.87,176.19C281.06,164.53 273.87,136.56 268.72,133.57C268.72,133.57 266.83,109.14 254.29,107.3C254.29,107.3 250.29,89.61 248.99,89.57C247.69,89.53 240.85,89.36 238.79,97.99C236.73,106.62 239.39,122.47 247.58,127.07C247.58,127.07 261.93,228.29 261.95,228.59C262.35,236.74 261.54,236.32 260.44,239.1C270.2,241.56 322.22,257.25 365,270.25L365,203.48L304.33,189.85Z" + android:strokeWidth="1" + android:fillColor="#F7B994" + android:fillType="evenOdd" + android:strokeColor="#00000000"/> + </group> + <group> + <clip-path + android:pathData="M0,0h360v220h-360z"/> + <path + android:pathData="M209.945,163.41m-12.581,1.768a12.705,12.705 127,1 1,25.163 -3.536a12.705,12.705 127,1 1,-25.163 3.536" + android:strokeWidth="3.388" + android:fillColor="#00000000" + android:strokeColor="#007FAD" + android:fillType="evenOdd"/> + <group> + <clip-path + android:pathData="M178.376,139.621l31.569,23.789l23.789,-31.569l7.78,55.358l-31.569,-23.789l-23.789,31.569z"/> + <path + android:pathData="M209.945,163.41m-19.291,2.711a19.481,19.481 127,1 1,38.583 -5.422a19.481,19.481 127,1 1,-38.583 5.422" + android:strokeWidth="3.388" + android:fillColor="#00000000" + android:strokeColor="#C2D6E1" + android:fillType="evenOdd"/> + <path + android:pathData="M209.945,163.41m-26.001,3.654a26.257,26.257 127,1 1,52.003 -7.309a26.257,26.257 127,1 1,-52.003 7.309" + android:strokeWidth="3.388" + android:fillColor="#00000000" + android:strokeColor="#E9F0F4" + android:fillType="evenOdd"/> + </group> + </group> +</vector> diff --git a/Corona-Warn-App/src/main/res/layout/fragment_interoperability_configuration.xml b/Corona-Warn-App/src/main/res/layout/fragment_interoperability_configuration.xml new file mode 100644 index 0000000000000000000000000000000000000000..0d4a25e450c7d3cd5c14105000593e0cdea3d829 --- /dev/null +++ b/Corona-Warn-App/src/main/res/layout/fragment_interoperability_configuration.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<layout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <data> + <variable + name="countryData" + type="java.util.List<String>" /> + </data> + + <androidx.constraintlayout.widget.ConstraintLayout + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <include + android:id="@+id/interoperability_configuration_header" + layout="@layout/include_header" + android:layout_width="@dimen/match_constraint" + android:layout_height="wrap_content" + android:title="@{@string/interoperability_title}" + app:icon="@{@drawable/ic_back}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <androidx.constraintlayout.widget.ConstraintLayout + android:id="@+id/interoperability_configuration_country_list_container" + android:layout_width="match_parent" + android:layout_height="0dp" + android:layout_marginBottom="10dp" + android:paddingStart="@dimen/spacing_normal" + android:paddingEnd="@dimen/spacing_normal" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/interoperability_configuration_header"> + + <include + android:id="@+id/interoperability_configuration_country_list" + layout="@layout/include_interoperability" + android:layout_width="match_parent" + android:layout_height="match_parent" + app:title="@{@string/interoperability_configuration_title}" + app:firstSection="@{@string/interoperability_configuration_first_section}" + app:secondSection="@{@string/interoperability_configuration_second_section}" + app:countryListTitle="@{@string/interoperability_configuration_list_title}" + app:countryData="@{countryData}" + app:isOnboarding="@{false}" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + </androidx.constraintlayout.widget.ConstraintLayout> + </androidx.constraintlayout.widget.ConstraintLayout> +</layout> \ No newline at end of file diff --git a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_delta_interoperability.xml b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_delta_interoperability.xml new file mode 100644 index 0000000000000000000000000000000000000000..201ba397ed4c42d8faee0e23730d61f4d8fcc929 --- /dev/null +++ b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_delta_interoperability.xml @@ -0,0 +1,107 @@ +<?xml version="1.0" encoding="utf-8"?> +<layout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <data> + + <variable + name="countryData" + type="java.util.List<String>" /> + </data> + + <androidx.constraintlayout.widget.ConstraintLayout + android:id="@+id/onboarding_container" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fillViewport="true"> + + <androidx.constraintlayout.widget.ConstraintLayout + android:id="@+id/onboarding_header" + android:layout_width="match_parent" + android:layout_height="@dimen/header" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent"> + + <include + android:id="@+id/onboarding_button_back" + layout="@layout/include_button_icon" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + app:icon="@{@drawable/ic_close}" + app:iconDescription="@{@string/accessibility_close}" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toStartOf="@id/guideline_back" + app:layout_constraintTop_toTopOf="parent" /> + + <androidx.constraintlayout.widget.Guideline + android:id="@+id/guideline_back" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + app:layout_constraintGuide_begin="@dimen/guideline_back" /> + + </androidx.constraintlayout.widget.ConstraintLayout> + + + <include + android:id="@+id/onboarding_include" + layout="@layout/include_interoperability" + android:layout_width="0dp" + android:layout_height="0dp" + android:layout_marginBottom="@dimen/spacing_small" + android:focusable="false" + app:title="@{@string/interoperability_onboarding_delta_title}" + app:firstSection="@{@string/interoperability_onboarding_delta_subtitle}" + app:secondSection="@{@string/interoperability_onboarding_randomid_download_free}" + app:countryListTitle="@{@string/interoperability_onboarding_list_title}" + app:countryData="@{countryData}" + app:isOnboarding="@{false}" + app:showFooter="@{true}" + app:footerTitle="@{@string/interoperability_onboarding_delta_footerTitle}" + app:footerDescription="@{@string/interoperability_onboarding_delta_footerDescription}" + app:layout_constraintBottom_toTopOf="@+id/onboarding_button_next" + app:layout_constraintEnd_toEndOf="@id/guideline_end" + app:layout_constraintStart_toStartOf="@id/guideline_start" + app:layout_constraintTop_toBottomOf="@+id/guideline_top" /> + + <Button + android:id="@+id/onboarding_button_next" + style="@style/buttonPrimary" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:text="@string/onboarding_button_next" + app:layout_constraintBottom_toBottomOf="@id/guideline_bottom" + app:layout_constraintEnd_toEndOf="@id/guideline_end" + app:layout_constraintStart_toStartOf="@id/guideline_start" /> + + <androidx.constraintlayout.widget.Guideline + android:id="@+id/guideline_top" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="horizontal" + app:layout_constraintGuide_begin="@dimen/guideline_top_onboarding" /> + + <androidx.constraintlayout.widget.Guideline + android:id="@+id/guideline_bottom" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="horizontal" + app:layout_constraintGuide_end="@dimen/spacing_small" /> + + <androidx.constraintlayout.widget.Guideline + android:id="@+id/guideline_start" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + app:layout_constraintGuide_begin="@dimen/guideline_start" /> + + <androidx.constraintlayout.widget.Guideline + android:id="@+id/guideline_end" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + app:layout_constraintGuide_end="@dimen/guideline_end" /> + + </androidx.constraintlayout.widget.ConstraintLayout> +</layout> \ No newline at end of file diff --git a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_tracing.xml b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_tracing.xml index 5ca28ca9cb7d674df2a84595c3b952bdeb932e5d..5fa04241d229ffcde75f028ab85f7423dd2fd036 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_onboarding_tracing.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_onboarding_tracing.xml @@ -2,6 +2,12 @@ <layout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> + <data> + <variable + name="countryData" + type="java.util.List<String>" /> + </data> + <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/onboarding_tracing_container" android:layout_width="match_parent" @@ -54,6 +60,7 @@ app:locationHeadlineCard="@{@string/onboarding_tracing_location_headline}" app:locationIconCard="@{@drawable/ic_location}" app:layout_constraintBottom_toTopOf="@+id/onboarding_button_next" + app:countryData="@{countryData}" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/onboarding_button_back" diff --git a/Corona-Warn-App/src/main/res/layout/fragment_settings_tracing.xml b/Corona-Warn-App/src/main/res/layout/fragment_settings_tracing.xml index c4f43ce6256a4a4368b43266fe8a90d15ff807d1..3a00e410756ca699676bce9fb8ae81a707dbf994 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_settings_tracing.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_settings_tracing.xml @@ -16,14 +16,15 @@ <variable name="settingsViewModel" type="de.rki.coronawarnapp.ui.viewmodel.SettingsViewModel" /> + </data> <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/settings_tracing_container" - android:contentDescription="@string/settings_tracing_title" - android:focusable="true" android:layout_width="match_parent" - android:layout_height="match_parent"> + android:layout_height="match_parent" + android:contentDescription="@string/settings_tracing_title" + android:focusable="true"> <include android:id="@+id/settings_tracing_header" @@ -76,6 +77,18 @@ app:statusText="@{FormatterSettingsHelper.formatTracingStatusText(tracingViewModel.isTracingEnabled(), settingsViewModel.isBluetoothEnabled(), settingsViewModel.isLocationEnabled())}" app:subtitle="@{@string/settings_tracing_title}" /> + <include + android:id="@+id/settings_interoperability_row" + layout="@layout/include_settings_plain_row" + android:layout_width="@dimen/match_constraint" + android:layout_height="wrap_content" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@id/settings_tracing_switch_row" + app:showDivider="@{true}" + app:statusText="@{@string/settings_interoperability_subtitle}" + app:subtitle="@{@string/settings_interoperability_title}" /> + <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/settings_tracing_status" android:layout_width="@dimen/match_constraint" @@ -83,7 +96,7 @@ android:layout_marginTop="@dimen/spacing_small" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toBottomOf="@+id/settings_tracing_switch_row"> + app:layout_constraintTop_toBottomOf="@id/settings_interoperability_row"> <include android:id="@+id/settings_tracing_status_location" @@ -122,8 +135,8 @@ app:layout_constraintEnd_toStartOf="@+id/guideline_end" app:layout_constraintStart_toEndOf="@+id/guideline_start" app:layout_constraintTop_toTopOf="parent" - app:tracingViewModel="@{tracingViewModel}" - app:riskLevel="@{tracingViewModel.riskLevel}" /> + app:riskLevel="@{tracingViewModel.riskLevel}" + app:tracingViewModel="@{tracingViewModel}" /> <include layout="@layout/merge_guidelines_card" /> @@ -146,8 +159,8 @@ style="@style/body1" android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" - android:text="@string/settings_tracing_body_text" android:focusable="true" + android:text="@string/settings_tracing_body_text" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" diff --git a/Corona-Warn-App/src/main/res/layout/include_interoperability.xml b/Corona-Warn-App/src/main/res/layout/include_interoperability.xml new file mode 100644 index 0000000000000000000000000000000000000000..b76d1d5f9539accad90c0550210c6de8d879d5d8 --- /dev/null +++ b/Corona-Warn-App/src/main/res/layout/include_interoperability.xml @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="utf-8"?> +<layout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <data> + + <import type="de.rki.coronawarnapp.util.formatter.FormatterHelper" /> + + <variable + name="countryData" + type="java.util.List<String>" /> + + <variable + name="title" + type="String" /> + + <variable + name="firstSection" + type="String" /> + + <variable + name="secondSection" + type="String" /> + + <variable + name="thirdSection" + type="String" /> + + <variable + name="footerTitle" + type="String" /> + + <variable + name="footerDescription" + type="String" /> + + <variable + name="countryListTitle" + type="String" /> + + <variable + name="countryListHint" + type="String" /> + + <variable + name="isOnboarding" + type="Boolean" /> + + <variable + name="showFooter" + type="Boolean" /> + </data> + + <ScrollView + android:layout_width="match_parent" + android:layout_height="match_parent" + android:contentDescription="@{title}"> + + + <androidx.constraintlayout.widget.ConstraintLayout + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <androidx.constraintlayout.widget.ConstraintLayout + android:id="@+id/interoperability_header" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginBottom="@dimen/spacing_small" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent"> + + <ImageView + android:id="@+id/interoperability_illustration" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:contentDescription="@{@string/interoperability_eu_illustration_description}" + android:src="@drawable/ic_illustration_interoperability" + android:visibility="@{FormatterHelper.formatVisibility(!isOnboarding)}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <androidx.constraintlayout.widget.ConstraintLayout + android:id="@+id/interoperability_title_container" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_small" + app:layout_constraintTop_toBottomOf="@id/interoperability_illustration"> + + <TextView + style="@style/headline4" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:accessibilityHeading="true" + android:text="@{title}" + android:visibility="@{FormatterHelper.formatVisibility(!isOnboarding)}" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <TextView + style="@style/headline6" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:accessibilityHeading="true" + android:text="@{title}" + android:visibility="@{FormatterHelper.formatVisibility(isOnboarding)}" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + </androidx.constraintlayout.widget.ConstraintLayout> + + <TextView + android:id="@+id/label_interoperability_subtitle" + style="@style/body1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_small" + android:text="@{firstSection}" + android:visibility="@{FormatterHelper.formatVisibilityText(firstSection)}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@id/interoperability_title_container" /> + + <TextView + android:id="@+id/label_interoperability_subtitle2" + style="@style/body1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_normal" + android:text="@{secondSection}" + android:visibility="@{FormatterHelper.formatVisibilityText(secondSection)}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@id/label_interoperability_subtitle" /> + + <TextView + android:id="@+id/label_interoperability_subtitle3" + style="@style/body1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_normal" + android:text="@{thirdSection}" + android:visibility="@{FormatterHelper.formatVisibilityText(thirdSection)}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@id/label_interoperability_subtitle2" /> + + </androidx.constraintlayout.widget.ConstraintLayout> + + <TextView + android:id="@+id/country_header_description" + style="@style/headline6" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_normal" + android:accessibilityHeading="true" + android:text="@{countryListTitle}" + android:visibility="@{FormatterHelper.formatVisibilityText(countryListTitle)}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/interoperability_header" /> + + <de.rki.coronawarnapp.ui.view.CountryList + android:id="@+id/countryList" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_normal" + app:list="@{countryData}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/country_header_description" /> + + <TextView + android:id="@+id/interoperability_label_country_selection_information" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginBottom="@dimen/spacing_normal" + android:text="@{countryListHint}" + android:visibility="@{FormatterHelper.formatVisibilityText(countryListHint)}" + app:layout_constraintTop_toBottomOf="@+id/countryList" /> + + <androidx.constraintlayout.widget.ConstraintLayout + style="@style/cardTracing" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_normal" + android:padding="@dimen/card_padding" + android:visibility="@{FormatterHelper.formatVisibility(showFooter)}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/interoperability_label_country_selection_information"> + app:layout_constraintTop_toBottomOf="@+id/countryList"/> + + <TextView + android:id="@+id/interoperability_footer_title" + style="@style/headline6" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginEnd="@dimen/spacing_normal" + android:accessibilityHeading="true" + android:text="@{footerTitle}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <TextView + android:id="@+id/interoperability_footer_description" + style="@style/body1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_normal" + android:text="@{footerDescription}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/interoperability_footer_title" /> + </androidx.constraintlayout.widget.ConstraintLayout> + + </androidx.constraintlayout.widget.ConstraintLayout> + </ScrollView> +</layout> \ No newline at end of file diff --git a/Corona-Warn-App/src/main/res/layout/include_onboarding.xml b/Corona-Warn-App/src/main/res/layout/include_onboarding.xml index 677676bee63b97e2348eb4050bdfd4c34ef6eeb4..ec84cb8edd17e8d0a5a0c0f74e7782f101d75c84 100644 --- a/Corona-Warn-App/src/main/res/layout/include_onboarding.xml +++ b/Corona-Warn-App/src/main/res/layout/include_onboarding.xml @@ -57,6 +57,14 @@ name="easyLanguageText" type="String" /> + <variable + name="include" + type="android.view.View" /> + + <variable + name="countryData" + type="java.util.List<String>" /> + </data> <ScrollView @@ -72,8 +80,8 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:contentDescription="@{FormatterAccessibilityHelper.formatImage(illustrationDescription)}" - android:src="@{illustration}" android:focusable="true" + android:src="@{illustration}" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" @@ -82,12 +90,12 @@ <TextView android:id="@+id/onboarding_headline" style="@style/headline4" - android:accessibilityHeading="true" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="@dimen/spacing_normal" - android:text="@{headline}" + android:accessibilityHeading="true" android:focusable="true" + android:text="@{headline}" app:layout_constraintEnd_toEndOf="@id/guideline_end" app:layout_constraintStart_toStartOf="@id/guideline_start" app:layout_constraintTop_toBottomOf="@+id/onboarding_illustration" @@ -99,9 +107,9 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="@dimen/spacing_normal" + android:focusable="true" android:text="@{subtitle}" android:visibility="@{FormatterHelper.formatVisibilityText(subtitle)}" - android:focusable="true" app:layout_constraintEnd_toEndOf="@id/guideline_end" app:layout_constraintStart_toStartOf="@id/guideline_start" app:layout_constraintTop_toBottomOf="@+id/onboarding_headline" @@ -113,8 +121,8 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="@dimen/spacing_normal" - android:text="@{body}" android:focusable="true" + android:text="@{body}" app:layout_constraintEnd_toEndOf="@id/guideline_end" app:layout_constraintStart_toStartOf="@id/guideline_start" app:layout_constraintTop_toBottomOf="@+id/onboarding_subtitle" @@ -126,9 +134,9 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginTop="@dimen/spacing_normal" + android:focusable="true" android:text="@{bodyEmphasized}" android:visibility="@{FormatterHelper.formatVisibilityText(bodyEmphasized)}" - android:focusable="true" app:layout_constraintEnd_toEndOf="@id/guideline_end" app:layout_constraintStart_toStartOf="@id/guideline_start" app:layout_constraintTop_toBottomOf="@id/onboarding_body" @@ -143,14 +151,34 @@ android:clickable="true" android:focusable="true" android:linksClickable="true" - android:textColorLink="@color/colorTextTint" android:text="@string/onboarding_tracing_easy_language_explanation" + android:textColorLink="@color/colorTextTint" android:visibility="@{FormatterHelper.formatVisibilityText(easyLanguageText)}" app:layout_constraintEnd_toEndOf="@id/guideline_end" app:layout_constraintStart_toStartOf="@id/guideline_start" app:layout_constraintTop_toBottomOf="@id/onboarding_body_emphasized" tools:text="@string/onboarding_tracing_easy_language_explanation" /> + <include + android:id="@+id/onboarding_interoperability" + layout="@layout/include_interoperability" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_normal" + android:layout_marginBottom="@dimen/spacing_normal" + android:visibility="@{FormatterHelper.formatVisibility(countryData != null)}" + app:countryListTitle="@{@string/interoperability_onboarding_list_title}" + app:countryData="@{countryData}" + app:isOnboarding="@{true}" + app:layout_constraintBottom_toTopOf="@+id/onboarding_location_card" + app:layout_constraintEnd_toStartOf="@+id/guideline_end" + app:layout_constraintStart_toStartOf="@+id/guideline_start" + app:layout_constraintTop_toBottomOf="@+id/onboarding_easy_language" + app:firstSection="@{@string/interoperability_onboarding_first_section}" + app:secondSection="@{@string/interoperability_onboarding_second_section}" + app:thirdSection="@{@string/interoperability_onboarding_randomid_download_free}" + app:title="@{@string/interoperability_onboarding_title}" /> + <include android:id="@+id/onboarding_location_card" layout="@layout/include_tracing_status_card" @@ -164,7 +192,7 @@ app:icon="@{locationIconCard}" app:layout_constraintEnd_toStartOf="@+id/guideline_card_end" app:layout_constraintStart_toStartOf="@+id/guideline_card_start" - app:layout_constraintTop_toBottomOf="@+id/onboarding_easy_language" /> + app:layout_constraintTop_toBottomOf="@+id/onboarding_interoperability" /> <include android:id="@+id/onboarding_location_card_16_years" @@ -186,10 +214,11 @@ android:layout_width="@dimen/match_constraint" android:layout_height="wrap_content" android:layout_marginTop="@dimen/spacing_medium" + android:focusable="true" android:visibility="@{FormatterHelper.formatVisibilityText(headlineCard)}" app:body="@{bodyCard}" app:headline="@{headlineCard}" - android:focusable="true" + app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toStartOf="@+id/guideline_card_end" app:layout_constraintStart_toStartOf="@+id/guideline_card_start" app:layout_constraintTop_toBottomOf="@+id/onboarding_location_card_16_years" /> diff --git a/Corona-Warn-App/src/main/res/layout/include_settings_plain_row.xml b/Corona-Warn-App/src/main/res/layout/include_settings_plain_row.xml new file mode 100644 index 0000000000000000000000000000000000000000..357564afcea7fa7708003c2d3454b4dc0be47eb3 --- /dev/null +++ b/Corona-Warn-App/src/main/res/layout/include_settings_plain_row.xml @@ -0,0 +1,89 @@ +<?xml version="1.0" encoding="utf-8"?> +<layout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <data> + + <import type="de.rki.coronawarnapp.util.formatter.FormatterHelper" /> + + <import type="android.view.View" /> + + <variable + name="subtitle" + type="String" /> + + <variable + name="statusText" + type="String" /> + + <variable + name="showDivider" + type="Boolean" /> + + </data> + + <androidx.constraintlayout.widget.ConstraintLayout + android:layout_width="match_parent" + android:layout_height="wrap_content"> + + <androidx.constraintlayout.widget.ConstraintLayout + android:id="@+id/settings_plain_row" + style="@style/row" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:focusable="true" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent"> + + <TextView + android:id="@+id/settings_plain_row_header_subtitle" + style="@style/subtitle" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:text="@{subtitle}" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <TextView + android:id="@+id/settings_plain_row_header_body" + style="@style/body2Medium" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_mega_tiny" + android:text="@{statusText}" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/settings_plain_row_header_subtitle" /> + + </androidx.constraintlayout.widget.ConstraintLayout> + + <include + android:id="@+id/divider" + layout="@layout/include_divider" + android:layout_width="0dp" + android:layout_height="@dimen/card_divider" + android:visibility="@{FormatterHelper.formatVisibility(showDivider)}" + app:layout_constraintEnd_toEndOf="@id/guideline_end" + app:layout_constraintStart_toStartOf="@id/guideline_start" + app:layout_constraintTop_toBottomOf="@+id/settings_plain_row" /> + + <androidx.constraintlayout.widget.Guideline + android:id="@+id/guideline_start" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + app:layout_constraintGuide_begin="@dimen/guideline_start" /> + + <androidx.constraintlayout.widget.Guideline + android:id="@+id/guideline_end" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + app:layout_constraintGuide_end="@dimen/guideline_end" /> + + </androidx.constraintlayout.widget.ConstraintLayout> + +</layout> \ No newline at end of file diff --git a/Corona-Warn-App/src/main/res/layout/view_country_list_entry.xml b/Corona-Warn-App/src/main/res/layout/view_country_list_entry.xml new file mode 100644 index 0000000000000000000000000000000000000000..7c4f38049524cd359fbf50a83ea80e9db0049980 --- /dev/null +++ b/Corona-Warn-App/src/main/res/layout/view_country_list_entry.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/spacing_tiny" + android:layout_marginBottom="@dimen/spacing_tiny"> + + <ImageView + android:id="@+id/country_list_entry_image" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:srcCompat="@drawable/ic_country_eu" /> + + <TextView + android:id="@+id/country_list_entry_label" + style="@style/headline6" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_marginStart="48dp" + android:text="TextView" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <include + android:id="@+id/divider" + layout="@layout/include_divider" + android:layout_width="0dp" + android:layout_height="@dimen/card_divider" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintBottom_toBottomOf="parent" /> + +</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file diff --git a/Corona-Warn-App/src/main/res/navigation/nav_graph.xml b/Corona-Warn-App/src/main/res/navigation/nav_graph.xml index 61b00b60017520df908020800160fe9c24967683..5bfd9438ccb5efd598d803f80f012581c7ac17f3 100644 --- a/Corona-Warn-App/src/main/res/navigation/nav_graph.xml +++ b/Corona-Warn-App/src/main/res/navigation/nav_graph.xml @@ -38,6 +38,9 @@ <action android:id="@+id/action_mainFragment_to_mainOverviewFragment" app:destination="@id/mainOverviewFragment" /> + <action + android:id="@+id/action_mainFragment_to_onboardingDeltaInteroperabilityFragment" + app:destination="@id/onboardingDeltaInteroperabilityFragment" /> </fragment> <fragment @@ -79,7 +82,27 @@ android:id="@+id/settingsTracingFragment" android:name="de.rki.coronawarnapp.ui.settings.SettingsTracingFragment" android:label="@layout/fragment_settings_tracing" - tools:layout="@layout/fragment_settings_tracing" /> + tools:layout="@layout/fragment_settings_tracing"> + <action + android:id="@+id/action_settingsTracingFragment_to_interopCountryConfigurationFragment" + app:destination="@id/interopCountryConfigurationFragment" /> + </fragment> + + <fragment + android:id="@+id/onboardingDeltaInteroperabilityFragment" + android:name="de.rki.coronawarnapp.ui.onboarding.OnboardingDeltaInteroperabilityFragment" + android:label="OnboardingDeltaInteroperabilityFragment" /> + + <fragment + android:id="@+id/interopCountryConfigurationFragment" + android:name="de.rki.coronawarnapp.ui.interoperability.InteroperabilityConfigurationFragment" + android:label="InteropCountryConfigurationFragment" + tools:layout="@layout/fragment_interoperability_configuration"> + <action + android:id="@+id/action_interopCountryConfigurationFragment_to_settingTracingFragment" + app:destination="@id/settingsTracingFragment" /> + </fragment> + <fragment android:id="@+id/settingsNotificationFragment" @@ -300,4 +323,5 @@ android:id="@+id/action_submissionContactFragment_to_submissionTanFragment" app:destination="@id/submissionTanFragment" /> </fragment> + </navigation> diff --git a/Corona-Warn-App/src/main/res/values-de/strings.xml b/Corona-Warn-App/src/main/res/values-de/strings.xml index 1c71e9e11ceea09478aa51195e92d4b9c8f8eee2..d5590f04a1e6cdae416516970e504cf7f1ffee25 100644 --- a/Corona-Warn-App/src/main/res/values-de/strings.xml +++ b/Corona-Warn-App/src/main/res/values-de/strings.xml @@ -1,4 +1,5 @@ -<?xml version="1.0" encoding="UTF-8"?><resources xmlns:tools="http://schemas.android.com/tools" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2" tools:ignore="MissingTranslation"> +<?xml version="1.0" encoding="UTF-8"?> +<resources xmlns:tools="http://schemas.android.com/tools" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2" tools:ignore="MissingTranslation"> <!-- #################################### Preference Keys @@ -390,7 +391,7 @@ <!-- XTXT: onboarding - back description for screen reader --> <string name="onboarding_button_back_description">"Zurück"</string> <!-- XACT: Onboarding (together) page title --> - <string name="onboarding_onboarding_accessibility_title">"Einführung Seite 1 von 5: Gemeinsam Corona bekämpfen"</string> + <string name="onboarding_onboarding_accessibility_title">"Einführung Seite 1 von 6: Gemeinsam Corona bekämpfen"</string> <!-- XHED: onboarding(together) - fight corona --> <string name="onboarding_headline">"Gemeinsam Corona bekämpfen"</string> <!-- XHED: onboarding(together) - two/three line headline under an illustration --> @@ -402,14 +403,14 @@ <!-- XACT: onboarding(together) - illustraction description, header image --> <string name="onboarding_illustration_description">"Eine vielfältige Gruppe in einer Stadt benutzt Smartphones."</string> <!-- XACT: Onboarding (privacy) page title --> - <string name="onboarding_privacy_accessibility_title">"Einführung Seite 2 von 5. Datenschutz. Es folgt ein Langtext. Eine statische Weitertaste steht am unteren Rand des Bildschirms zur Verfügung."</string> + <string name="onboarding_privacy_accessibility_title">"Einführung Seite 2 von 6. Datenschutz. Es folgt ein Langtext. Eine statische Weitertaste steht am unteren Rand des Bildschirms zur Verfügung."</string> <!-- XHED: onboarding(privacy) - title --> <string name="onboarding_privacy_headline">"Datenschutz"</string> <!-- XACT: onboarding(privacy) - illustraction description, header image --> <string name="onboarding_privacy_illustration_description">"Eine Frau mit einem Handy benutzt die Corona-Warn-App, ein Vorhängeschloss auf einem Schild steht als Symbol für verschlüsselte Daten."</string> <!-- XACT: Onboarding (tracing) page title --> - <string name="onboarding_tracing_accessibility_title">"Einführung Seite 3 von 5: Wie Sie die Risiko Ermittlung ermöglichen"</string> + <string name="onboarding_tracing_accessibility_title">"Einführung Seite 3 von 6: Wie Sie die Risiko Ermittlung ermöglichen"</string> <!-- XHED: onboarding(tracing) - how to enable tracing --> <string name="onboarding_tracing_headline">"Wie Sie die Risiko-Ermittlung ermöglichen"</string> <!-- XHED: onboarding(tracing) - two/three line headline under an illustration --> @@ -467,7 +468,7 @@ <!-- XBUT: onboarding(tracing) - button enable tracing --> <string name="onboarding_tracing_location_button">"Geräte-Einstellungen öffnen"</string> <!-- XACT: Onboarding (test) page title --> - <string name="onboarding_test_accessibility_title">"Einführung Seite 4 von 5: Falls Sie positiv getestet wurden"</string> + <string name="onboarding_test_accessibility_title">"Einführung Seite 5 von 6: Falls Sie positiv getestet wurden"</string> <!-- XHED: onboarding(test) - about positive tests --> <string name="onboarding_test_headline">"Falls Sie Corona-positiv getestet werden …"</string> <!-- XHED: onboarding(test) - two/three line headline under an illustration --> @@ -477,7 +478,7 @@ <!-- XACT: onboarding(test) - illustraction description, header image --> <string name="onboarding_test_illustration_description">"Ein positiver Testbefund wird verschlüsselt ins System übermittelt, das nun andere Nutzerinnen und Nutzer warnt."</string> <!-- XACT: Onboarding (datashare) page title --> - <string name="onboarding_notifications_accessibility_title">"Einführung Seite 5 von 5: Warnungen erhalten und Risiken erkennen"</string> + <string name="onboarding_notifications_accessibility_title">"Einführung Seite 6 von 6: Warnungen erhalten und Risiken erkennen"</string> <!-- XHED: onboarding(datashare) - about positive tests --> <string name="onboarding_notifications_headline">"Warnungen erhalten, Risiken kennen"</string> <!-- XHED: onboarding(datashare) - two/three line headline under an illustration --> @@ -568,7 +569,7 @@ <!-- XACT: settings(tracing) - describes illustration --> <string name="settings_tracing_bluetooth_illustration_description_inactive">"Eine Person hat Bluetooth auf ihrem Smartphone ausgeschaltet, eine Begegnung mit zwei weiteren Personen wird daher nicht aufgezeichnet."</string> <!-- XACT: settings(tracing) - describes illustration --> - <string name="settings_tracing_location_illustration_description_inactive"/> + <string name="settings_tracing_location_illustration_description_inactive" /> <!-- XACT: settings(tracing) - describes illustration --> <string name="settings_tracing_connection_illustration_description_inactive">"Eine Person hat die Internetverbindung auf ihrem Smartphone ausgeschaltet, eine Begegnung mit zwei weiteren Personen wird daher nicht aufgezeichnet."</string> @@ -633,7 +634,7 @@ <!-- YTXT: settings(background priority) - description text --> <string name="settings_background_priority_body">"Wenn Sie die Priorisierte Hintergrundaktivität einschalten, kann die App Ihren Risikostatus immer automatisch prüfen. Damit wird die Optimierung des Akku-Verbrauchs ausschließlich für die Corona-Warn-App deaktiviert."</string> <!-- XACT: settings(background priority) - illustraction description --> - <string name="settings_background_priority_illustration_description"/> + <string name="settings_background_priority_illustration_description" /> <!-- XTXT: settings(background priority) - explains user what to do on card if background priority is enabled --> <string name="settings_background_priority_card_body">"Um die priorisierte Hintergrundaktivität auszuschalten, deaktivieren Sie sie bitte in den Geräte-Einstellungen."</string> <!-- XBUT: settings(background priority) - go to operating system settings button on card --> @@ -1185,4 +1186,109 @@ <string name="test_api_body_other_keys">"Other key"</string> <!-- NOTR --> <string name="test_api_calculate_risk_level">"Calculate Risk Level"</string> + + <!-- XHED: Country Entry for Austria --> + <string name="country_name_at">Österreich</string> + <!-- XHED: Country Entry for Belgium --> + <string name="country_name_be">Belgien</string> + <!-- XHED: Country Entry for Bulgaria --> + <string name="country_name_bg">Bulgarien</string> + <!-- XHED: Country Entry for Switzerland --> + <string name="country_name_ch">Schweiz</string> + <!-- XHED: Country Entry for Cyprus --> + <string name="country_name_cy">Zypern</string> + <!-- XHED: Country Entry for Czech Republic --> + <string name="country_name_cz">Tschechien</string> + <!-- XHED: Country Entry for Germany --> + <string name="country_name_de">Deutschland</string> + <!-- XHED: Country Entry for Denmark --> + <string name="country_name_dk">Dänemark</string> + <!-- XHED: Country Entry for Estonia --> + <string name="country_name_ee">Estland</string> + <!-- XHED: Country Entry for Spain --> + <string name="country_name_es">Spanien</string> + <!-- XHED: Country Entry for Finland --> + <string name="country_name_fi">Finland</string> + <!-- XHED: Country Entry for France --> + <string name="country_name_fr">Frankreich</string> + <!-- XHED: Country Entry for Great Britain --> + <string name="country_name_uk">Großbritannien</string> + <!-- XHED: Country Entry for Greece --> + <string name="country_name_gr">Griechenland</string> + <!-- XHED: Country Entry for Croatia --> + <string name="country_name_hr">Kroatien</string> + <!-- XHED: Country Entry for Hungary --> + <string name="country_name_hu">Ungarn</string> + <!-- XHED: Country Entry for Ireland --> + <string name="country_name_ie">Irland</string> + <!-- XHED: Country Entry for Iceland --> + <string name="country_name_is">Island</string> + <!-- XHED: Country Entry for Italy --> + <string name="country_name_it">Italien</string> + <!-- XHED: Country Entry for Liechtenstein --> + <string name="country_name_li">Liechtenstein</string> + <!-- XHED: Country Entry for Lithuania --> + <string name="country_name_lt">Litauen</string> + <!-- XHED: Country Entry for Luxemburg --> + <string name="country_name_lu">Luxemburg</string> + <!-- XHED: Country Entry for Latvia --> + <string name="country_name_lv">Lettland</string> + <!-- XHED: Country Entry for Malta --> + <string name="country_name_mt">Malta</string> + <!-- XHED: Country Entry for Netherlands --> + <string name="country_name_nl">Niederlande</string> + <!-- XHED: Country Entry for Norway --> + <string name="country_name_no">Norwegen</string> + <!-- XHED: Country Entry for Poland --> + <string name="country_name_pl">Polen</string> + <!-- XHED: Country Entry for Portugal --> + <string name="country_name_pt">Portugal</string> + <!-- XHED: Country Entry for Rumania --> + <string name="country_name_ro">Rumänien</string> + <!-- XHED: Country Entry for Sweden --> + <string name="country_name_se">Schweden</string> + <!-- XHED: Country Entry for Slovenia --> + <string name="country_name_si">Slowenien</string> + <!-- XHED: Country Entry for Slovakia --> + <string name="country_name_sk">Slowakei</string> + + <!-- XHED: Title of the interoperbaility information view. --> + <string name="interoperability_title">Europaweite\nRisiko-Ermittlung</string> + + <!-- XHED: Setting title of interoperability in the tracing settings view --> + <string name="settings_interoperability_title">Länderübergreifende Risiko-Ermittlung</string> + <!-- XTXT: Settings description of the interoperability in the tracing settings view --> + <string name="settings_interoperability_subtitle">Teilnehmende Länder</string> + + <!-- XHED: Header of interoperability information/configuration view --> + <string name="interoperability_configuration_title">Länderübergreifende Risiko-Ermittlung</string> + <!-- XTXT: First section after the header of the interoperability information/configuration view --> + <string name="interoperability_configuration_first_section">Die Corona-Warn-App warnt länderübergreifend vor möglichen Infektionen, indem Daten über eine europäische Infrastruktur ausgetauscht werden.</string> + <!-- XTXT: Second section after the header of the interoperability information/configuration view --> + <string name="interoperability_configuration_second_section">Es werden keine persönlischen Daten ausgetauscht. Für den länderübergreifenden Datenaustausch über die Corona-Warn-App fallen keine zusätzlichen Kosten für Sie an.</string> + <!-- XHED: Header right above the country list in the interoperability information/configuration view --> + <string name="interoperability_configuration_list_title">Derzeit nehmen die folgenden Länder teil:</string> + + <!-- XHED: Sub header introducing interoperability in the tracing step of onboarding --> + <string name="interoperability_onboarding_title">Länderübergreifende\nRisiko-Ermittlung</string> + <!-- YMSG: Onboarding tracing step first section in interoperability after the title --> + <string name="interoperability_onboarding_first_section">Mehrere Länder in der EU arbeiten zusammen, um länderübergreifende Warnungen zu ermöglichen. Das heißt es können die Kontakte mit Nutzern der offiziellen Corona-Apps aller teilnehmenden Länder berücksichtigt werden.</string> + <!-- YMSG: Onboarding tracing step second section in interoperability after the title --> + <string name="interoperability_onboarding_second_section">Hat ein Nutzer seine Zufalls-IDs über das von den teilnehmenden Ländern gemeinsam betriebene Serversystem zur Verfügung gestellt, können Nutzer der offiziellen Corona-Apps der teilnehmender Länder gewarnt werden.</string> + <!-- YMSG: Onboarding tracing step third section in interoperability after the title. --> + <string name="interoperability_onboarding_randomid_download_free">Der tägliche Download der Zufalls-IDs ist für Sie kostenlos – Ihr Datenvolumen wird nicht belastet und es fallen im europäischen Ausland keine Roaming-Gebühren an.</string> + <!-- XTXT: Small header above the country list in the onboarding screen for interoperability. --> + <string name="interoperability_onboarding_list_title">Derzeit nehmen die folgenden Länder teil:</string> + + <!-- XHED: Header of the delta onboarding screen for interoperability. If the user opens the app for the first time after the interoperability update --> + <string name="interoperability_onboarding_delta_title">Europaweite\nRisiko-Ermittlung</string> + <!-- XTXT: Description of the interoperability extension of the app. Below interoperability_onboarding_delta_title --> + <string name="interoperability_onboarding_delta_subtitle">Die Funktion der Corona-Warn-App wurde erweitert. Es arbeiten nun mehrere Länder in der EU zusammen, um über das gemeinsam betriebene Serversystem länderübergreifende Warnungen zu ermöglichen. So können bei der Risiko-Ermittlung jetzt auch die Kontakte mit Nutzern der offiziellen Corona-Apps anderer teilnehmender Länder berücksichtigt werden.</string> + <!-- XHED: Header of private data in the delta onboarding interoperability view --> + <string name="interoperability_onboarding_delta_footerTitle">Hinweis zur Datenverarbeitung</string> + <!-- XTXT: Description of private data in the delta onboarding interoperability view. Below interoperability_onboarding_delta_footerTitle --> + <string name="interoperability_onboarding_delta_footerDescription"></string> + + <!-- XACT: interoperability (eu) - illustraction description, explanation image --> + <string name="interoperability_eu_illustration_description">Eine Hand hält ein Smartphone. Im Hintergrund ist Europa und die europäische Flagge illustriert</string> </resources> diff --git a/Corona-Warn-App/src/main/res/values/strings.xml b/Corona-Warn-App/src/main/res/values/strings.xml index 3aeb91714d222816f492d4429bd98ef0d4190fc6..b3cefb1f646c00bad0c814abfd9880c9da002360 100644 --- a/Corona-Warn-App/src/main/res/values/strings.xml +++ b/Corona-Warn-App/src/main/res/values/strings.xml @@ -1,4 +1,5 @@ -<?xml version="1.0" encoding="UTF-8"?><resources xmlns:tools="http://schemas.android.com/tools" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2" tools:ignore="MissingTranslation"> +<?xml version="1.0" encoding="UTF-8"?> +<resources xmlns:tools="http://schemas.android.com/tools" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2" tools:ignore="MissingTranslation"> <!-- #################################### Preference Keys @@ -75,6 +76,10 @@ <string name="preference_risk_days_explanation_shown"><xliff:g id="preference">"preference_risk_days_explanation_shown"</xliff:g></string> <!-- NOTR --> <string name="preference_background_notification"><xliff:g id="preference">"preference_background_notification"</xliff:g></string> + <!-- NOTR --> + <string name="preference_interoperability_selected_country_codes"><xliff:g id="preference">"preference_interoperability_selected_country_codes"</xliff:g></string> + <!-- NOTR --> + <string name="preference_interoperability_all_countries_selected">preference_interoperability_all_countries_selected</string> <!-- #################################### Generics @@ -545,7 +550,7 @@ <!-- XTXT: settings(tracing) - explains user what to do on card if location is disabled --> <string name="settings_tracing_status_location_body">"Your location cannot be accessed. Google and/or Android requires access to your device\'s location to use Bluetooth."</string> <!-- XTXT: settings(tracing) - explains user what to do on card if location is disabled: URL --> - <string name="settings_tracing_status_location_body_url"/> + <string name="settings_tracing_status_location_body_url" /> <!-- XBUT: settings(tracing) - go to operating system settings button on card - location --> <string name="settings_tracing_status_location_button">"Open Device Settings"</string> <!--XHED : settings(tracing) - headline on card about the current status and what to do --> @@ -1189,4 +1194,109 @@ <string name="test_api_calculate_risk_level">"Calculate Risk Level"</string> <!-- NOTR --> <string name="test_api_switch_background_notifications">"Background Notifications"</string> + + <!-- XHED: Country Entry for Austria --> + <string name="country_name_at"></string> + <!-- XHED: Country Entry for Belgium --> + <string name="country_name_be"></string> + <!-- XHED: Country Entry for Bulgaria --> + <string name="country_name_bg"></string> + <!-- XHED: Country Entry for Switzerland --> + <string name="country_name_ch"></string> + <!-- XHED: Country Entry for Cyprus --> + <string name="country_name_cy"></string> + <!-- XHED: Country Entry for Czech Republic --> + <string name="country_name_cz"></string> + <!-- XHED: Country Entry for Germany --> + <string name="country_name_de"></string> + <!-- XHED: Country Entry for Denmark --> + <string name="country_name_dk"></string> + <!-- XHED: Country Entry for Estonia --> + <string name="country_name_ee"></string> + <!-- XHED: Country Entry for Spain --> + <string name="country_name_es"></string> + <!-- XHED: Country Entry for Finland --> + <string name="country_name_fi"></string> + <!-- XHED: Country Entry for France --> + <string name="country_name_fr"></string> + <!-- XHED: Country Entry for Great Britain --> + <string name="country_name_uk"></string> + <!-- XHED: Country Entry for Greece --> + <string name="country_name_gr"></string> + <!-- XHED: Country Entry for Croatia --> + <string name="country_name_hr"></string> + <!-- XHED: Country Entry for Hungary --> + <string name="country_name_hu"></string> + <!-- XHED: Country Entry for Ireland --> + <string name="country_name_ie"></string> + <!-- XHED: Country Entry for Iceland --> + <string name="country_name_is"></string> + <!-- XHED: Country Entry for Italy --> + <string name="country_name_it"></string> + <!-- XHED: Country Entry for Liechtenstein --> + <string name="country_name_li"></string> + <!-- XHED: Country Entry for Lithuania --> + <string name="country_name_lt"></string> + <!-- XHED: Country Entry for Luxemburg --> + <string name="country_name_lu"></string> + <!-- XHED: Country Entry for Latvia --> + <string name="country_name_lv"></string> + <!-- XHED: Country Entry for Malta --> + <string name="country_name_mt"></string> + <!-- XHED: Country Entry for Netherlands --> + <string name="country_name_nl"></string> + <!-- XHED: Country Entry for Norway --> + <string name="country_name_no"></string> + <!-- XHED: Country Entry for Poland --> + <string name="country_name_pl"></string> + <!-- XHED: Country Entry for Portugal --> + <string name="country_name_pt"></string> + <!-- XHED: Country Entry for Rumania --> + <string name="country_name_ro"></string> + <!-- XHED: Country Entry for Sweden --> + <string name="country_name_se"></string> + <!-- XHED: Country Entry for Slovenia --> + <string name="country_name_si"></string> + <!-- XHED: Country Entry for Slovakia --> + <string name="country_name_sk"></string> + + <!-- XHED: Title of the interoperbaility information view. --> + <string name="interoperability_title"></string> + + <!-- XHED: Setting title of interoperability in the tracing settings view --> + <string name="settings_interoperability_title"></string> + <!-- XTXT: Settings description of the interoperability in the tracing settings view --> + <string name="settings_interoperability_subtitle"></string> + + <!-- XHED: Header of interoperability information/configuration view --> + <string name="interoperability_configuration_title"></string> + <!-- XTXT: First section after the header of the interoperability information/configuration view --> + <string name="interoperability_configuration_first_section"></string> + <!-- XTXT: Second section after the header of the interoperability information/configuration view --> + <string name="interoperability_configuration_second_section"></string> + <!-- XHED: Header right above the country list in the interoperability information/configuration view --> + <string name="interoperability_configuration_list_title"></string> + + <!-- XHED: Sub header introducing interoperability in the tracing step of onboarding --> + <string name="interoperability_onboarding_title"></string> + <!-- YMSG: Onboarding tracing step first section in interoperability after the title --> + <string name="interoperability_onboarding_first_section"></string> + <!-- YMSG: Onboarding tracing step second section in interoperability after the title --> + <string name="interoperability_onboarding_second_section"></string> + <!-- YMSG: Onboarding tracing step third section in interoperability after the title. --> + <string name="interoperability_onboarding_randomid_download_free"></string> + <!-- XTXT: Small header above the country list in the onboarding screen for interoperability. --> + <string name="interoperability_onboarding_list_title"></string> + + <!-- XHED: Header of the delta onboarding screen for interoperability. If the user opens the app for the first time after the interoperability update --> + <string name="interoperability_onboarding_delta_title"></string> + <!-- XTXT: Description of the interoperability extension of the app. Below interoperability_onboarding_delta_title --> + <string name="interoperability_onboarding_delta_subtitle"></string> + <!-- XHED: Header of private data in the delta onboarding interoperability view --> + <string name="interoperability_onboarding_delta_footerTitle"></string> + <!-- XTXT: Description of private data in the delta onboarding interoperability view. Below interoperability_onboarding_delta_footerTitle --> + <string name="interoperability_onboarding_delta_footerDescription"></string> + + <!-- XACT: interoperability (eu) - illustraction description, explanation image --> + <string name="interoperability_eu_illustration_description"></string> </resources> \ No newline at end of file