diff --git a/app/src/main/java/com/example/pbd_jwr/ScanActivity.kt b/app/src/main/java/com/example/pbd_jwr/ScanActivity.kt index 79129cff2ef8ca932aadcf697690806ca2935d4a..b3718c8c7cdbbdb6ef549c873287946fd791b351 100644 --- a/app/src/main/java/com/example/pbd_jwr/ScanActivity.kt +++ b/app/src/main/java/com/example/pbd_jwr/ScanActivity.kt @@ -59,7 +59,6 @@ class ScanActivity : AppCompatActivity() { ) - override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_scan) @@ -142,6 +141,8 @@ class ScanActivity : AppCompatActivity() { resultIntent.putExtra("transactionDummyData", transactionDummyData) setResult(Activity.RESULT_OK, resultIntent) dialog.dismiss() + + finish() } @@ -325,6 +326,28 @@ class ScanActivity : AppCompatActivity() { return transactions } + private fun deleteImageFile() { + imageUri?.let { uri -> + try { + val contentResolver = applicationContext.contentResolver + val deleteSuccess = contentResolver.delete(uri, null, null) > 0 + if (deleteSuccess) { + Log.d("ScanActivity", "Image deleted successfully.") + } else { + Log.d("ScanActivity", "Failed to delete image.") + } + } catch (e: Exception) { + Log.e("ScanActivity", "Error deleting image", e) + } + } + } + + + override fun finish() { + deleteImageFile() + super.finish() + } + @Deprecated("Deprecated in Java") override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) { super.onActivityResult(requestCode, resultCode, data) diff --git a/app/src/main/java/com/example/pbd_jwr/ui/settings/SettingsFragment.kt b/app/src/main/java/com/example/pbd_jwr/ui/settings/SettingsFragment.kt index 7bff66d226764b70185ffea9649b608d6ed53e72..ba30aa388a0e694192026318ea431e550d5e4db0 100644 --- a/app/src/main/java/com/example/pbd_jwr/ui/settings/SettingsFragment.kt +++ b/app/src/main/java/com/example/pbd_jwr/ui/settings/SettingsFragment.kt @@ -14,6 +14,8 @@ import android.view.ViewGroup import android.widget.Toast import androidx.fragment.app.Fragment import androidx.fragment.app.viewModels +import androidx.navigation.fragment.findNavController +import com.example.pbd_jwr.R import com.example.pbd_jwr.databinding.FragmentSettingsBinding import com.example.pbd_jwr.encryptedSharedPref.EncryptedSharedPref import com.example.pbd_jwr.ui.transaction.TransactionViewModel @@ -47,6 +49,10 @@ class SettingsFragment : Fragment() { binding.saveBtn.setOnClickListener { saveTransactionsToExcel() } + + binding.twibbonButton.setOnClickListener { + findNavController().navigate(R.id.action_settingsFragment_to_twibbonFragment) + } } private fun sendEmailWithAttachment(toEmail: String?) { diff --git a/app/src/main/java/com/example/pbd_jwr/ui/twibbon/TwibbonFragment.kt b/app/src/main/java/com/example/pbd_jwr/ui/twibbon/TwibbonFragment.kt new file mode 100644 index 0000000000000000000000000000000000000000..54bf0ae14b6c2c3d2b9247e797f05b8273c34340 --- /dev/null +++ b/app/src/main/java/com/example/pbd_jwr/ui/twibbon/TwibbonFragment.kt @@ -0,0 +1,296 @@ +package com.example.pbd_jwr.ui.twibbon + +import android.Manifest +import android.content.pm.PackageManager +import android.graphics.Bitmap +import android.graphics.BitmapFactory +import android.graphics.Canvas +import android.graphics.ImageFormat +import android.graphics.Matrix +import android.graphics.Rect +import android.graphics.RectF +import android.graphics.YuvImage +import android.graphics.drawable.BitmapDrawable +import android.graphics.drawable.VectorDrawable +import android.net.Uri +import android.os.Bundle +import android.util.Log +import android.view.LayoutInflater +import android.view.View +import android.view.ViewGroup +import android.widget.Toast +import androidx.camera.core.CameraSelector +import androidx.camera.core.ImageCapture +import androidx.camera.core.ImageCaptureException +import androidx.camera.core.ImageProxy +import androidx.camera.core.Preview +import androidx.camera.lifecycle.ProcessCameraProvider +import androidx.core.content.ContextCompat +import androidx.fragment.app.Fragment +import com.example.pbd_jwr.R +import com.example.pbd_jwr.databinding.FragmentTwibbonBinding +import java.io.ByteArrayOutputStream +import java.io.File +import java.text.SimpleDateFormat +import java.util.Locale +import java.util.concurrent.ExecutorService +import java.util.concurrent.Executors + +class TwibbonFragment : Fragment() { + + private var _binding: FragmentTwibbonBinding? = null + private val binding get() = _binding!! + + private lateinit var cameraExecutor: ExecutorService + private var lensFacing = CameraSelector.LENS_FACING_FRONT + private var imageCapture: ImageCapture? = null + + companion object { + private val TAG = TwibbonFragment::class.java.simpleName + private const val REQUEST_CODE_PERMISSIONS = 10 + private val REQUIRED_PERMISSIONS = arrayOf(Manifest.permission.CAMERA) + } + + override fun onCreateView( + inflater: LayoutInflater, + container: ViewGroup?, + savedInstanceState: Bundle? + ): View { + _binding = FragmentTwibbonBinding.inflate(inflater, container, false) + cameraExecutor = Executors.newSingleThreadExecutor() + return binding.root + } + + override fun onViewCreated(view: View, savedInstanceState: Bundle?) { + super.onViewCreated(view, savedInstanceState) + + if (allPermissionsGranted()) { + startCamera() + } else { + requestPermissions(REQUIRED_PERMISSIONS, REQUEST_CODE_PERMISSIONS) + } + + binding.retakeBtn.isEnabled = false + + binding.twibbonChangeCameraBtn.setOnClickListener { + lensFacing = if (lensFacing == CameraSelector.LENS_FACING_BACK) { + CameraSelector.LENS_FACING_FRONT + } else { + CameraSelector.LENS_FACING_BACK + } + startCamera() + } + + binding.captureBtn.setOnClickListener { + takePicture() + } + + binding.retakeBtn.setOnClickListener { + resetLayover() + } + } + + + private fun startCamera() { + val cameraProviderFuture = ProcessCameraProvider.getInstance(requireContext()) + cameraProviderFuture.addListener({ + val cameraProvider: ProcessCameraProvider = cameraProviderFuture.get() + + bindCameraUseCases(cameraProvider) + + val preview = Preview.Builder().build().also { + it.setSurfaceProvider(binding.cameraView.surfaceProvider) + } + + imageCapture = ImageCapture.Builder().build() + + val cameraSelector = CameraSelector.Builder() + .requireLensFacing(lensFacing) + .build() + + try { + cameraProvider.unbindAll() + + cameraProvider.bindToLifecycle( + this, cameraSelector, preview, imageCapture) + Log.d(TAG, "Camera binding successful") + } catch (exc: Exception) { + Log.e(TAG, "Use case binding failed", exc) + } + + }, ContextCompat.getMainExecutor(requireContext())) + } + + private fun stopCamera() { + val cameraProviderFuture = ProcessCameraProvider.getInstance(requireContext()) + cameraProviderFuture.addListener({ + val cameraProvider: ProcessCameraProvider = cameraProviderFuture.get() + cameraProvider.unbindAll() + }, ContextCompat.getMainExecutor(requireContext())) + } + + + private fun bindCameraUseCases(cameraProvider: ProcessCameraProvider) { + val preview = Preview.Builder() + .build() + .also { + it.setSurfaceProvider(binding.cameraView.surfaceProvider) + } + + imageCapture = ImageCapture.Builder().build() + + val cameraSelector = CameraSelector.Builder() + .requireLensFacing(lensFacing) + .build() + + try { + cameraProvider.unbindAll() + + cameraProvider.bindToLifecycle( + this, cameraSelector, preview, imageCapture) + } catch (exc: Exception) { + Log.e(TAG, "Use case binding failed", exc) + } + } + + private fun takePicture() { + val imageCapture = imageCapture ?: return + + binding.captureBtn.isEnabled = false + binding.twibbonChangeCameraBtn.isEnabled = false + binding.retakeBtn.isEnabled = true + + // Menggunakan executor untuk menjalankan tugas di background thread + val executor = ContextCompat.getMainExecutor(requireContext()) + imageCapture.takePicture(executor, object : ImageCapture.OnImageCapturedCallback() { + override fun onCaptureSuccess(image: ImageProxy) { + super.onCaptureSuccess(image) + val backgroundBitmap = imageProxyToBitmap(image) + val overlayBitmap = loadOverlayBitmap() + + // Flip gambar jika menggunakan kamera depan + val flippedBitmap = if (lensFacing == CameraSelector.LENS_FACING_FRONT) { + flipBitmap(backgroundBitmap, horizontal = true) + } else { + backgroundBitmap + } + + val combinedBitmap = combineImages(flippedBitmap, overlayBitmap) + image.close() // Sangat penting untuk menutup ImageProxy ketika selesai digunakan + + // Update UI di thread UI + activity?.runOnUiThread { + binding.twibbonLayover.setImageBitmap(combinedBitmap) + stopCamera() + } + } + + + override fun onError(exception: ImageCaptureException) { + Log.e(TAG, "Image capture failed: ${exception.message}", exception) + activity?.runOnUiThread { + Toast.makeText(context, "Failed to capture image, please try again.", Toast.LENGTH_SHORT).show() + + binding.captureBtn.isEnabled = true + binding.twibbonChangeCameraBtn.isEnabled = true + binding.retakeBtn.isEnabled = false + } + } + }) + } + + // Fungsi untuk mengkonversi ImageProxy ke Bitmap + private fun imageProxyToBitmap(image: ImageProxy): Bitmap { + val planeProxy = image.planes[0] + val buffer = planeProxy.buffer + val bytes = ByteArray(buffer.remaining()) + buffer.get(bytes) + return BitmapFactory.decodeByteArray(bytes, 0, bytes.size) + } + + fun flipBitmap(bitmap: Bitmap, horizontal: Boolean = true, vertical: Boolean = false): Bitmap { + val matrix = Matrix() + matrix.preScale(if (horizontal) -1f else 1f, if (vertical) -1f else 1f) + return Bitmap.createBitmap(bitmap, 0, 0, bitmap.width, bitmap.height, matrix, true) + } + + private fun loadOverlayBitmap(): Bitmap { + return vectorDrawableToBitmap(R.drawable.twibbon_layover) + } + + private fun resetLayover() { + binding.twibbonLayover.setImageResource(R.drawable.twibbon_layover) + startCamera() + binding.captureBtn.isEnabled = true + binding.twibbonChangeCameraBtn.isEnabled = true + binding.retakeBtn.isEnabled = false + } + + + private fun vectorDrawableToBitmap(drawableId: Int): Bitmap { + val drawable = ContextCompat.getDrawable(requireContext(), drawableId) as VectorDrawable + val bitmap = Bitmap.createBitmap(drawable.intrinsicWidth, drawable.intrinsicHeight, Bitmap.Config.ARGB_8888) + val canvas = Canvas(bitmap) + drawable.setBounds(0, 0, canvas.width, canvas.height) + drawable.draw(canvas) + return bitmap + } + + private fun combineImages(background: Bitmap, overlay: Bitmap): Bitmap { + val result = Bitmap.createBitmap(overlay.width, overlay.height, Bitmap.Config.ARGB_8888) + val canvas = Canvas(result) + + // Skala untuk centerCrop + val backgroundRatio = background.width.toFloat() / background.height + val resultRatio = result.width.toFloat() / result.height + val scale = if (backgroundRatio > resultRatio) { + result.height.toFloat() / background.height + } else { + result.width.toFloat() / background.width + } + + val scaledWidth = scale * background.width + val scaledHeight = scale * background.height + val left = (result.width - scaledWidth) / 2 + val top = (result.height - scaledHeight) / 2 + + // Menggambar background dengan skala centerCrop + canvas.drawBitmap(background, Rect(0, 0, background.width, background.height), RectF(left, top, left + scaledWidth, top + scaledHeight), null) + + // Menggambar overlay di atasnya + canvas.drawBitmap(overlay, 0f, 0f, null) + + return result + } + + + + + private fun allPermissionsGranted() = REQUIRED_PERMISSIONS.all { + ContextCompat.checkSelfPermission( + requireContext(), it) == PackageManager.PERMISSION_GRANTED + } + + @Deprecated("Deprecated in Java") + override fun onRequestPermissionsResult( + requestCode: Int, + permissions: Array<out String>, + grantResults: IntArray + ) { + if (requestCode == REQUEST_CODE_PERMISSIONS) { + if (allPermissionsGranted()) { + startCamera() + } else { + // Handle permission not granted + } + } + } + + + override fun onDestroyView() { + super.onDestroyView() + _binding = null + cameraExecutor.shutdown() + } + +} \ No newline at end of file diff --git a/app/src/main/java/com/example/pbd_jwr/ui/twibbon/TwibbonViewModel.kt b/app/src/main/java/com/example/pbd_jwr/ui/twibbon/TwibbonViewModel.kt new file mode 100644 index 0000000000000000000000000000000000000000..3d1ff86bea94dd0f98b49ac079e95bb68420c1aa --- /dev/null +++ b/app/src/main/java/com/example/pbd_jwr/ui/twibbon/TwibbonViewModel.kt @@ -0,0 +1,13 @@ +package com.example.pbd_jwr.ui.twibbon + +import androidx.lifecycle.LiveData +import androidx.lifecycle.MutableLiveData +import androidx.lifecycle.ViewModel + +class TwibbonViewModel : ViewModel() { + + private val _text = MutableLiveData<String>().apply { + value = "This is twibbon Fragment" + } + val text: LiveData<String> = _text +} \ No newline at end of file diff --git a/app/src/main/res/drawable/baseline_autorenew_24.xml b/app/src/main/res/drawable/baseline_autorenew_24.xml new file mode 100644 index 0000000000000000000000000000000000000000..b8092c85352ad6cf9366a49030cfd4114c703823 --- /dev/null +++ b/app/src/main/res/drawable/baseline_autorenew_24.xml @@ -0,0 +1,5 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="60dp" android:tint="#000000" android:viewportHeight="24" android:viewportWidth="24" android:width="60dp"> + + <path android:fillColor="@android:color/white" android:pathData="M12,6v3l4,-4 -4,-4v3c-4.42,0 -8,3.58 -8,8 0,1.57 0.46,3.03 1.24,4.26L6.7,14.8c-0.45,-0.83 -0.7,-1.79 -0.7,-2.8 0,-3.31 2.69,-6 6,-6zM18.76,7.74L17.3,9.2c0.44,0.84 0.7,1.79 0.7,2.8 0,3.31 -2.69,6 -6,6v-3l-4,4 4,4v-3c4.42,0 8,-3.58 8,-8 0,-1.57 -0.46,-3.03 -1.24,-4.26z"/> + +</vector> diff --git a/app/src/main/res/drawable/twibbon_layover.xml b/app/src/main/res/drawable/twibbon_layover.xml new file mode 100644 index 0000000000000000000000000000000000000000..93fe385e472233b2875f5bb224bb2623c611c92c --- /dev/null +++ b/app/src/main/res/drawable/twibbon_layover.xml @@ -0,0 +1,891 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="300dp" + android:height="300dp" + android:viewportWidth="300" + android:viewportHeight="300"> + <path + android:pathData="M121,106C121.99,106 122.98,106 124,106C124,106.99 124,107.98 124,109C124.58,108.75 125.15,108.5 125.75,108.25C126.49,108.17 127.24,108.08 128,108C130.06,109.81 130.06,109.81 132,112C132.99,112.66 133.98,113.32 135,114C135.63,116.31 135.63,116.31 136,119C136.19,119.93 136.37,120.86 136.56,121.81C136.78,122.9 136.78,122.9 137,124C137.66,124 138.32,124 139,124C147.12,137.92 147.12,137.92 147,145C146.33,147 145.67,149 145,151C145.24,152.79 145.48,154.58 145.73,156.37C146.27,161.63 146.19,166.92 146.19,172.2C146.19,174.26 146.21,176.32 146.22,178.38C146.23,179.68 146.23,180.98 146.23,182.33C146.23,183.51 146.24,184.7 146.24,185.92C146.01,188.91 145.44,190.44 144,193C144.03,194.3 144.03,194.3 144.06,195.63C143.96,201.31 142.32,206.82 139.38,211.69C136.1,217.19 137.14,223.02 137.81,229.09C138.06,232.98 137.63,236.68 137.19,240.54C136.96,243.49 137.3,246.13 138,249C137.34,249 136.68,249 136,249C136.16,249.55 136.32,250.11 136.49,250.68C137.05,253.23 137.13,255.52 137.13,258.13C137.13,258.99 137.13,259.86 137.13,260.76C137,263 137,263 136,265C135.34,265 134.68,265 134,265C134.32,266.28 134.32,266.28 134.65,267.58C135.07,271.68 134.21,273.91 132.63,277.69C132.16,278.81 131.7,279.92 131.23,281.07C130.82,282.04 130.42,283.01 130,284C129.67,284.99 129.34,285.98 129,287C128.34,287 127.68,287 127,287C126.5,290.96 126.5,290.96 126,295C125.34,295 124.68,295 124,295C124,295.99 124,296.98 124,298C123.34,298 122.68,298 122,298C122,298.66 122,299.32 122,300C81.74,300 41.48,300 0,300C-0.23,280.34 -0.45,260.69 -0.69,240.44C-0.79,234.24 -0.89,228.04 -0.99,221.65C-1.04,214.06 -1.04,214.06 -1.05,210.51C-1.07,208.03 -1.11,205.55 -1.16,203.08C-1.24,199.32 -1.25,195.57 -1.25,191.81C-1.29,190.71 -1.33,189.61 -1.37,188.48C-1.32,185.3 -1.16,182.97 0,180C3.95,176.35 8.45,174.19 13.29,171.93C15.58,170.68 15.93,169.35 17,167C19,164.25 19,164.25 21,162C21.66,162 22.32,162 23,162C23,161.01 23,160.02 23,159C23.66,159 24.32,159 25,159C26.69,157.36 28.35,155.69 30,154C35.5,149 35.5,149 38,149C38,148.34 38,147.68 38,147C38.66,147 39.32,147 40,147C40.33,146.01 40.66,145.02 41,144C41.99,144 42.98,144 44,144C44.33,142.35 44.66,140.7 45,139C45.66,139 46.32,139 47,139C47,138.34 47,137.68 47,137C47.99,137 48.98,137 50,137C50.66,135.68 51.32,134.36 52,133C52.66,133 53.32,133 54,133C55.35,131.69 56.69,130.35 58,129C58.66,128.67 59.32,128.34 60,128C60.43,127.34 60.87,126.68 61.31,126C63.45,123.46 64.8,123.55 68,123C69.36,122.03 70.69,121.04 72,120C72.66,120 73.32,120 74,120C74,119.34 74,118.68 74,118C85.56,107.99 105.98,98.93 121,106ZM47,139C48,141 48,141 48,141Z" + android:fillColor="#090A04"/> + <path + android:pathData="M121,106C121.99,106 122.98,106 124,106C124,106.99 124,107.98 124,109C124.58,108.75 125.15,108.5 125.75,108.25C126.49,108.17 127.24,108.08 128,108C130.06,109.81 130.06,109.81 132,112C132.99,112.66 133.98,113.32 135,114C135.63,116.31 135.63,116.31 136,119C136.19,119.93 136.37,120.86 136.56,121.81C136.78,122.9 136.78,122.9 137,124C137.66,124 138.32,124 139,124C147.12,137.92 147.12,137.92 147,145C146.33,147 145.67,149 145,151C145.24,152.79 145.48,154.58 145.73,156.37C146.27,161.63 146.19,166.92 146.19,172.2C146.19,174.26 146.21,176.32 146.22,178.38C146.23,179.68 146.23,180.98 146.23,182.33C146.23,183.51 146.24,184.7 146.24,185.92C146.01,188.91 145.44,190.44 144,193C144.03,194.3 144.03,194.3 144.06,195.63C143.96,201.31 142.32,206.82 139.38,211.69C136.1,217.19 137.14,223.02 137.81,229.09C138.06,232.98 137.63,236.68 137.19,240.54C136.96,243.49 137.3,246.13 138,249C137.34,249 136.68,249 136,249C136.16,249.55 136.32,250.11 136.49,250.68C137.05,253.23 137.13,255.52 137.13,258.13C137.13,258.99 137.13,259.86 137.13,260.76C137,263 137,263 136,265C135.34,265 134.68,265 134,265C134.32,266.28 134.32,266.28 134.65,267.58C135.07,271.68 134.21,273.91 132.63,277.69C132.16,278.81 131.7,279.92 131.23,281.07C130.82,282.04 130.42,283.01 130,284C129.67,284.99 129.34,285.98 129,287C128.34,287 127.68,287 127,287C126.5,290.96 126.5,290.96 126,295C125.34,295 124.68,295 124,295C124,295.99 124,296.98 124,298C123.34,298 122.68,298 122,298C122,298.66 122,299.32 122,300C114.41,300 106.82,300 99,300C96.97,295.93 96.64,294.39 97,290C98,287.13 98,287.13 99,285C99.99,285 100.98,285 102,285C101.01,281.54 101.01,281.54 100,278C100.33,277.67 100.66,277.34 101,277C101.33,276.01 101.66,275.02 102,274C102.66,274 103.32,274 104,274C104.33,273.34 104.66,272.68 105,272C105.66,272 106.32,272 107,272C107.5,268.04 107.5,268.04 108,264C108.78,264.16 109.57,264.33 110.38,264.5C112.88,265.06 112.88,265.06 115,265C115.66,264.01 116.32,263.02 117,262C117,263.32 117,264.64 117,266C117.66,266 118.32,266 119,266C118.67,264.68 118.34,263.36 118,262C118.99,262 119.98,262 121,262C121,261.34 121,260.68 121,260C120.4,260.21 119.8,260.41 119.19,260.63C117,261 117,261 114,259C113.01,258.67 112.02,258.34 111,258C111.62,256.93 112.24,255.85 112.88,254.75C114.02,252.75 115.11,250.76 116.13,248.69C117,247 117,247 119,245C121.31,245.66 123.62,246.32 126,247C125.99,246.43 125.98,245.86 125.96,245.28C125.91,240.39 126.18,235.81 127,231C126.34,231 125.68,231 125,231C125.66,229.02 126.32,227.04 127,225C125.35,224.67 123.7,224.34 122,224C122.66,223.67 123.32,223.34 124,223C124.7,221.68 125.37,220.35 126,219C126.99,217.51 126.99,217.51 128,216C128.66,216 129.32,216 130,216C130,214.93 130,213.86 130,212.75C130,210.17 130,207.58 130,205C128.58,203.25 128.58,203.25 127,202C127.99,200.02 127.99,200.02 129,198C126.32,195.82 126.32,195.82 124,196C123.67,195.34 123.34,194.68 123,194C121.24,197.33 120.89,198.59 121.88,202.31C122.25,203.2 122.62,204.09 123,205C116.38,206.13 116.38,206.13 113,205C112.67,206.98 112.34,208.96 112,211C108.54,211.49 108.54,211.49 105,212C105,212.66 105,213.32 105,214C103.63,215.63 103.63,215.63 102,217C101.34,217 100.68,217 100,217C100,217.66 100,218.32 100,219C98.02,219.66 96.04,220.32 94,221C93.43,217.27 93,213.79 93,210C90.71,207.87 88.99,207 86,206C86,205.34 86,204.68 86,204C85.36,203.83 84.72,203.66 84.06,203.48C78.48,201.92 73.91,200.07 69,197C68.34,196.67 67.68,196.34 67,196C67,195.34 67,194.68 67,194C66.2,193.77 65.39,193.55 64.56,193.31C63.72,192.88 62.87,192.45 62,192C61.19,189.38 61.19,189.38 61,187C62.65,188.32 64.3,189.64 66,191C65.9,190.42 65.81,189.84 65.71,189.24C65,184.24 64.93,180.76 67,176C66.34,176 65.68,176 65,176C65,175.34 65,174.68 65,174C61.75,175.09 61.75,175.09 59,177C58.87,178.53 58.8,180.06 58.75,181.59C58.72,182.52 58.69,183.45 58.65,184.41C58.59,186.38 58.54,188.35 58.48,190.32C58.45,191.25 58.41,192.19 58.38,193.15C58.34,194.43 58.34,194.43 58.3,195.75C58,198 58,198 56,201C55.34,201 54.68,201 54,201C53.3,197.85 53,195.27 53,192C52.79,190.7 52.59,189.4 52.38,188.06C51.89,184.5 52.28,182.24 54,179C54.99,179 55.98,179 57,179C57,178.01 57,177.02 57,176C54.03,175.34 51.06,174.68 48,174C49.32,172.68 50.64,171.36 52,170C50.68,169.67 49.36,169.34 48,169C49.62,168.33 51.25,167.66 52.88,167C53.78,166.63 54.68,166.26 55.62,165.88C58,165 58,165 60,165C60,164.34 60,163.68 60,163C60.99,163 61.98,163 63,163C62.51,161.02 62.51,161.02 62,159C62.66,159 63.32,159 64,159C64.08,158.46 64.17,157.93 64.25,157.38C65,155 65,155 67,152.06C68.88,149.18 69.6,147.37 70,144C68.02,145.65 66.04,147.3 64,149C64.33,149.66 64.66,150.32 65,151C63.35,151 61.7,151 60,151C59.67,152.32 59.34,153.64 59,155C59.99,155.33 60.98,155.66 62,156C54.57,155 54.57,155 51,154C51,154.99 51,155.98 51,157C51.66,157 52.32,157 53,157C52.45,160.37 51.95,162.08 50,165C46.88,165.19 46.88,165.19 44,165C43,162 43,162 43,160C38.39,162.41 38.39,162.41 34.38,165.63C33,167 33,167 30.56,167.81C27.02,169.45 25.88,171.64 24,175C23.88,175.68 23.76,176.36 23.64,177.06C23,179 23,179 21.19,180.2C20.47,180.5 19.74,180.81 19,181.13C15.84,182.34 15.84,182.34 14,185C10.94,185.63 10.94,185.63 8,186C8,186.66 8,187.32 8,188C4.77,190.15 3.72,190.2 0,190C-0.7,186.46 -0.93,183.51 0,180C3.9,176.37 8.51,174.17 13.3,171.93C15.58,170.68 15.93,169.34 17,167C19,164.25 19,164.25 21,162C21.66,162 22.32,162 23,162C23,161.01 23,160.02 23,159C23.66,159 24.32,159 25,159C26.69,157.36 28.35,155.69 30,154C35.5,149 35.5,149 38,149C38,148.34 38,147.68 38,147C38.66,147 39.32,147 40,147C40.33,146.01 40.66,145.02 41,144C41.99,144 42.98,144 44,144C44.33,142.35 44.66,140.7 45,139C45.66,139 46.32,139 47,139C47,138.34 47,137.68 47,137C47.99,137 48.98,137 50,137C50.66,135.68 51.32,134.36 52,133C52.66,133 53.32,133 54,133C55.35,131.69 56.69,130.35 58,129C58.66,128.67 59.32,128.34 60,128C60.43,127.34 60.87,126.68 61.31,126C63.45,123.46 64.8,123.55 68,123C69.36,122.03 70.69,121.04 72,120C72.66,120 73.32,120 74,120C74,119.34 74,118.68 74,118C85.56,107.99 105.98,98.93 121,106ZM47,139C48,141 48,141 48,141Z" + android:fillColor="#363626"/> + <path + android:pathData="M122,193C122.99,193.49 122.99,193.49 124,194C124,194.66 124,195.32 124,196C124.99,195.67 125.98,195.34 127,195C128.49,196.98 128.49,196.98 130,199C129.34,199.33 128.68,199.66 128,200C129.15,202.47 130.05,204.05 132,206C131.7,207.34 131.36,208.67 131,210C130.96,212.33 130.96,214.67 131,217C130.01,216.67 129.02,216.34 128,216C127.71,216.58 127.42,217.15 127.13,217.75C125.56,220.88 125.56,220.88 124,224C125.49,224.49 125.49,224.49 127,225C126.01,227.97 126.01,227.97 125,231C125.66,231 126.32,231 127,231C127.03,233.29 127.05,235.58 127.06,237.88C127.07,239.15 127.09,240.43 127.1,241.74C127,245 127,245 126,247C123.33,247 120.67,247 118,247C117.67,248.65 117.34,250.3 117,252C116.34,252 115.68,252 115,252C114.54,252.93 114.54,252.93 114.06,253.88C113.38,255.25 112.69,256.63 112,258C112.66,258.33 113.32,258.66 114,259C114.33,258.34 114.66,257.68 115,257C115.99,258.48 115.99,258.48 117,260C117.66,259.67 118.32,259.34 119,259C119.66,259.33 120.32,259.66 121,260C121,260.66 121,261.32 121,262C120.01,262.49 120.01,262.49 119,263C119,263.99 119,264.98 119,266C117.51,265.51 117.51,265.51 116,265C115.34,265.66 114.68,266.32 114,267C113.34,266.34 112.68,265.68 112,265C109.93,264.36 109.93,264.36 108,264C108.02,264.95 108.04,265.9 108.06,266.88C108,270 108,270 107,272C106.34,272 105.68,272 105,272C104.5,273.48 104.5,273.48 104,275C103.34,274.67 102.68,274.34 102,274C102.33,275.65 102.66,277.3 103,279C102.01,279.49 102.01,279.49 101,280C101.33,281.65 101.66,283.3 102,285C101.01,285 100.02,285 99,285C98.8,286.75 98.62,288.5 98.44,290.25C98.33,291.22 98.23,292.2 98.12,293.2C97.86,296.23 97.86,296.23 99,300C66.33,300 33.66,300 0,300C0,265 0,265 4,258C4.66,258 5.32,258 6,258C6.33,257.01 6.66,256.02 7,255C7.33,255.66 7.66,256.32 8,257C9.98,255.68 11.96,254.36 14,253C14,254.65 14,256.3 14,258C14.66,258 15.32,258 16,258C16,258.99 16,259.98 16,261C16.33,260.34 16.66,259.68 17,259C18.18,259.09 18.18,259.09 19.38,259.19C20.24,259.13 21.11,259.06 22,259C22.66,258.01 23.32,257.02 24,256C24,258.33 24,260.67 24,263C27.18,263.28 27.18,263.28 30,261C31.49,261.99 31.49,261.99 33,263C32.34,264.98 31.68,266.96 31,269C31.66,269.33 32.32,269.66 33,270C33,269.01 33,268.02 33,267C34.98,266.51 34.98,266.51 37,266C37.99,267.48 37.99,267.48 39,269C38.5,270.48 38.5,270.48 38,272C37.34,272 36.68,272 36,272C36.33,272.99 36.66,273.98 37,275C37,275.33 37,275.66 37,276C37.66,276 38.32,276 39,276C39,275.34 39,274.68 39,274C40.98,273.51 40.98,273.51 43,273C42.01,274.65 41.02,276.3 40,278C40.99,279.48 40.99,279.48 42,281C42.66,279.35 43.32,277.7 44,276C45.32,276.33 46.64,276.66 48,277C48.31,276.38 48.62,275.76 48.94,275.13C49.63,273.75 50.31,272.38 51,271C51.04,269.33 51.04,267.67 51,266C51.66,266 52.32,266 53,266C53,267.32 53,268.64 53,270C53.99,270 54.98,270 56,270C56.33,270.99 56.66,271.98 57,273C60.12,272.51 63,272 66,271C66,269.35 66,267.7 66,266C66.91,265.75 67.82,265.51 68.75,265.25C72.13,263.95 73.58,262.6 76,260C76.66,260 77.32,260 78,260C78.2,263.72 78.15,264.77 76,268C76.99,267.67 77.98,267.34 79,267C78.34,268.65 77.68,270.3 77,272C77.99,271.67 78.98,271.34 80,271C80,268.69 80,266.38 80,264C81.98,264 83.96,264 86,264C86.49,262.52 86.49,262.52 87,261C87.66,261 88.32,261 89,261C89,260.34 89,259.68 89,259C89.66,259.33 90.32,259.66 91,260C93.07,260.15 93.07,260.15 95,259C95.33,259.99 95.66,260.98 96,262C96.43,261.2 96.87,260.39 97.31,259.56C99,257 99,257 102,256C102.66,256 103.32,256 104,256C104.33,255.01 104.66,254.02 105,253C105.66,253 106.32,253 107,253C107,252.34 107,251.68 107,251C107.66,251 108.32,251 109,251C109,249.02 109,247.04 109,245C108.34,244.67 107.68,244.34 107,244C110.45,239.2 110.45,239.2 113.25,238.19C113.83,238.13 114.4,238.06 115,238C114.01,240.31 113.02,242.62 112,245C112.66,245 113.32,245 114,245C114.36,243.21 114.71,241.42 115.06,239.63C115.26,238.63 115.46,237.63 115.66,236.6C116.24,234.02 116.24,234.02 115,232C115.99,231.67 116.98,231.34 118,231C118.66,231.33 119.32,231.66 120,232C120,231.01 120,230.02 120,229C120.66,229 121.32,229 122,229C122,227.68 122,226.36 122,225C120.51,224.51 120.51,224.51 119,224C119.5,222.51 119.5,222.51 120,221C120.66,221 121.32,221 122,221C121.5,219.51 121.5,219.51 121,218C120.13,219.02 120.13,219.02 119.25,220.06C118.51,220.7 117.76,221.34 117,222C114.75,221.75 114.75,221.75 113,221C113,221.66 113,222.32 113,223C111.51,223.49 111.51,223.49 110,224C109.5,222.51 109.5,222.51 109,221C108.34,221 107.68,221 107,221C106.5,222.49 106.5,222.49 106,224C105.5,222.51 105.5,222.51 105,221C101.19,222.17 101.19,222.17 98.69,225.13C98.46,225.74 98.23,226.36 98,227C96.51,226.51 96.51,226.51 95,226C94.67,226.99 94.34,227.98 94,229C87.38,229.13 87.38,229.13 84,228C84,227.34 84,226.68 84,226C83.01,226 82.02,226 81,226C80.51,226.99 80.51,226.99 80,228C80,227.01 80,226.02 80,225C78.68,224.34 77.36,223.68 76,223C76.99,222.51 76.99,222.51 78,222C79.24,218.72 80.21,215.41 81,212C81.66,212 82.32,212 83,212C83,211.34 83,210.68 83,210C83.66,210 84.32,210 85,210C84.01,207.03 84.01,207.03 83,204C82.05,203.86 81.1,203.71 80.13,203.56C77,203 77,203 75,202C75.33,201.34 75.66,200.68 76,200C80.95,201.98 80.95,201.98 86,204C86,204.66 86,205.32 86,206C86.58,206.12 87.15,206.25 87.75,206.38C90.02,207.01 91.93,207.89 94,209C93.5,210.49 93.5,210.49 93,212C93.66,212.33 94.32,212.66 95,213C95,215.33 95,217.67 95,220C96.65,219.67 98.3,219.34 100,219C100,218.34 100,217.68 100,217C100.66,217 101.32,217 102,217C102.5,215.51 102.5,215.51 103,214C103.66,214 104.32,214 105,214C105,213.34 105,212.68 105,212C106.65,212 108.3,212 110,212C110.5,210.51 110.5,210.51 111,209C111.65,207.66 112.32,206.32 113,205C113.74,205.04 114.49,205.08 115.25,205.13C118.09,205 119.59,204.43 122,203C121.01,200.52 121.01,200.52 120,198C120.66,198 121.32,198 122,198C122,196.35 122,194.7 122,193ZM71,268C70.67,268.99 70.34,269.98 70,271C70.33,271.66 70.66,272.32 71,273C71.99,272.67 72.98,272.34 74,272C74,271.01 74,270.02 74,269C73.01,268.67 72.02,268.34 71,268ZM25,254C25.33,254.66 25.66,255.32 26,256C25.34,255.67 24.68,255.34 24,255C24.33,254.67 24.66,254.34 25,254Z" + android:fillColor="#171812"/> + <path + android:pathData="M121,106C121.99,106 122.98,106 124,106C124,106.99 124,107.98 124,109C124.58,108.75 125.15,108.5 125.75,108.25C126.49,108.17 127.24,108.08 128,108C130.06,109.81 130.06,109.81 132,112C132.99,112.66 133.98,113.32 135,114C135.63,116.31 135.63,116.31 136,119C136.19,119.93 136.37,120.86 136.56,121.81C136.78,122.9 136.78,122.9 137,124C137.66,124 138.32,124 139,124C147.12,137.92 147.12,137.92 147,145C146.35,147 145.68,149 145,151C145.28,153.34 145.61,155.68 146,158C145.56,160.44 145.56,160.44 145,162C144.01,162 143.02,162 142,162C142,165.96 142,169.92 142,174C140.02,173.34 138.04,172.68 136,172C135.51,173.98 135.51,173.98 135,176C134.34,176 133.68,176 133,176C132.51,172.54 132.51,172.54 132,169C131.01,169 130.02,169 129,169C128.67,170.98 128.34,172.96 128,175C127.34,175 126.68,175 126,175C126,175.66 126,176.32 126,177C124.06,176.69 124.06,176.69 122,176C121.67,175.01 121.34,174.02 121,173C118.03,172.51 118.03,172.51 115,172C115.33,173.65 115.66,175.3 116,177C114.35,177 112.7,177 111,177C111,177.66 111,178.32 111,179C112.32,179.33 113.64,179.66 115,180C113.85,179.98 112.69,179.96 111.5,179.94C108.53,179.92 105.75,180.15 102.81,180.63C99.03,181 97.3,180.75 94,179C94,178.01 94,177.02 94,176C92.97,175.94 91.94,175.88 90.88,175.81C86.05,174.8 84.4,173.48 81,170C81,169.01 81,168.02 81,167C80.36,166.81 79.72,166.63 79.06,166.44C77,165 77,165 76.25,161.38C76.13,159.7 76.13,159.7 76,158C76.99,157.34 77.98,156.68 79,156C78.51,155.2 78.01,154.39 77.5,153.56C76,151 76,151 76,150C74.35,149.67 72.7,149.34 71,149C71.33,148.34 71.66,147.68 72,147C75.3,147.66 78.6,148.32 82,149C81.07,148.71 80.14,148.42 79.19,148.13C76,147 76,147 73,145C73.75,142.56 73.75,142.56 75,140C77.13,139.19 77.13,139.19 79,139C78.98,138.05 78.96,137.1 78.94,136.13C79,133 79,133 80,131C83.7,132.23 85.3,134.23 88,137C93.62,139.81 102.01,137.76 108,137C108,136.34 108,135.68 108,135C108.99,135 109.98,135 111,135C111,134.34 111,133.68 111,133C111.66,133 112.32,133 113,133C113,135.64 113,138.28 113,141C113.99,141.49 113.99,141.49 115,142C115.14,142.95 115.29,143.9 115.44,144.88C116.05,148.27 116.25,149.07 119,151C121.3,152.11 123.62,153.06 126,154C126,154.66 126,155.32 126,156C128.31,155.34 130.62,154.68 133,154C133,151.57 132.5,149.37 132,147C131.01,147 130.02,147 129,147C127.62,145.71 126.29,144.37 125,143C124.01,142.34 123.02,141.68 122,141C122,140.34 122,139.68 122,139C125.55,138.68 127.38,138.54 130.31,140.69C132.14,143.2 132.66,144.94 133,148C133.66,148 134.32,148 135,148C135,148.66 135,149.32 135,150C137.33,151.21 139.5,152.17 142,153C143.95,147.15 143.51,139.91 142,134C139.54,131.68 139.54,131.68 137,130C137,129.34 137,128.68 137,128C136.01,128 135.02,128 134,128C134,127.01 134,126.02 134,125C133.42,124.86 132.85,124.73 132.25,124.59C128.04,123.49 123.85,121.98 120,119.94C117.97,118.99 116.19,118.59 114,118.13C110.21,117.25 108.71,115.8 106,113C99.89,110.58 93.51,110.41 87,110C90.55,107.63 94.03,106.82 98.13,105.88C98.89,105.7 99.66,105.52 100.44,105.34C107.69,103.73 114.02,102.72 121,106Z" + android:fillColor="#A4A5A6"/> + <path + android:pathData="M146,159C146.05,163.2 146.09,167.4 146.11,171.6C146.12,173.03 146.13,174.45 146.15,175.88C146.18,177.94 146.19,179.99 146.2,182.05C146.21,183.9 146.21,183.9 146.23,185.79C146.01,188.87 145.49,190.38 144,193C144.02,193.87 144.04,194.73 144.06,195.63C143.96,201.31 142.32,206.82 139.38,211.69C136.1,217.19 137.14,223.02 137.81,229.09C138.06,232.98 137.63,236.68 137.19,240.54C136.96,243.49 137.3,246.13 138,249C137.34,249 136.68,249 136,249C136.16,249.55 136.32,250.11 136.49,250.68C137.05,253.23 137.13,255.52 137.13,258.13C137.13,259.43 137.13,259.43 137.13,260.76C137,263 137,263 136,265C135.34,265 134.68,265 134,265C134.21,265.85 134.43,266.7 134.65,267.58C135.07,271.68 134.21,273.91 132.63,277.69C132.16,278.81 131.7,279.92 131.23,281.07C130.82,282.04 130.42,283.01 130,284C129.51,285.48 129.51,285.48 129,287C128.34,287 127.68,287 127,287C126.67,289.64 126.34,292.28 126,295C125.34,295 124.68,295 124,295C124,295.99 124,296.98 124,298C123.34,298 122.68,298 122,298C122,298.66 122,299.32 122,300C114.41,300 106.82,300 99,300C96.97,295.93 96.64,294.39 97,290C98,287.13 98,287.13 99,285C99.99,285 100.98,285 102,285C101.34,282.69 100.68,280.38 100,278C100.49,277.51 100.49,277.51 101,277C101.33,276.01 101.66,275.02 102,274C102.66,274 103.32,274 104,274C104.49,273.01 104.49,273.01 105,272C105.66,272 106.32,272 107,272C107.33,269.36 107.66,266.72 108,264C108.78,264.17 109.57,264.33 110.38,264.5C112.88,265.06 112.88,265.06 115,265C115.66,264.01 116.32,263.02 117,262C117,263.32 117,264.64 117,266C117.66,266 118.32,266 119,266C118.67,264.68 118.34,263.36 118,262C118.99,262 119.98,262 121,262C121,261.34 121,260.68 121,260C120.1,260.31 120.1,260.31 119.19,260.63C117,261 117,261 114,259C112.51,258.51 112.51,258.51 111,258C111.62,256.93 112.24,255.86 112.88,254.75C114.02,252.75 115.11,250.76 116.13,248.69C117,247 117,247 119,245C121.31,245.66 123.62,246.32 126,247C125.99,246.43 125.98,245.86 125.96,245.28C125.91,240.39 126.18,235.81 127,231C126.34,231 125.68,231 125,231C125.66,229.02 126.32,227.04 127,225C125.35,224.67 123.7,224.34 122,224C122.99,223.51 122.99,223.51 124,223C124.7,221.68 125.37,220.35 126,219C126.66,218.01 127.32,217.02 128,216C128.66,216 129.32,216 130,216C130,214.93 130,213.85 130,212.75C130,210.17 130,207.58 130,205C128.58,203.25 128.58,203.25 127,202C127.66,200.68 128.32,199.36 129,198C126.32,195.82 126.32,195.82 124,196C123.67,195.34 123.34,194.68 123,194C122.67,195.32 122.34,196.64 122,198C121.01,198 120.02,198 119,198C119.32,191.45 120.67,187 123.84,181.26C124.92,179.15 125.53,177.31 126,175C126.66,175 127.32,175 128,175C128.33,173.02 128.66,171.04 129,169C129.99,168.67 130.98,168.34 132,168C133,169 133,169 133.06,172.56C133.04,173.7 133.02,174.83 133,176C133.66,176 134.32,176 135,176C135.33,174.68 135.66,173.36 136,172C137.98,172.66 139.96,173.32 142,174C141.79,173.18 141.59,172.35 141.38,171.5C140.9,167.06 141.63,164.24 143,160C145,159 145,159 146,159Z" + android:fillColor="#403E30"/> + <path + android:pathData="M122,193C122.66,193.33 123.32,193.66 124,194C124,194.66 124,195.32 124,196C124.99,195.67 125.98,195.34 127,195C127.99,196.32 128.98,197.64 130,199C129.34,199.33 128.68,199.66 128,200C129.15,202.47 130.05,204.05 132,206C131.7,207.34 131.36,208.67 131,210C130.96,212.33 130.96,214.67 131,217C130.01,216.67 129.02,216.34 128,216C127.71,216.58 127.42,217.15 127.13,217.75C126.08,219.83 125.04,221.92 124,224C124.99,224.33 125.98,224.66 127,225C126.34,226.98 125.68,228.96 125,231C125.66,231 126.32,231 127,231C127.03,233.29 127.05,235.58 127.06,237.88C127.07,239.15 127.09,240.43 127.1,241.74C127,245 127,245 126,247C123.33,247 120.67,247 118,247C117.67,248.65 117.34,250.3 117,252C116.34,252 115.68,252 115,252C114.69,252.62 114.38,253.24 114.06,253.88C113.38,255.25 112.69,256.63 112,258C112.99,258.49 112.99,258.49 114,259C114.33,258.34 114.66,257.68 115,257C115.99,258.48 115.99,258.48 117,260C117.66,259.67 118.32,259.34 119,259C119.99,259.49 119.99,259.49 121,260C121,260.66 121,261.32 121,262C120.01,262.49 120.01,262.49 119,263C119,263.99 119,264.98 119,266C118.01,265.67 117.02,265.34 116,265C115.34,265.66 114.68,266.32 114,267C113.01,266.01 113.01,266.01 112,265C109.93,264.36 109.93,264.36 108,264C108.02,264.95 108.04,265.9 108.06,266.88C108,270 108,270 107,272C106.34,272 105.68,272 105,272C104.67,272.99 104.34,273.98 104,275C103.34,274.67 102.68,274.34 102,274C102.33,275.65 102.66,277.3 103,279C102.01,279.49 102.01,279.49 101,280C101.33,281.65 101.66,283.3 102,285C101.01,285 100.02,285 99,285C98.8,286.75 98.62,288.5 98.44,290.25C98.33,291.22 98.23,292.2 98.12,293.2C97.86,296.23 97.86,296.23 99,300C91.08,300 83.16,300 75,300C75,298.68 75,297.36 75,296C75.99,296.33 76.98,296.66 78,297C78.33,296.01 78.66,295.02 79,294C78.34,294 77.68,294 77,294C77,293.01 77,292.02 77,291C76.01,291.99 76.01,291.99 75,293C75,279.11 75,279.11 77,274C77.99,273.51 77.99,273.51 79,273C78.72,274.18 78.72,274.18 78.44,275.38C77.74,277.97 77.74,277.97 79,280C79.66,278.68 80.32,277.36 81,276C81.66,276 82.32,276 83,276C83.49,275.01 83.49,275.01 84,274C85.98,274.33 87.96,274.66 90,275C89.67,274.34 89.34,273.68 89,273C86.47,272.34 86.47,272.34 84,272C84.33,270.35 84.66,268.7 85,267C85.66,267 86.32,267 87,267C87,265.02 87,263.04 87,261C87.66,261 88.32,261 89,261C89,260.34 89,259.68 89,259C89.66,259.33 90.32,259.66 91,260C93.07,260.15 93.07,260.15 95,259C95.33,259.99 95.66,260.98 96,262C96.43,261.2 96.87,260.39 97.31,259.56C99,257 99,257 102,256C102.66,256 103.32,256 104,256C104.33,255.01 104.66,254.02 105,253C105.66,253 106.32,253 107,253C107,252.34 107,251.68 107,251C107.66,251 108.32,251 109,251C109,249.02 109,247.04 109,245C108.01,244.51 108.01,244.51 107,244C110.45,239.2 110.45,239.2 113.25,238.19C113.83,238.13 114.4,238.06 115,238C114.01,240.31 113.02,242.62 112,245C112.66,245 113.32,245 114,245C114.36,243.21 114.71,241.42 115.06,239.63C115.26,238.63 115.46,237.63 115.66,236.6C116.24,234.02 116.24,234.02 115,232C115.99,231.67 116.98,231.34 118,231C118.99,231.49 118.99,231.49 120,232C120,231.01 120,230.02 120,229C120.66,229 121.32,229 122,229C122,227.68 122,226.36 122,225C121.01,224.67 120.02,224.34 119,224C119.5,222.51 119.5,222.51 120,221C120.66,221 121.32,221 122,221C121.5,219.51 121.5,219.51 121,218C120.13,219.02 120.13,219.02 119.25,220.06C118.51,220.7 117.76,221.34 117,222C114.75,221.75 114.75,221.75 113,221C113,221.66 113,222.32 113,223C112.01,223.33 111.02,223.66 110,224C109.5,222.51 109.5,222.51 109,221C108.34,221 107.68,221 107,221C106.67,221.99 106.34,222.98 106,224C105.67,223.01 105.34,222.02 105,221C101.19,222.17 101.19,222.17 98.69,225.13C98.35,226.05 98.35,226.05 98,227C96.51,226.51 96.51,226.51 95,226C94.67,226.99 94.34,227.98 94,229C87.38,229.13 87.38,229.13 84,228C84,227.34 84,226.68 84,226C83.01,226 82.02,226 81,226C80.67,226.66 80.34,227.32 80,228C80,227.01 80,226.02 80,225C78.68,224.34 77.36,223.68 76,223C76.66,222.67 77.32,222.34 78,222C79.24,218.72 80.21,215.41 81,212C81.66,212 82.32,212 83,212C83,211.34 83,210.68 83,210C83.66,210 84.32,210 85,210C84.34,208.02 83.68,206.04 83,204C82.05,203.86 81.1,203.71 80.13,203.56C77,203 77,203 75,202C75.33,201.34 75.66,200.68 76,200C80.95,201.98 80.95,201.98 86,204C86,204.66 86,205.32 86,206C86.58,206.12 87.15,206.25 87.75,206.38C90.02,207.01 91.93,207.89 94,209C93.67,209.99 93.34,210.98 93,212C93.66,212.33 94.32,212.66 95,213C95,215.33 95,217.67 95,220C96.65,219.67 98.3,219.34 100,219C100,218.34 100,217.68 100,217C100.66,217 101.32,217 102,217C102.33,216.01 102.66,215.02 103,214C103.66,214 104.32,214 105,214C105,213.34 105,212.68 105,212C106.65,212 108.3,212 110,212C110.5,210.51 110.5,210.51 111,209C111.65,207.66 112.32,206.32 113,205C113.74,205.04 114.49,205.08 115.25,205.13C118.09,205 119.59,204.43 122,203C121.34,201.35 120.68,199.7 120,198C120.66,198 121.32,198 122,198C122,196.35 122,194.7 122,193Z" + android:fillColor="#2E2E21"/> + <path + android:pathData="M101.53,110.53C104.6,111.62 106.95,112.96 109.44,115.06C112.57,117.43 115.19,117.88 119.01,118.51C121,119 121,119 123,121C125.33,121.69 127.66,122.35 130,123C131.35,123.62 132.7,124.27 134,125C134,125.99 134,126.98 134,128C134.99,128 135.98,128 137,128C137,128.66 137,129.32 137,130C137.93,130.43 137.93,130.43 138.88,130.88C141,132 141,132 143,134C144.06,139.18 144.6,144.72 144,150C143.34,150.99 142.68,151.98 142,153C139.04,152.39 137.62,151.75 135,150C135,149.34 135,148.68 135,148C134.34,148 133.68,148 133,148C132.55,147.05 132.09,146.1 131.63,145.13C130.2,142 130.2,142 128,140C126.01,139.6 124.01,139.26 122,139C123.65,140.73 125.24,142.17 127.19,143.56C128.08,144.27 128.08,144.27 129,145C129,145.66 129,146.32 129,147C129.99,147 130.98,147 132,147C132.12,147.8 132.25,148.61 132.38,149.44C132.58,150.28 132.79,151.13 133,152C133.99,152.49 133.99,152.49 135,153C133.88,154.5 133.88,154.5 132,156C128.81,156.19 128.81,156.19 126,156C126,155.34 126,154.68 126,154C125.08,153.76 125.08,153.76 124.14,153.52C117.51,151.61 117.51,151.61 115,148.63C114.01,146.04 113.4,143.74 113,141C112.79,139.95 112.59,138.9 112.38,137.81C112,135 112,135 113,133C112.34,133 111.68,133 111,133C111,133.66 111,134.32 111,135C110.01,135 109.02,135 108,135C108,135.66 108,136.32 108,137C94.04,140.7 94.04,140.7 87.91,138.13C84.16,135.8 83.15,134.6 82.06,130.19C82.04,129.14 82.02,128.08 82,127C80.35,127 78.7,127 77,127C77.33,124.03 77.66,121.06 78,118C77.34,117.67 76.68,117.34 76,117C77.12,116.02 78.25,115.04 79.38,114.06C80.31,113.24 80.31,113.24 81.27,112.41C86.49,108.15 95.26,109.21 101.53,110.53Z" + android:fillColor="#27271D"/> + <path + android:pathData="M76,260C76.66,260 77.32,260 78,260C78.2,263.72 78.15,264.77 76,268C76.99,267.67 77.98,267.34 79,267C78.34,268.65 77.68,270.3 77,272C77.99,271.67 78.98,271.34 80,271C80,268.69 80,266.38 80,264C81.98,264 83.96,264 86,264C86.5,265.48 86.5,265.48 87,267C86.34,267 85.68,267 85,267C84.67,268.65 84.34,270.3 84,272C85.65,272 87.3,272 89,272C89.5,273.48 89.5,273.48 90,275C88.61,274.97 88.61,274.97 87.19,274.94C83.98,274.84 83.98,274.84 81,276C80.63,277.32 80.29,278.66 80,280C79.01,280.49 79.01,280.49 78,281C77.5,279.02 77.5,279.02 77,277C77,278.52 77.03,280.04 77.06,281.56C77,284 77,284 76,285C75.96,287 75.96,289 76,291C76.66,289.68 77.32,288.36 78,287C77.67,289.31 77.34,291.62 77,294C77.66,294 78.32,294 79,294C79,295.65 79,297.3 79,299C77.68,298.01 76.36,297.02 75,296C75,297.32 75,298.64 75,300C64.11,300 53.22,300 42,300C43.98,297.52 43.98,297.52 46,295C46,294.01 46,293.02 46,292C45.34,292.99 44.68,293.98 44,295C41.38,295.69 41.38,295.69 39,296C38.67,295.34 38.34,294.68 38,294C38.33,293.01 38.66,292.02 39,291C37.86,291.25 37.86,291.25 36.69,291.5C34,292 34,292 31,292C31,291.01 31,290.02 31,289C30.34,290.32 29.68,291.64 29,293C27.68,292.67 26.36,292.34 25,292C25.66,291.67 26.32,291.34 27,291C28.37,288.1 29,286.24 29,283C31.53,280.64 32.47,280 36,280C35.67,279.01 35.34,278.02 35,277C36.32,276.67 37.64,276.34 39,276C39,275.34 39,274.68 39,274C40.32,273.67 41.64,273.34 43,273C42.01,274.65 41.02,276.3 40,278C40.66,278.99 41.32,279.98 42,281C42.66,279.35 43.32,277.7 44,276C45.32,276.33 46.64,276.66 48,277C48.46,276.07 48.46,276.07 48.94,275.13C49.63,273.75 50.31,272.38 51,271C51.04,269.33 51.04,267.67 51,266C51.66,266 52.32,266 53,266C53,267.32 53,268.64 53,270C53.99,270 54.98,270 56,270C56.33,270.99 56.66,271.98 57,273C60.12,272.51 63,272 66,271C66,269.35 66,267.7 66,266C67.36,265.63 67.36,265.63 68.75,265.25C72.13,263.95 73.58,262.6 76,260ZM71,268C70.67,268.99 70.34,269.98 70,271C70.33,271.66 70.66,272.32 71,273C71.99,272.67 72.98,272.34 74,272C74,271.01 74,270.02 74,269C73.01,268.67 72.02,268.34 71,268Z" + android:fillColor="#20211B"/> + <path + android:pathData="M136,221C136.33,221 136.66,221 137,221C137.84,227.69 137.95,233.84 137.19,240.54C136.96,243.49 137.3,246.13 138,249C137.34,249 136.68,249 136,249C136.16,249.55 136.32,250.11 136.49,250.68C137.05,253.23 137.13,255.52 137.13,258.13C137.13,259.43 137.13,259.43 137.13,260.76C137,263 137,263 136,265C135.34,265 134.68,265 134,265C134.21,265.85 134.43,266.7 134.65,267.58C135.07,271.68 134.21,273.91 132.63,277.69C132.16,278.81 131.7,279.92 131.23,281.07C130.82,282.04 130.42,283.01 130,284C129.67,284.99 129.34,285.98 129,287C128.34,287 127.68,287 127,287C126.67,289.64 126.34,292.28 126,295C125.34,295 124.68,295 124,295C124,295.99 124,296.98 124,298C123.34,298 122.68,298 122,298C122,298.66 122,299.32 122,300C114.41,300 106.82,300 99,300C96.97,295.93 96.64,294.39 97,290C98,287.13 98,287.13 99,285C99.99,285 100.98,285 102,285C101.01,281.54 101.01,281.54 100,278C100.49,277.51 100.49,277.51 101,277C101.33,276.01 101.66,275.02 102,274C102.66,274 103.32,274 104,274C104.33,273.34 104.66,272.68 105,272C105.66,272 106.32,272 107,272C107.33,269.36 107.66,266.72 108,264C108.78,264.17 109.57,264.33 110.38,264.5C112.88,265.06 112.88,265.06 115,265C115.66,264.01 116.32,263.02 117,262C117,263.32 117,264.64 117,266C117.66,266 118.32,266 119,266C118.67,264.68 118.34,263.36 118,262C118.99,262 119.98,262 121,262C121,261.34 121,260.68 121,260C120.4,260.21 119.8,260.41 119.19,260.63C117,261 117,261 114,259C112.51,258.51 112.51,258.51 111,258C111.62,256.93 112.24,255.85 112.88,254.75C114.02,252.75 115.11,250.76 116.13,248.69C117,247 117,247 119,245C121.31,245.66 123.62,246.32 126,247C125.99,246.43 125.98,245.86 125.96,245.28C125.91,240.39 126.18,235.81 127,231C126.34,231 125.68,231 125,231C125.33,230.34 125.66,229.68 126,229C126.66,229.33 127.32,229.66 128,230C129.11,235.65 129.37,241.38 128,247C128.66,247.33 129.32,247.66 130,248C126.8,249.07 124.34,249 121,249C120.67,249.33 120.34,249.66 120,250C120.99,250.33 121.98,250.66 123,251C122.67,252.32 122.34,253.64 122,255C123.98,255.66 125.96,256.32 128,257C128,257.66 128,258.32 128,259C128.66,259 129.32,259 130,259C129.67,260.32 129.34,261.64 129,263C128.01,262.34 127.02,261.68 126,261C126,261.99 126,262.98 126,264C127.49,264.49 127.49,264.49 129,265C128.63,265.7 128.26,266.4 127.88,267.13C126.77,270.76 127.56,272.56 129,276C129.33,276 129.66,276 130,276C130.33,272.04 130.66,268.08 131,264C131.66,264 132.32,264 133,264C134.66,244.53 134.66,244.53 134.94,225C135,223 135,223 136,221Z" + android:fillColor="#393931"/> + <path + android:pathData="M68,123C68.5,123.99 68.5,123.99 69,125C68.07,127.03 67.07,129.04 66,131C65.34,131 64.68,131 64,131C63.67,131.66 63.34,132.32 63,133C62.34,132.67 61.68,132.34 61,132C61.27,133.98 61.27,133.98 62,136C62.99,136.33 63.98,136.66 65,137C64.34,137 63.68,137 63,137C63.99,139.97 63.99,139.97 65,143C67.31,143 69.62,143 72,143C71.34,144.32 70.68,145.64 70,147C70,146.01 70,145.02 70,144C68.02,145.65 66.04,147.3 64,149C64.5,149.99 64.5,149.99 65,151C63.35,151 61.7,151 60,151C59.67,152.32 59.34,153.64 59,155C59.99,155.33 60.98,155.66 62,156C54.57,155 54.57,155 51,154C51,154.99 51,155.98 51,157C51.66,157 52.32,157 53,157C52.45,160.37 51.95,162.08 50,165C46.88,165.19 46.88,165.19 44,165C43,162 43,162 43,160C38.39,162.41 38.39,162.41 34.38,165.63C33,167 33,167 30.56,167.81C27.02,169.45 25.88,171.64 24,175C23.88,175.68 23.76,176.36 23.64,177.06C23,179 23,179 21.19,180.2C20.47,180.5 19.74,180.81 19,181.13C15.84,182.34 15.84,182.34 14,185C10.94,185.63 10.94,185.63 8,186C8,186.66 8,187.32 8,188C4.77,190.15 3.72,190.2 0,190C-0.7,186.46 -0.93,183.51 0,180C3.9,176.37 8.51,174.17 13.3,171.93C15.58,170.68 15.93,169.34 17,167C19,164.25 19,164.25 21,162C21.66,162 22.32,162 23,162C23,161.01 23,160.02 23,159C23.66,159 24.32,159 25,159C26.69,157.36 28.35,155.69 30,154C35.5,149 35.5,149 38,149C38,148.34 38,147.68 38,147C38.66,147 39.32,147 40,147C40.5,145.51 40.5,145.51 41,144C41.99,144 42.98,144 44,144C44.33,142.35 44.66,140.7 45,139C45.66,139 46.32,139 47,139C47,138.34 47,137.68 47,137C47.99,137 48.98,137 50,137C50.66,135.68 51.32,134.36 52,133C52.66,133 53.32,133 54,133C55.35,131.69 56.69,130.35 58,129C58.66,128.67 59.32,128.34 60,128C60.43,127.34 60.87,126.68 61.31,126C63.41,123.51 64.83,123.34 68,123ZM47,139C48,141 48,141 48,141Z" + android:fillColor="#343429"/> + <path + android:pathData="M36,171C35.72,171.96 35.72,171.96 35.44,172.94C35.29,173.62 35.15,174.3 35,175C36.15,176.3 36.15,176.3 39,177C38.67,178.98 38.34,180.96 38,183C35.92,183.55 34.16,184 32,184C32,183.34 32,182.68 32,182C31.01,182 30.02,182 29,182C28.88,182.93 28.75,183.86 28.63,184.81C28,188 28,188 26,191C23.88,191.69 23.88,191.69 22,192C22,191.01 22,190.02 22,189C21.38,189.19 20.76,189.37 20.13,189.56C18,190 18,190 16,189C15.89,189.69 15.78,190.37 15.67,191.08C15.51,191.98 15.35,192.88 15.19,193.81C15.04,194.71 14.89,195.6 14.73,196.52C13.93,199.25 13.07,200.14 11,202C9.95,203.98 8.95,205.97 8,208C8.99,208.66 9.98,209.32 11,210C11.33,209.34 11.66,208.68 12,208C12,211.88 11.59,213.37 10,216.75C9.63,217.55 9.26,218.35 8.88,219.17C8.59,219.78 8.3,220.38 8,221C9.32,221.66 10.64,222.32 12,223C12,223.99 12,224.98 12,226C11.01,226.49 11.01,226.49 10,227C10.66,227.66 11.32,228.32 12,229C12.33,229.66 12.66,230.32 13,231C12.67,231.66 12.34,232.32 12,233C10.35,233 8.7,233 7,233C7,232.34 7,231.68 7,231C6.34,231 5.68,231 5,231C5.09,232.61 5.09,232.61 5.19,234.25C4.99,238.11 4.6,239.29 2,242C3.98,241.51 3.98,241.51 6,241C6,240.34 6,239.68 6,239C8.31,239 10.62,239 13,239C13,239.99 13,240.98 13,242C14.65,242.33 16.3,242.66 18,243C17.43,245.87 17.14,246.86 15,249C13.34,249.38 11.68,249.71 10,250C8.51,250.49 8.51,250.49 7,251C6.34,250.67 5.68,250.34 5,250C5,250.99 5,251.98 5,253C5.33,253.33 5.66,253.66 6,254C4.68,256.31 3.36,258.62 2,261C1.34,261 0.68,261 0,261C0,237.57 0,214.14 0,190C2.64,189.34 5.28,188.68 8,188C8,187.34 8,186.68 8,186C9.42,185.88 9.42,185.88 10.88,185.75C11.91,185.5 12.94,185.26 14,185C15.17,183.08 15.17,183.08 16,181C18.62,179.31 19.83,179 23,179C23,178.34 23,177.68 23,177C24.33,175.67 25.67,174.33 27,173C27,172.34 27,171.68 27,171C30.38,170.16 32.67,169.89 36,171Z" + android:fillColor="#191A11"/> + <path + android:pathData="M80,131C83.7,132.23 85.3,134.23 88,137C93.62,139.81 102.01,137.76 108,137C108,136.34 108,135.68 108,135C108.99,135 109.98,135 111,135C111,134.34 111,133.68 111,133C111.66,133 112.32,133 113,133C113,135.64 113,138.28 113,141C113.66,141.33 114.32,141.66 115,142C114.34,142.66 113.68,143.32 113,144C112.34,143.67 111.68,143.34 111,143C110.34,145.31 109.68,147.62 109,150C107.87,146.62 108.18,145.23 108.94,141.81C109.13,140.91 109.33,140.01 109.53,139.08C109.76,138.05 109.76,138.05 110,137C109.6,137.66 109.2,138.33 108.79,139.01C104,147 104,147 102.34,149.69C101.09,151.84 100.45,153.57 100,156C98.68,156 97.36,156 96,156C95.67,157.32 95.34,158.64 95,160C94.01,160 93.02,160 92,160C91.96,161.28 91.92,162.56 91.88,163.88C91.85,164.59 91.83,165.31 91.8,166.05C91.82,168.24 91.82,168.24 94,170C96.74,170.15 99.38,170.19 102.13,170.13C102.88,170.12 103.63,170.11 104.41,170.1C106.27,170.07 108.14,170.04 110,170C109.98,169.31 109.95,168.62 109.93,167.91C109.81,161.58 110.39,156.13 112,150C114.76,152.49 116.62,154.2 117,158C116.67,158.66 116.34,159.32 116,160C116.99,160.33 117.98,160.66 119,161C118.34,161 117.68,161 117,161C117,161.66 117,162.32 117,163C117.99,163.49 117.99,163.49 119,164C117.02,164.49 117.02,164.49 115,165C116.65,165.99 118.3,166.98 120,168C116.56,170.29 115.01,170.18 111,170C110.67,170.99 110.34,171.98 110,173C108.44,173.37 106.88,173.72 105.31,174.06C104.01,174.36 104.01,174.36 102.68,174.66C97.53,175.31 93.29,173.8 89,171C87.31,168.8 85.85,166.52 84.39,164.16C82.86,161.78 81.12,159.88 79,158C80.3,162.08 80.3,162.08 82,166C80.51,166.49 80.51,166.49 79,167C76.87,163.81 76.5,161.73 76,158C76.99,157.34 77.98,156.68 79,156C78.5,155.2 78.01,154.39 77.5,153.56C76,151 76,151 76,150C74.35,149.67 72.7,149.34 71,149C71.33,148.34 71.66,147.68 72,147C75.3,147.66 78.6,148.32 82,149C81.07,148.71 80.14,148.42 79.19,148.13C76,147 76,147 73,145C73.75,142.56 73.75,142.56 75,140C77.13,139.19 77.13,139.19 79,139C78.98,138.05 78.96,137.1 78.94,136.13C79,133 79,133 80,131Z" + android:fillColor="#8A8A89"/> + <path + android:pathData="M67,151C70.33,153.22 70.75,154.35 72,158C71.01,158.49 71.01,158.49 70,159C70.99,159.66 71.98,160.32 73,161C75.25,163.38 75.25,163.38 77,166C76.69,168.13 76.69,168.13 76,170C76.33,170.99 76.66,171.98 77,173C76.34,173.33 75.68,173.66 75,174C75.33,174.66 75.66,175.32 76,176C76.99,176.33 77.98,176.66 79,177C79,177.66 79,178.32 79,179C80.65,179 82.3,179 84,179C84,179.99 84,180.98 84,182C85.31,183.56 85.31,183.56 87,185C88,186 89,187 90,188C87.31,189.25 87.31,189.25 84,190C81.44,188.19 81.44,188.19 79,186C76.31,185.21 76.31,185.21 74,185C74.33,186.98 74.66,188.96 75,191C76.26,191.27 77.52,191.54 78.81,191.81C82.21,192.64 83.55,193.55 86,196C89.96,196.42 92.6,196.09 96,194C96,194.99 96,195.98 96,197C97.05,196.75 97.05,196.75 98.13,196.5C101.18,195.97 103.91,195.79 107,196C107.66,196.66 108.32,197.32 109,198C111.07,198.64 111.07,198.64 113,199C112.34,200.32 111.68,201.64 111,203C109.89,202.91 109.89,202.91 108.75,202.81C105.96,202.74 105.96,202.74 104.13,204.5C101.1,206.64 98.61,206.21 95,206C95.66,205.01 96.32,204.02 97,203C98.32,203 99.64,203 101,203C101.66,201.35 102.32,199.7 103,198C102.44,198.16 101.89,198.31 101.31,198.47C94,200.34 88.36,199.61 81,198C81,197.01 81,196.02 81,195C79.02,194.67 77.04,194.34 75,194C75,194.99 75,195.98 75,197C69.25,197.13 69.25,197.13 67,196C67,195.34 67,194.68 67,194C66.2,193.77 65.39,193.55 64.56,193.31C63.72,192.88 62.87,192.45 62,192C61.19,189.38 61.19,189.38 61,187C63.47,188.98 63.47,188.98 66,191C65.9,190.42 65.81,189.84 65.71,189.24C65,184.24 64.93,180.76 67,176C66.34,176 65.68,176 65,176C65,175.34 65,174.68 65,174C61.75,175.09 61.75,175.09 59,177C58.87,178.53 58.8,180.06 58.75,181.59C58.72,182.52 58.69,183.45 58.65,184.41C58.59,186.38 58.54,188.35 58.48,190.32C58.45,191.25 58.41,192.19 58.38,193.15C58.35,194.01 58.33,194.86 58.3,195.75C58,198 58,198 56,201C55.34,201 54.68,201 54,201C53.3,197.85 53,195.27 53,192C52.79,190.7 52.59,189.4 52.38,188.06C51.89,184.5 52.28,182.24 54,179C54.99,179 55.98,179 57,179C57,178.01 57,177.02 57,176C52.54,175.01 52.54,175.01 48,174C49.32,172.68 50.64,171.36 52,170C50.68,169.67 49.36,169.34 48,169C49.62,168.33 51.25,167.66 52.88,167C53.78,166.63 54.68,166.26 55.62,165.88C58,165 58,165 60,165C60,164.34 60,163.68 60,163C60.99,163 61.98,163 63,163C62.67,161.68 62.34,160.36 62,159C62.66,159 63.32,159 64,159C64.12,158.42 64.25,157.85 64.38,157.25C65.01,154.98 65.89,153.07 67,151Z" + android:fillColor="#462B08"/> + <path + android:pathData="M65,174C65,174.66 65,175.32 65,176C65.66,176 66.32,176 67,176C67.04,177.67 67.04,179.33 67,181C66.67,181.33 66.34,181.66 66,182C66.09,183.69 66.25,185.38 66.44,187.06C66.54,187.98 66.64,188.9 66.75,189.85C66.87,190.91 66.87,190.91 67,192C66.36,191.67 65.72,191.34 65.06,191C63.23,189.93 63.23,189.93 62,190C62,190.66 62,191.32 62,192C64.47,192.99 64.47,192.99 67,194C67,194.66 67,195.32 67,196C67.95,196.31 68.9,196.62 69.88,196.94C73,198 73,198 75,199C75,199.99 75,200.98 75,202C76.28,202.27 77.56,202.54 78.88,202.81C82.5,203.57 82.8,203.7 85,207C85,207.99 85,208.98 85,210C84.34,210 83.68,210 83,210C82.67,211.32 82.34,212.64 82,214C81.34,214 80.68,214 80,214C80.23,214.54 80.45,215.07 80.69,215.63C81.14,219.06 79.67,221.06 78,224C78.66,224.33 79.32,224.66 80,225C79.67,225.99 79.34,226.98 79,228C79,227.34 79,226.68 79,226C77.35,226 75.7,226 74,226C74,225.34 74,224.68 74,224C73.28,223.9 72.56,223.79 71.81,223.69C68.72,222.93 66.58,221.84 64,220C64,219.34 64,218.68 64,218C63.42,217.96 62.85,217.92 62.25,217.88C58.9,216.57 57.91,213.95 56,211C55.01,210.67 54.02,210.34 53,210C53,208.68 53,207.36 53,206C52.01,205.67 51.02,205.34 50,205C50.17,204.32 50.33,203.64 50.5,202.94C51.24,198.59 51.3,194.51 50.44,190.19C50,188 50,188 51,186C50.34,185.67 49.68,185.34 49,185C49.33,184.34 49.66,183.68 50,183C50.66,183 51.32,183 52,183C52.33,182.34 52.66,181.68 53,181C53,184.63 53,188.26 53,192C53.66,192.33 54.32,192.66 55,193C54.67,195.64 54.34,198.28 54,201C54.66,201 55.32,201 56,201C56.84,198.06 57.14,195.39 57.21,192.34C57.24,191.46 57.27,190.59 57.3,189.69C57.35,187.85 57.39,186.01 57.43,184.18C57.48,182.87 57.48,182.87 57.52,181.53C57.54,180.73 57.56,179.93 57.58,179.11C58.49,174.5 60.51,174 65,174Z" + android:fillColor="#121308"/> + <path + android:pathData="M74,118C75.32,118 76.64,118 78,118C77.67,120.97 77.34,123.94 77,127C78.65,127 80.3,127 82,127C82,128.32 82,129.64 82,131C81.34,131 80.68,131 80,131C79.67,133.64 79.34,136.28 79,139C78.38,139.06 77.76,139.12 77.13,139.19C74.72,139.83 74.72,139.83 73.75,142.56C73.5,143.37 73.25,144.17 73,145C73.56,145.12 74.11,145.25 74.69,145.38C77.24,146.07 79.59,146.89 82,148C82.33,148.66 82.66,149.32 83,150C80.69,149.67 78.38,149.34 76,149C76.99,149.66 77.98,150.32 79,151C78.01,151.49 78.01,151.49 77,152C78.49,154.48 78.49,154.48 80,157C79.01,157.66 78.02,158.32 77,159C77.6,161.35 78.27,163.69 79,166C79.66,166.33 80.32,166.66 81,167C81,167.99 81,168.98 81,170C82.49,170.49 82.49,170.49 84,171C84,171.66 84,172.32 84,173C88.95,174.49 88.95,174.49 94,176C94,176.99 94,177.98 94,179C99.94,179.89 105.07,179.97 111,179C111,178.34 111,177.68 111,177C112.98,176.51 112.98,176.51 115,176C114.34,175.34 113.68,174.68 113,174C113.66,174 114.32,174 115,174C115,173.34 115,172.68 115,172C117.88,172.31 117.88,172.31 121,173C121.66,173.99 122.32,174.98 123,176C123.99,176.33 124.98,176.66 126,177C124.88,180.64 123.54,184.06 121.94,187.5C120.35,190.99 119.39,194.15 119,198C117.68,198 116.36,198 115,198C115,195.36 115,192.72 115,190C114.01,189.51 114.01,189.51 113,189C113.49,187.51 113.49,187.51 114,186C113.67,185.01 113.34,184.02 113,183C111.68,183 110.36,183 109,183C109.33,183.99 109.66,184.98 110,186C109.34,186.99 108.68,187.98 108,189C107.01,188.01 107.01,188.01 106,187C105.34,187.99 104.68,188.98 104,190C103.34,190 102.68,190 102,190C102,188.35 102,186.7 102,185C102.99,185 103.98,185 105,185C101.62,183.96 98.52,183.92 95,184C95,183.01 95,182.02 95,181C94.34,181 93.68,181 93,181C92.67,180.01 92.34,179.02 92,178C90.51,177.51 90.51,177.51 89,177C88.67,177.66 88.34,178.32 88,179C88,178.34 88,177.68 88,177C87.34,177 86.68,177 86,177C86,176.34 86,175.68 86,175C82.87,175.9 82.87,175.9 80,178C79.67,177.34 79.34,176.68 79,176C77.02,176.49 77.02,176.49 75,177C74.5,175.51 74.5,175.51 74,174C75.49,173.51 75.49,173.51 77,173C76.34,171.68 75.68,170.36 75,169C75.66,169 76.32,169 77,169C76.81,166.56 76.81,166.56 76,164C74.13,162.82 74.13,162.82 72,162C70.25,160.38 70.25,160.38 69,159C69.66,158.01 70.32,157.02 71,156C71,155.34 71,154.68 71,154C70.34,153.67 69.68,153.34 69,153C69,148.67 69.97,146.73 72,143C68.04,143.49 68.04,143.49 64,144C63.67,141.69 63.34,139.38 63,137C62.34,137 61.68,137 61,137C61,135.35 61,133.7 61,132C62.65,131.34 64.3,130.68 66,130C66,129.34 66,128.68 66,128C66.66,128 67.32,128 68,128C68.06,127.05 68.12,126.1 68.19,125.13C68.59,123.58 68.59,123.58 69,122C71.56,120.63 71.56,120.63 74,120C74,119.34 74,118.68 74,118Z" + android:fillColor="#62625B"/> + <path + android:pathData="M110,250C110.66,250.33 111.32,250.66 112,251C112,253.31 112,255.62 112,258C112.66,258.33 113.32,258.66 114,259C114.33,258.34 114.66,257.68 115,257C115.66,257.99 116.32,258.98 117,260C117.66,259.67 118.32,259.34 119,259C119.66,259.33 120.32,259.66 121,260C121,260.66 121,261.32 121,262C120.34,262.33 119.68,262.66 119,263C119,263.99 119,264.98 119,266C118.01,265.67 117.02,265.34 116,265C115.34,265.66 114.68,266.32 114,267C113.34,266.34 112.68,265.68 112,265C109.93,264.36 109.93,264.36 108,264C108.02,264.95 108.04,265.9 108.06,266.88C108,270 108,270 107,272C106.34,272 105.68,272 105,272C104.67,272.99 104.34,273.98 104,275C103.34,274.67 102.68,274.34 102,274C102.33,275.65 102.66,277.3 103,279C102.34,279.33 101.68,279.66 101,280C101.33,281.65 101.66,283.3 102,285C101.01,285 100.02,285 99,285C98.8,286.75 98.62,288.5 98.44,290.25C98.33,291.22 98.23,292.2 98.12,293.2C97.86,296.23 97.86,296.23 99,300C91.08,300 83.16,300 75,300C75,298.68 75,297.36 75,296C75.99,296.33 76.98,296.66 78,297C78.33,296.01 78.66,295.02 79,294C78.34,294 77.68,294 77,294C77,293.01 77,292.02 77,291C76.34,291.66 75.68,292.32 75,293C75,279.11 75,279.11 77,274C77.66,273.67 78.32,273.34 79,273C78.81,273.78 78.63,274.57 78.44,275.38C77.74,277.97 77.74,277.97 79,280C79.66,278.68 80.32,277.36 81,276C81.66,276 82.32,276 83,276C83.33,275.34 83.66,274.68 84,274C85.98,274.33 87.96,274.66 90,275C89.67,274.34 89.34,273.68 89,273C86.47,272.34 86.47,272.34 84,272C84.33,270.35 84.66,268.7 85,267C85.66,267 86.32,267 87,267C87,265.02 87,263.04 87,261C87.66,261 88.32,261 89,261C89,260.34 89,259.68 89,259C89.66,259.33 90.32,259.66 91,260C90.67,262.31 90.34,264.62 90,267C90.99,267 91.98,267 93,267C92.69,267.9 92.69,267.9 92.38,268.81C91.69,271.28 91.69,271.28 94,274C94.63,276.19 94.63,276.19 95,278C95,277.34 95,276.68 95,276C95.99,276 96.98,276 98,276C97.34,275.01 96.68,274.02 96,273C95.67,272.01 95.34,271.02 95,270C96.88,269.38 96.88,269.38 99,269C99.66,269.66 100.32,270.32 101,271C100.67,271.66 100.34,272.32 100,273C100.66,273 101.32,273 102,273C102.16,272.01 102.32,271.03 102.48,270.01C102.71,268.73 102.95,267.45 103.19,266.13C103.41,264.85 103.63,263.57 103.86,262.26C105,259 105,259 107.61,257.55C108.79,257.28 108.79,257.28 110,257C109.5,256.01 109.5,256.01 109,255C109.28,253.32 109.61,251.65 110,250Z" + android:fillColor="#2C2C25"/> + <path + android:pathData="M121,106C121.99,106 122.98,106 124,106C124,106.99 124,107.98 124,109C124.58,108.75 125.15,108.5 125.75,108.25C126.49,108.17 127.24,108.08 128,108C130.06,109.81 130.06,109.81 132,112C132.99,112.66 133.98,113.32 135,114C135.63,116.31 135.63,116.31 136,119C136.19,119.93 136.37,120.86 136.56,121.81C136.71,122.53 136.85,123.26 137,124C137.66,124 138.32,124 139,124C147.12,137.92 147.12,137.92 147,145C146.35,147 145.68,149 145,151C145.28,153.34 145.61,155.68 146,158C145.56,160.44 145.56,160.44 145,162C144.01,162 143.02,162 142,162C142,165.96 142,169.92 142,174C139.03,173.01 139.03,173.01 136,172C135.51,173.98 135.51,173.98 135,176C134.34,176 133.68,176 133,176C132.51,172.54 132.51,172.54 132,169C131.34,169 130.68,169 130,169C130.33,167.35 130.66,165.7 131,164C131.66,164 132.32,164 133,164C133.49,167.46 133.49,167.46 134,171C134.66,171 135.32,171 136,171C136.33,166.38 136.66,161.76 137,157C135.35,156.67 133.7,156.34 132,156C132.66,155.01 133.32,154.02 134,153C133.2,149.84 133.2,149.84 132,147C131.01,147 130.02,147 129,147C127.62,145.71 126.29,144.37 125,143C124.01,142.34 123.02,141.68 122,141C122,140.34 122,139.68 122,139C125.55,138.68 127.38,138.54 130.31,140.69C132.14,143.2 132.66,144.94 133,148C133.66,148 134.32,148 135,148C135,148.66 135,149.32 135,150C137.33,151.21 139.5,152.17 142,153C143.95,147.15 143.51,139.91 142,134C139.54,131.68 139.54,131.68 137,130C137,129.34 137,128.68 137,128C136.01,128 135.02,128 134,128C134,127.01 134,126.02 134,125C133.42,124.86 132.85,124.73 132.25,124.59C128.04,123.49 123.85,121.98 120,119.94C117.97,118.99 116.19,118.59 114,118.13C110.21,117.25 108.71,115.8 106,113C99.89,110.58 93.51,110.41 87,110C90.55,107.63 94.03,106.82 98.13,105.88C98.89,105.7 99.66,105.52 100.44,105.34C107.69,103.73 114.02,102.72 121,106Z" + android:fillColor="#767771"/> + <path + android:pathData="M76,260C76.66,260 77.32,260 78,260C78.2,263.72 78.15,264.77 76,268C76.99,267.67 77.98,267.34 79,267C78.34,268.65 77.68,270.3 77,272C77.99,271.67 78.98,271.34 80,271C80,268.69 80,266.38 80,264C81.98,264 83.96,264 86,264C86.5,265.48 86.5,265.48 87,267C86.34,267 85.68,267 85,267C84.67,268.65 84.34,270.3 84,272C85.65,272 87.3,272 89,272C89.5,273.48 89.5,273.48 90,275C89.07,274.98 88.14,274.96 87.19,274.94C83.98,274.84 83.98,274.84 81,276C80.63,277.32 80.29,278.66 80,280C79.01,280.49 79.01,280.49 78,281C77.5,279.02 77.5,279.02 77,277C77,278.52 77.03,280.04 77.06,281.56C77,284 77,284 76,285C75.96,287 75.96,289 76,291C76.66,289.68 77.32,288.36 78,287C77.67,289.31 77.34,291.62 77,294C77.66,294 78.32,294 79,294C79,295.65 79,297.3 79,299C77.68,298.01 76.36,297.02 75,296C75,297.32 75,298.64 75,300C73.35,300 71.7,300 70,300C70.46,297.62 70.93,295.27 71.56,292.94C72.15,290.68 72.15,290.68 72,287C72.66,287 73.32,287 74,287C73.67,285.68 73.34,284.36 73,283C72.01,283.66 71.02,284.32 70,285C70.99,281.37 71.98,277.74 73,274C71.35,274.33 69.7,274.66 68,275C68.21,275.78 68.41,276.57 68.63,277.38C68.75,278.24 68.87,279.11 69,280C67,282 67,282 64,283C62.29,284.63 60.62,286.29 59,288C58.34,287.67 57.68,287.34 57,287C56.73,287.8 56.46,288.61 56.19,289.44C55.8,290.28 55.4,291.13 55,292C53.51,292.49 53.51,292.49 52,293C52,290.36 52,287.72 52,285C50.68,285 49.36,285 48,285C47.67,285.99 47.34,286.98 47,288C44.94,288.69 44.94,288.69 43,289C43,287.35 43,285.7 43,284C43.99,283.67 44.98,283.34 46,283C45.77,282.42 45.55,281.84 45.32,281.25C45,279 45,279 46.21,277.04C46.78,276.38 47.35,275.73 47.94,275.06C50.09,272.59 50.96,271.56 51.19,268.25C51.13,267.5 51.07,266.76 51,266C51.66,266 52.32,266 53,266C53,267.32 53,268.64 53,270C53.99,270 54.98,270 56,270C56.33,270.99 56.66,271.98 57,273C60.12,272.51 63,272 66,271C66,269.35 66,267.7 66,266C66.91,265.75 67.82,265.51 68.75,265.25C72.13,263.95 73.58,262.6 76,260ZM71,268C70.67,268.99 70.34,269.98 70,271C70.33,271.66 70.66,272.32 71,273C71.99,272.67 72.98,272.34 74,272C74,271.01 74,270.02 74,269C73.01,268.67 72.02,268.34 71,268Z" + android:fillColor="#191A14"/> + <path + android:pathData="M101.56,110.53C105.51,111.91 108.44,113.69 111,117C111,117.66 111,118.32 111,119C111.66,119.33 112.32,119.66 113,120C112.34,120 111.68,120 111,120C111.78,123.07 111.78,123.07 114,125C113.34,126.32 112.68,127.64 112,129C111.34,129 110.68,129 110,129C109.34,130.65 108.68,132.3 108,134C106.68,134 105.36,134 104,134C104,132.02 104,130.04 104,128C103.01,127.67 102.02,127.34 101,127C100.48,126.32 99.97,125.64 99.44,124.94C94.61,121.1 87.71,122.88 81.88,123.5C80.6,123.67 79.32,123.83 78,124C78,122.02 78,120.04 78,118C77.34,117.67 76.68,117.34 76,117C77.12,116.02 78.25,115.04 79.38,114.06C80.31,113.24 80.31,113.24 81.27,112.41C86.5,108.14 95.28,109.23 101.56,110.53Z" + android:fillColor="#0E0F06"/> + <path + android:pathData="M110,136C111.16,139.48 110.71,141.46 110,145C110.33,144.34 110.66,143.68 111,143C111.99,143.33 112.98,143.66 114,144C114.37,144.93 114.74,145.86 115.13,146.81C117.76,151.3 121.24,152.3 126,154C126,154.66 126,155.32 126,156C125.11,155.67 124.23,155.34 123.31,155C120.14,153.85 120.14,153.85 117.25,154.06C116.51,154.04 115.76,154.02 115,154C114.34,153.01 113.68,152.02 113,151C111.21,157.32 110.46,163.45 110,170C107.4,170.25 104.79,170.47 102.19,170.69C101.45,170.76 100.71,170.83 99.95,170.91C94.51,171.33 94.51,171.33 92,169.71C90.48,167.12 90.75,164.94 91,162C91.33,161.34 91.66,160.68 92,160C92.99,160 93.98,160 95,160C95.33,158.68 95.66,157.36 96,156C97.32,156 98.64,156 100,156C100.04,155.22 100.08,154.43 100.13,153.63C101.73,146.98 105.87,141.37 110,136Z" + android:fillColor="#9D9E9B"/> + <path + android:pathData="M34,157C36.47,157.99 36.47,157.99 39,159C33.99,166.69 33.99,166.69 30.63,167.75C27.06,169.45 25.9,171.6 24,175C23.88,175.68 23.76,176.36 23.64,177.06C23,179 23,179 21.19,180.2C20.1,180.66 20.1,180.66 19,181.13C15.84,182.34 15.84,182.34 14,185C10.94,185.63 10.94,185.63 8,186C8,186.66 8,187.32 8,188C4.77,190.15 3.72,190.2 0,190C-0.7,186.46 -0.93,183.51 0,180C3.9,176.37 8.51,174.17 13.3,171.93C15.58,170.68 15.93,169.34 17,167C19,164.25 19,164.25 21,162C21.66,162 22.32,162 23,162C23,161.01 23,160.02 23,159C26.3,159 29.6,159 33,159C32.67,159.66 32.34,160.32 32,161C32.66,161.33 33.32,161.66 34,162C34,160.35 34,158.7 34,157Z" + android:fillColor="#38372A"/> + <path + android:pathData="M3,207C6.37,207.55 8.08,208.05 11,210C11.33,209.34 11.66,208.68 12,208C12,211.88 11.59,213.37 10,216.75C9.63,217.55 9.26,218.35 8.88,219.17C8.44,220.08 8.44,220.08 8,221C9.32,221.66 10.64,222.32 12,223C12,223.99 12,224.98 12,226C11.34,226.33 10.68,226.66 10,227C10.66,227.66 11.32,228.32 12,229C12.33,229.66 12.66,230.32 13,231C12.67,231.66 12.34,232.32 12,233C10.35,233 8.7,233 7,233C7,232.34 7,231.68 7,231C6.34,231 5.68,231 5,231C5.06,232.07 5.12,233.15 5.19,234.25C4.99,238.11 4.6,239.29 2,242C3.98,241.51 3.98,241.51 6,241C6,240.34 6,239.68 6,239C8.31,239 10.62,239 13,239C13,239.99 13,240.98 13,242C14.65,242.33 16.3,242.66 18,243C17.43,245.87 17.14,246.86 15,249C13.34,249.38 11.68,249.71 10,250C8.51,250.49 8.51,250.49 7,251C6.34,250.67 5.68,250.34 5,250C5,250.99 5,251.98 5,253C5.33,253.33 5.66,253.66 6,254C4.68,256.31 3.36,258.62 2,261C1.34,261 0.68,261 0,261C0,248.79 0,236.58 0,224C1.32,224 2.64,224 4,224C3.67,223.34 3.34,222.68 3,222C3.99,222 4.98,222 6,222C6,221.34 6,220.68 6,220C4.68,219.67 3.36,219.34 2,219C2.66,218.67 3.32,218.34 4,218C3.86,217.42 3.71,216.85 3.56,216.25C3.38,215.51 3.19,214.76 3,214C2.69,212.98 2.69,212.98 2.38,211.94C2,210 2,210 3,207Z" + android:fillColor="#171811"/> + <path + android:pathData="M13,274C13.99,274.33 14.98,274.66 16,275C16,275.99 16,276.98 16,278C16.99,277.67 17.98,277.34 19,277C19.33,277.99 19.66,278.98 20,280C21.32,280 22.64,280 24,280C24.33,281.98 24.66,283.96 25,286C22.92,286.55 21.16,287 19,287C19.33,287.99 19.66,288.98 20,290C19.34,290.99 18.68,291.98 18,293C18.99,292.67 19.98,292.34 21,292C20.67,292.99 20.34,293.98 20,295C18,295.63 18,295.63 16,296C15.67,296.33 15.34,296.66 15,297C15,297.99 15,298.98 15,300C10.05,300 5.1,300 0,300C-0.08,297.44 -0.14,294.88 -0.19,292.31C-0.21,291.59 -0.24,290.87 -0.26,290.13C-0.33,285.49 0.25,282.73 3,279C3.33,278.34 3.66,277.68 4,277C4.66,277 5.32,277 6,277C6.33,277.66 6.66,278.32 7,279C7.99,279 8.98,279 10,279C10,281 10,281 7.5,283.63C6.68,284.41 5.85,285.19 5,286C9.73,284.16 9.73,284.16 12.38,280C13.1,277.02 13.1,277.02 13,274Z" + android:fillColor="#12130D"/> + <path + android:pathData="M133,221C133.66,221.33 134.32,221.66 135,222C135.35,224.37 135.57,226.61 135.69,229C135.73,229.71 135.77,230.42 135.81,231.15C136.3,242.16 135.91,253.33 133,264C132.34,264 131.68,264 131,264C131,267.96 131,271.92 131,276C128.52,276.49 128.52,276.49 126,277C125.67,275.68 125.34,274.36 125,273C125.99,273.66 126.98,274.32 128,275C127.43,272.13 127.14,271.14 125,269C125.99,269 126.98,269 128,269C128,267.68 128,266.36 128,265C127.34,264.67 126.68,264.34 126,264C126,263.01 126,262.02 126,261C126.99,261.33 127.98,261.66 129,262C129.33,261.01 129.66,260.02 130,259C129.34,259 128.68,259 128,259C128,258.34 128,257.68 128,257C127.38,256.86 126.76,256.71 126.13,256.56C124,256 124,256 122,255C122.33,253.68 122.66,252.36 123,251C121.68,250.67 120.36,250.34 119,250C119.66,249.34 120.32,248.68 121,248C123.31,248 125.62,248 128,248C128,242.06 128,236.12 128,230C127.34,229.67 126.68,229.34 126,229C128.31,226.36 130.62,223.72 133,221Z" + android:fillColor="#4D4A40"/> + <path + android:pathData="M74,118C75.32,118 76.64,118 78,118C77.67,120.97 77.34,123.94 77,127C78.65,127 80.3,127 82,127C82,128.32 82,129.64 82,131C81.34,131 80.68,131 80,131C79.67,133.64 79.34,136.28 79,139C78.38,139.06 77.76,139.12 77.13,139.19C74.72,139.83 74.72,139.83 73.75,142.56C73.5,143.37 73.25,144.17 73,145C73.56,145.12 74.11,145.25 74.69,145.38C77.24,146.07 79.59,146.89 82,148C82.33,148.66 82.66,149.32 83,150C80.69,149.67 78.38,149.34 76,149C76.99,149.66 77.98,150.32 79,151C75.37,151 71.74,151 68,151C69.32,148.36 70.64,145.72 72,143C68.04,143.49 68.04,143.49 64,144C63.67,141.69 63.34,139.38 63,137C62.34,137 61.68,137 61,137C61,135.35 61,133.7 61,132C62.65,131.34 64.3,130.68 66,130C66,129.34 66,128.68 66,128C66.66,128 67.32,128 68,128C68.06,127.05 68.12,126.1 68.19,125.13C68.59,123.58 68.59,123.58 69,122C71.56,120.63 71.56,120.63 74,120C74,119.34 74,118.68 74,118Z" + android:fillColor="#575852"/> + <path + android:pathData="M125,229C125.99,229.33 126.98,229.66 128,230C129.33,241.52 129.33,241.52 128,247C128.66,247.33 129.32,247.66 130,248C126.8,249.07 124.34,249 121,249C120.67,249.33 120.34,249.66 120,250C120.99,250.33 121.98,250.66 123,251C122.67,252.32 122.34,253.64 122,255C123.98,255.66 125.96,256.32 128,257C128,257.66 128,258.32 128,259C128.66,259 129.32,259 130,259C129.67,260.32 129.34,261.64 129,263C128.01,262.34 127.02,261.68 126,261C126,261.99 126,262.98 126,264C126.99,264.33 127.98,264.66 129,265C128.63,265.7 128.26,266.4 127.88,267.13C126.77,270.76 127.56,272.56 129,276C127.91,275.83 126.81,275.67 125.69,275.5C120.93,274.86 118.36,275.12 114,277C113.67,274.69 113.34,272.38 113,270C113.99,269.51 113.99,269.51 115,269C113.68,268.67 112.36,268.34 111,268C111.33,266.68 111.66,265.36 112,264C112.66,264.66 113.32,265.32 114,266C114.99,264.68 115.98,263.36 117,262C117,263.32 117,264.64 117,266C117.66,266 118.32,266 119,266C118.67,264.68 118.34,263.36 118,262C118.99,262 119.98,262 121,262C121,261.34 121,260.68 121,260C120.4,260.21 119.8,260.41 119.19,260.63C117,261 117,261 114,259C113.01,258.67 112.02,258.34 111,258C111.62,256.93 112.24,255.85 112.88,254.75C114.02,252.75 115.11,250.76 116.13,248.69C117,247 117,247 119,245C121.31,245.66 123.62,246.32 126,247C125.99,246.43 125.98,245.86 125.96,245.28C125.91,240.39 126.18,235.81 127,231C126.34,231 125.68,231 125,231C125,230.34 125,229.68 125,229Z" + android:fillColor="#414039"/> + <path + android:pathData="M122,277C124.44,277.75 124.44,277.75 127,279C127.81,281.13 127.81,281.13 128,283C125.03,282.51 125.03,282.51 122,282C122.33,283.65 122.66,285.3 123,287C123.66,287 124.32,287 125,287C125,288.32 125,289.64 125,291C124.34,291 123.68,291 123,291C123,291.66 123,292.32 123,293C122.34,293 121.68,293 121,293C121,295.31 121,297.62 121,300C112.87,300.47 112.87,300.47 109.44,298.63C108,297 108,297 108,295C107.34,295 106.68,295 106,295C106.59,283.29 106.59,283.29 110,279C111.32,279.66 112.64,280.32 114,281C114.33,280.01 114.66,279.02 115,278C115.66,279.32 116.32,280.64 117,282C117.66,282 118.32,282 119,282C119.33,280.68 119.66,279.36 120,278C120.33,278.33 120.66,278.66 121,279C121.33,278.34 121.66,277.68 122,277Z" + android:fillColor="#434138"/> + <path + android:pathData="M65,174C65,174.66 65,175.32 65,176C65.66,176 66.32,176 67,176C67.04,177.67 67.04,179.33 67,181C66.67,181.33 66.34,181.66 66,182C66.09,183.69 66.25,185.38 66.44,187.06C66.54,187.98 66.64,188.9 66.75,189.85C66.83,190.56 66.91,191.27 67,192C66.36,191.67 65.72,191.34 65.06,191C63.23,189.93 63.23,189.93 62,190C62,190.66 62,191.32 62,192C64.47,192.99 64.47,192.99 67,194C67,194.66 67,195.32 67,196C68.42,196.43 68.42,196.43 69.88,196.88C73,198 73,198 75,200C72.36,199.67 69.72,199.34 67,199C69.31,200.65 71.62,202.3 74,204C71.38,208.88 71.38,208.88 68,210C67.67,207.69 67.34,205.38 67,203C65.02,203.33 63.04,203.66 61,204C61,203.34 61,202.68 61,202C59.68,202 58.36,202 57,202C57,204.31 57,206.62 57,209C56.34,209 55.68,209 55,209C53.41,204.82 52.79,201.47 53,197C53.33,198.32 53.66,199.64 54,201C54.66,201 55.32,201 56,201C56.84,198.06 57.14,195.39 57.21,192.34C57.24,191.46 57.27,190.59 57.3,189.69C57.35,187.85 57.39,186.01 57.43,184.18C57.46,183.3 57.49,182.43 57.52,181.53C57.54,180.73 57.56,179.93 57.58,179.11C58.49,174.5 60.51,174 65,174Z" + android:fillColor="#272616"/> + <path + android:pathData="M132,126C132,126.66 132,127.32 132,128C132.6,128.06 133.2,128.12 133.81,128.19C136.9,129.34 137.59,131.11 139,134C139,134.66 139,135.32 139,136C139.99,136.33 140.98,136.66 142,137C142.22,138.6 142.43,140.21 142.63,141.81C142.8,143.15 142.8,143.15 142.98,144.52C143,147 143,147 141,150C139.12,149.74 139.12,149.74 137,149C135.91,147.29 135.91,147.29 135.06,145.19C133.49,141.28 131.59,139.25 128,137C124.65,136.52 124.65,136.52 121.19,136.75C120.03,136.79 118.86,136.82 117.67,136.86C116.79,136.91 115.91,136.95 115,137C115.33,135.35 115.66,133.7 116,132C116.99,132 117.98,132 119,132C119,131.34 119,130.68 119,130C122.47,126.53 127.2,123.89 132,126Z" + android:fillColor="#0D0F05"/> + <path + android:pathData="M121,106C121.99,106 122.98,106 124,106C124,106.99 124,107.98 124,109C124.58,108.75 125.15,108.5 125.75,108.25C126.49,108.17 127.24,108.08 128,108C130.06,109.81 130.06,109.81 132,112C132.99,112.66 133.98,113.32 135,114C135.63,116.31 135.63,116.31 136,119C136.19,119.93 136.37,120.86 136.56,121.81C136.71,122.53 136.85,123.26 137,124C137.66,124 138.32,124 139,124C139.49,125.49 139.49,125.49 140,127C139.01,127 138.02,127 137,127C137,126.34 137,125.68 137,125C136.01,124.67 135.02,124.34 134,124C134,123.34 134,122.68 134,122C133.34,121.92 132.68,121.83 132,121.75C128.7,120.93 126.07,119.62 123.07,118.05C120.11,116.55 117.07,115.28 114,114C114,112.35 114,110.7 114,109C106.97,108.15 100.08,107.88 93,108C93,107.67 93,107.34 93,107C112.98,102.23 112.98,102.23 121,106Z" + android:fillColor="#7A7B76"/> + <path + android:pathData="M23,177C23.33,177.99 23.66,178.98 24,180C22.4,181.84 21.48,182.89 19.06,183.44C16.03,184.26 14.91,185.51 13,188C12.64,189.32 12.33,190.66 12.06,192C11.21,196.15 9.56,197.63 6,200C5.67,200.66 5.34,201.32 5,202C6.32,202 7.64,202 9,202C9,203.32 9,204.64 9,206C7.02,206.33 5.04,206.66 3,207C2.83,209.92 2.83,209.92 3,213C3.66,213.66 4.32,214.32 5,215C5,215.99 5,216.98 5,218C5.21,218.66 5.41,219.32 5.63,220C6,222 6,222 4,225C2.68,224.67 1.36,224.34 0,224C0,212.78 0,201.56 0,190C2.64,189.34 5.28,188.68 8,188C8,187.34 8,186.68 8,186C9.42,185.88 9.42,185.88 10.88,185.75C11.91,185.5 12.94,185.26 14,185C15.17,183.08 15.17,183.08 16,181C18.62,179.31 19.83,179 23,179C23,178.34 23,177.68 23,177Z" + android:fillColor="#21221B"/> + <path + android:pathData="M113,238C113.66,238.33 114.32,238.66 115,239C114.34,239.66 113.68,240.32 113,241C112.36,243.07 112.36,243.07 112,245C113.32,245 114.64,245 116,245C116,245.66 116,246.32 116,247C115.34,247 114.68,247 114,247C113.88,248.13 113.75,249.27 113.63,250.44C113.32,252.2 113.32,252.2 113,254C112.34,254.33 111.68,254.66 111,255C110.67,253.35 110.34,251.7 110,250C110,250.76 110,251.53 110,252.31C110,254.21 110,256.1 110,258C108.68,258.33 107.36,258.66 106,259C105.8,259.84 105.59,260.69 105.38,261.55C105.11,262.65 104.84,263.75 104.56,264.88C104.3,265.97 104.03,267.06 103.75,268.18C103,271 103,271 102,273C101.34,273 100.68,273 100,273C99.5,271.52 99.5,271.52 99,270C97.68,270 96.36,270 95,270C95.5,270.43 95.99,270.87 96.5,271.31C98,273 98,273 98,276C97.01,276 96.02,276 95,276C95.33,276.99 95.66,277.98 96,279C95.01,279.49 95.01,279.49 94,280C93.69,278.91 93.38,277.81 93.06,276.69C92.42,274.45 91.74,272.21 91,270C91.66,270 92.32,270 93,270C93,269.01 93,268.02 93,267C92.01,267.33 91.02,267.66 90,268C89,267 89,267 88.94,264.44C88.96,263.63 88.98,262.83 89,262C90.98,261.01 92.96,260.02 95,259C95.33,259.99 95.66,260.98 96,262C96.43,261.2 96.87,260.39 97.31,259.56C99,257 99,257 102,256C102.66,256 103.32,256 104,256C104.33,255.01 104.66,254.02 105,253C105.66,253 106.32,253 107,253C107,252.34 107,251.68 107,251C107.66,251 108.32,251 109,251C109,249.02 109,247.04 109,245C108.34,244.67 107.68,244.34 107,244C110.75,239.13 110.75,239.13 113,238Z" + android:fillColor="#1E1E16"/> + <path + android:pathData="M67,151C70.33,153.22 70.75,154.35 72,158C71.01,158.49 71.01,158.49 70,159C70.99,159.66 71.98,160.32 73,161C75.25,163.38 75.25,163.38 77,166C76.69,168.13 76.69,168.13 76,170C76.33,170.99 76.66,171.98 77,173C76.34,173.33 75.68,173.66 75,174C75.99,175.32 76.98,176.64 78,178C76.02,178.33 74.04,178.66 72,179C71.62,177.34 71.29,175.68 71,174C71.33,173.67 71.66,173.34 72,173C71.34,172.67 70.68,172.34 70,172C70,172.66 70,173.32 70,174C69.01,174 68.02,174 67,174C67,173.34 67,172.68 67,172C65.36,172.25 65.36,172.25 63.69,172.5C60,173 60,173 57,173C57,169.89 57.54,168.65 59,166C59.66,166 60.32,166 61,166C61.33,163.69 61.66,161.38 62,159C62.66,159 63.32,159 64,159C64.12,158.42 64.25,157.85 64.38,157.25C65.01,154.98 65.89,153.07 67,151Z" + android:fillColor="#46463B"/> + <path + android:pathData="M136,221C136.33,221 136.66,221 137,221C137.84,227.69 137.95,233.84 137.19,240.54C136.96,243.49 137.3,246.13 138,249C137.34,249 136.68,249 136,249C136.16,249.55 136.32,250.11 136.49,250.68C137.05,253.23 137.13,255.52 137.13,258.13C137.13,259.43 137.13,259.43 137.13,260.76C137,263 137,263 136,265C135.34,265 134.68,265 134,265C134.21,265.85 134.43,266.7 134.65,267.58C135.07,271.68 134.21,273.91 132.63,277.69C132.16,278.81 131.7,279.92 131.23,281.07C130.82,282.04 130.42,283.01 130,284C129.67,284.99 129.34,285.98 129,287C128.34,287 127.68,287 127,287C126.67,289.64 126.34,292.28 126,295C125.34,295 124.68,295 124,295C124,295.99 124,296.98 124,298C123.34,298 122.68,298 122,298C121.5,298.99 121.5,298.99 121,300C121,297.69 121,295.38 121,293C121.66,293 122.32,293 123,293C123.66,291.02 124.32,289.04 125,287C124.34,287 123.68,287 123,287C122.5,284.52 122.5,284.52 122,282C123.65,282 125.3,282 127,282C126.5,280.52 126.5,280.52 126,279C123.98,278.27 123.98,278.27 122,278C122,278.66 122,279.32 122,280C121.34,280 120.68,280 120,280C119.34,280.66 118.68,281.32 118,282C117.25,279.75 117.25,279.75 117,277C118.94,274.69 118.94,274.69 121,273C121.74,273.49 122.49,273.99 123.25,274.5C126.06,276.32 126.06,276.32 130,276C130.33,272.04 130.66,268.08 131,264C131.66,264 132.32,264 133,264C134.66,244.53 134.66,244.53 134.94,225C135,223 135,223 136,221Z" + android:fillColor="#464539"/> + <path + android:pathData="M97,122C97.66,122.66 98.32,123.32 99,124C95.04,124.66 91.08,125.32 87,126C89.04,126.34 89.04,126.34 91.13,126.69C96.02,127.79 98.62,129.28 102,133C102.38,135.81 102.38,135.81 102,138C97.3,139.57 92.56,140.06 87.89,138.13C84.16,135.78 83.15,134.6 82.06,130.19C82.04,129.14 82.02,128.08 82,127C80.35,127 78.7,127 77,127C77.33,125.68 77.66,124.36 78,123C90.97,121.33 90.97,121.33 97,122Z" + android:fillColor="#232318"/> + <path + android:pathData="M142,162C142.99,162.33 143.98,162.66 145,163C145,163.99 145,164.98 145,166C144.34,166 143.68,166 143,166C143,171.94 143,177.88 143,184C141.68,183.67 140.36,183.34 139,183C138.67,183.66 138.34,184.32 138,185C139.32,185 140.64,185 142,185C142.33,186.65 142.66,188.3 143,190C140.69,190.33 138.38,190.66 136,191C135.67,190.01 135.34,189.02 135,188C134.34,187.67 133.68,187.34 133,187C133,188.98 133,190.96 133,193C132.01,193 131.02,193 130,193C129.14,188.89 129.15,186.07 130,182C130.09,179 130.06,176 130,173C129.34,172.67 128.68,172.34 128,172C128.33,171.01 128.66,170.02 129,169C129.99,168.67 130.98,168.34 132,168C133,169 133,169 133.06,172.56C133.04,173.7 133.02,174.83 133,176C133.66,176 134.32,176 135,176C135.33,174.68 135.66,173.36 136,172C137.98,172.66 139.96,173.32 142,174C141.72,172.7 141.72,172.7 141.44,171.38C140.99,167.95 141.28,165.36 142,162Z" + android:fillColor="#5F5F58"/> + <path + android:pathData="M81,134C83.55,134.36 85.07,135.05 87.21,136.5C90.55,138.3 93.05,138.5 96.81,138.69C97.97,138.75 99.14,138.82 100.33,138.89C101.21,138.92 102.09,138.96 103,139C102.01,140.49 102.01,140.49 101,142C100.34,142 99.68,142 99,142C99,143.65 99,145.3 99,147C98.34,147 97.68,147 97,147C96.67,148.65 96.34,150.3 96,152C94.68,152.33 93.36,152.66 92,153C92,154.65 92,156.3 92,158C91.34,157.67 90.68,157.34 90,157C90,154.36 90,151.72 90,149C89.28,148.92 88.56,148.84 87.81,148.75C84.45,147.85 82.58,146.29 80,144C81.32,144 82.64,144 84,144C82.68,143.34 81.36,142.68 80,142C80.66,141.01 81.32,140.02 82,139C81.34,137.68 80.68,136.36 80,135C80.33,134.67 80.66,134.34 81,134Z" + android:fillColor="#949596"/> + <path + android:pathData="M114,108C115,111 115,111 114,114C115.89,114.59 115.89,114.59 117.81,115.19C133.27,120.36 133.27,120.36 137,125C137,125.66 137,126.32 137,127C137.6,127.08 138.21,127.16 138.83,127.25C142.42,128.49 143.28,131.28 144.95,134.52C146.49,138.17 146.93,141.02 147,145C146,147.23 146,147.23 145,149C144.94,148.02 144.94,148.02 144.89,147.02C144.49,141.73 143.99,137.54 141,133C139.7,131.96 138.37,130.95 137,130C137,129.34 137,128.68 137,128C136.01,128 135.02,128 134,128C134,127.01 134,126.02 134,125C133.42,124.86 132.85,124.73 132.25,124.59C128.04,123.49 123.85,121.98 120,119.94C117.97,118.99 116.19,118.59 114,118.13C110.21,117.25 108.71,115.8 106,113C99.89,110.58 93.51,110.41 87,110C94.25,105.17 105.66,106.75 114,108Z" + android:fillColor="#9B9D95"/> + <path + android:pathData="M68,144C68.66,144 69.32,144 70,144C70.57,147.74 69.79,149.61 67.63,152.56C67.17,153.16 66.71,153.75 66.25,154.36C63.98,157.34 63,159.25 63,163C62.01,163 61.02,163 60,163C60,163.66 60,164.32 60,165C56.7,166.72 53.67,168.29 50,169C51.98,169 53.96,169 56,169C55.44,169.27 54.89,169.54 54.31,169.81C51.8,171.1 49.41,172.53 47,174C46.78,172.61 46.78,172.61 46.56,171.19C46.08,167.99 46.08,167.99 45,165C46.13,164.42 47.27,163.85 48.44,163.25C51.37,161.65 51.37,161.65 52.94,158.75C52.96,158.17 52.98,157.6 53,157C52.34,157 51.68,157 51,157C51,156.01 51,155.02 51,154C53.64,154.33 56.28,154.66 59,155C58.67,153.35 58.34,151.7 58,150C59.98,150 61.96,150 64,150C63.67,149.34 63.34,148.68 63,148C63.64,147.9 64.28,147.79 64.94,147.69C65.62,147.46 66.3,147.23 67,147C67.33,146.01 67.66,145.02 68,144Z" + android:fillColor="#1E1F16"/> + <path + android:pathData="M78,273C78.33,273.66 78.66,274.32 79,275C78.67,275.99 78.34,276.98 78,278C78.33,278.66 78.66,279.32 79,280C79.66,278.68 80.32,277.36 81,276C81.66,276 82.32,276 83,276C83.33,275.34 83.66,274.68 84,274C86.31,274.33 88.62,274.66 91,275C92.19,277.75 92.19,277.75 93,281C91.63,283.38 91.63,283.38 90,285C90.99,285.33 91.98,285.66 93,286C92.67,286.99 92.34,287.98 92,289C91.01,288.34 90.02,287.68 89,287C89,286.34 89,285.68 89,285C88.34,285 87.68,285 87,285C87.33,282.36 87.66,279.72 88,277C87.34,277 86.68,277 86,277C85.92,277.78 85.83,278.57 85.75,279.38C85,282 85,282 82.94,283.31C81.98,283.65 81.98,283.65 81,284C81.66,285.98 82.32,287.96 83,290C82.01,290.33 81.02,290.66 80,291C82.47,291.99 82.47,291.99 85,293C85.04,295 85.04,297 85,299C84,300 84,300 81.93,300.1C81.11,300.09 80.29,300.07 79.44,300.06C78.61,300.05 77.78,300.04 76.93,300.04C75.98,300.02 75.98,300.02 75,300C75,298.68 75,297.36 75,296C75.99,296.33 76.98,296.66 78,297C78.33,296.01 78.66,295.02 79,294C78.34,294 77.68,294 77,294C77,293.01 77,292.02 77,291C76.34,291.66 75.68,292.32 75,293C75,276 75,276 78,273Z" + android:fillColor="#23231D"/> + <path + android:pathData="M119,204C119.99,204 120.98,204 122,204C122,204.66 122,205.32 122,206C124.31,206.33 126.62,206.66 129,207C124.38,211.88 124.38,211.88 121,213C121.12,214.11 121.12,214.11 121.25,215.25C121,218 121,218 119.25,220.38C117,222 117,222 114.75,221.75C114.17,221.5 113.6,221.26 113,221C113,221.66 113,222.32 113,223C112.01,223.33 111.02,223.66 110,224C109.67,223.01 109.34,222.02 109,221C108.34,221 107.68,221 107,221C106.67,221.99 106.34,222.98 106,224C104.88,220.25 104.88,220.25 106,218C106,217.34 106,216.68 106,216C106.99,215.67 107.98,215.34 109,215C110.24,212.68 110.24,212.68 111.19,209.94C111.53,209.02 111.88,208.1 112.23,207.15C112.48,206.44 112.74,205.73 113,205C114.21,205.03 114.21,205.03 115.44,205.06C117.93,205.3 117.93,205.3 119,204Z" + android:fillColor="#212013"/> + <path + android:pathData="M110,136C111.31,139.94 110.24,142.12 109,146C108.34,146 107.68,146 107,146C106.96,146.99 106.93,147.97 106.89,148.99C106.82,150.27 106.76,151.55 106.69,152.88C106.63,154.15 106.57,155.43 106.51,156.74C106.34,157.82 106.17,158.89 106,160C105.01,160.66 104.02,161.32 103,162C103.33,163.32 103.66,164.64 104,166C103.01,166.33 102.02,166.66 101,167C101,167.66 101,168.32 101,169C97.66,168.44 94.97,167.65 92,166C92,164.02 92,162.04 92,160C92.99,160 93.98,160 95,160C95.33,158.68 95.66,157.36 96,156C97.32,156 98.64,156 100,156C100.04,155.22 100.08,154.43 100.13,153.63C101.73,146.98 105.87,141.37 110,136Z" + android:fillColor="#A8A8AB"/> + <path + android:pathData="M68,123C68.33,123.66 68.66,124.32 69,125C68.07,127.03 67.07,129.04 66,131C65.34,131 64.68,131 64,131C63.67,131.66 63.34,132.32 63,133C62.34,132.67 61.68,132.34 61,132C61.27,133.98 61.27,133.98 62,136C62.99,136.33 63.98,136.66 65,137C64.34,137 63.68,137 63,137C63.19,138.11 63.37,139.23 63.56,140.38C64,144 64,144 63,146C61.35,145.67 59.7,145.34 58,145C58,144.34 58,143.68 58,143C56.68,143.33 55.36,143.66 54,144C54,144.66 54,145.32 54,146C53.34,146.33 52.68,146.66 52,147C52.66,147.66 53.32,148.32 54,149C52.68,149 51.36,149 50,149C50.88,142.13 50.88,142.13 52,141C51.34,140.67 50.68,140.34 50,140C50,138.35 50,136.7 50,135C50.58,134.75 51.15,134.51 51.75,134.25C54.3,132.83 55.98,131.09 58,129C58.66,128.67 59.32,128.34 60,128C60.43,127.34 60.87,126.68 61.31,126C63.41,123.51 64.83,123.34 68,123Z" + android:fillColor="#414137"/> + <path + android:pathData="M112,150C114.76,152.49 116.62,154.2 117,158C116.67,158.66 116.34,159.32 116,160C116.99,160.33 117.98,160.66 119,161C118.34,161 117.68,161 117,161C117,161.66 117,162.32 117,163C117.66,163.33 118.32,163.66 119,164C117.68,164.33 116.36,164.66 115,165C117.47,166.49 117.47,166.49 120,168C116.56,170.29 115.01,170.18 111,170C110.67,170.99 110.34,171.98 110,173C108.44,173.37 106.88,173.72 105.31,174.06C104.01,174.36 104.01,174.36 102.68,174.66C97.49,175.32 93.41,173.68 89,171C86.33,167.62 85.63,165.28 86,161C88,162 88,162 88.88,164.38C90.23,167.53 91,168.35 94,170C96.83,170.21 99.43,170.28 102.25,170.19C103,170.17 103.74,170.16 104.51,170.15C106.34,170.11 108.17,170.06 110,170C109.98,169.31 109.95,168.62 109.93,167.91C109.81,161.58 110.39,156.13 112,150Z" + android:fillColor="#7B7B79"/> + <path + android:pathData="M60,163C60.66,163.33 61.32,163.66 62,164C61.32,164.74 60.64,165.49 59.94,166.25C57.72,168.76 57.72,168.76 58.25,171.31C58.5,171.87 58.74,172.43 59,173C59.33,172.67 59.66,172.34 60,172C62.33,171.96 64.67,171.96 67,172C67,172.66 67,173.32 67,174C67.99,174 68.98,174 70,174C70,173.34 70,172.68 70,172C70.99,172.33 71.98,172.66 73,173C72.67,174.65 72.34,176.3 72,178C69.69,177.34 67.38,176.68 65,176C65,175.34 65,174.68 65,174C61.75,175.09 61.75,175.09 59,177C58.87,178.53 58.8,180.06 58.75,181.59C58.72,182.52 58.69,183.45 58.65,184.41C58.59,186.38 58.54,188.35 58.48,190.32C58.45,191.25 58.41,192.19 58.38,193.15C58.35,194.01 58.33,194.86 58.3,195.75C58,198 58,198 56,201C55.34,201 54.68,201 54,201C53.3,197.85 53,195.27 53,192C52.79,190.7 52.59,189.4 52.38,188.06C51.89,184.5 52.28,182.24 54,179C54.99,179 55.98,179 57,179C57,178.01 57,177.02 57,176C52.54,175.01 52.54,175.01 48,174C49.32,172.68 50.64,171.36 52,170C50.68,169.67 49.36,169.34 48,169C49.62,168.33 51.25,167.66 52.88,167C53.78,166.63 54.68,166.26 55.62,165.88C58,165 58,165 60,165C60,164.34 60,163.68 60,163Z" + android:fillColor="#313025"/> + <path + android:pathData="M69,183C71.47,183.49 71.47,183.49 74,184C74.33,186.31 74.66,188.62 75,191C76.26,191.27 77.52,191.54 78.81,191.81C82.21,192.64 83.55,193.55 86,196C89.96,196.42 92.6,196.09 96,194C96,194.99 96,195.98 96,197C96.7,196.84 97.4,196.67 98.13,196.5C101.18,195.97 103.91,195.79 107,196C107.66,196.66 108.32,197.32 109,198C111.07,198.64 111.07,198.64 113,199C112.34,200.32 111.68,201.64 111,203C109.89,202.91 109.89,202.91 108.75,202.81C105.96,202.74 105.96,202.74 104.13,204.5C101.1,206.64 98.61,206.21 95,206C95.66,205.01 96.32,204.02 97,203C98.32,203 99.64,203 101,203C101.66,201.35 102.32,199.7 103,198C102.16,198.23 102.16,198.23 101.31,198.47C94,200.34 88.36,199.61 81,198C81,197.01 81,196.02 81,195C78.69,194.67 76.38,194.34 74,194C73.67,193.01 73.34,192.02 73,191C71.68,191 70.36,191 69,191C69,188.36 69,185.72 69,183Z" + android:fillColor="#3F2108"/> + <path + android:pathData="M121,217C121.66,217.66 122.32,218.32 123,219C122.67,219.99 122.34,220.98 122,222C121.34,221.67 120.68,221.34 120,221C120,221.99 120,222.98 120,224C120.66,224.33 121.32,224.66 122,225C122,226.32 122,227.64 122,229C121.34,229 120.68,229 120,229C120,229.99 120,230.98 120,232C118.68,232.33 117.36,232.66 116,233C116.33,233.66 116.66,234.32 117,235C116.66,237.38 116.66,237.38 116.06,240.13C115.87,241.04 115.67,241.95 115.47,242.88C115.32,243.58 115.16,244.28 115,245C113.68,245.33 112.36,245.66 111,246C111.33,245.03 111.66,244.06 112,243.06C113.05,240.38 113.05,240.38 113,239C112.34,239 111.68,239 111,239C110.67,239.99 110.34,240.98 110,242C109.67,241.34 109.34,240.68 109,240C109.33,239.34 109.66,238.68 110,238C110.66,238 111.32,238 112,238C112.99,234.54 112.99,234.54 114,231C111.03,231.66 108.06,232.32 105,233C107,230 107,230 109.06,229.5C109.7,229.34 110.34,229.17 111,229C111.33,228.01 111.66,227.02 112,226C111.34,226 110.68,226 110,226C109.67,226.66 109.34,227.32 109,228C108.67,227.01 108.34,226.02 108,225C107.01,224.67 106.02,224.34 105,224C105.66,224 106.32,224 107,224C107,223.01 107,222.02 107,221C107.99,220.67 108.98,220.34 110,220C110.33,220.99 110.66,221.98 111,223C111.66,223 112.32,223 113,223C113,222.34 113,221.68 113,221C113.76,221.08 114.53,221.16 115.31,221.25C118.15,221.29 118.15,221.29 119.81,219C120.2,218.34 120.6,217.68 121,217Z" + android:fillColor="#14150C"/> + <path + android:pathData="M34,157C35.65,157.66 37.3,158.32 39,159C33.95,166.74 33.95,166.74 30.69,167.63C27.11,169.45 26.05,171.84 24.21,175.32C23.81,175.87 23.41,176.43 23,177C22.01,177 21.02,177 20,177C20.49,172.54 20.49,172.54 21,168C17,169.5 17,169.5 16,172C15.01,171.67 14.02,171.34 13,171C13.66,171 14.32,171 15,171C15.25,170.44 15.5,169.89 15.75,169.31C17.23,166.58 18.93,164.32 21,162C21.66,162 22.32,162 23,162C23,161.01 23,160.02 23,159C26.3,159 29.6,159 33,159C32.67,159.66 32.34,160.32 32,161C32.66,161.33 33.32,161.66 34,162C34,160.35 34,158.7 34,157Z" + android:fillColor="#393A27"/> + <path + android:pathData="M75,200C78.63,201.32 82.26,202.64 86,204C86,204.66 86,205.32 86,206C87.32,206.33 88.64,206.66 90,207C90.38,208.66 90.71,210.32 91,212C90.67,212.33 90.34,212.66 90,213C90.06,215.03 90.13,217.06 90.26,219.09C90.17,219.72 90.09,220.35 90,221C86.77,223.15 85.72,223.2 82,223C82,223.66 82,224.32 82,225C83.32,225 84.64,225 86,225C85.67,225.99 85.34,226.98 85,228C84.67,227.34 84.34,226.68 84,226C83.01,226 82.02,226 81,226C80.67,226.66 80.34,227.32 80,228C80,227.01 80,226.02 80,225C78.68,224.34 77.36,223.68 76,223C76.66,222.67 77.32,222.34 78,222C79.24,218.72 80.21,215.41 81,212C81.66,212 82.32,212 83,212C83,211.34 83,210.68 83,210C83.66,210 84.32,210 85,210C84.34,208.02 83.68,206.04 83,204C82.05,203.86 81.1,203.71 80.13,203.56C77,203 77,203 75,202C75,201.34 75,200.68 75,200Z" + android:fillColor="#202114"/> + <path + android:pathData="M116,153C116.68,153.14 117.37,153.29 118.07,153.43C121.31,154.06 124.55,154.57 127.81,155.06C129.55,155.33 129.55,155.33 131.33,155.6C132.21,155.73 133.09,155.86 134,156C132.48,159.1 130.8,162.05 129,165C128.34,164.67 127.68,164.34 127,164C126.01,165.49 126.01,165.49 125,167C124.67,167 124.34,167 124,167C124,167.66 124,168.32 124,169C120.04,168.43 117.33,167.19 114,165C114.99,164.34 115.98,163.68 117,163C116.75,161.64 116.75,161.64 116.5,160.25C116,157 116,157 116,153Z" + android:fillColor="#9FA0A3"/> + <path + android:pathData="M115,172C117.88,172.31 117.88,172.31 121,173C121.66,173.99 122.32,174.98 123,176C123.99,176.33 124.98,176.66 126,177C124.88,180.64 123.54,184.06 121.94,187.5C120.35,190.99 119.39,194.15 119,198C117.68,198 116.36,198 115,198C114.83,192.99 114.89,189.61 117,185C117,184.01 117,183.02 117,182C115.02,181.01 113.04,180.02 111,179C111,178.34 111,177.68 111,177C112.32,176.67 113.64,176.34 115,176C114.34,175.34 113.68,174.68 113,174C113.66,174 114.32,174 115,174C115,173.34 115,172.68 115,172Z" + android:fillColor="#6B6C67"/> + <path + android:pathData="M81,174C82.65,174.33 84.3,174.66 86,175C86,175.66 86,176.32 86,177C87.98,177 89.96,177 92,177C92.33,178.32 92.66,179.64 93,181C93.66,181 94.32,181 95,181C95.33,181.66 95.66,182.32 96,183C97.9,183.47 97.9,183.47 100.06,183.63C101.36,183.75 102.66,183.87 104,184C104.33,183.34 104.66,182.68 105,182C105,182.99 105,183.98 105,185C104.01,185 103.02,185 102,185C102,186.98 102,188.96 102,191C100.68,190.34 99.36,189.68 98,189C98,188.01 98,187.02 98,186C96.35,186.66 94.7,187.32 93,188C93,187.34 93,186.68 93,186C92.34,186 91.68,186 91,186C90.67,186.66 90.34,187.32 90,188C87.56,187.19 87.56,187.19 85,186C84.67,185.01 84.34,184.02 84,183C83.01,183.49 83.01,183.49 82,184C82.33,182.68 82.66,181.36 83,180C81.68,179.67 80.36,179.34 79,179C78.67,177.68 78.34,176.36 78,175C79.49,175.99 79.49,175.99 81,177C81,176.01 81,175.02 81,174Z" + android:fillColor="#454439"/> + <path + android:pathData="M74,185C76.19,184.75 76.19,184.75 79,185C79.78,185.68 80.57,186.36 81.38,187.06C83.94,189.41 83.94,189.41 87.56,188.63C89.26,188.32 89.26,188.32 91,188C93.44,188.94 93.44,188.94 95,190C94.25,194.75 94.25,194.75 92,197C87.95,197.34 86.45,197.3 83,195C83,194.34 83,193.68 83,193C81.61,193.06 81.61,193.06 80.19,193.13C77,193 77,193 74,191C73.81,187.88 73.81,187.88 74,185Z" + android:fillColor="#7A6129"/> + <path + android:pathData="M75,194C77.97,194.49 77.97,194.49 81,195C81,195.99 81,196.98 81,198C81.64,197.81 82.28,197.63 82.94,197.44C83.62,197.29 84.3,197.15 85,197C85.33,197.33 85.66,197.66 86,198C91.84,199.15 97.16,198.96 103,198C102.34,199.65 101.68,201.3 101,203C95.58,203.93 92.2,204.21 87,202C87,202.66 87,203.32 87,204C81.8,203.48 77.36,201.85 73,199C72.34,198.01 71.68,197.02 71,196C72.32,196.33 73.64,196.66 75,197C75,196.01 75,195.02 75,194Z" + android:fillColor="#83754E"/> + <path + android:pathData="M138,192C138.99,192.33 139.98,192.66 141,193C141.08,197.56 140.97,201.54 140,206C140.06,206.74 140.12,207.49 140.19,208.25C139.89,212.56 137.88,216.15 136,220C135.34,220 134.68,220 134,220C134,219.01 134,218.02 134,217C133.34,217 132.68,217 132,217C132,215.35 132,213.7 132,212C132.99,211.67 133.98,211.34 135,211C134.34,210.34 133.68,209.68 133,209C132.6,203.01 133.28,198.44 136,193C136.66,193.33 137.32,193.66 138,194C138,193.34 138,192.68 138,192Z" + android:fillColor="#555242"/> + <path + android:pathData="M8,242C8.66,242.66 9.32,243.32 10,244C10.66,243.34 11.32,242.68 12,242C15.13,242.38 15.13,242.38 18,243C17.43,245.87 17.14,246.86 15,249C13.34,249.38 11.68,249.71 10,250C9.01,250.33 8.02,250.66 7,251C6.34,250.67 5.68,250.34 5,250C5,250.99 5,251.98 5,253C5.33,253.33 5.66,253.66 6,254C4.68,256.31 3.36,258.62 2,261C1.34,261 0.68,261 0,261C0,256.38 0,251.76 0,247C2.64,245.94 5.3,244.9 8,244C8,243.34 8,242.68 8,242Z" + android:fillColor="#10120C"/> + <path + android:pathData="M65,174C65,174.66 65,175.32 65,176C65.66,176 66.32,176 67,176C67.04,177.67 67.04,179.33 67,181C66.67,181.33 66.34,181.66 66,182C66.09,183.69 66.25,185.38 66.44,187.06C66.54,187.98 66.64,188.9 66.75,189.85C66.83,190.56 66.91,191.27 67,192C63.13,190.13 63.13,190.13 62,189C61.9,189.64 61.79,190.28 61.69,190.94C61.46,191.62 61.23,192.3 61,193C60.01,193.33 59.02,193.66 58,194C57.92,191.23 57.86,188.46 57.81,185.69C57.77,184.51 57.77,184.51 57.74,183.31C57.73,182.55 57.72,181.79 57.71,181.01C57.69,180.32 57.68,179.62 57.66,178.9C58.46,174.41 60.74,174 65,174Z" + android:fillColor="#1C190C"/> + <path + android:pathData="M134,156C135.32,156.33 136.64,156.66 138,157C137.04,166.41 137.04,166.41 136,171C135.34,171 134.68,171 134,171C133.67,168.69 133.34,166.38 133,164C130.77,164.83 130.77,164.83 130.15,167.29C129.89,168.2 129.64,169.12 129.38,170.06C129.11,170.98 128.85,171.9 128.59,172.85C128.39,173.56 128.2,174.27 128,175C124.67,173.45 122.51,171.69 120,169C121.32,169 122.64,169 124,169C123.34,167.68 122.68,166.36 122,165C122.99,165.33 123.98,165.66 125,166C125.66,165.01 126.32,164.02 127,163C127.66,163 128.32,163 129,163C130.36,161.44 130.36,161.44 131.63,159.5C132.07,158.85 132.52,158.2 132.98,157.53C133.31,157.03 133.65,156.52 134,156Z" + android:fillColor="#878883"/> + <path + android:pathData="M117,141C122.26,140.5 124.91,141.69 129,145C129,145.66 129,146.32 129,147C129.99,147 130.98,147 132,147C132.12,147.8 132.25,148.61 132.38,149.44C132.58,150.28 132.79,151.13 133,152C133.66,152.33 134.32,152.66 135,153C134.34,153.66 133.68,154.32 133,155C130,154 130,154 128,151C128,151.66 128,152.32 128,153C124.97,151.99 122.64,150.78 120,149C120,148.34 120,147.68 120,147C119.34,147 118.68,147 118,147C117.67,147.66 117.34,148.32 117,149C115.88,143.25 115.88,143.25 117,141Z" + android:fillColor="#261F0E"/> + <path + android:pathData="M66,281C68.01,282.66 68.98,283.95 70,286.38C70,289 70,289 67.75,291.75C65,294 65,294 62,295C61.67,295.99 61.34,296.98 61,298C61.66,298 62.32,298 63,298C63,297.34 63,296.68 63,296C63.99,296 64.98,296 66,296C66,297.32 66,298.64 66,300C63.03,300 60.06,300 57,300C57,298.35 57,296.7 57,295C57.66,295 58.32,295 59,295C59.66,293.02 60.32,291.04 61,289C60.34,288.67 59.68,288.34 59,288C63.75,282.13 63.75,282.13 66,281Z" + android:fillColor="#1C1D17"/> + <path + android:pathData="M91,186C91.99,186.33 92.98,186.66 94,187C94.64,186.77 95.28,186.55 95.94,186.31C96.62,186.21 97.3,186.11 98,186C99.37,187.29 100.71,188.63 102,190C102.99,190 103.98,190 105,190C105,190.66 105,191.32 105,192C105.99,192 106.98,192 108,192C108,192.66 108,193.32 108,194C109.32,194 110.64,194 112,194C112.33,195.65 112.66,197.3 113,199C111.35,199 109.7,199 108,199C107.67,198.01 107.34,197.02 107,196C106.37,196.07 105.75,196.14 105.1,196.22C103.88,196.36 103.88,196.36 102.63,196.5C101.81,196.59 101,196.69 100.16,196.78C98,197 98,197 96,197C96,196.01 96,195.02 96,194C95.34,193.67 94.68,193.34 94,193C94,192.01 94,191.02 94,190C93.01,189.67 92.02,189.34 91,189C91,188.01 91,187.02 91,186Z" + android:fillColor="#59451A"/> + <path + android:pathData="M102.44,125.63C104.29,128.44 104.7,130.67 105,134C105.66,134 106.32,134 107,134C107.33,133.34 107.66,132.68 108,132C109.32,132 110.64,132 112,132C112,131.34 112,130.68 112,130C112.66,130 113.32,130 114,130C114,132.97 114,135.94 114,139C114.66,139 115.32,139 116,139C115.67,139.99 115.34,140.98 115,142C114.34,141.67 113.68,141.34 113,141C111.72,135.55 111.72,135.55 113,133C112.34,133 111.68,133 111,133C111,133.66 111,134.32 111,135C110.01,135 109.02,135 108,135C108,135.66 108,136.32 108,137C106.02,137 104.04,137 102,137C101.75,136.24 101.5,135.47 101.25,134.69C99.83,131.62 98.84,130.75 96,129C93.2,128.22 93.2,128.22 90.25,127.81C88.77,127.57 88.77,127.57 87.27,127.33C86.52,127.22 85.77,127.11 85,127C89.1,122.9 97.71,122.47 102.44,125.63Z" + android:fillColor="#3C3B33"/> + <path + android:pathData="M122,277C124.44,277.75 124.44,277.75 127,279C127.81,281.13 127.81,281.13 128,283C125.03,282.51 125.03,282.51 122,282C122.33,283.65 122.66,285.3 123,287C123.66,287 124.32,287 125,287C125,288.32 125,289.64 125,291C124.34,291 123.68,291 123,291C123,291.66 123,292.32 123,293C122.34,293 121.68,293 121,293C121,295.31 121,297.62 121,300C120.01,300 119.02,300 118,300C116.35,297.03 115.56,294.34 115,291C115.66,291 116.32,291 117,291C117,291.99 117,292.98 117,294C117.66,294 118.32,294 119,294C118.67,292.68 118.34,291.36 118,290C117.34,290 116.68,290 116,290C116.66,288.68 117.32,287.36 118,286C118.66,286.66 119.32,287.32 120,288C120.23,285.76 120.23,285.76 118,283.88C117.34,283.26 116.68,282.64 116,282C116.99,282 117.98,282 119,282C119.33,280.68 119.66,279.36 120,278C120.33,278.33 120.66,278.66 121,279C121.33,278.34 121.66,277.68 122,277Z" + android:fillColor="#535146"/> + <path + android:pathData="M23,177C23.33,177.99 23.66,178.98 24,180C22.4,181.84 21.48,182.89 19.06,183.44C16.18,184.22 14.91,185.76 13,188C12.67,188.99 12.34,189.98 12,191C11.2,191.31 10.39,191.62 9.56,191.94C6.86,192.77 6.86,192.77 5.69,195.13C5.35,196.05 5.35,196.05 5,197C4.34,197 3.68,197 3,197C3,197.66 3,198.32 3,199C2.01,199.33 1.02,199.66 0,200C0,196.7 0,193.4 0,190C2.64,189.34 5.28,188.68 8,188C8,187.34 8,186.68 8,186C9.42,185.88 9.42,185.88 10.88,185.75C11.91,185.5 12.94,185.26 14,185C15.17,183.08 15.17,183.08 16,181C18.62,179.31 19.83,179 23,179C23,178.34 23,177.68 23,177Z" + android:fillColor="#303026"/> + <path + android:pathData="M67,151C70.33,153.22 70.75,154.35 72,158C71.01,158.49 71.01,158.49 70,159C70.99,159.66 71.98,160.32 73,161C74.04,162.31 75.04,163.63 76,165C75.01,165 74.02,165 73,165C72.67,165.66 72.34,166.32 72,167C71.36,166.34 70.72,165.68 70.06,165C68.36,162.88 68.36,162.88 67,163C66.67,164.32 66.34,165.64 66,167C62.04,167.49 62.04,167.49 58,168C58.33,167.34 58.66,166.68 59,166C59.66,166 60.32,166 61,166C61.33,163.69 61.66,161.38 62,159C62.66,159 63.32,159 64,159C64.12,158.42 64.25,157.85 64.38,157.25C65.01,154.98 65.89,153.07 67,151Z" + android:fillColor="#505246"/> + <path + android:pathData="M123,219C123.14,219.64 123.29,220.28 123.44,220.94C123.81,222.98 123.81,222.98 125,224C125.66,224.33 126.32,224.66 127,225C126.5,226.11 126.5,226.11 126,227.25C124.77,230.14 124.77,230.14 125,234C124.7,235.67 124.37,237.34 124,239C123.01,238.67 122.02,238.34 121,238C120.67,238.66 120.34,239.32 120,240C119.02,241.02 118.02,242.02 117,243C116.34,242.67 115.68,242.34 115,242C115.29,239.98 115.59,237.96 115.88,235.95C116.17,233.92 116.17,233.92 115,232C115.99,231.67 116.98,231.34 118,231C118.66,231.33 119.32,231.66 120,232C120,231.01 120,230.02 120,229C120.66,229 121.32,229 122,229C122,227.68 122,226.36 122,225C121.01,224.67 120.02,224.34 119,224C119.33,223.01 119.66,222.02 120,221C120.66,221 121.32,221 122,221C122.33,220.34 122.66,219.68 123,219Z" + android:fillColor="#1D1D13"/> + <path + android:pathData="M109,183C110.32,183 111.64,183 113,183C115.59,187.86 115.19,192.65 115,198C116.65,198 118.3,198 120,198C120,198.66 120,199.32 120,200C119.01,200 118.02,200 117,200C116.67,200.99 116.34,201.98 116,203C116,202.34 116,201.68 116,201C115.01,201 114.02,201 113,201C112.67,198.69 112.34,196.38 112,194C110.68,194 109.36,194 108,194C108,193.34 108,192.68 108,192C107.01,192 106.02,192 105,192C104.38,190.13 104.38,190.13 104,188C104.66,187.34 105.32,186.68 106,186C106.66,186.33 107.32,186.66 108,187C108.33,185.68 108.66,184.36 109,183Z" + android:fillColor="#4E4F47"/> + <path + android:pathData="M128,173C128.66,173 129.32,173 130,173C130.2,174.44 130.38,175.87 130.56,177.31C130.67,178.11 130.77,178.91 130.88,179.74C131,182 131,182 130,185C129.01,185.49 129.01,185.49 128,186C128.33,187.98 128.66,189.96 129,192C127.25,192.69 127.25,192.69 125,193C122.75,191.56 122.75,191.56 121,190C121.63,186.34 122.64,183.12 124.06,179.69C124.42,178.8 124.79,177.92 125.16,177.01C125.44,176.35 125.71,175.68 126,175C126.66,175 127.32,175 128,175C128,174.34 128,173.68 128,173Z" + android:fillColor="#393A33"/> + <path + android:pathData="M114,108C115,111 115,111 114,114C113.34,114 112.68,114 112,114C112,114.66 112,115.32 112,116C112.99,116.33 113.98,116.66 115,117C114.01,117.33 113.02,117.66 112,118C110.54,116.77 109.08,115.54 107.65,114.28C102.07,109.95 93.75,110.42 87,110C94.25,105.17 105.66,106.75 114,108Z" + android:fillColor="#898A87"/> + <path + android:pathData="M143,137C145,139 145,139 145.16,142.59C145.14,144.04 145.1,145.49 145.06,146.94C144.86,152.54 144.86,152.54 146,158C144.68,158 143.36,158 142,158C142,156.68 142,155.36 142,154C141.34,154 140.68,154 140,154C140,154.66 140,155.32 140,156C137.51,154.8 135.32,153.55 133,152C132.31,149.38 132.31,149.38 132,147C131.01,147 130.02,147 129,147C127.62,145.71 126.29,144.37 125,143C124.01,142.34 123.02,141.68 122,141C122,140.34 122,139.68 122,139C125.55,138.68 127.38,138.54 130.31,140.69C132.14,143.2 132.66,144.94 133,148C133.66,148 134.32,148 135,148C135,148.66 135,149.32 135,150C137.33,151.21 139.5,152.17 142,153C143.14,149.58 143.1,146.91 143.06,143.31C143.05,142.13 143.04,140.95 143.04,139.74C143.02,138.83 143.01,137.93 143,137Z" + android:fillColor="#535248"/> + <path + android:pathData="M110,250C110.66,250.33 111.32,250.66 112,251C112,253.31 112,255.62 112,258C112.66,258.33 113.32,258.66 114,259C114.33,258.34 114.66,257.68 115,257C115.99,258.48 115.99,258.48 117,260C117.66,259.67 118.32,259.34 119,259C119.66,259.33 120.32,259.66 121,260C121,260.66 121,261.32 121,262C120.01,262.49 120.01,262.49 119,263C119,263.99 119,264.98 119,266C118.01,265.67 117.02,265.34 116,265C115.34,265.66 114.68,266.32 114,267C113.34,266.34 112.68,265.68 112,265C108.27,264.62 107.22,264.85 104,267C104.33,264.36 104.66,261.72 105,259C106.65,258.34 108.3,257.68 110,257C109.67,256.34 109.34,255.68 109,255C109.28,253.32 109.61,251.65 110,250Z" + android:fillColor="#2E2E27"/> + <path + android:pathData="M111,133C111.66,133 112.32,133 113,133C113,135.64 113,138.28 113,141C113.66,141.33 114.32,141.66 115,142C114.34,142.66 113.68,143.32 113,144C112.34,143.67 111.68,143.34 111,143C110.34,145.31 109.68,147.62 109,150C107.87,146.62 108.18,145.23 108.94,141.81C109.13,140.91 109.33,140.01 109.53,139.08C109.68,138.39 109.84,137.71 110,137C109.6,137.7 109.2,138.4 108.79,139.12C108,140.48 108,140.48 107.19,141.88C106.67,142.78 106.14,143.68 105.61,144.62C104,147 104,147 101,149C100.34,146.69 99.68,144.38 99,142C99.99,141.34 100.98,140.68 102,140C101.01,139.34 100.02,138.68 99,138C103.46,137.51 103.46,137.51 108,137C108,136.34 108,135.68 108,135C108.99,135 109.98,135 111,135C111,134.34 111,133.68 111,133Z" + android:fillColor="#676864"/> + <path + android:pathData="M52,135C52.77,135.43 52.77,135.43 53.56,135.88C56.62,137.29 59.75,138.12 63,139C64.13,143.75 64.13,143.75 63,146C61.35,145.67 59.7,145.34 58,145C58,144.34 58,143.68 58,143C56.68,143.33 55.36,143.66 54,144C54,144.66 54,145.32 54,146C53.01,146.49 53.01,146.49 52,147C52.66,147.66 53.32,148.32 54,149C52.68,149 51.36,149 50,149C50.88,142.13 50.88,142.13 52,141C51.34,140.67 50.68,140.34 50,140C50.88,136.13 50.88,136.13 52,135Z" + android:fillColor="#45463E"/> + <path + android:pathData="M130,250C130.99,250.33 131.98,250.66 133,251C133.84,255.66 134.02,259.37 133,264C132.34,264 131.68,264 131,264C131,267.96 131,271.92 131,276C129.35,276.33 127.7,276.66 126,277C125.67,275.68 125.34,274.36 125,273C126.49,273.99 126.49,273.99 128,275C127.43,272.13 127.14,271.14 125,269C125.99,269 126.98,269 128,269C128,267.68 128,266.36 128,265C127.34,264.67 126.68,264.34 126,264C126,263.01 126,262.02 126,261C126.99,261.33 127.98,261.66 129,262C129.33,261.01 129.66,260.02 130,259C129.34,258.67 128.68,258.34 128,258C128,256.68 128,255.36 128,254C129.32,254.33 130.64,254.66 132,255C131.01,253.68 130.02,252.36 129,251C129.33,250.67 129.66,250.34 130,250Z" + android:fillColor="#636156"/> + <path + android:pathData="M52,181C53.28,184.85 53.07,187.95 53,192C53.66,192.33 54.32,192.66 55,193C54.67,193.99 54.34,194.98 54,196C53.83,200.48 54.14,204.6 55,209C55.99,208.67 56.98,208.34 58,208C58.98,209.79 59.95,211.58 60.93,213.37C61.91,215.17 61.91,215.17 64,216C64.33,214.68 64.66,213.36 65,212C66.23,214.46 66.07,216.28 66,219C61.87,218.06 60.33,217.46 57.81,213.94C57.21,212.97 56.62,212 56,211C55.01,210.67 54.02,210.34 53,210C53,208.68 53,207.36 53,206C52.01,205.67 51.02,205.34 50,205C50.17,204.32 50.33,203.64 50.5,202.94C51.24,198.59 51.3,194.51 50.44,190.19C50,188 50,188 51,186C50.34,185.67 49.68,185.34 49,185C49.33,184.34 49.66,183.68 50,183C50.66,183 51.32,183 52,183C52,182.34 52,181.68 52,181Z" + android:fillColor="#1B1B0F"/> + <path + android:pathData="M81,134C84.25,134.51 86.74,135.86 89.56,137.5C92.08,138.96 94.22,140.07 97,141C96.67,141.99 96.34,142.98 96,144C89.76,145.1 85.57,145.09 80,142C80.66,141.01 81.32,140.02 82,139C81.34,137.68 80.68,136.36 80,135C80.33,134.67 80.66,134.34 81,134Z" + android:fillColor="#A0A1A2"/> + <path + android:pathData="M91,249C91.99,249 92.98,249 94,249C94.08,250.77 94.14,252.54 94.19,254.31C94.24,255.79 94.24,255.79 94.29,257.3C94,260 94,260 92.49,261.86C92,262.23 91.51,262.61 91,263C90.34,261.68 89.68,260.36 89,259C89,259.66 89,260.32 89,261C88.34,261 87.68,261 87,261C87,262.65 87,264.3 87,266C86.67,265.34 86.34,264.68 86,264C85.01,263.67 84.02,263.34 83,263C83,262.01 83,261.02 83,260C82.01,259.34 81.02,258.68 80,258C79.67,258.33 79.34,258.66 79,259C78.67,258.01 78.34,257.02 78,256C81.29,255.2 82.71,254.9 86,256C86,256.66 86,257.32 86,258C89.86,255.43 89.94,253.39 91,249Z" + android:fillColor="#13140B"/> + <path + android:pathData="M72,147C73.44,147.26 74.88,147.53 76.31,147.81C77.11,147.96 77.91,148.11 78.74,148.27C81.31,149.1 82.42,149.81 84,152C84,153.32 84,154.64 84,156C84.99,156 85.98,156 87,156C87,156.99 87,157.98 87,159C84.69,159.63 84.69,159.63 82,160C81.01,159.34 80.02,158.68 79,158C80.3,162.08 80.3,162.08 82,166C81.01,166.33 80.02,166.66 79,167C76.87,163.81 76.5,161.73 76,158C76.99,157.34 77.98,156.68 79,156C78.5,155.2 78.01,154.39 77.5,153.56C76,151 76,151 76,150C74.35,149.67 72.7,149.34 71,149C71.33,148.34 71.66,147.68 72,147Z" + android:fillColor="#919292"/> + <path + android:pathData="M132,225C132.66,225 133.32,225 134,225C134,232.59 134,240.18 134,248C133.34,248 132.68,248 132,248C132,247.34 132,246.68 132,246C131.01,246 130.02,246 129,246C129,240.39 129,234.78 129,229C129.99,229 130.98,229 132,229C132,227.68 132,226.36 132,225Z" + android:fillColor="#666357"/> + <path + android:pathData="M115,118C120.75,118.75 120.75,118.75 123,121C125.33,121.69 127.66,122.35 130,123C131.35,123.62 132.7,124.27 134,125C134,125.99 134,126.98 134,128C133.34,128 132.68,128 132,128C132,127.34 132,126.68 132,126C128.62,126.54 125.31,127.12 122,128C120.67,128.33 119.33,128.67 118,129C116.84,125.53 116.93,122.64 117,119C116.34,118.67 115.68,118.34 115,118Z" + android:fillColor="#2F3126"/> + <path + android:pathData="M5,178C6.32,178.33 7.64,178.66 9,179C9,179.99 9,180.98 9,182C9.99,182.66 10.98,183.32 12,184C10.02,184.99 10.02,184.99 8,186C8,186.66 8,187.32 8,188C4.77,190.15 3.72,190.2 0,190C0,187.36 0,184.72 0,182C0.96,181.85 0.96,181.85 1.94,181.69C2.62,181.46 3.3,181.23 4,181C4.33,180.01 4.66,179.02 5,178Z" + android:fillColor="#49473E"/> + <path + android:pathData="M79,129C79.99,129.33 80.98,129.66 82,130C81.01,130.49 81.01,130.49 80,131C79.53,132.9 79.53,132.9 79.38,135.06C79.25,136.36 79.13,137.66 79,139C78.36,139.1 77.72,139.21 77.06,139.31C76.38,139.54 75.7,139.77 75,140C74.67,140.99 74.34,141.98 74,143C73.67,142.01 73.34,141.02 73,140C72.67,139.67 72.34,139.34 72,139C70.68,139 69.36,139 68,139C68,139.66 68,140.32 68,141C66.68,140.34 65.36,139.68 64,139C67.03,136.39 69.17,134.96 73,134C73.33,133.01 73.66,132.02 74,131C75.65,131 77.3,131 79,131C79,130.34 79,129.68 79,129Z" + android:fillColor="#666761"/> + <path + android:pathData="M136,221C136.33,221 136.66,221 137,221C137.84,227.69 137.95,233.84 137.19,240.54C136.96,243.49 137.3,246.13 138,249C137.34,249 136.68,249 136,249C136.16,249.55 136.32,250.11 136.49,250.68C137.05,253.23 137.13,255.52 137.13,258.13C137.13,258.99 137.13,259.86 137.13,260.76C137,263 137,263 136,265C135.34,265 134.68,265 134,265C133.88,256.67 134.09,248.45 134.64,240.14C134.97,235.09 135.06,230.07 134.94,225C135,223 135,223 136,221Z" + android:fillColor="#2B2B21"/> + <path + android:pathData="M121,106C121.99,106 122.98,106 124,106C124,106.99 124,107.98 124,109C125.32,108.67 126.64,108.34 128,108C128.49,109.49 128.49,109.49 129,111C125.71,112.1 124.29,111.8 121,111C121,110.01 121,109.02 121,108C115.88,107.16 111.58,107.04 106.45,107.74C101.98,108.21 97.49,108.08 93,108C93,107.67 93,107.34 93,107C112.98,102.23 112.98,102.23 121,106Z" + android:fillColor="#55574E"/> + <path + android:pathData="M19,223C19,223.66 19,224.32 19,225C18,226 17,227 16,228C16,228.66 16,229.32 16,230C15.34,230 14.68,230 14,230C13.57,231.45 13.57,231.45 13.13,232.94C12,236 12,236 10,237C10.66,237.33 11.32,237.66 12,238C11.67,238.66 11.34,239.32 11,240C9.35,239.67 7.7,239.34 6,239C6,239.66 6,240.32 6,241C4.68,241.33 3.36,241.66 2,242C2.31,241.48 2.62,240.97 2.94,240.44C4.29,237.33 4.61,234.35 5,231C7.31,231.66 9.62,232.32 12,233C12,232.01 12,231.02 12,230C11.34,229.67 10.68,229.34 10,229C11.32,228.34 12.64,227.68 14,227C14,226.34 14,225.68 14,225C17,223 17,223 19,223Z" + android:fillColor="#10110A"/> + <path + android:pathData="M34,157C36.47,157.99 36.47,157.99 39,159C36.89,162.89 35.77,164.71 31.56,166.31C29.8,166.65 29.8,166.65 28,167C27.03,167.21 26.06,167.41 25.06,167.63C24.38,167.75 23.7,167.87 23,168C23,166.35 23,164.7 23,163C23.99,163 24.98,163 26,163C26,162.01 26,161.02 26,160C29.47,159.51 29.47,159.51 33,159C32.67,159.66 32.34,160.32 32,161C32.66,161.33 33.32,161.66 34,162C34,160.35 34,158.7 34,157Z" + android:fillColor="#3D3A2B"/> + <path + android:pathData="M125,229C125.99,229.33 126.98,229.66 128,230C129.33,241.52 129.33,241.52 128,247C128.66,247.33 129.32,247.66 130,248C126.8,249.07 124.34,249.07 121,249C121,249.99 121,250.98 121,252C120.34,252 119.68,252 119,252C119.33,252.99 119.66,253.98 120,255C119.34,255.66 118.68,256.32 118,257C116.68,256.34 115.36,255.68 114,255C114.87,250.95 116.05,247.95 119,245C121.31,245.66 123.62,246.32 126,247C125.99,246.43 125.98,245.86 125.96,245.28C125.91,240.39 126.18,235.81 127,231C126.34,231 125.68,231 125,231C125,230.34 125,229.68 125,229Z" + android:fillColor="#3E3C33"/> + <path + android:pathData="M65,182C65.66,182 66.32,182 67,182C67,183.32 67,184.64 67,186C67.99,186 68.98,186 70,186C69.67,187.65 69.34,189.3 69,191C70.32,191 71.64,191 73,191C75,194 75,194 75,197C69.25,197.13 69.25,197.13 67,196C67,195.34 67,194.68 67,194C66.2,193.77 65.39,193.55 64.56,193.31C63.29,192.66 63.29,192.66 62,192C61.19,189.38 61.19,189.38 61,187C63.47,188.98 63.47,188.98 66,191C65.67,188.03 65.34,185.06 65,182Z" + android:fillColor="#655C33"/> + <path + android:pathData="M116,168C119.99,169.37 122.93,171.1 126,174C126,174.99 126,175.98 126,177C124.06,176.69 124.06,176.69 122,176C121.67,175.01 121.34,174.02 121,173C118.03,172.51 118.03,172.51 115,172C115.33,173.65 115.66,175.3 116,177C113.69,177 111.38,177 109,177C109.33,176.01 109.66,175.02 110,174C107.69,174 105.38,174 103,174C103,173.67 103,173.34 103,173C104.13,172.88 105.27,172.75 106.44,172.63C108.2,172.32 108.2,172.32 110,172C110.33,171.34 110.66,170.68 111,170C113.56,169.38 113.56,169.38 116,169C116,168.67 116,168.34 116,168Z" + android:fillColor="#949595"/> + <path + android:pathData="M114,278C117,280 117,280 117.44,281.88C118.2,284.75 119.83,286.04 122,288C121.01,288.33 120.02,288.66 119,289C118.67,288.34 118.34,287.68 118,287C115.01,287.77 115.01,287.77 112,289C111.67,289.99 111.34,290.98 111,292C110.34,292 109.68,292 109,292C110.15,289.53 111.05,287.95 113,286C111.02,286.33 109.04,286.66 107,287C107.5,283.31 108.1,281.4 111,279C111.99,279.66 112.98,280.32 114,281C114,280.01 114,279.02 114,278Z" + android:fillColor="#45443B"/> + <path + android:pathData="M131,214C131.33,214.99 131.66,215.98 132,217C132.66,217 133.32,217 134,217C134,217.99 134,218.98 134,220C134.66,220 135.32,220 136,220C135.67,221.32 135.34,222.64 135,224C134.34,223.34 133.68,222.68 133,222C131.02,224.31 129.04,226.62 127,229C126.67,228.34 126.34,227.68 126,227C126.33,226.34 126.66,225.68 127,225C125.35,224.67 123.7,224.34 122,224C122.66,223.67 123.32,223.34 124,223C124.7,221.68 125.37,220.35 126,219C126.66,218.01 127.32,217.02 128,216C128.66,216 129.32,216 130,216C130.33,215.34 130.66,214.68 131,214Z" + android:fillColor="#4E4A3B"/> + <path + android:pathData="M116,153C119.52,153.65 122.89,154.51 126.31,155.56C127.2,155.83 128.08,156.1 128.99,156.38C129.65,156.58 130.32,156.79 131,157C130.67,157.99 130.34,158.98 130,160C124.54,161.94 121.45,162.45 116,160C116,157.69 116,155.38 116,153Z" + android:fillColor="#A4A5A6"/> + <path + android:pathData="M11.88,288.5C14.31,289.07 15.63,288.67 18,288C17.68,288.92 17.68,288.92 17.34,289.86C17.07,290.67 16.79,291.48 16.5,292.31C16.22,293.11 15.94,293.91 15.66,294.74C14.86,297.09 14.86,297.09 15,300C13.35,300 11.7,300 10,300C10,299.01 10,298.02 10,297C9.01,297 8.02,297 7,297C7,293.9 7.02,291.85 8,289C10,288 10,288 11.88,288.5Z" + android:fillColor="#0B0C07"/> + <path + android:pathData="M124,258C126.97,258.49 126.97,258.49 130,259C129.67,260.32 129.34,261.64 129,263C128.01,262.34 127.02,261.68 126,261C126,261.99 126,262.98 126,264C126.99,264.33 127.98,264.66 129,265C128.63,265.7 128.26,266.4 127.88,267.13C126.77,270.76 127.56,272.56 129,276C123.34,274.52 123.34,274.52 121.63,271.88C121.42,271.26 121.21,270.64 121,270C121.99,270 122.98,270 124,270C123.83,268.91 123.67,267.81 123.5,266.69C122.68,260.64 122.68,260.64 124,258Z" + android:fillColor="#515047"/> + <path + android:pathData="M131,210C131,212.31 131,214.62 131,217C130.01,216.67 129.02,216.34 128,216C127.71,216.64 127.42,217.28 127.13,217.94C126,220 126,220 124,221C124,220.34 124,219.68 124,219C123.34,219 122.68,219 122,219C121.34,216.69 120.68,214.38 120,212C127.43,208.43 127.43,208.43 131,210Z" + android:fillColor="#353024"/> + <path + android:pathData="M62,194C62.33,194.66 62.66,195.32 63,196C63.66,196 64.32,196 65,196C66.71,197.62 68.37,199.3 70,201C70.76,201.76 71.53,202.53 72.31,203.31C72.87,203.87 73.43,204.43 74,205C71.38,208.88 71.38,208.88 68,210C67.67,207.69 67.34,205.38 67,203C65.02,203.33 63.04,203.66 61,204C61,203.34 61,202.68 61,202C60.01,202 59.02,202 58,202C58,201.34 58,200.68 58,200C58.99,200 59.98,200 61,200C61,199.01 61,198.02 61,197C61.33,196.01 61.66,195.02 62,194Z" + android:fillColor="#1D1D12"/> + <path + android:pathData="M47,137C47.99,137 48.98,137 50,137C50,137.99 50,138.98 50,140C50.99,140.33 51.98,140.66 53,141C52.01,141.49 52.01,141.49 51,142C50.59,144.32 50.26,146.66 50,149C46.7,148.34 43.4,147.68 40,147C40.33,146.01 40.66,145.02 41,144C41.99,144 42.98,144 44,144C44.33,142.35 44.66,140.7 45,139C45.66,139 46.32,139 47,139C47,138.34 47,137.68 47,137ZM47,139C48,141 48,141 48,141Z" + android:fillColor="#323124"/> + <path + android:pathData="M81,174C82.65,174.33 84.3,174.66 86,175C86,175.66 86,176.32 86,177C87.98,177 89.96,177 92,177C92,177.99 92,178.98 92,180C90.02,180.99 90.02,180.99 88,182C88.99,182.33 89.98,182.66 91,183C90.67,183.99 90.34,184.98 90,186C88.35,186 86.7,186 85,186C84.67,185.01 84.34,184.02 84,183C83.01,183.49 83.01,183.49 82,184C82.33,182.68 82.66,181.36 83,180C81.68,179.67 80.36,179.34 79,179C78.67,177.68 78.34,176.36 78,175C79.49,175.99 79.49,175.99 81,177C81,176.01 81,175.02 81,174Z" + android:fillColor="#424035"/> + <path + android:pathData="M97,158C97.66,158 98.32,158 99,158C99,158.66 99,159.32 99,160C99.66,160 100.32,160 101,160C102.13,166.75 102.13,166.75 101,169C97.66,168.44 94.97,167.65 92,166C92,164.02 92,162.04 92,160C93.65,160 95.3,160 97,160C97,159.34 97,158.68 97,158Z" + android:fillColor="#B3B3B4"/> + <path + android:pathData="M40,156C41.79,155.97 43.58,155.95 45.38,155.94C46.37,155.93 47.37,155.91 48.4,155.9C51,156 51,156 53,157C52.45,160.37 51.95,162.08 50,165C46.88,165.19 46.88,165.19 44,165C43,162 43,162 43,160C42.01,160.49 42.01,160.49 41,161C40.67,159.35 40.34,157.7 40,156Z" + android:fillColor="#2A2A1E"/> + <path + android:pathData="M111,206C111,206.66 111,207.32 111,208C110.34,208 109.68,208 109,208C109,209.32 109,210.64 109,212C107.68,212 106.36,212 105,212C105,212.66 105,213.32 105,214C103.63,215.63 103.63,215.63 102,217C101.34,217 100.68,217 100,217C100,217.66 100,218.32 100,219C98.02,219.66 96.04,220.32 94,221C94,220.01 94,219.02 94,218C94.66,218 95.32,218 96,218C96,217.01 96,216.02 96,215C97.64,213.95 99.3,212.95 101,212C101.33,211.34 101.66,210.68 102,210C102.66,210 103.32,210 104,210C104.33,209.01 104.66,208.02 105,207C107,206 107,206 111,206Z" + android:fillColor="#4E4F42"/> + <path + android:pathData="M86,161C88,162 88,162 88.88,164.38C90.21,167.49 91.01,168.43 94,170C99.05,170.91 103.88,171.11 109,171C108.67,171.66 108.34,172.32 108,173C101.63,175.02 98.13,175.25 91.88,172.75C88.65,170.78 87.48,169.45 86,166C85.81,163.19 85.81,163.19 86,161Z" + android:fillColor="#3D3E38"/> + <path + android:pathData="M40,147C41.42,147.12 42.83,147.24 44.25,147.38C45.04,147.44 45.83,147.51 46.64,147.59C49.09,148.02 50.85,148.79 53,150C52.34,150 51.68,150 51,150C51,150.99 51,151.98 51,153C51.99,153.33 52.98,153.66 54,154C53.01,154 52.02,154 51,154C51,154.66 51,155.32 51,156C43.38,157.25 43.38,157.25 40,155C42.65,153.54 43.89,153 47,153C47,152.34 47,151.68 47,151C44.03,150.51 44.03,150.51 41,150C40.67,149.01 40.34,148.02 40,147Z" + android:fillColor="#3C3C30"/> + <path + android:pathData="M110,209C110.75,210.75 110.75,210.75 111,213C109.71,214.37 108.37,215.71 107,217C107,217.99 107,218.98 107,220C106.67,220.33 106.34,220.66 106,221C105.34,221 104.68,221 104,221C104,220.34 104,219.68 104,219C103.32,219.3 102.65,219.6 101.95,219.91C100.62,220.48 100.62,220.48 99.25,221.06C98.37,221.45 97.49,221.83 96.58,222.22C93.85,223.05 92.63,222.98 90,222C90.33,221.34 90.66,220.68 91,220C93.07,219.59 93.07,219.59 95.56,219.38C96.8,219.26 96.8,219.26 98.07,219.15C99.02,219.07 99.02,219.07 100,219C100,218.34 100,217.68 100,217C100.66,217 101.32,217 102,217C102.33,216.01 102.66,215.02 103,214C103.66,214 104.32,214 105,214C105,213.34 105,212.68 105,212C106.65,212 108.3,212 110,212C110,211.01 110,210.02 110,209Z" + android:fillColor="#29281F"/> + <path + android:pathData="M106,196C106.99,196.66 107.98,197.32 109,198C111.11,198.63 111.11,198.63 113,199C112.34,200.32 111.68,201.64 111,203C109.89,202.91 109.89,202.91 108.75,202.81C105.96,202.74 105.96,202.74 104.13,204.5C101.1,206.64 98.61,206.21 95,206C95.66,205.01 96.32,204.02 97,203C98.32,203 99.64,203 101,203C101.27,202.4 101.54,201.8 101.81,201.19C102.98,199.03 104.19,197.64 106,196Z" + android:fillColor="#121007"/> + <path + android:pathData="M118,181C118.25,186.63 118.25,186.63 116,190C115.01,189.67 114.02,189.34 113,189C113.33,188.01 113.66,187.02 114,186C113.67,185.01 113.34,184.02 113,183C111.68,183 110.36,183 109,183C109.33,183.99 109.66,184.98 110,186C109.01,187.49 109.01,187.49 108,189C107.34,188.34 106.68,187.68 106,187C105.01,188.49 105.01,188.49 104,190C103.34,190 102.68,190 102,190C102,188.35 102,186.7 102,185C102.99,185 103.98,185 105,185C105,184.34 105,183.68 105,183C113.26,179.37 113.26,179.37 118,181Z" + android:fillColor="#5E6059"/> + <path + android:pathData="M101.69,110.68C103.88,111.5 103.88,111.5 107,113C102.58,114.47 98.12,114.01 93.51,113.87C87.88,113.79 83.12,114.44 78,117C81.57,107.58 93.47,108.6 101.69,110.68Z" + android:fillColor="#4E4F43"/> + <path + android:pathData="M67,176C69.44,176.81 69.44,176.81 72,178C72.33,178.99 72.66,179.98 73,181C74.39,181.09 74.39,181.09 75.81,181.19C79,182 79,182 80.88,184.56C81.43,185.77 81.43,185.77 82,187C81.4,186.8 80.79,186.59 80.17,186.38C79.37,186.11 78.57,185.84 77.75,185.56C76.96,185.3 76.17,185.03 75.36,184.75C73.25,184.08 71.15,183.51 69,183C69,183.99 69,184.98 69,186C68.34,186 67.68,186 67,186C66.05,182.3 66.05,179.7 67,176Z" + android:fillColor="#553519"/> + <path + android:pathData="M9,191C9.99,191.33 10.98,191.66 12,192C10.75,195.85 9.61,198.03 6,200C5.01,199.67 4.02,199.34 3,199C3,198.34 3,197.68 3,197C3.66,197 4.32,197 5,197C5.29,196.2 5.58,195.39 5.88,194.56C7,192 7,192 9,191ZM1,199C1.66,199.33 2.32,199.66 3,200C3,200.99 3,201.98 3,203C3.66,203.66 4.32,204.32 5,205C4.01,205.33 3.02,205.66 2,206C2,206.66 2,207.32 2,208C1.34,208 0.68,208 0,208C-0.1,201.85 -0.1,201.85 0,200C0.33,199.67 0.66,199.34 1,199Z" + android:fillColor="#24251B"/> + <path + android:pathData="M131,176C131.33,176 131.66,176 132,176C132.33,178.64 132.66,181.28 133,184C133.66,184 134.32,184 135,184C135.33,183.34 135.66,182.68 136,182C136.43,182.76 136.87,183.53 137.31,184.31C138.74,186.58 140.03,188.22 142,190C140.02,190.33 138.04,190.66 136,191C135.67,190.01 135.34,189.02 135,188C134.34,187.67 133.68,187.34 133,187C133,188.98 133,190.96 133,193C132.01,193 131.02,193 130,193C129.15,188.94 129,186.02 130,182C130.34,180 130.67,178 131,176Z" + android:fillColor="#4E4E44"/> + <path + android:pathData="M79,288C79.25,288.64 79.5,289.28 79.75,289.94C80.82,292.19 80.82,292.19 83.13,292.75C83.74,292.83 84.36,292.92 85,293C85.04,295 85.04,297 85,299C84,300 84,300 81.93,300.1C81.11,300.09 80.29,300.07 79.44,300.06C78.61,300.05 77.78,300.04 76.93,300.04C76.3,300.02 75.66,300.01 75,300C75,298.68 75,297.36 75,296C75.99,296.33 76.98,296.66 78,297C78.33,296.01 78.66,295.02 79,294C78.34,294 77.68,294 77,294C77.66,292.02 78.32,290.04 79,288Z" + android:fillColor="#2C2D27"/> + <path + android:pathData="M13,253C14.21,256.62 13.54,257.64 12,261C11.34,261 10.68,261 10,261C9.67,261.99 9.34,262.98 9,264C7.35,264 5.7,264 4,264C3.67,264.66 3.34,265.32 3,266C3.33,263.36 3.66,260.72 4,258C4.66,258 5.32,258 6,258C6.33,257.01 6.66,256.02 7,255C7.33,255.66 7.66,256.32 8,257C9.65,255.68 11.3,254.36 13,253Z" + android:fillColor="#11120C"/> + <path + android:pathData="M58,180C58.05,182.94 58.09,185.87 58.13,188.81C58.14,189.65 58.16,190.48 58.18,191.34C58.18,192.14 58.19,192.94 58.2,193.77C58.21,194.51 58.22,195.25 58.23,196.01C58,198 58,198 56,201C55.34,201 54.68,201 54,201C52.79,196.85 53.19,193.36 53.75,189.15C54.07,186.87 54.07,186.87 53.88,184.06C53.92,183.38 53.96,182.7 54,182C57,180 57,180 58,180Z" + android:fillColor="#383626"/> + <path + android:pathData="M36.27,151.33C36.84,151.55 37.41,151.77 38,152C37.67,153.32 37.34,154.64 37,156C37.66,156.33 38.32,156.66 39,157C37.35,157 35.7,157 34,157C34,158.65 34,160.3 34,162C33.01,161.67 32.02,161.34 31,161C31.33,160.67 31.66,160.34 32,160C30.02,160 28.04,160 26,160C26,157 26,157 27.61,155.36C28.32,154.83 29.02,154.3 29.75,153.75C30.45,153.21 31.14,152.67 31.86,152.11C34,151 34,151 36.27,151.33Z" + android:fillColor="#41402B"/> + <path + android:pathData="M127,185C128.32,185.33 129.64,185.66 131,186C130.67,186.66 130.34,187.32 130,188C130.61,190.35 131.27,192.69 132,195C131.34,195.66 130.68,196.32 130,197C129.67,196.01 129.34,195.02 129,194C127.35,194.66 125.7,195.32 124,196C123.67,195.34 123.34,194.68 123,194C122.67,195.32 122.34,196.64 122,198C121.01,198 120.02,198 119,198C119.33,195.03 119.66,192.06 120,189C120.76,189.49 121.53,189.99 122.31,190.5C124.92,192.24 124.92,192.24 128,192C127.67,189.69 127.34,187.38 127,185Z" + android:fillColor="#43433B"/> + <path + android:pathData="M111,143C111.99,143.33 112.98,143.66 114,144C114.37,144.93 114.74,145.86 115.13,146.81C117.76,151.3 121.24,152.3 126,154C126,154.66 126,155.32 126,156C125.11,155.67 124.23,155.34 123.31,155C120.14,153.85 120.14,153.85 117.25,154.06C116.14,154.03 116.14,154.03 115,154C114.34,153.01 113.68,152.02 113,151C112.67,152.65 112.34,154.3 112,156C111.67,156 111.34,156 111,156C110.81,154.21 110.62,152.42 110.44,150.63C110.33,149.63 110.23,148.63 110.12,147.6C110,145 110,145 111,143Z" + android:fillColor="#969494"/> + <path + android:pathData="M92,173C93.67,173.25 93.67,173.25 95.38,173.5C100.26,174.12 105.09,174.09 110,174C110.33,175.32 110.66,176.64 111,178C105.16,179.08 100.52,179.89 95.31,176.63C93.36,175.23 93.36,175.23 92,174C92,173.67 92,173.34 92,173Z" + android:fillColor="#AAABAC"/> + <path + android:pathData="M112,150C114.76,152.49 116.62,154.2 117,158C116.67,158.66 116.34,159.32 116,160C116.99,160.33 117.98,160.66 119,161C118.34,161 117.68,161 117,161C117,161.66 117,162.32 117,163C114.69,163 112.38,163 110,163C110.61,158.66 111.26,154.32 112,150Z" + android:fillColor="#818384"/> + <path + android:pathData="M105,291C105.12,291.76 105.25,292.53 105.38,293.31C105.88,296.2 105.88,296.2 108,299C105.04,300.48 102.26,300.06 99,300C97.57,297.65 96.91,296.52 97.38,293.75C97.58,293.17 97.79,292.6 98,292C98.33,292.66 98.66,293.32 99,294C99.33,293.34 99.66,292.68 100,292C103,291 103,291 105,291Z" + android:fillColor="#3E3E34"/> + <path + android:pathData="M87,202C91.46,202.99 91.46,202.99 96,204C96,204.33 96,204.66 96,205C100.79,205.23 100.79,205.23 105,203C105.99,203.33 106.98,203.66 108,204C99.74,209.74 99.74,209.74 95,209C95,208.34 95,207.68 95,207C94.26,206.88 93.51,206.75 92.75,206.63C90.2,206.05 88.27,205.26 86,204C86.33,203.34 86.66,202.68 87,202Z" + android:fillColor="#555448"/> + <path + android:pathData="M84,172C88.58,172.29 91.37,173.09 95.25,175.56C99.78,178.28 103.32,178.38 108.52,177.98C111.25,178 112.69,178.61 115,180C113.85,179.98 112.69,179.96 111.5,179.94C108.53,179.92 105.75,180.15 102.81,180.63C99.03,181 97.3,180.75 94,179C94,178.01 94,177.02 94,176C92.91,175.9 91.81,175.79 90.69,175.69C87.14,175.03 86.07,174.8 84,172Z" + android:fillColor="#8F8F8E"/> + <path + android:pathData="M112,114C119.34,114.75 125.86,118.04 132,122C126.43,123.86 121.56,120.87 116.56,118.38C115.04,117.59 113.52,116.8 112,116C112,115.34 112,114.68 112,114Z" + android:fillColor="#B4B4B5"/> + <path + android:pathData="M129,111C131.31,111.44 131.31,111.44 134,113C135.66,116.44 137,120.15 137,124C137.66,124 138.32,124 139,124C139.33,124.99 139.66,125.98 140,127C139.01,127 138.02,127 137,127C137,126.34 137,125.68 137,125C136.01,124.67 135.02,124.34 134,124C134,123.34 134,122.68 134,122C133.34,122 132.68,122 132,122C131.67,119.69 131.34,117.38 131,115C130.34,115 129.68,115 129,115C129,113.68 129,112.36 129,111Z" + android:fillColor="#5C5D54"/> + <path + android:pathData="M48,275C48.66,275.99 49.32,276.98 50,278C50.66,277.01 51.32,276.02 52,275C53.25,277.49 52.78,278.41 52,281C51.34,281 50.68,281 50,281C50,281.99 50,282.98 50,284C49.01,284.49 49.01,284.49 48,285C47.67,285.99 47.34,286.98 47,288C44.94,288.69 44.94,288.69 43,289C43,287.35 43,285.7 43,284C43.99,283.67 44.98,283.34 46,283C45.77,282.42 45.55,281.85 45.31,281.25C45,279 45,279 46.44,276.75C46.95,276.17 47.47,275.6 48,275Z" + android:fillColor="#171812"/> + <path + android:pathData="M67,151C70.33,153.22 70.75,154.35 72,158C71.01,158.49 71.01,158.49 70,159C70.99,159.66 71.98,160.32 73,161C72.67,161.66 72.34,162.32 72,163C71.34,163 70.68,163 70,163C70,162.34 70,161.68 70,161C67.69,161 65.38,161 63,161C62.67,160.34 62.34,159.68 62,159C62.66,159 63.32,159 64,159C64.12,158.42 64.25,157.85 64.38,157.25C65.01,154.98 65.89,153.07 67,151Z" + android:fillColor="#4A4B3F"/> + <path + android:pathData="M114,144C117,145 117,145 118,147C118.66,147 119.32,147 120,147C120.99,148.49 120.99,148.49 122,150C123.97,151.15 123.97,151.15 126,152C126.66,152.33 127.32,152.66 128,153C128,152.34 128,151.68 128,151C129.32,151.66 130.64,152.32 132,153C132,153.99 132,154.98 132,156C130.02,156 128.04,156 126,156C126,155.34 126,154.68 126,154C125.39,153.84 124.77,153.68 124.14,153.52C117.48,151.6 117.48,151.6 114.94,148.44C114,146 114,146 114,144Z" + android:fillColor="#6E4522"/> + <path + android:pathData="M95,131C98,132 98,132 99.06,133.94C99.37,134.62 99.68,135.3 100,136C100.66,136.66 101.32,137.32 102,138C99.24,138.92 97.37,139.19 94.5,139.25C93.34,139.29 93.34,139.29 92.16,139.33C89.51,138.93 88.67,138.03 87,136C87.33,135.01 87.66,134.02 88,133C88.66,133 89.32,133 90,133C90.33,133.66 90.66,134.32 91,135C92.32,135 93.64,135 95,135C95,133.68 95,132.36 95,131Z" + android:fillColor="#503419"/> + <path + android:pathData="M84,128C95.81,127.14 95.81,127.14 99.75,130.25C102,133 102,133 102,137C100.68,137 99.36,137 98,137C97.34,135.02 96.68,133.04 96,131C92.37,131 88.74,131 85,131C84.67,130.01 84.34,129.02 84,128Z" + android:fillColor="#1B140B"/> + <path + android:pathData="M123,219C123.14,219.64 123.29,220.28 123.44,220.94C123.81,222.98 123.81,222.98 125,224C125.66,224.33 126.32,224.66 127,225C125.74,228.89 124.55,230.89 121,233C120.34,233 119.68,233 119,233C118.67,233.66 118.34,234.32 118,235C117.67,234.01 117.34,233.02 117,232C117.99,232 118.98,232 120,232C120,231.01 120,230.02 120,229C120.66,229 121.32,229 122,229C122,227.68 122,226.36 122,225C121.01,224.67 120.02,224.34 119,224C119.33,223.01 119.66,222.02 120,221C120.66,221 121.32,221 122,221C122.33,220.34 122.66,219.68 123,219Z" + android:fillColor="#26261D"/> + <path + android:pathData="M62,177C63.33,177 64.67,177 66,177C65.99,177.75 65.98,178.5 65.96,179.27C65.96,180.25 65.95,181.24 65.94,182.25C65.93,183.22 65.91,184.2 65.9,185.2C65.99,187.66 66.29,189.66 67,192C65.13,191.38 65.13,191.38 63,190C61.16,185.94 60.69,182.43 61,178C61.33,177.67 61.66,177.34 62,177Z" + android:fillColor="#0B0B05"/> + <path + android:pathData="M93,191C93.63,192.88 93.63,192.88 94,195C92,197 92,197 89,197.19C86,197 86,197 84,196C84,194.68 84,193.36 84,192C87.2,190.93 89.66,190.93 93,191Z" + android:fillColor="#968A57"/> + <path + android:pathData="M18,168C18.99,168 19.98,168 21,168C20.13,173.75 20.13,173.75 19,176C16.35,176.59 13.71,176.74 11,177C11.66,175.35 12.32,173.7 13,172C13.99,172 14.98,172 16,172C16.66,170.68 17.32,169.36 18,168Z" + android:fillColor="#5A5C45"/> + <path + android:pathData="M107,146C107.66,146.33 108.32,146.66 109,147C108.91,149.4 108.81,151.79 108.69,154.19C108.66,154.86 108.64,155.53 108.62,156.23C108.38,160.61 107.58,163.44 105,167C104.88,166.36 104.75,165.72 104.63,165.06C104.42,164.38 104.21,163.7 104,163C103.34,162.67 102.68,162.34 102,162C102.99,161.34 103.98,160.68 105,160C105.55,157.71 105.55,157.71 105.63,155.13C105.82,151.95 106.13,149.06 107,146Z" + android:fillColor="#8B8C8F"/> + <path + android:pathData="M88.29,129.9C89.66,129.92 89.66,129.92 91.06,129.94C91.98,129.95 92.9,129.96 93.85,129.96C94.56,129.98 95.27,129.99 96,130C96,131.65 96,133.3 96,135C94.35,135.33 92.7,135.66 91,136C90.67,135.01 90.34,134.02 90,133C89.34,133 88.68,133 88,133C87.67,133.99 87.34,134.98 87,136C86.34,134.35 85.68,132.7 85,131C86,130 86,130 88.29,129.9Z" + android:fillColor="#2B220E"/> + <path + android:pathData="M74,118C75.32,118 76.64,118 78,118C78.25,120.25 78.25,120.25 78,123C76,125.31 76,125.31 74,127C72.06,126.19 72.06,126.19 70,125C69.67,124.01 69.34,123.02 69,122C70.65,121.34 72.3,120.68 74,120C74,119.34 74,118.68 74,118Z" + android:fillColor="#58594C"/> + <path + android:pathData="M71,196C77.18,196.54 82.33,198.55 88,201C87.67,201.99 87.34,202.98 87,204C81.8,203.48 77.36,201.85 73,199C72.34,198.01 71.68,197.02 71,196Z" + android:fillColor="#706B64"/> + <path + android:pathData="M110,148C110.33,148 110.66,148 111,148C111.1,154.11 111.07,159.97 110,166C108.35,166.33 106.7,166.66 105,167C105.31,166.31 105.62,165.63 105.93,164.92C107.12,161.68 107.6,158.66 108.06,155.25C108.9,149.1 108.9,149.1 110,148Z" + android:fillColor="#A3A4A7"/> + <path + android:pathData="M75,150C76.98,151.85 78.39,153.79 80,156C79.34,156.66 78.68,157.32 78,158C77.01,158 76.02,158 75,158C74.67,157.34 74.34,156.68 74,156C73.18,155.69 72.35,155.38 71.5,155.06C70.68,154.71 69.85,154.36 69,154C68.67,153.01 68.34,152.02 68,151C70.67,149.66 72.03,149.52 75,150Z" + android:fillColor="#74756F"/> + <path + android:pathData="M69,183C71.47,183.49 71.47,183.49 74,184C74.08,185.09 74.17,186.19 74.25,187.31C74.64,191.03 74.64,191.03 77.06,192.94C77.7,193.29 78.34,193.64 79,194C77.35,194 75.7,194 74,194C73.67,193.01 73.34,192.02 73,191C71.68,191 70.36,191 69,191C69,188.36 69,185.72 69,183Z" + android:fillColor="#41260C"/> + <path + android:pathData="M110,136C111.31,139.94 110.24,142.12 109,146C108.34,146 107.68,146 107,146C106.67,147.98 106.34,149.96 106,152C105.67,151.01 105.34,150.02 105,149C104.01,149.33 103.02,149.66 102,150C103.45,147.06 104.98,144.18 106.56,141.31C107,140.52 107.43,139.74 107.88,138.93C109,137 109,137 110,136Z" + android:fillColor="#A1A1A2"/> + <path + android:pathData="M97,124C99.31,125.81 99.31,125.81 101,128C101,128.99 101,129.98 101,131C100.29,130.69 99.59,130.39 98.86,130.07C95.96,128.98 93.24,128.39 90.19,127.88C89.21,127.71 88.24,127.54 87.23,127.37C86.49,127.25 85.76,127.12 85,127C88.19,123.81 92.6,123.44 97,124Z" + android:fillColor="#5B584F"/> + <path + android:pathData="M50,288C50.91,291.08 51.33,293.79 51,297C49.88,298.81 49.88,298.81 48,300C44.81,300.19 44.81,300.19 42,300C42.93,298.89 42.93,298.89 43.88,297.75C45.6,295.51 46.86,293.56 48,291C48.66,291 49.32,291 50,291C50,290.01 50,289.02 50,288Z" + android:fillColor="#1D1F19"/> + <path + android:pathData="M104,219C104,219.66 104,220.32 104,221C103.38,221.25 102.76,221.49 102.13,221.75C99.65,223.21 99.05,224.38 98,227C97.01,226.67 96.02,226.34 95,226C94.67,226.99 94.34,227.98 94,229C91.69,229 89.38,229 87,229C86.67,228.34 86.34,227.68 86,227C89.46,226.51 89.46,226.51 93,226C93,225.34 93,224.68 93,224C94.46,223.16 95.91,222.33 97.38,221.5C98.59,220.8 98.59,220.8 99.84,220.09C102,219 102,219 104,219Z" + android:fillColor="#20211B"/> + <path + android:pathData="M146,159C146,167.25 146,175.5 146,184C145.67,184 145.34,184 145,184C144.66,182.13 144.33,180.25 144,178.38C143.81,177.33 143.63,176.29 143.44,175.21C143.01,172.09 142.92,169.14 143,166C143.66,166 144.32,166 145,166C145,165.34 145,164.68 145,164C144.34,163.67 143.68,163.34 143,163C143.66,163 144.32,163 145,163C145,162.34 145,161.68 145,161C144.34,160.67 143.68,160.34 143,160C145,159 145,159 146,159Z" + android:fillColor="#2C2B24"/> + <path + android:pathData="M127,284C127.66,284 128.32,284 129,284C129,284.99 129,285.98 129,287C128.34,287 127.68,287 127,287C126.67,289.64 126.34,292.28 126,295C125.34,295 124.68,295 124,295C124,295.99 124,296.98 124,298C123.34,298 122.68,298 122,298C121.67,298.66 121.34,299.32 121,300C121,297.69 121,295.38 121,293C121.66,293 122.32,293 123,293C123.66,290.69 124.32,288.38 125,286C125.66,286 126.32,286 127,286C127,285.34 127,284.68 127,284Z" + android:fillColor="#302F22"/> + <path + android:pathData="M114,257C114.99,257.99 115.98,258.98 117,260C117.66,259.67 118.32,259.34 119,259C119.66,259.33 120.32,259.66 121,260C121,260.66 121,261.32 121,262C120.01,262.49 120.01,262.49 119,263C119,263.99 119,264.98 119,266C118.01,265.67 117.02,265.34 116,265C115.34,265.66 114.68,266.32 114,267C112.5,265.63 112.5,265.63 111,264C111,263.34 111,262.68 111,262C111.66,262 112.32,262 113,262C113.33,260.35 113.66,258.7 114,257Z" + android:fillColor="#36352E"/> + <path + android:pathData="M98,108C107.6,110.07 107.6,110.07 111,114C109.19,113.69 107.37,113.38 105.56,113.06C104.05,112.8 104.05,112.8 102.5,112.54C100,112 100,112 99,111C96.98,110.77 94.96,110.59 92.94,110.44C91.83,110.35 90.73,110.27 89.59,110.18C88.74,110.12 87.88,110.06 87,110C90.77,107.48 93.64,107.52 98,108Z" + android:fillColor="#AEAFA9"/> + <path + android:pathData="M80,187C81.33,187.53 81.33,187.53 82.69,188.06C86.16,189.05 87.58,188.72 91,188C93.31,188.94 93.31,188.94 95,190C94.67,190.99 94.34,191.98 94,193C93.67,192.67 93.34,192.34 93,192C91.48,191.93 89.96,191.92 88.44,191.94C87.2,191.95 87.2,191.95 85.93,191.96C84.98,191.98 84.98,191.98 84,192C83.67,192.99 83.34,193.98 83,195C82.01,192.36 81.02,189.72 80,187Z" + android:fillColor="#755619"/> + <path + android:pathData="M115,118C120.75,118.75 120.75,118.75 123,121C125.33,121.69 127.66,122.35 130,123C131.35,123.62 132.7,124.27 134,125C134,125.99 134,126.98 134,128C133.34,128 132.68,128 132,128C132,127.34 132,126.68 132,126C131.3,125.8 130.6,125.59 129.88,125.38C128.97,125.11 128.06,124.84 127.13,124.56C126.22,124.3 125.32,124.03 124.38,123.75C122,123 122,123 120,122C120,122.66 120,123.32 120,124C119.01,124 118.02,124 117,124C117,122.35 117,120.7 117,119C116.34,118.67 115.68,118.34 115,118Z" + android:fillColor="#60615B"/> + <path + android:pathData="M80,131C80.99,131.33 81.98,131.66 83,132C83,132.66 83,133.32 83,134C82.01,134.49 82.01,134.49 81,135C81.66,136.65 82.32,138.3 83,140C77.82,143.22 77.82,143.22 76,144C75.01,143.67 74.02,143.34 73,143C74.29,141.62 75.63,140.29 77,139C77.66,139 78.32,139 79,139C78.98,138.05 78.96,137.1 78.94,136.13C79,133 79,133 80,131Z" + android:fillColor="#7F807C"/> + <path + android:pathData="M113,104C120.43,105 120.43,105 124,106C124,106.99 124,107.98 124,109C125.32,108.67 126.64,108.34 128,108C128.33,108.99 128.66,109.98 129,111C125.71,112.1 124.29,111.8 121,111C121,110.01 121,109.02 121,108C118.03,107.5 118.03,107.5 115,107C115,106.34 115,105.68 115,105C114.34,104.67 113.68,104.34 113,104Z" + android:fillColor="#2F302C"/> + <path + android:pathData="M130,250C130.99,250.33 131.98,250.66 133,251C133.84,255.66 134.02,259.37 133,264C132.34,264 131.68,264 131,264C130.81,263.07 130.81,263.07 130.63,262.13C130.13,259.81 130.13,259.81 128,258C128,256.68 128,255.36 128,254C129.32,254.33 130.64,254.66 132,255C131.01,253.68 130.02,252.36 129,251C129.33,250.67 129.66,250.34 130,250Z" + android:fillColor="#68675D"/> + <path + android:pathData="M129,238C131.48,238.49 131.48,238.49 134,239C134,241.97 134,244.94 134,248C133.34,248 132.68,248 132,248C132,247.34 132,246.68 132,246C131.01,246 130.02,246 129,246C129,243.36 129,240.72 129,238Z" + android:fillColor="#5F5B52"/> + <path + android:pathData="M23,177C23.33,177.99 23.66,178.98 24,180C21.46,182.92 21.46,182.92 19.13,183.31C15.66,184.43 14.18,187.15 12,190C11.34,189.67 10.68,189.34 10,189C10.33,187.68 10.66,186.36 11,185C11.99,185 12.98,185 14,185C14.25,184.38 14.49,183.76 14.75,183.13C16.23,180.6 17.28,179.99 20,179C20.99,179 21.98,179 23,179C23,178.34 23,177.68 23,177Z" + android:fillColor="#29291E"/> + <path + android:pathData="M72,144C75.33,144.55 78.12,145.21 81,147C81.99,148.49 81.99,148.49 83,150C80.69,149.67 78.38,149.34 76,149C76.99,149.66 77.98,150.32 79,151C75.37,151 71.74,151 68,151C69.32,148.69 70.64,146.38 72,144Z" + android:fillColor="#656660"/> + <path + android:pathData="M70,291C70.33,291 70.66,291 71,291C70.67,293.97 70.34,296.94 70,300C68.68,300 67.36,300 66,300C66,298.68 66,297.36 66,296C65.01,296 64.02,296 63,296C63,296.66 63,297.32 63,298C62.34,298 61.68,298 61,298C61,296.35 61,294.7 61,293C61.33,293.66 61.66,294.32 62,295C62.62,294.83 63.24,294.67 63.88,294.5C66,294 66,294 68,294C68.66,293.01 69.32,292.02 70,291Z" + android:fillColor="#282923"/> + <path + android:pathData="M61,187C61.56,187.62 62.11,188.24 62.69,188.88C66.35,192.24 70.17,193.17 75,194C75,194.99 75,195.98 75,197C69.25,197.13 69.25,197.13 67,196C67,195.34 67,194.68 67,194C66.2,193.77 65.39,193.55 64.56,193.31C63.72,192.88 62.87,192.45 62,192C61.19,189.38 61.19,189.38 61,187Z" + android:fillColor="#4F4836"/> + <path + android:pathData="M122,156C124.97,156.33 127.94,156.66 131,157C130.67,157.99 130.34,158.98 130,160C127.45,161.25 124.83,161.8 122,162C119.5,160.63 119.5,160.63 118,159C118.99,159 119.98,159 121,159C121.33,158.01 121.66,157.02 122,156Z" + android:fillColor="#B2B3B5"/> + <path + android:pathData="M80,125C80.99,125.22 80.99,125.22 82,125.44C85.66,126.12 89.31,126.56 93,127C93,127.33 93,127.66 93,128C90.03,128 87.06,128 84,128C84.99,130.64 85.98,133.28 87,136C85.06,135.44 85.06,135.44 83,134C82.25,130.38 82.25,130.38 82,127C81.34,127 80.68,127 80,127C80,126.34 80,125.68 80,125Z" + android:fillColor="#34342C"/> + <path + android:pathData="M33,160C32.05,161.01 31.09,162 30.13,163C29.59,163.56 29.06,164.11 28.51,164.69C27,166 27,166 25,166C25,166.66 25,167.32 25,168C24.34,168 23.68,168 23,168C23,166.35 23,164.7 23,163C23.99,163 24.98,163 26,163C26,162.01 26,161.02 26,160C29.13,158.96 29.99,159.07 33,160Z" + android:fillColor="#54543D"/> + <path + android:pathData="M122,165C123.94,165.75 123.94,165.75 126,167C126.63,169.06 126.63,169.06 127,171C127.66,171.33 128.32,171.66 129,172C128.67,172.99 128.34,173.98 128,175C124.63,173.56 122.49,171.67 120,169C121.32,169 122.64,169 124,169C123.34,167.68 122.68,166.36 122,165Z" + android:fillColor="#81827F"/> + <path + android:pathData="M69,123C69.99,123.99 70.98,124.98 72,126C73.65,125.34 75.3,124.68 77,124C77,124.99 77,125.98 77,127C77.66,127.33 78.32,127.66 79,128C78.67,128.66 78.34,129.32 78,130C74.94,130.63 74.94,130.63 72,131C71.67,130.01 71.34,129.02 71,128C70.01,127.67 69.02,127.34 68,127C68.33,125.68 68.66,124.36 69,123Z" + android:fillColor="#4F4F44"/> + <path + android:pathData="M110,282C110.99,282 111.98,282 113,282C113,282.66 113,283.32 113,284C113.99,284.33 114.98,284.66 116,285C116,285.99 116,286.98 116,288C115.36,288.1 114.72,288.21 114.06,288.31C113.38,288.54 112.7,288.77 112,289C111.67,289.99 111.34,290.98 111,292C110.34,292 109.68,292 109,292C110.15,289.53 111.05,287.95 113,286C111.02,286.33 109.04,286.66 107,287C107,286.01 107,285.02 107,284C107.99,284 108.98,284 110,284C110,283.34 110,282.68 110,282Z" + android:fillColor="#4D4C44"/> + <path + android:pathData="M4,277C4.66,277 5.32,277 6,277C6.33,277.66 6.66,278.32 7,279C7.99,279 8.98,279 10,279C10,279.66 10,280.32 10,281C8.02,281.99 6.04,282.98 4,284C4,284.66 4,285.32 4,286C2.68,285.34 1.36,284.68 0,284C0.47,283.22 0.95,282.43 1.44,281.63C2.34,280.11 3.21,278.58 4,277Z" + android:fillColor="#0F100A"/> + <path + android:pathData="M10,185C10.14,185.62 10.29,186.24 10.44,186.88C10.93,189.03 10.93,189.03 12,191C8.33,192.57 6.56,193.14 2.63,192.13C1.76,191.75 0.89,191.38 0,191C0,190.67 0,190.34 0,190C2.64,189.34 5.28,188.68 8,188C8,187.34 8,186.68 8,186C8.66,185.67 9.32,185.34 10,185Z" + android:fillColor="#37362D"/> + <path + android:pathData="M78,177C78.33,177.66 78.66,178.32 79,179C80.65,179 82.3,179 84,179C83.34,180.32 82.68,181.64 82,183C77.54,182.01 77.54,182.01 73,181C73.33,180.01 73.66,179.02 74,178C76.06,177.31 76.06,177.31 78,177Z" + android:fillColor="#302A1D"/> + <path + android:pathData="M143,137C145,139 145,139 145.16,142.59C145.14,144.04 145.1,145.49 145.06,146.94C144.86,152.54 144.86,152.54 146,158C144.68,158 143.36,158 142,158C141.38,155.69 141.38,155.69 141,153C141.66,152.01 142.32,151.02 143,150C143.24,146.8 143.24,146.8 143.13,143.31C143.11,142.13 143.09,140.95 143.07,139.74C143.05,138.83 143.02,137.93 143,137Z" + android:fillColor="#5D6051"/> + <path + android:pathData="M99,138C100.65,138 102.3,138 104,138C103.98,138.76 103.96,139.53 103.94,140.31C103.87,143.1 103.87,143.1 105,146C103.68,146.99 102.36,147.98 101,149C100.34,146.69 99.68,144.38 99,142C99.99,141.34 100.98,140.68 102,140C101.01,139.34 100.02,138.68 99,138Z" + android:fillColor="#6E6F6B"/> + <path + android:pathData="M75,194C77.97,194.49 77.97,194.49 81,195C81,195.99 81,196.98 81,198C81.6,197.79 82.2,197.59 82.81,197.38C85,197 85,197 88,199C88,199.66 88,200.32 88,201C82.72,200.48 79.43,198.75 75,196C75,195.34 75,194.68 75,194Z" + android:fillColor="#99907A"/> + <path + android:pathData="M104,190C104.33,190.66 104.66,191.32 105,192C105.99,192 106.98,192 108,192C108,192.66 108,193.32 108,194C109.32,194 110.64,194 112,194C112.33,195.65 112.66,197.3 113,199C111.35,199 109.7,199 108,199C107.67,197.35 107.34,195.7 107,194C106.01,194 105.02,194 104,194C104,192.68 104,191.36 104,190Z" + android:fillColor="#333224"/> + <path + android:pathData="M113,180C112.67,180.66 112.34,181.32 112,182C109.68,182.39 107.34,182.72 105,183C104.24,183.21 103.47,183.41 102.69,183.63C101,184 101,184 99,183C99,182.34 99,181.68 99,181C104.16,179.49 107.66,178.66 113,180Z" + android:fillColor="#71726F"/> + <path + android:pathData="M60,153C61.65,153.33 63.3,153.66 65,154C64.67,155.65 64.34,157.3 64,159C61.36,159 58.72,159 56,159C56,158.01 56,157.02 56,156C57.32,155.67 58.64,155.34 60,155C60,154.34 60,153.68 60,153Z" + android:fillColor="#1C1D16"/> + <path + android:pathData="M99,144C101,147 101,147 102,150C100.86,150.62 100.86,150.62 99.69,151.25C97.04,152.97 95.78,154.45 94,157C93.01,157.49 93.01,157.49 92,158C92,156.35 92,154.7 92,153C92.64,152.75 93.28,152.51 93.94,152.25C96.19,151.18 96.19,151.18 96.75,148.88C96.83,148.26 96.92,147.64 97,147C97.66,147 98.32,147 99,147C99,146.01 99,145.02 99,144Z" + android:fillColor="#7A7A78"/> + <path + android:pathData="M128.81,136.63C130.87,137.92 132.42,139.17 134,141C133.67,141.66 133.34,142.32 133,143C132.3,142.53 131.6,142.05 130.88,141.56C127.84,139.91 125.41,139.4 122,139C122,139.66 122,140.32 122,141C120.68,140.34 119.36,139.68 118,139C124.99,135.77 124.99,135.77 128.81,136.63Z" + android:fillColor="#3C3A33"/> + <path + android:pathData="M68,127C69.32,127.33 70.64,127.66 72,128C72,128.99 72,129.98 72,131C72.66,131.33 73.32,131.66 74,132C73.67,132.66 73.34,133.32 73,134C70.51,132.75 69.53,131.3 68,129C68,128.34 68,127.68 68,127ZM79,127C79.99,127 80.98,127 82,127C81.67,127.99 81.34,128.98 81,130C80.34,129.67 79.68,129.34 79,129C79,129.66 79,130.32 79,131C78.01,131.33 77.02,131.66 76,132C75.34,131.34 74.68,130.68 74,130C75.32,130 76.64,130 78,130C78.33,129.01 78.66,128.02 79,127Z" + android:fillColor="#5E5F57"/> + <path + android:pathData="M49,174C51.97,174.33 54.94,174.66 58,175C57.67,176.32 57.34,177.64 57,179C56.01,179 55.02,179 54,179C53.67,179.66 53.34,180.32 53,181C53,178 53,178 54,176C52.86,176.53 52.86,176.53 51.69,177.06C49,178 49,178 46,177C46.99,176.67 47.98,176.34 49,176C49,175.34 49,174.68 49,174Z" + android:fillColor="#1B1C10"/> + <path + android:pathData="M138,195C138.99,195 139.98,195 141,195C140.67,197.97 140.34,200.94 140,204C139.01,204.33 138.02,204.66 137,205C135.53,201.19 136.57,198.71 138,195Z" + android:fillColor="#5E5C50"/> + <path + android:pathData="M129,156C130.65,156 132.3,156 134,156C132.5,159.11 130.8,162.05 129,165C128.34,164.67 127.68,164.34 127,164C126.01,165.49 126.01,165.49 125,167C124.34,165.68 123.68,164.36 123,163C124.79,162.02 126.58,161.05 128.37,160.07C130.17,159.09 130.17,159.09 131,157C130.34,156.67 129.68,156.34 129,156Z" + android:fillColor="#989998"/> + <path + android:pathData="M111,117C112.98,117.66 114.96,118.32 117,119C117,120.65 117,122.3 117,124C114.69,123.67 112.38,123.34 110,123C110.33,121.02 110.66,119.04 111,117Z" + android:fillColor="#303128"/> + <path + android:pathData="M97,260C97.33,260 97.66,260 98,260C99,263 100,266 101,269C99.35,269.33 97.7,269.66 96,270C96,269.01 96,268.02 96,267C94.68,266.34 93.36,265.68 92,265C92,264.34 92,263.68 92,263C93.32,263.33 94.64,263.66 96,264C96.33,262.68 96.66,261.36 97,260Z" + android:fillColor="#22231D"/> + <path + android:pathData="M79,193C80.32,193 81.64,193 83,193C83.43,193.45 83.87,193.91 84.31,194.38C86.82,196.79 89.68,197.18 93,198C93,198.33 93,198.66 93,199C88.84,199.08 85.05,198.98 81,198C81,197.01 81,196.02 81,195C80.01,194.67 79.02,194.34 78,194C78.33,193.67 78.66,193.34 79,193Z" + android:fillColor="#57341C"/> + <path + android:pathData="M91,186C91.99,186.33 92.98,186.66 94,187C94.64,186.77 95.28,186.55 95.94,186.31C96.62,186.21 97.3,186.11 98,186C100.23,187.85 101.7,189.4 103,192C98.92,191.26 94.98,190.17 91,189C91,188.01 91,187.02 91,186Z" + android:fillColor="#332E1F"/> + <path + android:pathData="M122,139C124.81,138.69 124.81,138.69 128,139C129.94,141.38 129.94,141.38 131,144C130.67,144.66 130.34,145.32 130,146C128.66,145.22 127.33,144.42 126,143.63C125.26,143.18 124.51,142.74 123.75,142.29C123.17,141.86 122.6,141.44 122,141C122,140.34 122,139.68 122,139Z" + android:fillColor="#7C7873"/> + <path + android:pathData="M123,251C122.67,252.32 122.34,253.64 122,255C123.98,255.66 125.96,256.32 128,257C125.35,258.46 124.11,259 121,259C120.34,256.69 119.68,254.38 119,252C121,251 121,251 123,251Z" + android:fillColor="#45433D"/> + <path + android:pathData="M122,193C124.06,194.69 124.06,194.69 126,197C125.75,199.75 125.75,199.75 125,202C124.01,202.33 123.02,202.66 122,203C121.34,201.35 120.68,199.7 120,198C120.66,198 121.32,198 122,198C122,196.35 122,194.7 122,193Z" + android:fillColor="#27271B"/> + <path + android:pathData="M126,181C127.32,181.66 128.64,182.32 130,183C130,183.66 130,184.32 130,185C129.01,185.49 129.01,185.49 128,186C128,187.65 128,189.3 128,191C126.35,189.35 124.7,187.7 123,186C123.33,185.34 123.66,184.68 124,184C124.66,184 125.32,184 126,184C126,183.01 126,182.02 126,181Z" + android:fillColor="#2B2C25"/> + <path + android:pathData="M99,150C99.66,150.66 100.32,151.32 101,152C100.63,154.13 100.63,154.13 100,156C98.68,156 97.36,156 96,156C95.67,157.32 95.34,158.64 95,160C94.34,160 93.68,160 93,160C92.63,157.81 92.63,157.81 93,155C94.84,153.01 96.79,151.61 99,150Z" + android:fillColor="#929292"/> + <path + android:pathData="M117,141C122.54,140.63 122.54,140.63 124.88,142.5C125.25,142.99 125.62,143.49 126,144C124.86,143.97 124.86,143.97 123.69,143.94C120.9,143.87 120.9,143.87 118,145C117.27,147.02 117.27,147.02 117,149C115.88,143.25 115.88,143.25 117,141Z" + android:fillColor="#1B1206"/> + <path + android:pathData="M102,274C104.88,274.5 104.88,274.5 108,276C109.18,278.68 109.53,281.07 110,284C109.01,284 108.02,284 107,284C104.89,281.11 104,279.62 104,276C103.34,276 102.68,276 102,276C102,275.34 102,274.68 102,274Z" + android:fillColor="#37362F"/> + <path + android:pathData="M104,182C104.33,182.99 104.66,183.98 105,185C104.01,185 103.02,185 102,185C102,186.98 102,188.96 102,191C100.68,190.34 99.36,189.68 98,189C98,187.02 98,185.04 98,183C100.97,183.49 100.97,183.49 104,184C104,183.34 104,182.68 104,182Z" + android:fillColor="#53544B"/> + <path + android:pathData="M120,177C122,177 124,177 126,177C125.4,179.02 124.73,181.02 124,183C123.01,183.49 123.01,183.49 122,184C121.67,183.01 121.34,182.02 121,181C120.01,181.33 119.02,181.66 118,182C117.67,181.01 117.34,180.02 117,179C117.99,179 118.98,179 120,179C120,178.34 120,177.68 120,177Z" + android:fillColor="#787971"/> + <path + android:pathData="M0,228C0.99,228.33 1.98,228.66 3,229C3.75,231.25 3.75,231.25 4,234C2.06,236.31 2.06,236.31 0,238C0,234.7 0,231.4 0,228Z" + android:fillColor="#21221C"/> + <path + android:pathData="M112,201C114.25,201.25 114.25,201.25 116,202C115.01,202 114.02,202 113,202C112.67,204.97 112.34,207.94 112,211C111.01,211.33 110.02,211.66 109,212C109,210.68 109,209.36 109,208C109.66,208 110.32,208 111,208C111,207.34 111,206.68 111,206C110.01,205.67 109.02,205.34 108,205C109.75,202.94 109.75,202.94 112,201Z" + android:fillColor="#414233"/> + <path + android:pathData="M121,180C122.13,181.75 122.13,181.75 123,184C122.13,186.25 122.13,186.25 121,188C120.34,188 119.68,188 119,188C117,185 117,185 117,182C118.32,181.34 119.64,180.68 121,180Z" + android:fillColor="#6E6F66"/> + <path + android:pathData="M81,174C82.65,174.33 84.3,174.66 86,175C86,175.66 86,176.32 86,177C86.66,177 87.32,177 88,177C87.67,177.99 87.34,178.98 87,180C86.67,179.34 86.34,178.68 86,178C83.69,178.33 81.38,178.66 79,179C78.67,177.68 78.34,176.36 78,175C79.49,175.99 79.49,175.99 81,177C81,176.01 81,175.02 81,174Z" + android:fillColor="#4A4940"/> + <path + android:pathData="M131,168C131.66,168.33 132.32,168.66 133,169C133,171.97 133,174.94 133,178C132.67,177.34 132.34,176.68 132,176C131.34,176 130.68,176 130,176C130,175.01 130,174.02 130,173C129.34,172.67 128.68,172.34 128,172C128.33,171.01 128.66,170.02 129,169C129.66,168.67 130.32,168.34 131,168Z" + android:fillColor="#585851"/> + <path + android:pathData="M127,114C127.33,114.66 127.66,115.32 128,116C128.99,115.67 129.98,115.34 131,115C131.33,117.31 131.66,119.62 132,122C130.02,121.01 128.04,120.02 126,119C126,116 126,116 127,114Z" + android:fillColor="#898A85"/> + <path + android:pathData="M117,249C118.32,249.66 119.64,250.32 121,251C120.01,251.49 120.01,251.49 119,252C119.33,252.99 119.66,253.98 120,255C119.34,255.66 118.68,256.32 118,257C116.68,256.34 115.36,255.68 114,255C114.57,252.13 114.86,251.14 117,249Z" + android:fillColor="#36362E"/> + <path + android:pathData="M102,200C102.66,200.33 103.32,200.66 104,201C103.67,201.33 103.34,201.66 103,202C103.66,202.66 104.32,203.32 105,204C101.36,206.43 99.29,206.16 95,206C95.66,205.01 96.32,204.02 97,203C98.32,203 99.64,203 101,203C101.33,202.01 101.66,201.02 102,200Z" + android:fillColor="#212018"/> + <path + android:pathData="M77,171C77,171.66 77,172.32 77,173C76.01,173.49 76.01,173.49 75,174C75.99,175.32 76.98,176.64 78,178C76.02,178.33 74.04,178.66 72,179C71.67,177.35 71.34,175.7 71,174C74.75,171 74.75,171 77,171Z" + android:fillColor="#414239"/> + <path + android:pathData="M103,166C105.31,166 107.62,166 110,166C110,167.32 110,168.64 110,170C107.36,170 104.72,170 102,170C102.33,168.68 102.66,167.36 103,166Z" + android:fillColor="#949595"/> + <path + android:pathData="M64,162C66.47,162.49 66.47,162.49 69,163C69.33,163.99 69.66,164.98 70,166C71.65,165.67 73.3,165.34 75,165C74.67,166.32 74.34,167.64 74,169C71.29,168.85 69.53,168.52 67.55,166.6C66.32,165.1 65.16,163.55 64,162Z" + android:fillColor="#44463B"/> + <path + android:pathData="M85,148C86.5,149 86.5,149 88,151C88.27,153.72 88.13,156.26 88,159C87.67,158.01 87.34,157.02 87,156C86.01,156 85.02,156 84,156C83.67,154.02 83.34,152.04 83,150C83.66,150 84.32,150 85,150C85,149.34 85,148.68 85,148Z" + android:fillColor="#717171"/> + <path + android:pathData="M108,135C109,138 109,138 107.75,140.63C106,143 106,143 103,144C103.33,142.02 103.66,140.04 104,138C103.34,137.67 102.68,137.34 102,137C103.98,137 105.96,137 108,137C108,136.34 108,135.68 108,135Z" + android:fillColor="#5C5C57"/> + <path + android:pathData="M113,108C112.67,108.99 112.34,109.98 112,111C110.42,110.89 108.83,110.76 107.25,110.63C106.37,110.56 105.49,110.49 104.58,110.41C102.01,110 100.24,109.29 98,108C103.23,106.79 107.77,107.24 113,108Z" + android:fillColor="#848480"/> + <path + android:pathData="M125,249C127.38,249.19 127.38,249.19 130,250C131.31,252.56 131.31,252.56 132,255C127.45,255.37 127.45,255.37 125.19,253.5C124.8,253.01 124.4,252.51 124,252C124.33,251.01 124.66,250.02 125,249Z" + android:fillColor="#585751"/> + <path + android:pathData="M102,215C102.33,215.99 102.66,216.98 103,218C102.34,218 101.68,218 101,218C101,218.66 101,219.32 101,220C94.6,223.08 94.6,223.08 91.56,222.69C91.05,222.46 90.53,222.23 90,222C90.33,221.34 90.66,220.68 91,220C93.07,219.59 93.07,219.59 95.56,219.38C96.39,219.3 97.22,219.23 98.07,219.15C99.02,219.07 99.02,219.07 100,219C100,218.34 100,217.68 100,217C100.66,217 101.32,217 102,217C102,216.34 102,215.68 102,215Z" + android:fillColor="#37382C"/> + <path + android:pathData="M12,196C12.66,196.99 13.32,197.98 14,199C12.33,200.67 10.67,202.33 9,204C7.68,203.34 6.36,202.68 5,202C5.33,201.01 5.66,200.02 6,199C7.98,198.67 9.96,198.34 12,198C12,197.34 12,196.68 12,196Z" + android:fillColor="#15160E"/> + <path + android:pathData="M75,139C74.34,140.65 73.68,142.3 73,144C70.69,143.67 68.38,143.34 66,143C66.66,142.67 67.32,142.34 68,142C68,141.01 68,140.02 68,139C71.01,138.07 71.87,137.96 75,139Z" + android:fillColor="#484943"/> + <path + android:pathData="M120,110C122.31,110.66 124.62,111.32 127,112C124.75,114.06 124.75,114.06 122,116C119.69,115.75 119.69,115.75 118,115C118.66,113.35 119.32,111.7 120,110Z" + android:fillColor="#63635E"/> + <path + android:pathData="M134,245C134.33,245 134.66,245 135,245C135.05,246.62 135.09,248.25 135.13,249.88C135.15,250.78 135.17,251.68 135.2,252.62C135,255 135,255 133,257C133,255.02 133,253.04 133,251C132.01,250.67 131.02,250.34 130,250C130.66,248.68 131.32,247.36 132,246C132,246.66 132,247.32 132,248C132.66,248 133.32,248 134,248C134,247.01 134,246.02 134,245Z" + android:fillColor="#575647"/> + <path + android:pathData="M86,161C88.78,162.39 88.87,164.19 90,167C90.66,167.33 91.32,167.66 92,168C92,168.99 92,169.98 92,171C90.13,170.75 90.13,170.75 88,170C85.89,167.04 85.8,164.56 86,161Z" + android:fillColor="#252620"/> + <path + android:pathData="M112,150C112.66,150.33 113.32,150.66 114,151C114.41,153.07 114.41,153.07 114.63,155.56C114.7,156.39 114.77,157.22 114.85,158.07C114.93,159.02 114.93,159.02 115,160C114.01,160.49 114.01,160.49 113,161C113,160.34 113,159.68 113,159C112.34,159 111.68,159 111,159C111.33,156.03 111.66,153.06 112,150Z" + android:fillColor="#717171"/> + <path + android:pathData="M38,147C38.66,147 39.32,147 40,147C40.33,147.66 40.66,148.32 41,149C42.98,149.73 44.98,150.4 47,151C47,151.66 47,152.32 47,153C44.69,153.33 42.38,153.66 40,154C39.86,153.4 39.71,152.8 39.56,152.19C39.11,150.44 38.57,148.71 38,147Z" + android:fillColor="#2B2B1E"/> + <path + android:pathData="M135,128C135.66,128 136.32,128 137,128C137,128.66 137,129.32 137,130C137.62,130.29 138.24,130.58 138.88,130.88C141,132 141,132 143,134C143,134.99 143,135.98 143,137C141.14,136.75 141.14,136.75 139,136C137.73,134.15 137.73,134.15 136.75,131.94C136.41,131.2 136.08,130.47 135.73,129.71C135.49,129.15 135.25,128.58 135,128Z" + android:fillColor="#4A4C43"/> + <path + android:pathData="M38,295C38.33,295.99 38.66,296.98 39,298C35.36,300.43 33.29,300.16 29,300C29,299.34 29,298.68 29,298C29.99,298 30.98,298 32,298C32,297.34 32,296.68 32,296C32.66,296 33.32,296 34,296C34,296.66 34,297.32 34,298C35.32,297.01 36.64,296.02 38,295Z" + android:fillColor="#0F100A"/> + <path + android:pathData="M54,163C56.01,163.29 58.01,163.62 60,164C56.58,167.15 53.56,167.56 49,168C49,167.34 49,166.68 49,166C49.64,165.69 50.28,165.38 50.94,165.06C52.94,164.17 52.94,164.17 54,163Z" + android:fillColor="#14150C"/> + <path + android:pathData="M126,163C128.48,163.49 128.48,163.49 131,164C130.34,166.31 129.68,168.62 129,171C128.34,171 127.68,171 127,171C125.65,168.29 125.93,165.99 126,163Z" + android:fillColor="#8D8E89"/> + <path + android:pathData="M116,132C116.66,132 117.32,132 118,132C118,132.66 118,133.32 118,134C120.97,134.33 123.94,134.66 127,135C127,135.33 127,135.66 127,136C121.06,136.49 121.06,136.49 115,137C115.33,135.35 115.66,133.7 116,132Z" + android:fillColor="#19180D"/> + <path + android:pathData="M63,124C65,127 65,127 65,130C61.7,130.66 58.4,131.32 55,132C56.32,131.01 57.64,130.02 59,129C60.37,127.36 61.71,125.7 63,124Z" + android:fillColor="#2D2E21"/> + <path + android:pathData="M103,291C103.66,291 104.32,291 105,291C105.19,292.14 105.19,292.14 105.38,293.31C105.88,296.2 105.88,296.2 108,299C106.35,299.33 104.7,299.66 103,300C101.88,293.25 101.88,293.25 103,291Z" + android:fillColor="#424239"/> + <path + android:pathData="M57,287C57.66,287 58.32,287 59,287C59,287.66 59,288.32 59,289C59.66,289 60.32,289 61,289C60.34,290.98 59.68,292.96 59,295C58.34,295 57.68,295 57,295C55.88,289.25 55.88,289.25 57,287Z" + android:fillColor="#262721"/> + <path + android:pathData="M132,265C132.66,265 133.32,265 134,265C135.12,269.69 134.81,272.54 133,277C132.67,277 132.34,277 132,277C132,273.04 132,269.08 132,265Z" + android:fillColor="#1F2019"/> + <path + android:pathData="M78,166C78.99,166.33 79.98,166.66 81,167C81,167.99 81,168.98 81,170C81.99,170.33 82.98,170.66 84,171C84,171.66 84,172.32 84,173C82.02,173 80.04,173 78,173C78,170.69 78,168.38 78,166Z" + android:fillColor="#6F706A"/> + <path + android:pathData="M127,220C127.66,220 128.32,220 129,220C129.37,225.54 129.37,225.54 127.5,227.88C126.76,228.43 126.76,228.43 126,229C126.33,227.68 126.66,226.36 127,225C125.35,224.67 123.7,224.34 122,224C122.96,223.85 122.96,223.85 123.94,223.69C124.62,223.46 125.3,223.23 126,223C126.33,222.01 126.66,221.02 127,220Z" + android:fillColor="#38382F"/> + <path + android:pathData="M127,218C127.99,218 128.98,218 130,218C130.63,220.38 130.63,220.38 131,223C130.34,223.66 129.68,224.32 129,225C129,223.35 129,221.7 129,220C128.34,220 127.68,220 127,220C126.67,221.32 126.34,222.64 126,224C125.34,223.67 124.68,223.34 124,223C125.88,219.13 125.88,219.13 127,218Z" + android:fillColor="#444138"/> + <path + android:pathData="M114,193C114.33,193 114.66,193 115,193C115,194.65 115,196.3 115,198C116.65,198 118.3,198 120,198C120,198.66 120,199.32 120,200C119.01,200 118.02,200 117,200C116.67,200.99 116.34,201.98 116,203C116,202.34 116,201.68 116,201C115.01,200.67 114.02,200.34 113,200C113.33,197.69 113.66,195.38 114,193Z" + android:fillColor="#59594E"/> + <path + android:pathData="M69,183C71.47,183.49 71.47,183.49 74,184C73.67,185.98 73.34,187.96 73,190C72.34,190 71.68,190 71,190C69.54,187.35 69,186.11 69,183Z" + android:fillColor="#1C0B03"/> + <path + android:pathData="M92,178C92.33,178.99 92.66,179.98 93,181C93.66,181.33 94.32,181.66 95,182C94.67,182.99 94.34,183.98 94,185C93.34,185 92.68,185 92,185C92,184.01 92,183.02 92,182C90.68,182.99 89.36,183.98 88,185C87.67,183.68 87.34,182.36 87,181C88.65,180.67 90.3,180.34 92,180C92,179.34 92,178.68 92,178Z" + android:fillColor="#525349"/> + <path + android:pathData="M111,162C113.69,162.18 116.33,162.62 119,163C119,163.33 119,163.66 119,164C117.02,164 115.04,164 113,164C113.33,164.99 113.66,165.98 114,167C112.68,167.33 111.36,167.66 110,168C109.96,166.33 109.96,164.67 110,163C110.33,162.67 110.66,162.34 111,162Z" + android:fillColor="#686969"/> + <path + android:pathData="M73,153C74.65,153 76.3,153 78,153C78.66,154.32 79.32,155.64 80,157C78.35,157.33 76.7,157.66 75,158C74.34,156.35 73.68,154.7 73,153Z" + android:fillColor="#7C7D7A"/> + <path + android:pathData="M121,123C123.88,122.88 123.88,122.88 127,123C127.66,123.66 128.32,124.32 129,125C125.25,128 125.25,128 123,128C122.34,126.35 121.68,124.7 121,123Z" + android:fillColor="#222518"/> + <path + android:pathData="M70,121C70.66,121 71.32,121 72,121C72,122.32 72,123.64 72,125C72.66,125 73.32,125 74,125C74,124.01 74,123.02 74,122C74.99,122 75.98,122 77,122C76.34,123.32 75.68,124.64 75,126C73.68,126 72.36,126 71,126C70.34,124.68 69.68,123.36 69,122C69.33,121.67 69.66,121.34 70,121Z" + android:fillColor="#69695C"/> + <path + android:pathData="M93,296C94.65,296 96.3,296 98,296C98.33,297.32 98.66,298.64 99,300C96.69,300 94.38,300 92,300C92.33,298.68 92.66,297.36 93,296Z" + android:fillColor="#2D2C25"/> + <path + android:pathData="M116,288C116,288.66 116,289.32 116,290C116.66,290 117.32,290 118,290C118.33,291.32 118.66,292.64 119,294C118.34,294 117.68,294 117,294C117,293.01 117,292.02 117,291C116.34,291 115.68,291 115,291C114.67,291.99 114.34,292.98 114,294C113.34,292.35 112.68,290.7 112,289C114,288 114,288 116,288Z" + android:fillColor="#403E34"/> + <path + android:pathData="M123,251C125.97,252.98 125.97,252.98 129,255C128.67,255.99 128.34,256.98 128,258C126.02,257.01 124.04,256.02 122,255C122.33,253.68 122.66,252.36 123,251Z" + android:fillColor="#504E47"/> + <path + android:pathData="M110,209C110.69,210.81 110.69,210.81 111,213C109.88,214.81 109.88,214.81 108,216C105.31,215.69 105.31,215.69 103,215C103.66,214.67 104.32,214.34 105,214C105,213.34 105,212.68 105,212C106.65,212 108.3,212 110,212C110,211.01 110,210.02 110,209Z" + android:fillColor="#35332A"/> + <path + android:pathData="M0,201C1.32,201.33 2.64,201.66 4,202C3.67,202.33 3.34,202.66 3,203C3.66,203.66 4.32,204.32 5,205C4.01,205.33 3.02,205.66 2,206C2,206.66 2,207.32 2,208C1.34,208 0.68,208 0,208C0,205.69 0,203.38 0,201Z" + android:fillColor="#2D2E28"/> + <path + android:pathData="M121,188C123.76,188.52 126.33,189.11 129,190C128.67,190.99 128.34,191.98 128,193C125.04,192.39 123.62,191.75 121,190C121,189.34 121,188.68 121,188Z" + android:fillColor="#33332B"/> + <path + android:pathData="M58,177C60.83,180.2 61.52,182.78 62,187C61.01,187.49 61.01,187.49 60,188C60,186.68 60,185.36 60,184C59.34,184 58.68,184 58,184C58,181.69 58,179.38 58,177Z" + android:fillColor="#222314"/> + <path + android:pathData="M96,163C97.65,163 99.3,163 101,163C102.13,166.75 102.13,166.75 101,169C99.68,169 98.36,169 97,169C97,168.34 97,167.68 97,167C97.66,166.67 98.32,166.34 99,166C98.01,165.01 97.02,164.02 96,163Z" + android:fillColor="#BEBFC0"/> + <path + android:pathData="M76,158C76.99,158 77.98,158 79,158C79.31,158.95 79.62,159.9 79.94,160.88C80.87,163.86 80.87,163.86 82,166C81.01,166.33 80.02,166.66 79,167C76.87,163.81 76.5,161.73 76,158Z" + android:fillColor="#898A89"/> + <path + android:pathData="M105,149C105.33,150.65 105.66,152.3 106,154C104.35,154.33 102.7,154.66 101,155C101,153.35 101,151.7 101,150C103,149 103,149 105,149Z" + android:fillColor="#C3C3C6"/> + <path + android:pathData="M133,128C136,129 136,129 137.19,131.06C137.46,131.7 137.72,132.34 138,133C136.35,133.33 134.7,133.66 133,134C132.34,133.01 131.68,132.02 131,131C131.66,131 132.32,131 133,131C133,130.01 133,129.02 133,128Z" + android:fillColor="#191A0D"/> + <path + android:pathData="M81,292C82.32,292.33 83.64,292.66 85,293C85,294.98 85,296.96 85,299C84.01,299.33 83.02,299.66 82,300C82.33,298.02 82.66,296.04 83,294C82.34,294 81.68,294 81,294C81,293.34 81,292.68 81,292Z" + android:fillColor="#23231E"/> + <path + android:pathData="M90,271C90.66,271 91.32,271 92,271C94.29,274.44 94.18,275.99 94,280C91.43,278.72 91.05,277.63 90,275C90,273.68 90,272.36 90,271Z" + android:fillColor="#2D2E28"/> + <path + android:pathData="M94,225C95.88,225.31 95.88,225.31 98,226C100,229 100,229 99.63,231.19C99.42,231.79 99.21,232.38 99,233C96.2,230.47 94.54,228.8 94,225Z" + android:fillColor="#11120C"/> + <path + android:pathData="M139,182C140.67,182 142.33,182 144,182C144,184.64 144,187.28 144,190C142,187 142,187 142,185C140.68,185 139.36,185 138,185C138.33,184.01 138.66,183.02 139,182Z" + android:fillColor="#4A4A42"/> + <path + android:pathData="M79,158C80.98,158.99 80.98,158.99 83,160C83,161.65 83,163.3 83,165C81.68,164.34 80.36,163.68 79,163C79,161.35 79,159.7 79,158Z" + android:fillColor="#ABACB0"/> + <path + android:pathData="M33,152C33.33,152.99 33.66,153.98 34,155C33.01,155 32.02,155 31,155C31,155.66 31,156.32 31,157C30.34,157 29.68,157 29,157C29,157.99 29,158.98 29,160C28.01,160 27.02,160 26,160C26,159.01 26,158.02 26,157C27.53,155.61 27.53,155.61 29.5,154.31C30.15,153.88 30.8,153.44 31.47,152.99C31.97,152.66 32.48,152.34 33,152Z" + android:fillColor="#2B2B1D"/> + <path + android:pathData="M128,151C129.32,151.66 130.64,152.32 132,153C132,153.99 132,154.98 132,156C130.02,156 128.04,156 126,156C126,155.34 126,154.68 126,154C125.34,153.67 124.68,153.34 124,153C125.32,153 126.64,153 128,153C128,152.34 128,151.68 128,151Z" + android:fillColor="#53534B"/> + <path + android:pathData="M88,140C88.99,140.99 89.98,141.98 91,143C89.02,143.66 87.04,144.32 85,145C84.01,144.01 83.02,143.02 82,142C83.98,141.34 85.96,140.68 88,140Z" + android:fillColor="#ABACAF"/> + <path + android:pathData="M88,133C88.66,133 89.32,133 90,133C91.39,134.96 92.73,136.96 94,139C91.06,138.63 91.06,138.63 88,138C87.67,137.34 87.34,136.68 87,136C87.33,135.01 87.66,134.02 88,133Z" + android:fillColor="#80451B"/> + <path + android:pathData="M73,132C73.66,132.33 74.32,132.66 75,133C74.67,134.32 74.34,135.64 74,137C72.02,137.33 70.04,137.66 68,138C68.33,137.01 68.66,136.02 69,135C71.06,134.31 71.06,134.31 73,134C73,133.34 73,132.68 73,132Z" + android:fillColor="#6D6E68"/> + <path + android:pathData="M128,271C128.99,271.33 129.98,271.66 131,272C130.67,273.65 130.34,275.3 130,277C128.35,276.67 126.7,276.34 125,276C125.33,275.01 125.66,274.02 126,273C126.66,273.66 127.32,274.32 128,275C128,273.68 128,272.36 128,271Z" + android:fillColor="#5E5D4E"/> + <path + android:pathData="M136,221C136.33,221 136.66,221 137,221C138.35,227.4 138.35,227.4 136.56,230.44C136.05,230.95 135.53,231.47 135,232C134.97,230.54 134.95,229.08 134.94,227.63C134.93,226.81 134.91,226 134.9,225.16C135,223 135,223 136,221Z" + android:fillColor="#313227"/> + <path + android:pathData="M104,219C104,219.66 104,220.32 104,221C103.38,221.25 102.76,221.49 102.13,221.75C99.65,223.21 99.05,224.38 98,227C97.67,225.35 97.34,223.7 97,222C101.75,219 101.75,219 104,219Z" + android:fillColor="#1A1A13"/> + <path + android:pathData="M141,199C141.66,199 142.32,199 143,199C142.34,202.3 141.68,205.6 141,209C140.34,208.01 139.68,207.02 139,206C139.88,202.31 139.88,202.31 141,199Z" + android:fillColor="#373729"/> + <path + android:pathData="M34,170C33.75,172.38 33.75,172.38 33,175C30.94,176.31 30.94,176.31 29,177C29.38,174.06 29.38,174.06 30,171C32,170 32,170 34,170Z" + android:fillColor="#17170C"/> + <path + android:pathData="M35,157C34.67,158.65 34.34,160.3 34,162C33.01,161.67 32.02,161.34 31,161C31.33,160.67 31.66,160.34 32,160C31.01,159.67 30.02,159.34 29,159C29,158.34 29,157.68 29,157C31.49,155.75 32.41,156.22 35,157Z" + android:fillColor="#4C4834"/> + <path + android:pathData="M107,146C107.66,146.33 108.32,146.66 109,147C108.13,154.75 108.13,154.75 107,157C106.34,156.67 105.68,156.34 105,156C105.66,152.7 106.32,149.4 107,146Z" + android:fillColor="#808180"/> + <path + android:pathData="M129,148C129.33,148.99 129.66,149.98 130,151C129.34,151 128.68,151 128,151C128,151.66 128,152.32 128,153C125,152 125,152 122,150C124.65,148.54 125.89,148 129,148Z" + android:fillColor="#46320B"/> + <path + android:pathData="M111,143C113.3,146.45 113.14,147.23 112.63,151.19C112.51,152.09 112.4,152.99 112.29,153.92C112.19,154.61 112.1,155.29 112,156C111.67,156 111.34,156 111,156C110.81,154.21 110.62,152.42 110.44,150.63C110.33,149.63 110.23,148.63 110.12,147.6C110,145 110,145 111,143Z" + android:fillColor="#898A8A"/> + <path + android:pathData="M98,131C99.98,131.99 99.98,131.99 102,133C102,134.32 102,135.64 102,137C100.68,137 99.36,137 98,137C98,135.02 98,133.04 98,131Z" + android:fillColor="#140F05"/> + <path + android:pathData="M0,295C3,296 3,296 4,298C4.66,297.67 5.32,297.34 6,297C6,297.99 6,298.98 6,300C4.02,300 2.04,300 0,300C0,298.35 0,296.7 0,295Z" + android:fillColor="#090A05"/> + <path + android:pathData="M81,226C83.76,226.52 86.33,227.11 89,228C88.67,228.99 88.34,229.98 88,231C85.36,230.34 82.72,229.68 80,229C80.33,228.01 80.66,227.02 81,226Z" + android:fillColor="#11130B"/> + <path + android:pathData="M84,192C84.99,192 85.98,192 87,192C87.33,192.99 87.66,193.98 88,195C90,196.21 90,196.21 92,197C86.25,197.13 86.25,197.13 84,196C84,194.68 84,193.36 84,192Z" + android:fillColor="#8C753F"/> + <path + android:pathData="M95,190C96.94,190.38 96.94,190.38 99,191C99.33,191.66 99.66,192.32 100,193C99.01,193.49 99.01,193.49 98,194C97.01,195.49 97.01,195.49 96,197C96,196.01 96,195.02 96,194C95.34,193.67 94.68,193.34 94,193C94.33,192.01 94.66,191.02 95,190Z" + android:fillColor="#533611"/> + <path + android:pathData="M61,187C61.58,187.62 62.15,188.24 62.75,188.88C64.8,190.81 66.43,191.9 69,193C68.01,194.49 68.01,194.49 67,196C67,195.34 67,194.68 67,194C66.2,193.77 65.39,193.55 64.56,193.31C63.72,192.88 62.87,192.45 62,192C61.19,189.38 61.19,189.38 61,187Z" + android:fillColor="#38392B"/> + <path + android:pathData="M75,186C76.32,186.33 77.64,186.66 79,187C79,188.32 79,189.64 79,191C77.68,191 76.36,191 75,191C75,189.35 75,187.7 75,186Z" + android:fillColor="#87723A"/> + <path + android:pathData="M75,181C79.68,182.48 79.68,182.48 81.31,185.13C81.54,185.74 81.77,186.36 82,187C79.69,186.34 77.38,185.68 75,185C75,183.68 75,182.36 75,181Z" + android:fillColor="#63470E"/> + <path + android:pathData="M68,144C68.66,144 69.32,144 70,144C70,145.65 70,147.3 70,149C68.68,149 67.36,149 66,149C65.67,148.34 65.34,147.68 65,147C65.66,147 66.32,147 67,147C67.33,146.01 67.66,145.02 68,144Z" + android:fillColor="#181912"/> + <path + android:pathData="M134,117C136.36,119.36 136.49,120.78 137,124C137.66,124 138.32,124 139,124C139.33,124.99 139.66,125.98 140,127C139.01,127 138.02,127 137,127C136.3,125.71 135.62,124.42 134.94,123.13C134.36,122.05 134.36,122.05 133.78,120.95C133.52,120.3 133.26,119.66 133,119C133.33,118.34 133.66,117.68 134,117Z" + android:fillColor="#414239"/> + <path + android:pathData="M111,273C111.66,273 112.32,273 113,273C112.67,274.32 112.34,275.64 112,277C110.68,277.33 109.36,277.66 108,278C108,277.34 108,276.68 108,276C107.01,275.67 106.02,275.34 105,275C107.49,273.75 108.41,274.22 111,275C111,274.34 111,273.68 111,273Z" + android:fillColor="#45423B"/> + <path + android:pathData="M136,230C138.83,234 137.76,237.43 137,242C134.91,238.6 134.74,235.96 135,232C135.33,231.34 135.66,230.68 136,230Z" + android:fillColor="#1F2019"/> + <path + android:pathData="M113,205C113.99,205.33 114.98,205.66 116,206C115.34,206 114.68,206 114,206C113.67,208.97 113.34,211.94 113,215C112.01,215 111.02,215 110,215C110.99,211.7 111.98,208.4 113,205Z" + android:fillColor="#28251B"/> + <path + android:pathData="M117,189C117.99,189 118.98,189 120,189C119.13,194.75 119.13,194.75 118,197C117.34,197 116.68,197 116,197C116.33,194.36 116.66,191.72 117,189Z" + android:fillColor="#80817B"/> + <path + android:pathData="M89,188C90.98,188.66 92.96,189.32 95,190C94.67,190.99 94.34,191.98 94,193C91.69,192.34 89.38,191.68 87,191C87.66,190.67 88.32,190.34 89,190C89,189.34 89,188.68 89,188Z" + android:fillColor="#735D24"/> + <path + android:pathData="M23,159C23.99,159.33 24.98,159.66 26,160C26,160.99 26,161.98 26,163C23.69,163.66 21.38,164.32 19,165C19.66,164.01 20.32,163.02 21,162C21.66,162 22.32,162 23,162C23,161.01 23,160.02 23,159Z" + android:fillColor="#242616"/> + <path + android:pathData="M131,147C133,149 133,149 133,152C133.66,152.33 134.32,152.66 135,153C134.34,153.66 133.68,154.32 133,155C132.01,154.67 131.02,154.34 130,154C129.67,153.34 129.34,152.68 129,152C129.66,151.67 130.32,151.34 131,151C131,149.68 131,148.36 131,147Z" + android:fillColor="#34352C"/> + <path + android:pathData="M41,144C43.97,144.49 43.97,144.49 47,145C47,145.66 47,146.32 47,147C42.25,148.13 42.25,148.13 40,147C40.33,146.01 40.66,145.02 41,144Z" + android:fillColor="#2A291B"/> + <path + android:pathData="M52,135C53.32,135.66 54.64,136.32 56,137C52.25,140 52.25,140 50,140C50.88,136.13 50.88,136.13 52,135Z" + android:fillColor="#525043"/> + <path + android:pathData="M121,108C121.99,108.33 122.98,108.66 124,109C126.14,108.61 126.14,108.61 128,108C128.33,108.99 128.66,109.98 129,111C125.71,112.1 124.29,111.8 121,111C121,110.01 121,109.02 121,108Z" + android:fillColor="#434440"/> + <path + android:pathData="M119,108C118.34,108.66 117.68,109.32 117,110C117,109.34 117,108.68 117,108C112.54,108.5 112.54,108.5 108,109C111.86,105.14 114.28,106.22 119,108Z" + android:fillColor="#6A6A66"/> + <path + android:pathData="M101,294C101.99,294.99 102.98,295.98 104,297C103.67,297.99 103.34,298.98 103,300C102.01,300 101.02,300 100,300C100.33,298.02 100.66,296.04 101,294Z" + android:fillColor="#36362C"/> + <path + android:pathData="M120,235C122.47,235.49 122.47,235.49 125,236C124.67,236.99 124.34,237.98 124,239C123.01,238.67 122.02,238.34 121,238C120.67,238.66 120.34,239.32 120,240C120,238.35 120,236.7 120,235Z" + android:fillColor="#222218"/> + <path + android:pathData="M37,177C37.66,177 38.32,177 39,177C38.63,179.94 38.63,179.94 38,183C37.01,183.49 37.01,183.49 36,184C35.38,182.19 35.38,182.19 35,180C35.66,179.01 36.32,178.02 37,177Z" + android:fillColor="#1D1E16"/> + <path + android:pathData="M115,172C117.97,172.49 117.97,172.49 121,173C121.33,173.99 121.66,174.98 122,176C121.22,175.81 120.43,175.63 119.63,175.44C117.03,174.74 117.03,174.74 115,176C114.34,175.34 113.68,174.68 113,174C113.66,174 114.32,174 115,174C115,173.34 115,172.68 115,172Z" + android:fillColor="#7B7D7C"/> + <path + android:pathData="M126,169C126.33,169.66 126.66,170.32 127,171C127.66,171.33 128.32,171.66 129,172C128.67,172.99 128.34,173.98 128,175C126.68,174.34 125.36,173.68 124,173C125,170 125,170 126,169Z" + android:fillColor="#7B7C74"/> + <path + android:pathData="M18,168C18.99,168 19.98,168 21,168C20.25,173.75 20.25,173.75 18,176C18.33,174.02 18.66,172.04 19,170C18.34,169.67 17.68,169.34 17,169C17.33,168.67 17.66,168.34 18,168Z" + android:fillColor="#50543E"/> + <path + android:pathData="M52,170C52.66,170.33 53.32,170.66 54,171C53.67,172.32 53.34,173.64 53,175C51.35,174.67 49.7,174.34 48,174C49.32,172.68 50.64,171.36 52,170Z" + android:fillColor="#28281E"/> + <path + android:pathData="M83,158C84.32,158.33 85.64,158.66 87,159C86.67,160.98 86.34,162.96 86,165C84.5,163.75 84.5,163.75 83,162C83,160.68 83,159.36 83,158Z" + android:fillColor="#707171"/> + <path + android:pathData="M104,154C104.66,154 105.32,154 106,154C106,155.98 106,157.96 106,160C105.01,160.49 105.01,160.49 104,161C104,160.34 104,159.68 104,159C103.34,159 102.68,159 102,159C102.66,157.35 103.32,155.7 104,154Z" + android:fillColor="#A1A3A7"/> + <path + android:pathData="M56,156C56.99,156 57.98,156 59,156C59,156.66 59,157.32 59,158C60.65,157.67 62.3,157.34 64,157C64,157.66 64,158.32 64,159C61.36,159 58.72,159 56,159C56,158.01 56,157.02 56,156Z" + android:fillColor="#111209"/> + <path + android:pathData="M51,154C51,154.66 51,155.32 51,156C48.36,156.33 45.72,156.66 43,157C45,154 45,154 47,153.25C49,153 49,153 51,154Z" + android:fillColor="#36362C"/> +</vector> diff --git a/app/src/main/res/layout/fragment_settings.xml b/app/src/main/res/layout/fragment_settings.xml index 3e726bb318880e119196e1646145ffc2d501e130..79fc9b3783be7f58787292ad55ba0bbeac1fd3b6 100644 --- a/app/src/main/res/layout/fragment_settings.xml +++ b/app/src/main/res/layout/fragment_settings.xml @@ -17,10 +17,10 @@ android:drawableEnd="@drawable/baseline_email_24" android:paddingHorizontal="50dp" android:text="@string/send_email" + app:layout_constraintBottom_toTopOf="@+id/saveBtn" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" - app:layout_constraintTop_toTopOf="parent" - /> + app:layout_constraintTop_toTopOf="parent" /> <Button @@ -33,5 +33,18 @@ app:layout_constraintHorizontal_bias="0.498" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" - app:layout_constraintVertical_bias="0.132" /> + app:layout_constraintVertical_bias="0.221" /> + + <Button + android:id="@+id/twibbonButton" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="26dp" + android:text="Twibbon" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintHorizontal_bias="0.498" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/saveBtn" + app:layout_constraintVertical_bias="0.024" /> </androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_twibbon.xml b/app/src/main/res/layout/fragment_twibbon.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc5032ee8f53e38a8bf5e8e896dd26fc1928a72f --- /dev/null +++ b/app/src/main/res/layout/fragment_twibbon.xml @@ -0,0 +1,76 @@ +<?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" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".ui.twibbon.TwibbonFragment"> + + <ImageButton + android:id="@+id/twibbonChangeCameraBtn" + android:layout_width="67dp" + android:layout_height="67dp" + android:contentDescription="switch-camera" + android:src="@drawable/baseline_autorenew_24" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintVertical_bias="0.045" + tools:visibility="visible" /> + + <FrameLayout + android:layout_width="340dp" + android:layout_height="340dp" + android:layout_marginStart="32dp" + android:layout_marginEnd="32dp" + app:layout_constraintBottom_toTopOf="@+id/captureBtn" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/twibbonChangeCameraBtn"> + + <androidx.camera.view.PreviewView + android:id="@+id/cameraView" + android:layout_width="match_parent" + android:layout_height="match_parent" + app:implementationMode="compatible" /> + + <ImageView + android:id="@+id/twibbonLayover" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_gravity="bottom|start" + android:contentDescription="twibbon-img" + android:scaleType="fitXY" + android:src="@drawable/twibbon_layover" /> + + </FrameLayout> + + + <Button + android:id="@+id/captureBtn" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="capture" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintHorizontal_bias="0.778" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintVertical_bias="0.699" + tools:visibility="visible" /> + + <Button + android:id="@+id/retakeBtn" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="retake" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toStartOf="@+id/captureBtn" + app:layout_constraintHorizontal_bias="0.543" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintVertical_bias="0.699" + tools:visibility="visible"/> + +</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file diff --git a/app/src/main/res/navigation/mobile_navigation.xml b/app/src/main/res/navigation/mobile_navigation.xml index ee20a61468c6b658821eda8b34718bb3a49d6f81..38d3dac50f46d188bed251073775efb8c6956bfd 100644 --- a/app/src/main/res/navigation/mobile_navigation.xml +++ b/app/src/main/res/navigation/mobile_navigation.xml @@ -53,4 +53,12 @@ android:name="com.example.pbd_jwr.ui.settings.SettingsFragment" android:label="@string/title_settings" tools:layout="@layout/fragment_settings" /> + <action + android:id="@+id/action_settingsFragment_to_twibbonFragment" + app:destination="@id/navigation_twibbon" /> + + <fragment + android:id="@+id/navigation_twibbon" + android:name="com.example.pbd_jwr.ui.twibbon.TwibbonFragment" + android:label="fragment_twibbon" /> </navigation> \ No newline at end of file