New icons from phosphoricons library + moved blue toast from fragment to activty

This commit is contained in:
Sylvain Berfini 2023-08-24 15:19:33 +02:00
parent 0c8bd49908
commit 409e658f80
135 changed files with 551 additions and 862 deletions

View file

@ -73,7 +73,7 @@ class ContactsManager @UiThread constructor(context: Context) {
init {
contactAvatar = IconCompat.createWithResource(
context,
R.drawable.contact
R.drawable.user_circle
)
}

View file

@ -70,11 +70,6 @@ class NotificationsManager @MainThread constructor(private val context: Context)
}
private val coreListener = object : CoreListenerStub() {
@WorkerThread
override fun onFirstCallStarted(core: Core) {
startCoreForegroundService()
}
@WorkerThread
override fun onCallStateChanged(
core: Core,
@ -223,22 +218,6 @@ class NotificationsManager @MainThread constructor(private val context: Context)
}
}
@WorkerThread
private fun startCoreForegroundService() {
val service = coreService
if (service == null) {
Log.i("$TAG Starting Core Foreground Service")
val intent = Intent()
intent.setClass(coreContext.context, CoreForegroundService::class.java)
try {
context.startForegroundService(intent)
} catch (e: Exception) {
Log.e("$TAG Failed to start Service: $e")
}
}
}
@RequiresPermission(Manifest.permission.POST_NOTIFICATIONS)
@WorkerThread
private fun notify(id: Int, notification: Notification, tag: String? = null) {
@ -320,9 +299,9 @@ class NotificationsManager @MainThread constructor(private val context: Context)
}
val smallIcon = if (isVideo) {
R.drawable.camera_enabled
R.drawable.video_camera
} else {
R.drawable.calls
R.drawable.phone
}
val style = if (isIncoming) {

View file

@ -102,7 +102,7 @@ class CallFragment : GenericFragment() {
(requireActivity() as MainActivity).showGreenToast(
"Historique supprimé",
R.drawable.check
R.drawable.check_fat_fill
)
goBack() // TODO FIXME : issue with tablet when pane can't be closed
}
@ -116,7 +116,7 @@ class CallFragment : GenericFragment() {
(requireActivity() as MainActivity).showGreenToast(
"Numéro copié dans le presse-papier",
R.drawable.check
R.drawable.check_fat_fill
)
}

View file

@ -168,7 +168,7 @@ class CallsListFragment : GenericFragment() {
it.consume {
(requireActivity() as MainActivity).showGreenToast(
"Historique supprimé",
R.drawable.check
R.drawable.check_fat_fill
)
}
}
@ -208,7 +208,7 @@ class CallsListFragment : GenericFragment() {
(requireActivity() as MainActivity).showGreenToast(
"Numéro copié dans le presse-papier",
R.drawable.check
R.drawable.check_fat_fill
)
}

View file

@ -33,7 +33,6 @@ import androidx.annotation.UiThread
import androidx.core.content.FileProvider
import androidx.core.view.doOnPreDraw
import androidx.lifecycle.ViewModelProvider
import androidx.navigation.findNavController
import androidx.navigation.fragment.findNavController
import androidx.navigation.fragment.navArgs
import java.io.File
@ -182,7 +181,7 @@ class ContactFragment : GenericFragment() {
(requireActivity() as MainActivity).showGreenToast(
"Numéro copié dans le presse-papier",
R.drawable.check
R.drawable.check_fat_fill
)
}

View file

@ -51,6 +51,8 @@ class ContactAvatarModel @WorkerThread constructor(val friend: Friend) {
val noAlphabet = MutableLiveData<Boolean>()
val showTrust = MutableLiveData<Boolean>()
private val friendListener = object : FriendListenerStub() {
@WorkerThread
override fun onPresenceReceived(fr: Friend) {

View file

@ -20,12 +20,15 @@
package org.linphone.ui.voip
import android.os.Bundle
import android.view.ViewGroup
import androidx.annotation.DrawableRes
import androidx.annotation.UiThread
import androidx.appcompat.app.AppCompatActivity
import androidx.core.content.ContextCompat
import androidx.core.view.WindowCompat
import androidx.databinding.DataBindingUtil
import androidx.lifecycle.ViewModelProvider
import androidx.lifecycle.lifecycleScope
import androidx.navigation.findNavController
import androidx.navigation.fragment.findNavController
import org.linphone.LinphoneApplication
@ -35,6 +38,7 @@ import org.linphone.ui.voip.fragment.ActiveCallFragmentDirections
import org.linphone.ui.voip.fragment.IncomingCallFragmentDirections
import org.linphone.ui.voip.fragment.OutgoingCallFragmentDirections
import org.linphone.ui.voip.viewmodel.CallsViewModel
import org.linphone.utils.slideInToastFromTopForDuration
@UiThread
class VoipActivity : AppCompatActivity() {
@ -97,4 +101,12 @@ class VoipActivity : AppCompatActivity() {
}
}
}
fun showBlueToast(message: String, @DrawableRes icon: Int) {
binding.blueToast.message = message
binding.blueToast.icon = icon
val target = binding.blueToast.root
target.slideInToastFromTopForDuration(binding.root as ViewGroup, lifecycleScope)
}
}

View file

@ -31,10 +31,11 @@ import org.linphone.LinphoneApplication.Companion.coreContext
import org.linphone.R
import org.linphone.databinding.VoipActiveCallFragmentBinding
import org.linphone.ui.main.fragment.GenericFragment
import org.linphone.ui.voip.VoipActivity
import org.linphone.ui.voip.model.ZrtpSasConfirmationDialogModel
import org.linphone.ui.voip.viewmodel.CurrentCallViewModel
import org.linphone.utils.AppUtils
import org.linphone.utils.DialogUtils
import org.linphone.utils.slideInToastFromTop
@UiThread
class ActiveCallFragment : GenericFragment() {
@ -97,12 +98,18 @@ class ActiveCallFragment : GenericFragment() {
callViewModel.isRemoteDeviceTrusted.observe(viewLifecycleOwner) { trusted ->
if (trusted) {
binding.blueToast.message = "This call can be trusted"
binding.blueToast.icon = R.drawable.trusted
binding.blueToast.root.slideInToastFromTop(binding.root as ViewGroup, true)
} else if (binding.blueToast.root.visibility == View.VISIBLE) {
binding.blueToast.root.slideInToastFromTop(binding.root as ViewGroup, false)
(requireActivity() as VoipActivity).showBlueToast(
"This call can be trusted",
R.drawable.trusted
)
// TODO: improve
binding.avatar.avatarBorderColor = resources.getColor(
R.color.trusted_blue,
requireContext().theme
)
binding.avatar.avatarBorderWidth = AppUtils.getDimension(
R.dimen.avatar_trust_border_width
).toInt()
}
}

View file

@ -268,6 +268,7 @@ class CurrentCallViewModel @UiThread constructor() : ViewModel() {
"$TAG Current call media encryption is ZRTP, auth token is ${if (deviceIsTrusted) "trusted" else "not trusted yet"}"
)
isRemoteDeviceTrusted.postValue(deviceIsTrusted)
contact.value?.showTrust?.postValue(deviceIsTrusted)
if (!deviceIsTrusted && authToken.orEmpty().isNotEmpty()) {
Log.i("$TAG Showing ZRTP SAS confirmation dialog")

View file

@ -231,6 +231,13 @@ fun AvatarView.loadContactAvatar(contact: ContactAvatarModel?) {
onStart = {
// Use initials as placeholder
avatarInitials = contact.initials
if (contact.showTrust.value == true) {
avatarBorderColor = resources.getColor(R.color.trusted_blue, context.theme)
avatarBorderWidth = AppUtils.getDimension(R.dimen.avatar_trust_border_width).toInt()
} else {
avatarBorderWidth = AppUtils.getDimension(R.dimen.zero).toInt()
}
},
onSuccess = { _, _ ->
// If loading is successful, remove initials otherwise image won't be visible

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M213.66,165.66a8,8 0,0 1,-11.32 0L128,91.31 53.66,165.66a8,8 0,0 1,-11.32 -11.32l80,-80a8,8 0,0 1,11.32 0l80,80A8,8 0,0 1,213.66 165.66Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="25">
<path
android:name="path"
android:pathData="M 13 7.5 L 11 7.5 L 11 11.5 L 7 11.5 L 7 13.5 L 11 13.5 L 11 17.5 L 13 17.5 L 13 13.5 L 17 13.5 L 17 11.5 L 13 11.5 L 13 7.5 Z M 12 2.5 C 6.48 2.5 2 6.98 2 12.5 C 2 18.02 6.48 22.5 12 22.5 C 17.52 22.5 22 18.02 22 12.5 C 22 6.98 17.52 2.5 12 2.5 Z M 12 20.5 C 7.59 20.5 4 16.91 4 12.5 C 4 8.09 7.59 4.5 12 4.5 C 16.41 4.5 20 8.09 20 12.5 C 20 16.91 16.41 20.5 12 20.5 Z"
android:fillColor="#fe5e00"
android:strokeWidth="1"/>
</vector>

View file

@ -1,26 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<group android:name="group">
<path
android:name="path"
android:pathData="M 12 8.327 L 12 15.654 M 15.667 11.991 L 8.333 11.991"
android:fillColor="#6c7a87"
android:fillAlpha="0"
android:strokeColor="#6c7a87"
android:strokeWidth="1"
android:fillType="evenOdd"/>
<path
android:name="path_1"
android:pathData="M 16.686 2 L 7.314 2 C 4.048 2 2 4.312 2 7.585 L 2 16.415 C 2 19.688 4.038 22 7.314 22 L 16.686 22 C 19.962 22 22 19.688 22 16.415 L 22 7.585 C 22 4.312 19.962 2 16.686 2 Z"
android:fillColor="#6c7a87"
android:fillAlpha="0"
android:strokeColor="#6c7a87"
android:strokeWidth="1"
android:fillType="evenOdd"/>
</group>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M83.19,174.4a8,8 0,0 0,11.21 -1.6,52 52,0 0,1 83.2,0 8,8 0,1 0,12.8 -9.6A67.88,67.88 0,0 0,163 141.51a40,40 0,1 0,-53.94 0A67.88,67.88 0,0 0,81.6 163.2,8 8,0 0,0 83.19,174.4ZM112,112a24,24 0,1 1,24 24A24,24 0,0 1,112 112ZM208,24L64,24A16,16 0,0 0,48 40L48,64L32,64a8,8 0,0 0,0 16L48,80v40L32,120a8,8 0,0 0,0 16L48,136v40L32,176a8,8 0,0 0,0 16L48,192v24a16,16 0,0 0,16 16L208,232a16,16 0,0 0,16 -16L224,40A16,16 0,0 0,208 24ZM208,216L64,216L64,40L208,40Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path"
android:pathData="M 8.295 8.115 L 12.875 12.705 L 8.295 17.295 L 9.705 18.705 L 15.705 12.705 L 9.705 6.705 L 8.295 8.115 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
</vector>

View file

@ -1,15 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="21dp"
android:height="20dp"
android:viewportWidth="21"
android:viewportHeight="20">
<path
android:name="path"
android:pathData="M 13.912 15.833 L 8.079 10 L 13.912 4.167"
android:strokeColor="#fe5e00"
android:strokeWidth="1.5"
android:strokeLineCap="round"
android:strokeLineJoin="round"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path_1"
android:pathData="M 6.54 5 C 6.6 5.89 6.75 6.76 6.99 7.59 L 5.79 8.79 C 5.38 7.59 5.12 6.32 5.03 5 L 6.54 5 Z M 16.4 17.02 C 17.25 17.26 18.12 17.41 19 17.47 L 19 18.96 C 17.68 18.87 16.41 18.61 15.2 18.21 L 16.4 17.02 Z M 7.5 3 L 4 3 C 3.45 3 3 3.45 3 4 C 3 13.39 10.61 21 20 21 C 20.55 21 21 20.55 21 20 L 21 16.51 C 21 15.96 20.55 15.51 20 15.51 C 18.76 15.51 17.55 15.31 16.43 14.94 C 16.33 14.9 16.22 14.89 16.12 14.89 C 15.86 14.89 15.61 14.99 15.41 15.18 L 13.21 17.38 C 10.38 15.93 8.06 13.62 6.62 10.79 L 8.82 8.59 C 9.1 8.31 9.18 7.92 9.07 7.57 C 8.7 6.45 8.5 5.25 8.5 4 C 8.5 3.45 8.05 3 7.5 3 Z"
android:fillColor="#4e6074"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M208,56L180.28,56L166.65,35.56A8,8 0,0 0,160 32L96,32a8,8 0,0 0,-6.65 3.56L75.71,56L48,56A24,24 0,0 0,24 80L24,192a24,24 0,0 0,24 24L208,216a24,24 0,0 0,24 -24L232,80A24,24 0,0 0,208 56ZM216,192a8,8 0,0 1,-8 8L48,200a8,8 0,0 1,-8 -8L40,80a8,8 0,0 1,8 -8L80,72a8,8 0,0 0,6.66 -3.56L100.28,48h55.43l13.63,20.44A8,8 0,0 0,176 72h32a8,8 0,0 1,8 8ZM128,88a44,44 0,1 0,44 44A44.05,44.05 0,0 0,128 88ZM128,160a28,28 0,1 1,28 -28A28,28 0,0 1,128 160Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="33dp"
android:height="33dp"
android:viewportWidth="33"
android:viewportHeight="33">
<path
android:name="path_1"
android:pathData="M 13.585 12.878 L 11.181 10.475 L 6.194 5.5 L 4.5 7.194 L 7.781 10.475 L 6.903 10.475 C 6.242 10.475 5.702 11.016 5.702 11.677 L 5.702 23.693 C 5.702 24.354 6.242 24.895 6.903 24.895 L 21.323 24.895 C 21.576 24.895 21.792 24.799 21.984 24.679 L 25.806 28.5 L 27.5 26.806 L 16.853 16.159 L 13.585 12.878 Z M 8.105 22.492 L 8.105 12.878 L 10.184 12.878 L 19.797 22.492 L 8.105 22.492 Z M 20.122 12.878 L 20.122 16.015 L 27.332 23.225 L 27.332 11.076 L 22.525 15.882 L 22.525 11.677 C 22.525 11.016 21.984 10.475 21.323 10.475 L 14.582 10.475 L 16.985 12.878 L 20.122 12.878 Z"
android:fillColor="#4e4e4e"
android:strokeWidth="1"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="33dp"
android:height="33dp"
android:viewportWidth="33"
android:viewportHeight="33">
<path
android:name="path"
android:pathData="M 20.5 11.167 L 20.5 21.833 L 7.167 21.833 L 7.167 11.167 L 20.5 11.167 Z M 21.833 8.5 L 5.833 8.5 C 5.1 8.5 4.5 9.1 4.5 9.833 L 4.5 23.167 C 4.5 23.9 5.1 24.5 5.833 24.5 L 21.833 24.5 C 22.567 24.5 23.167 23.9 23.167 23.167 L 23.167 18.5 L 28.5 23.833 L 28.5 9.167 L 23.167 14.5 L 23.167 9.833 C 23.167 9.1 22.567 8.5 21.833 8.5 Z"
android:fillColor="#ffffff"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M208,56L180.28,56L166.65,35.56A8,8 0,0 0,160 32L96,32a8,8 0,0 0,-6.65 3.56L75.71,56L48,56A24,24 0,0 0,24 80L24,192a24,24 0,0 0,24 24L208,216a24,24 0,0 0,24 -24L232,80A24,24 0,0 0,208 56ZM216,192a8,8 0,0 1,-8 8L48,200a8,8 0,0 1,-8 -8L40,80a8,8 0,0 1,8 -8L80,72a8,8 0,0 0,6.66 -3.56L100.28,48h55.43l13.63,20.44A8,8 0,0 0,176 72h32a8,8 0,0 1,8 8ZM176,96v24a8,8 0,0 1,-8 8L144,128a8,8 0,0 1,0 -16h5.15a32.12,32.12 0,0 0,-40.34 -1.61A8,8 0,0 1,99.19 97.6,48.21 48.21,0 0,1 160,100.23L160,96a8,8 0,0 1,16 0ZM158.39,155.2a8,8 0,0 1,-1.58 11.2A48.21,48.21 0,0 1,96 163.77L96,168a8,8 0,0 1,-16 0L80,144a8,8 0,0 1,8 -8h24a8,8 0,0 1,0 16h-5.15a32.12,32.12 0,0 0,40.34 1.61A8,8 0,0 1,158.39 155.2Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M213.66,101.66l-80,80a8,8 0,0 1,-11.32 0l-80,-80A8,8 0,0 1,53.66 90.34L128,164.69l74.34,-74.35a8,8 0,0 1,11.32 11.32Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M165.66,202.34a8,8 0,0 1,-11.32 11.32l-80,-80a8,8 0,0 1,0 -11.32l80,-80a8,8 0,0 1,11.32 11.32L91.31,128Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M181.66,133.66l-80,80a8,8 0,0 1,-11.32 -11.32L164.69,128 90.34,53.66a8,8 0,0 1,11.32 -11.32l80,80A8,8 0,0 1,181.66 133.66Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="21dp"
android:height="21dp"
android:viewportWidth="21"
android:viewportHeight="21">
<path
android:name="path"
android:pathData="M 18.5 0.5 L 2.5 0.5 C 1.4 0.5 0.5 1.4 0.5 2.5 L 0.5 20.5 L 4.5 16.5 L 18.5 16.5 C 19.6 16.5 20.5 15.6 20.5 14.5 L 20.5 2.5 C 20.5 1.4 19.6 0.5 18.5 0.5 Z M 18.5 14.5 L 3.67 14.5 L 2.5 15.67 L 2.5 2.5 L 18.5 2.5 L 18.5 14.5 Z M 5.5 7.5 L 7.5 7.5 L 7.5 9.5 L 5.5 9.5 L 5.5 7.5 Z M 13.5 7.5 L 15.5 7.5 L 15.5 9.5 L 13.5 9.5 L 13.5 7.5 Z M 9.5 7.5 L 11.5 7.5 L 11.5 9.5 L 9.5 9.5 L 9.5 7.5 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M216,48L40,48A16,16 0,0 0,24 64L24,224a15.85,15.85 0,0 0,9.24 14.5A16.13,16.13 0,0 0,40 240a15.89,15.89 0,0 0,10.25 -3.78,0.69 0.69,0 0,0 0.13,-0.11L82.5,208L216,208a16,16 0,0 0,16 -16L232,64A16,16 0,0 0,216 48ZM40,224h0ZM216,192L82.5,192a16,16 0,0 0,-10.3 3.75l-0.12,0.11L40,224L40,64L216,64ZM116,128a12,12 0,1 1,12 12A12,12 0,0 1,116 128ZM72,128a12,12 0,1 1,12 12A12,12 0,0 1,72 128ZM160,128a12,12 0,1 1,12 12A12,12 0,0 1,160 128Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M216,48L40,48A16,16 0,0 0,24 64L24,224a15.85,15.85 0,0 0,9.24 14.5A16.13,16.13 0,0 0,40 240a15.89,15.89 0,0 0,10.25 -3.78,0.69 0.69,0 0,0 0.13,-0.11L82.5,208L216,208a16,16 0,0 0,16 -16L232,64A16,16 0,0 0,216 48ZM40,224h0ZM216,192L82.5,192a16,16 0,0 0,-10.3 3.75l-0.12,0.11L40,224L40,64L216,64ZM88,112a8,8 0,0 1,8 -8h64a8,8 0,0 1,0 16L96,120A8,8 0,0 1,88 112ZM88,144a8,8 0,0 1,8 -8h64a8,8 0,1 1,0 16L96,152A8,8 0,0 1,88 144Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="16dp"
android:height="12dp"
android:viewportWidth="16"
android:viewportHeight="12">
<path
android:name="path"
android:pathData="M 5.75 7.5 L 2.75 4.5 L 0.5 6.75 L 5.75 12 L 15.5 2.25 L 13.25 0 L 5.75 7.5 Z"
android:fillColor="#ffffff"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M243.33,90.91 L114.92,219.31a16,16 0,0 1,-22.63 0l-71.62,-72a16,16 0,0 1,0 -22.61l24,-24a16,16 0,0 1,22.57 -0.06l36.64,35.27 0.11,0.11h0l92.73,-91.37a16,16 0,0 1,22.58 0l24,23.56A16,16 0,0 1,243.33 90.91Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path"
android:pathData="M 19 6.41 L 17.59 5 L 12 10.59 L 6.41 5 L 5 6.41 L 10.59 12 L 5 17.59 L 6.41 19 L 12 13.41 L 17.59 19 L 19 17.59 L 13.41 12 L 19 6.41 Z"
android:fillColor="#ffffff"
android:strokeWidth="1"/>
</vector>

View file

@ -1,20 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="20dp"
android:height="20dp"
android:viewportWidth="20"
android:viewportHeight="20">
<group android:name="group">
<path
android:name="path"
android:pathData="M 10 0 C 4.48 0 0 4.48 0 10 C 0 15.52 4.48 20 10 20 C 15.52 20 20 15.52 20 10 C 20 4.48 15.52 0 10 0 Z M 5.35 16.5 C 6.66 15.56 8.26 15 10 15 C 11.74 15 13.34 15.56 14.65 16.5 C 13.34 17.44 11.74 18 10 18 C 8.26 18 6.66 17.44 5.35 16.5 Z M 16.14 15.12 C 14.45 13.8 12.32 13 10 13 C 7.68 13 5.55 13.8 3.86 15.12 C 2.7 13.73 2 11.95 2 10 C 2 5.58 5.58 2 10 2 C 14.42 2 18 5.58 18 10 C 18 11.95 17.3 13.73 16.14 15.12 Z"
android:fillColor="#000"
android:strokeWidth="1"/>
<path
android:name="path_1"
android:pathData="M 10 4 C 8.07 4 6.5 5.57 6.5 7.5 C 6.5 9.43 8.07 11 10 11 C 11.93 11 13.5 9.43 13.5 7.5 C 13.5 5.57 11.93 4 10 4 Z M 10 9 C 9.17 9 8.5 8.33 8.5 7.5 C 8.5 6.67 9.17 6 10 6 C 10.83 6 11.5 6.67 11.5 7.5 C 11.5 8.33 10.83 9 10 9 Z"
android:fillColor="#000"
android:strokeWidth="1"/>
</group>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path"
android:pathData="M 14 2 L 6 2 C 4.9 2 4 2.9 4 4 L 4 20 C 4 21.1 4.9 22 6 22 L 18 22 C 19.1 22 20 21.1 20 20 L 20 8 L 14 2 Z M 12 10 C 13.1 10 14 10.9 14 12 C 14 13.1 13.1 14 12 14 C 10.9 14 10 13.1 10 12 C 10 10.9 10.9 10 12 10 Z M 16 18 L 8 18 L 8 17.43 C 8 16.62 8.48 15.9 9.22 15.58 C 10.07 15.21 11.01 15 12 15 C 12.99 15 13.93 15.21 14.78 15.58 C 15.52 15.9 16 16.62 16 17.43 L 16 18 Z"
android:fillColor="#fe5e00"
android:strokeWidth="1"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path"
android:pathData="M 4 4 L 20 4 L 20 16 L 5.17 16 L 4 17.17 L 4 4 Z M 4 2 C 2.9 2 2.01 2.9 2.01 4 L 2 22 L 6 18 L 20 18 C 21.1 18 22 17.1 22 16 L 22 4 C 22 2.9 21.1 2 20 2 L 4 2 Z M 6 12 L 14 12 L 14 14 L 6 14 L 6 12 Z M 6 9 L 18 9 L 18 11 L 6 11 L 6 9 Z M 6 6 L 18 6 L 18 8 L 6 8 L 6 6 Z"
android:fillColor="#4e6074"
android:strokeWidth="1"/>
</vector>

View file

@ -1,21 +1,9 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<group android:name="group">
<path
android:name="path"
android:pathData="M 4.876 4.876 C 5.029 4.723 5.238 4.636 5.455 4.636 L 12.818 4.636 C 13.035 4.636 13.243 4.723 13.397 4.876 C 13.55 5.029 13.636 5.238 13.636 5.455 L 13.636 6.273 C 13.636 6.725 14.003 7.091 14.454 7.091 C 14.906 7.091 15.273 6.725 15.273 6.273 L 15.273 5.455 C 15.273 4.804 15.014 4.179 14.554 3.719 C 14.094 3.259 13.469 3 12.818 3 L 5.455 3 C 4.804 3 4.179 3.259 3.719 3.719 C 3.259 4.179 3 4.804 3 5.455 L 3 12.818 C 3 13.469 3.259 14.094 3.719 14.554 C 4.179 15.014 4.804 15.273 5.455 15.273 L 6.273 15.273 C 6.725 15.273 7.091 14.906 7.091 14.454 C 7.091 14.003 6.725 13.636 6.273 13.636 L 5.455 13.636 C 5.238 13.636 5.029 13.55 4.876 13.397 C 4.723 13.243 4.636 13.035 4.636 12.818 L 4.636 5.455 C 4.636 5.238 4.723 5.029 4.876 4.876 Z"
android:fillColor="#000"
android:strokeWidth="1"/>
<path
android:name="path_1"
android:pathData="M 11.182 8.727 C 9.826 8.727 8.727 9.826 8.727 11.182 L 8.727 18.546 C 8.727 19.901 9.826 21 11.182 21 L 18.546 21 C 19.901 21 21 19.901 21 18.546 L 21 11.182 C 21 9.826 19.901 8.727 18.546 8.727 L 11.182 8.727 Z M 10.364 11.182 C 10.364 10.73 10.73 10.364 11.182 10.364 L 18.546 10.364 C 18.997 10.364 19.364 10.73 19.364 11.182 L 19.364 18.546 C 19.364 18.997 18.997 19.364 18.546 19.364 L 11.182 19.364 C 10.73 19.364 10.364 18.997 10.364 18.546 L 10.364 11.182 Z"
android:fillColor="#000"
android:strokeWidth="1"
android:fillType="evenOdd"/>
</group>
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M216,32L88,32a8,8 0,0 0,-8 8L80,80L40,80a8,8 0,0 0,-8 8L32,216a8,8 0,0 0,8 8L168,224a8,8 0,0 0,8 -8L176,176h40a8,8 0,0 0,8 -8L224,40A8,8 0,0 0,216 32ZM160,208L48,208L48,96L160,96ZM208,160L176,160L176,88a8,8 0,0 0,-8 -8L96,80L96,48L208,48Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="28dp"
android:height="28dp"
android:viewportWidth="28"
android:viewportHeight="28">
<path
android:name="path_1"
android:pathData="M 18.667 10.5 L 18.667 22.167 L 9.333 22.167 L 9.333 10.5 L 18.667 10.5 Z M 16.917 3.5 L 11.083 3.5 L 9.917 4.667 L 5.833 4.667 L 5.833 7 L 22.167 7 L 22.167 4.667 L 18.083 4.667 L 16.917 3.5 Z M 21 8.167 L 7 8.167 L 7 22.167 C 7 23.45 8.05 24.5 9.333 24.5 L 18.667 24.5 C 19.95 24.5 21 23.45 21 22.167 L 21 8.167 Z"
android:fillColor="#dd5f5f"
android:strokeWidth="1"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="4dp"
android:height="16dp"
android:viewportWidth="4"
android:viewportHeight="16">
<path
android:name="path_1"
android:pathData="M 2 4 C 3.1 4 4 3.1 4 2 C 4 0.9 3.1 0 2 0 C 0.9 0 0 0.9 0 2 C 0 3.1 0.9 4 2 4 Z M 2 6 C 0.9 6 0 6.9 0 8 C 0 9.1 0.9 10 2 10 C 3.1 10 4 9.1 4 8 C 4 6.9 3.1 6 2 6 Z M 2 12 C 0.9 12 0 12.9 0 14 C 0 15.1 0.9 16 2 16 C 3.1 16 4 15.1 4 14 C 4 12.9 3.1 12 2 12 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M140,128a12,12 0,1 1,-12 -12A12,12 0,0 1,140 128ZM128,72a12,12 0,1 0,-12 -12A12,12 0,0 0,128 72ZM128,184a12,12 0,1 0,12 12A12,12 0,0 0,128 184Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path"
android:pathData="M 14.06 9.02 L 14.98 9.94 L 5.92 19 L 5 19 L 5 18.08 L 14.06 9.02 Z M 17.66 3 C 17.41 3 17.15 3.1 16.96 3.29 L 15.13 5.12 L 18.88 8.87 L 20.71 7.04 C 21.1 6.65 21.1 6.02 20.71 5.63 L 18.37 3.29 C 18.17 3.09 17.92 3 17.66 3 Z M 14.06 6.19 L 3 17.25 L 3 21 L 6.75 21 L 17.81 9.94 L 14.06 6.19 Z"
android:fillColor="#fe5e00"
android:strokeWidth="1"/>
</vector>

View file

@ -1,17 +0,0 @@
<rotate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="180"
android:toDegrees="180">
<vector
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path"
android:pathData="M 7.41 16.41 L 12 11.83 L 16.59 16.41 L 18 15 L 12 9 L 6 15 L 7.41 16.41 Z"
android:fillColor="#4e6074"
android:strokeWidth="1"/>
</vector>
</rotate>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M247.31,124.76c-0.35,-0.79 -8.82,-19.58 -27.65,-38.41C194.57,61.26 162.88,48 128,48S61.43,61.26 36.34,86.35C17.51,105.18 9,124 8.69,124.76a8,8 0,0 0,0 6.5c0.35,0.79 8.82,19.57 27.65,38.4C61.43,194.74 93.12,208 128,208s66.57,-13.26 91.66,-38.34c18.83,-18.83 27.3,-37.61 27.65,-38.4A8,8 0,0 0,247.31 124.76ZM128,192c-30.78,0 -57.67,-11.19 -79.93,-33.25A133.47,133.47 0,0 1,25 128,133.33 133.33,0 0,1 48.07,97.25C70.33,75.19 97.22,64 128,64s57.67,11.19 79.93,33.25A133.46,133.46 0,0 1,231.05 128C223.84,141.46 192.43,192 128,192ZM128,80a48,48 0,1 0,48 48A48.05,48.05 0,0 0,128 80ZM128,160a32,32 0,1 1,32 -32A32,32 0,0 1,128 160Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M53.92,34.62A8,8 0,1 0,42.08 45.38L61.32,66.55C25,88.84 9.38,123.2 8.69,124.76a8,8 0,0 0,0 6.5c0.35,0.79 8.82,19.57 27.65,38.4C61.43,194.74 93.12,208 128,208a127.11,127.11 0,0 0,52.07 -10.83l22,24.21a8,8 0,1 0,11.84 -10.76ZM101.25,110.46 L142.92,156.31a32,32 0,0 1,-41.67 -45.85ZM128,192c-30.78,0 -57.67,-11.19 -79.93,-33.25A133.16,133.16 0,0 1,25 128c4.69,-8.79 19.66,-33.39 47.35,-49.38l18,19.75a48,48 0,0 0,63.66 70l14.73,16.2A112,112 0,0 1,128 192ZM134,96.57a8,8 0,0 1,3 -15.72,48.16 48.16,0 0,1 38.77,42.64 8,8 0,0 1,-7.22 8.71,6.39 6.39,0 0,1 -0.75,0 8,8 0,0 1,-8 -7.26A32.09,32.09 0,0 0,134 96.57ZM247.28,131.26c-0.42,0.94 -10.55,23.37 -33.36,43.8a8,8 0,1 1,-10.67 -11.92A132.77,132.77 0,0 0,231.05 128a133.15,133.15 0,0 0,-23.12 -30.77C185.67,75.19 158.78,64 128,64a118.37,118.37 0,0 0,-19.36 1.57A8,8 0,1 1,106 49.79,134 134,0 0,1 128,48c34.88,0 66.57,13.26 91.66,38.35 18.83,18.83 27.3,37.62 27.65,38.41A8,8 0,0 1,247.31 131.26Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path_1"
android:pathData="M 12 21.175 L 10.55 19.855 C 5.4 15.185 2 12.105 2 8.325 C 2 5.245 4.42 2.825 7.5 2.825 C 9.24 2.825 10.91 3.635 12 4.915 C 13.09 3.635 14.76 2.825 16.5 2.825 C 19.58 2.825 22 5.245 22 8.325 C 22 12.105 18.6 15.185 13.45 19.865 L 12 21.175 Z"
android:fillColor="#000000"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M128,80a48,48 0,1 0,48 48A48.05,48.05 0,0 0,128 80ZM128,160a32,32 0,1 1,32 -32A32,32 0,0 1,128 160ZM216,130.16q0.06,-2.16 0,-4.32l14.92,-18.64a8,8 0,0 0,1.48 -7.06,107.21 107.21,0 0,0 -10.88,-26.25 8,8 0,0 0,-6 -3.93l-23.72,-2.64q-1.48,-1.56 -3,-3L186,40.54a8,8 0,0 0,-3.94 -6,107.71 107.71,0 0,0 -26.25,-10.87 8,8 0,0 0,-7.06 1.49L130.16,40Q128,40 125.84,40L107.2,25.11a8,8 0,0 0,-7.06 -1.48A107.6,107.6 0,0 0,73.89 34.51a8,8 0,0 0,-3.93 6L67.32,64.27q-1.56,1.49 -3,3L40.54,70a8,8 0,0 0,-6 3.94,107.71 107.71,0 0,0 -10.87,26.25 8,8 0,0 0,1.49 7.06L40,125.84Q40,128 40,130.16L25.11,148.8a8,8 0,0 0,-1.48 7.06,107.21 107.21,0 0,0 10.88,26.25 8,8 0,0 0,6 3.93l23.72,2.64q1.49,1.56 3,3L70,215.46a8,8 0,0 0,3.94 6,107.71 107.71,0 0,0 26.25,10.87 8,8 0,0 0,7.06 -1.49L125.84,216q2.16,0.06 4.32,0l18.64,14.92a8,8 0,0 0,7.06 1.48,107.21 107.21,0 0,0 26.25,-10.88 8,8 0,0 0,3.93 -6l2.64,-23.72q1.56,-1.48 3,-3L215.46,186a8,8 0,0 0,6 -3.94,107.71 107.71,0 0,0 10.87,-26.25 8,8 0,0 0,-1.49 -7.06ZM199.9,123.66a73.93,73.93 0,0 1,0 8.68,8 8,0 0,0 1.74,5.48l14.19,17.73a91.57,91.57 0,0 1,-6.23 15L187,173.11a8,8 0,0 0,-5.1 2.64,74.11 74.11,0 0,1 -6.14,6.14 8,8 0,0 0,-2.64 5.1l-2.51,22.58a91.32,91.32 0,0 1,-15 6.23l-17.74,-14.19a8,8 0,0 0,-5 -1.75h-0.48a73.93,73.93 0,0 1,-8.68 0,8 8,0 0,0 -5.48,1.74L100.45,215.8a91.57,91.57 0,0 1,-15 -6.23L82.89,187a8,8 0,0 0,-2.64 -5.1,74.11 74.11,0 0,1 -6.14,-6.14 8,8 0,0 0,-5.1 -2.64L46.43,170.6a91.32,91.32 0,0 1,-6.23 -15l14.19,-17.74a8,8 0,0 0,1.74 -5.48,73.93 73.93,0 0,1 0,-8.68 8,8 0,0 0,-1.74 -5.48L40.2,100.45a91.57,91.57 0,0 1,6.23 -15L69,82.89a8,8 0,0 0,5.1 -2.64,74.11 74.11,0 0,1 6.14,-6.14A8,8 0,0 0,82.89 69L85.4,46.43a91.32,91.32 0,0 1,15 -6.23l17.74,14.19a8,8 0,0 0,5.48 1.74,73.93 73.93,0 0,1 8.68,0 8,8 0,0 0,5.48 -1.74L155.55,40.2a91.57,91.57 0,0 1,15 6.23L173.11,69a8,8 0,0 0,2.64 5.1,74.11 74.11,0 0,1 6.14,6.14 8,8 0,0 0,5.1 2.64l22.58,2.51a91.32,91.32 0,0 1,6.23 15l-14.19,17.74A8,8 0,0 0,199.87 123.66Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,20 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<group android:name="wrapper">
<clip-path
android:name="clip0_116_4583"
android:pathData="M 0 0 L 24 0 L 24 24 L 0 24 Z"/>
<group android:name="group">
<path
android:name="path"
android:pathData="M 12 12.75 C 13.63 12.75 15.07 13.14 16.24 13.65 C 17.32 14.13 18 15.21 18 16.38 L 18 18 L 6 18 L 6 16.39 C 6 15.21 6.68 14.13 7.76 13.66 C 8.93 13.14 10.37 12.75 12 12.75 Z M 4 13 C 5.1 13 6 12.1 6 11 C 6 9.9 5.1 9 4 9 C 2.9 9 2 9.9 2 11 C 2 12.1 2.9 13 4 13 Z M 5.13 14.1 C 4.76 14.04 4.39 14 4 14 C 3.01 14 2.07 14.21 1.22 14.58 C 0.48 14.9 0 15.62 0 16.43 L 0 18 L 4.5 18 L 4.5 16.39 C 4.5 15.56 4.73 14.78 5.13 14.1 Z M 20 13 C 21.1 13 22 12.1 22 11 C 22 9.9 21.1 9 20 9 C 18.9 9 18 9.9 18 11 C 18 12.1 18.9 13 20 13 Z M 24 16.43 C 24 15.62 23.52 14.9 22.78 14.58 C 21.93 14.21 20.99 14 20 14 C 19.61 14 19.24 14.04 18.87 14.1 C 19.27 14.78 19.5 15.56 19.5 16.39 L 19.5 18 L 24 18 L 24 16.43 Z M 12 6 C 13.66 6 15 7.34 15 9 C 15 10.66 13.66 12 12 12 C 10.34 12 9 10.66 9 9 C 9 7.34 10.34 6 12 6 Z"
android:fillColor="#ffffff"
android:strokeWidth="1"/>
</group>
</group>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="33dp"
android:height="33dp"
android:viewportWidth="33"
android:viewportHeight="33">
<path
android:name="path_1"
android:pathData="M 25.287 15.86 C 26.687 16.54 28.007 17.394 29.233 18.407 L 27.807 19.834 C 27.033 19.207 26.193 18.647 25.3 18.14 L 25.3 15.86 M 7.7 15.86 L 7.7 18.127 C 6.833 18.62 5.993 19.18 5.207 19.82 L 3.78 18.394 C 4.993 17.394 6.313 16.554 7.7 15.86 Z M 16.5 11.167 C 10.447 11.167 4.953 13.54 0.887 17.394 C 0.647 17.634 0.5 17.967 0.5 18.34 C 0.5 18.714 0.647 19.047 0.887 19.274 L 4.193 22.58 C 4.433 22.82 4.767 22.967 5.14 22.967 C 5.5 22.967 5.833 22.834 6.073 22.594 C 7.127 21.62 8.313 20.78 9.62 20.127 C 10.06 19.914 10.367 19.447 10.367 18.927 L 10.367 14.794 C 12.3 14.167 14.367 13.834 16.5 13.834 C 18.633 13.834 20.7 14.167 22.62 14.807 L 22.62 18.94 C 22.62 19.474 22.927 19.927 23.367 20.14 C 24.673 20.794 25.873 21.62 26.927 22.607 C 27.167 22.834 27.5 22.98 27.86 22.98 C 28.233 22.98 28.567 22.834 28.807 22.594 L 32.113 19.287 C 32.353 19.047 32.5 18.714 32.5 18.34 C 32.5 17.967 32.353 17.634 32.113 17.394 C 28.047 13.54 22.553 11.167 16.5 11.167 Z"
android:fillColor="#ffffff"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M178,32c-20.65,0 -38.73,8.88 -50,23.89C116.73,40.88 98.65,32 78,32A62.07,62.07 0,0 0,16 94c0,70 103.79,126.66 108.21,129a8,8 0,0 0,7.58 0C136.21,220.66 240,164 240,94A62.07,62.07 0,0 0,178 32ZM128,206.8C109.74,196.16 32,147.69 32,94A46.06,46.06 0,0 1,78 48c19.45,0 35.78,10.36 42.6,27a8,8 0,0 0,14.8 0c6.82,-16.67 23.15,-27 42.6,-27a46.06,46.06 0,0 1,46 46C224,147.61 146.24,196.15 128,206.8Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M240,94c0,70 -103.79,126.66 -108.21,129a8,8 0,0 1,-7.58 0C119.79,220.66 16,164 16,94A62.07,62.07 0,0 1,78 32c20.65,0 38.73,8.88 50,23.89C139.27,40.88 157.35,32 178,32A62.07,62.07 0,0 1,240 94Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path_1"
android:pathData="M 11 18 L 13 18 L 13 16 L 11 16 L 11 18 Z M 12 2 C 6.48 2 2 6.48 2 12 C 2 17.52 6.48 22 12 22 C 17.52 22 22 17.52 22 12 C 22 6.48 17.52 2 12 2 Z M 12 20 C 7.59 20 4 16.41 4 12 C 4 7.59 7.59 4 12 4 C 16.41 4 20 7.59 20 12 C 20 16.41 16.41 20 12 20 Z M 12 6 C 9.79 6 8 7.79 8 10 L 10 10 C 10 8.9 10.9 8 12 8 C 13.1 8 14 8.9 14 10 C 14 12 11 11.75 11 15 L 13 15 C 13 12.75 16 12.5 16 10 C 16 7.79 14.21 6 12 6 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path"
android:pathData="M 12 6.05 C 15.79 6.05 19.17 8.18 20.82 11.55 C 20.23 12.77 19.4 13.82 18.41 14.67 L 19.82 16.08 C 21.21 14.85 22.31 13.31 23 11.55 C 21.27 7.16 17 4.05 12 4.05 C 10.73 4.05 9.51 4.25 8.36 4.62 L 10.01 6.27 C 10.66 6.14 11.32 6.05 12 6.05 Z M 10.93 7.19 L 13 9.26 C 13.57 9.51 14.03 9.97 14.28 10.54 L 16.35 12.61 C 16.43 12.27 16.49 11.91 16.49 11.54 C 16.5 9.06 14.48 7.05 12 7.05 C 11.63 7.05 11.28 7.1 10.93 7.19 Z M 2.01 3.92 L 4.69 6.6 C 3.06 7.88 1.77 9.58 1 11.55 C 2.73 15.94 7 19.05 12 19.05 C 13.52 19.05 14.98 18.76 16.32 18.23 L 19.74 21.65 L 21.15 20.24 L 3.42 2.5 L 2.01 3.92 Z M 9.51 11.42 L 12.12 14.03 C 12.08 14.04 12.04 14.05 12 14.05 C 10.62 14.05 9.5 12.93 9.5 11.55 C 9.5 11.5 9.51 11.47 9.51 11.42 Z M 6.11 8.02 L 7.86 9.77 C 7.63 10.32 7.5 10.92 7.5 11.55 C 7.5 14.03 9.52 16.05 12 16.05 C 12.63 16.05 13.23 15.92 13.77 15.69 L 14.75 16.67 C 13.87 16.91 12.95 17.05 12 17.05 C 8.21 17.05 4.83 14.92 3.18 11.55 C 3.88 10.12 4.9 8.94 6.11 8.02 Z"
android:fillColor="#000000"
android:strokeWidth="1"/>
</vector>

View file

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:state_enabled="false"
android:drawable="@drawable/camera_disabled"
app:tint="@color/gray_5" />
<item
android:drawable="@drawable/camera_enabled"
app:tint="@color/white" />
</selector>

View file

@ -1,13 +1,9 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="19dp"
android:height="18dp"
android:viewportWidth="19"
android:viewportHeight="18">
<path
android:name="path"
android:pathData="M 9.549 18 C 4.578 18 0.549 13.971 0.549 9 C 0.549 4.029 4.578 0 9.549 0 C 14.52 0 18.549 4.029 18.549 9 C 18.549 13.971 14.52 18 9.549 18 Z M 9.549 16.2 C 11.459 16.2 13.29 15.441 14.64 14.091 C 15.991 12.741 16.749 10.91 16.749 9 C 16.749 7.09 15.991 5.259 14.64 3.909 C 13.29 2.559 11.459 1.8 9.549 1.8 C 7.64 1.8 5.808 2.559 4.458 3.909 C 3.108 5.259 2.349 7.09 2.349 9 C 2.349 10.91 3.108 12.741 4.458 14.091 C 5.808 15.441 7.64 16.2 9.549 16.2 Z M 8.649 4.5 L 10.449 4.5 L 10.449 6.3 L 8.649 6.3 L 8.649 4.5 Z M 8.649 8.1 L 10.449 8.1 L 10.449 13.5 L 8.649 13.5 L 8.649 8.1 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M128,24A104,104 0,1 0,232 128,104.11 104.11,0 0,0 128,24ZM128,216a88,88 0,1 1,88 -88A88.1,88.1 0,0 1,128 216ZM144,176a8,8 0,0 1,-8 8,16 16,0 0,1 -16,-16L120,128a8,8 0,0 1,0 -16,16 16,0 0,1 16,16v40A8,8 0,0 1,144 176ZM112,84a12,12 0,1 1,12 12A12,12 0,0 1,112 84Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="29dp"
android:height="28dp"
android:viewportWidth="29"
android:viewportHeight="28">
<path
android:name="path"
android:pathData="M 18 24.5 L 15.667 24.5 L 15.667 22.167 L 18 22.167 L 18 24.5 Z M 15.667 16.333 L 13.333 16.333 L 13.333 22.167 L 15.667 22.167 L 15.667 16.333 Z M 25 14 L 22.667 14 L 22.667 18.667 L 25 18.667 L 25 14 Z M 22.667 11.667 L 20.333 11.667 L 20.333 14 L 22.667 14 L 22.667 11.667 Z M 8.667 14 L 6.333 14 L 6.333 16.333 L 8.667 16.333 L 8.667 14 Z M 6.333 11.667 L 4 11.667 L 4 14 L 6.333 14 L 6.333 11.667 Z M 14.5 5.833 L 16.833 5.833 L 16.833 3.5 L 14.5 3.5 L 14.5 5.833 Z M 5.75 5.25 L 5.75 8.75 L 9.25 8.75 L 9.25 5.25 L 5.75 5.25 Z M 11 10.5 L 4 10.5 L 4 3.5 L 11 3.5 L 11 10.5 Z M 5.75 19.25 L 5.75 22.75 L 9.25 22.75 L 9.25 19.25 L 5.75 19.25 Z M 11 24.5 L 4 24.5 L 4 17.5 L 11 17.5 L 11 24.5 Z M 19.75 5.25 L 19.75 8.75 L 23.25 8.75 L 23.25 5.25 L 19.75 5.25 Z M 25 10.5 L 18 10.5 L 18 3.5 L 25 3.5 L 25 10.5 Z M 22.667 22.167 L 22.667 18.667 L 18 18.667 L 18 21 L 20.333 21 L 20.333 24.5 L 25 24.5 L 25 22.167 L 22.667 22.167 Z M 20.333 14 L 15.667 14 L 15.667 16.333 L 20.333 16.333 L 20.333 14 Z M 15.667 11.667 L 8.667 11.667 L 8.667 14 L 11 14 L 11 16.333 L 13.333 16.333 L 13.333 14 L 15.667 14 L 15.667 11.667 Z M 16.833 10.5 L 16.833 8.167 L 14.5 8.167 L 14.5 5.833 L 12.167 5.833 L 12.167 10.5 L 16.833 10.5 Z M 8.375 6.125 L 6.625 6.125 L 6.625 7.875 L 8.375 7.875 L 8.375 6.125 Z M 8.375 20.125 L 6.625 20.125 L 6.625 21.875 L 8.375 21.875 L 8.375 20.125 Z M 22.375 6.125 L 20.625 6.125 L 20.625 7.875 L 22.375 7.875 L 22.375 6.125 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M224,128a8,8 0,0 1,-8 8H40a8,8 0,0 1,0 -16H216A8,8 0,0 1,224 128ZM40,72H216a8,8 0,0 0,0 -16H40a8,8 0,0 0,0 16ZM216,184H40a8,8 0,0 0,0 16H216a8,8 0,0 0,0 -16Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M229.66,218.34l-50.07,-50.06a88.11,88.11 0,1 0,-11.31 11.31l50.06,50.07a8,8 0,0 0,11.32 -11.32ZM40,112a72,72 0,1 1,72 72A72.08,72.08 0,0 1,40 112Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,15 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<group android:name="group">
<path
android:name="path"
android:pathData="M 4 18 L 4 17.35 C 4 17.01 4.16 16.69 4.41 16.54 C 6.1 15.53 8.03 15 10 15 C 10.03 15 10.05 15 10.08 15.01 C 10.18 14.31 10.38 13.64 10.67 13.03 C 10.45 13.01 10.23 13 10 13 C 7.58 13 5.32 13.67 3.39 14.82 C 2.51 15.34 2 16.32 2 17.35 L 2 20 L 11.26 20 C 10.84 19.4 10.51 18.72 10.29 18 L 4 18 Z M 10 12 C 12.21 12 14 10.21 14 8 C 14 5.79 12.21 4 10 4 C 7.79 4 6 5.79 6 8 C 6 10.21 7.79 12 10 12 Z M 10 6 C 11.1 6 12 6.9 12 8 C 12 9.1 11.1 10 10 10 C 8.9 10 8 9.1 8 8 C 8 6.9 8.9 6 10 6 Z M 20.75 16 C 20.75 15.78 20.72 15.58 20.69 15.37 L 21.83 14.36 L 20.83 12.63 L 19.38 13.12 C 19.06 12.85 18.7 12.64 18.3 12.49 L 18 11 L 16 11 L 15.7 12.49 C 15.3 12.64 14.94 12.85 14.62 13.12 L 13.17 12.63 L 12.17 14.36 L 13.31 15.37 C 13.28 15.58 13.25 15.78 13.25 16 C 13.25 16.22 13.28 16.42 13.31 16.63 L 12.17 17.64 L 13.17 19.37 L 14.62 18.88 C 14.94 19.15 15.3 19.36 15.7 19.51 L 16 21 L 18 21 L 18.3 19.51 C 18.7 19.36 19.06 19.15 19.38 18.88 L 20.83 19.37 L 21.83 17.64 L 20.69 16.63 C 20.72 16.42 20.75 16.22 20.75 16 Z M 17 18 C 15.9 18 15 17.1 15 16 C 15 14.9 15.9 14 17 14 C 18.1 14 19 14.9 19 16 C 19 17.1 18.1 18 17 18 Z"
android:fillColor="#000"
android:strokeWidth="1"/>
</group>
</vector>

View file

@ -1,20 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<group android:name="wrapper">
<clip-path
android:name="clip0_116_4583"
android:pathData="M 0 0 L 24 0 L 24 24 L 0 24 Z"/>
<group android:name="group">
<path
android:name="path"
android:pathData="M 12 12.75 C 13.63 12.75 15.07 13.14 16.24 13.65 C 17.32 14.13 18 15.21 18 16.38 L 18 18 L 6 18 L 6 16.39 C 6 15.21 6.68 14.13 7.76 13.66 C 8.93 13.14 10.37 12.75 12 12.75 Z M 4 13 C 5.1 13 6 12.1 6 11 C 6 9.9 5.1 9 4 9 C 2.9 9 2 9.9 2 11 C 2 12.1 2.9 13 4 13 Z M 5.13 14.1 C 4.76 14.04 4.39 14 4 14 C 3.01 14 2.07 14.21 1.22 14.58 C 0.48 14.9 0 15.62 0 16.43 L 0 18 L 4.5 18 L 4.5 16.39 C 4.5 15.56 4.73 14.78 5.13 14.1 Z M 20 13 C 21.1 13 22 12.1 22 11 C 22 9.9 21.1 9 20 9 C 18.9 9 18 9.9 18 11 C 18 12.1 18.9 13 20 13 Z M 24 16.43 C 24 15.62 23.52 14.9 22.78 14.58 C 21.93 14.21 20.99 14 20 14 C 19.61 14 19.24 14.04 18.87 14.1 C 19.27 14.78 19.5 15.56 19.5 16.39 L 19.5 18 L 24 18 L 24 16.43 Z M 12 6 C 13.66 6 15 7.34 15 9 C 15 10.66 13.66 12 12 12 C 10.34 12 9 10.66 9 9 C 9 7.34 10.34 6 12 6 Z"
android:fillColor="#ffffff"
android:strokeWidth="1"/>
</group>
</group>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="20dp"
android:height="14dp"
android:viewportWidth="20"
android:viewportHeight="14">
<path
android:name="path"
android:pathData="M 0 13.333 L 20 13.333 L 20 11.111 L 0 11.111 L 0 13.333 Z M 0 7.778 L 20 7.778 L 20 5.556 L 0 5.556 L 0 7.778 Z M 0 0 L 0 2.222 L 20 2.222 L 20 0 L 0 0 Z"
android:fillColor="#ffffff"
android:strokeWidth="1"/>
</vector>

View file

@ -1,13 +1,9 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="33dp"
android:height="33dp"
android:viewportWidth="33"
android:viewportHeight="33">
<path
android:name="path_1"
android:pathData="M 16.5 19.167 C 18.713 19.167 20.5 17.38 20.5 15.167 L 20.5 7.167 C 20.5 4.954 18.713 3.167 16.5 3.167 C 14.287 3.167 12.5 4.954 12.5 7.167 L 12.5 15.167 C 12.5 17.38 14.287 19.167 16.5 19.167 Z M 15.167 7.167 C 15.167 6.434 15.767 5.834 16.5 5.834 C 17.233 5.834 17.833 6.434 17.833 7.167 L 17.833 15.167 C 17.833 15.9 17.233 16.5 16.5 16.5 C 15.767 16.5 15.167 15.9 15.167 15.167 L 15.167 7.167 Z M 23.167 15.167 C 23.167 18.847 20.18 21.834 16.5 21.834 C 12.82 21.834 9.833 18.847 9.833 15.167 L 7.167 15.167 C 7.167 19.874 10.647 23.74 15.167 24.394 L 15.167 28.5 L 17.833 28.5 L 17.833 24.394 C 22.353 23.74 25.833 19.874 25.833 15.167 L 23.167 15.167 Z"
android:fillColor="#fafeff"
android:strokeWidth="1"/>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M128,176a48.05,48.05 0,0 0,48 -48L176,64a48,48 0,0 0,-96 0v64A48.05,48.05 0,0 0,128 176ZM96,64a32,32 0,0 1,64 0v64a32,32 0,0 1,-64 0ZM136,207.6L136,232a8,8 0,0 1,-16 0L120,207.6A80.11,80.11 0,0 1,48 128a8,8 0,0 1,16 0,64 64,0 0,0 128,0 8,8 0,0 1,16 0A80.11,80.11 0,0 1,136 207.6Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path"
android:pathData="M 10.8 4.9 C 10.8 4.24 11.34 3.7 12 3.7 C 12.66 3.7 13.2 4.24 13.2 4.9 L 13.19 8.81 L 15 10.6 L 15 5 C 15 3.34 13.66 2 12 2 C 10.46 2 9.21 3.16 9.04 4.65 L 10.8 6.41 L 10.8 4.9 Z M 19 11 L 17.3 11 C 17.3 11.58 17.2 12.13 17.03 12.64 L 18.3 13.91 C 18.74 13.03 19 12.04 19 11 Z M 4.41 2.86 L 3 4.27 L 9 10.27 L 9 11 C 9 12.66 10.34 14 12 14 C 12.23 14 12.44 13.97 12.65 13.92 L 14.31 15.58 C 13.6 15.91 12.81 16.1 12 16.1 C 9.24 16.1 6.7 14 6.7 11 L 5 11 C 5 14.41 7.72 17.23 11 17.72 L 11 21 L 13 21 L 13 17.72 C 13.91 17.59 14.77 17.27 15.55 16.82 L 19.75 21.02 L 21.16 19.61 L 4.41 2.86 Z"
android:fillColor="#000000"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M213.92,210.62l-160,-176A8,8 0,1 0,42.08 45.38L80,87.09V128a48,48 0,0 0,73.91 40.4l10.88,12A64,64 0,0 1,64 128a8,8 0,0 0,-16 0,80.11 80.11,0 0,0 72,79.6V232a8,8 0,0 0,16 0V207.59a79.74,79.74 0,0 0,39.62 -15.31l26.46,29.1a8,8 0,1 0,11.84 -10.76ZM128,160a32,32 0,0 1,-32 -32V104.69l46.92,51.62A32,32 0,0 1,128 160ZM87.16,38.78A48,48 0,0 1,176 64v60.43a8,8 0,0 1,-16 0V64a32,32 0,0 0,-59.24 -16.81,8 8,0 1,1 -13.6,-8.41ZM187.64,151.27A63.71,63.71 0,0 0,192 128a8,8 0,0 1,16 0,79.62 79.62,0 0,1 -5.46,29.09 8,8 0,1 1,-14.9 -5.82Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="28dp"
android:height="28dp"
android:viewportWidth="28"
android:viewportHeight="28">
<path
android:name="path_1"
android:pathData="M 23.333 18.025 C 21.875 18.025 20.475 17.791 19.168 17.36 C 19.052 17.325 18.923 17.301 18.807 17.301 C 18.503 17.301 18.212 17.418 17.978 17.64 L 15.412 20.206 C 12.11 18.526 9.403 15.831 7.723 12.518 L 10.29 9.94 C 10.617 9.636 10.71 9.181 10.582 8.773 C 10.15 7.466 9.917 6.066 9.917 4.608 C 9.917 3.966 9.392 3.441 8.75 3.441 L 4.667 3.441 C 4.025 3.441 3.5 3.966 3.5 4.608 C 3.5 15.563 12.378 24.441 23.333 24.441 C 23.975 24.441 24.5 23.916 24.5 23.275 L 24.5 19.191 C 24.5 18.55 23.975 18.025 23.333 18.025 Z M 5.868 5.775 L 7.618 5.775 C 7.7 6.801 7.875 7.816 8.143 8.785 L 6.743 10.196 C 6.277 8.785 5.973 7.315 5.868 5.775 Z M 22.167 22.073 C 20.627 21.968 19.133 21.665 17.733 21.186 L 19.133 19.786 C 20.125 20.066 21.14 20.241 22.167 20.311 L 22.167 22.073 Z M 21 6.941 L 21 3.441 L 18.667 3.441 L 18.667 6.941 L 15.167 6.941 L 15.167 9.275 L 18.667 9.275 L 18.667 12.775 L 21 12.775 L 21 9.275 L 24.5 9.275 L 24.5 6.941 L 21 6.941 Z"
android:fillColor="#c0d1d9"
android:strokeWidth="1"/>
</vector>

View file

@ -1,15 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="29dp"
android:height="28dp"
android:viewportWidth="29"
android:viewportHeight="28">
<group android:name="group">
<path
android:name="path"
android:pathData="M 13.532 7 L 19.167 12.635 L 19.167 25.667 L 5.167 25.667 L 5.167 7 L 13.532 7 Z M 14.5 4.667 L 5.167 4.667 C 3.883 4.667 2.833 5.717 2.833 7 L 2.833 25.667 C 2.833 26.95 3.883 28 5.167 28 L 19.167 28 C 20.45 28 21.5 26.95 21.5 25.667 L 21.5 11.667 L 14.5 4.667 Z M 12.167 18.667 C 13.45 18.667 14.5 17.617 14.5 16.333 C 14.5 15.05 13.45 14 12.167 14 C 10.883 14 9.833 15.05 9.833 16.333 C 9.833 17.617 10.883 18.667 12.167 18.667 Z M 16.833 22.668 C 16.833 21.723 16.273 20.883 15.41 20.51 C 14.418 20.078 13.322 19.833 12.167 19.833 C 11.012 19.833 9.915 20.078 8.923 20.51 C 8.06 20.883 7.5 21.723 7.5 22.668 L 7.5 23.333 L 16.833 23.333 L 16.833 22.668 Z M 22.667 0 L 22.667 3.5 L 26.167 3.5 L 26.167 5.833 L 22.667 5.833 L 22.667 9.333 L 20.333 9.333 L 20.333 5.833 L 16.833 5.833 L 16.833 3.5 L 20.333 3.5 L 20.333 0 L 22.667 0 Z"
android:fillColor="#000"
android:strokeWidth="1"/>
</group>
</vector>

View file

@ -1,16 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="16dp"
android:height="16dp"
android:viewportWidth="16"
android:viewportHeight="16">
<path
android:name="path"
android:pathData="M 5.667 3.333 L 10.333 8 L 5.667 12.666"
android:fillColor="#000"
android:strokeColor="#6c7a87"
android:strokeWidth="1.5"
android:strokeLineCap="round"
android:strokeLineJoin="round"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path"
android:pathData="M 16.5 2.825 C 14.76 2.825 13.09 3.635 12 4.915 C 10.91 3.635 9.24 2.825 7.5 2.825 C 4.42 2.825 2 5.245 2 8.325 C 2 12.105 5.4 15.185 10.55 19.865 L 12 21.175 L 13.45 19.855 C 18.6 15.185 22 12.105 22 8.325 C 22 5.245 19.58 2.825 16.5 2.825 Z M 12.1 18.375 L 12 18.475 L 11.9 18.375 C 7.14 14.065 4 11.215 4 8.325 C 4 6.325 5.5 4.825 7.5 4.825 C 9.04 4.825 10.54 5.815 11.07 7.185 L 12.94 7.185 C 13.46 5.815 14.96 4.825 16.5 4.825 C 18.5 4.825 20 6.325 20 8.325 C 20 11.215 16.86 14.065 12.1 18.375 Z"
android:fillColor="#000000"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M227.31,73.37 L182.63,28.68a16,16 0,0 0,-22.63 0L36.69,152A15.86,15.86 0,0 0,32 163.31V208a16,16 0,0 0,16 16H92.69A15.86,15.86 0,0 0,104 219.31L227.31,96a16,16 0,0 0,0 -22.63ZM92.69,208H48V163.31l88,-88L180.69,120ZM192,108.68 L147.31,64l24,-24L216,84.68Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M222.37,158.46l-47.11,-21.11 -0.13,-0.06a16,16 0,0 0,-15.17 1.4,8.12 8.12,0 0,0 -0.75,0.56L134.87,160c-15.42,-7.49 -31.34,-23.29 -38.83,-38.51l20.78,-24.71c0.2,-0.25 0.39,-0.5 0.57,-0.77a16,16 0,0 0,1.32 -15.06l0,-0.12L97.54,33.64a16,16 0,0 0,-16.62 -9.52A56.26,56.26 0,0 0,32 80c0,79.4 64.6,144 144,144a56.26,56.26 0,0 0,55.88 -48.92A16,16 0,0 0,222.37 158.46ZM176,208A128.14,128.14 0,0 1,48 80,40.2 40.2,0 0,1 82.87,40a0.61,0.61 0,0 0,0 0.12l21,47L83.2,111.86a6.13,6.13 0,0 0,-0.57 0.77,16 16,0 0,0 -1,15.7c9.06,18.53 27.73,37.06 46.46,46.11a16,16 0,0 0,15.75 -1.14,8.44 8.44,0 0,0 0.74,-0.56L168.89,152l47,21.05h0s0.08,0 0.11,0A40.21,40.21 0,0 1,176 208Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,20 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="19dp"
android:height="18dp"
android:viewportWidth="19"
android:viewportHeight="18">
<group android:name="wrapper">
<clip-path
android:name="clip0_96_25861"
android:pathData="M 0.549 0 L 18.549 0 L 18.549 18 L 0.549 18 Z"/>
<group android:name="group">
<path
android:name="path"
android:pathData="M 5.454 3.75 C 5.499 4.418 5.612 5.07 5.792 5.692 L 4.892 6.593 C 4.584 5.692 4.389 4.74 4.322 3.75 L 5.454 3.75 Z M 12.849 12.765 C 13.487 12.945 14.139 13.057 14.799 13.102 L 14.799 14.22 C 13.809 14.152 12.857 13.957 11.949 13.658 L 12.849 12.765 Z M 6.174 2.25 L 3.549 2.25 C 3.137 2.25 2.799 2.587 2.799 3 C 2.799 10.043 8.507 15.75 15.549 15.75 C 15.962 15.75 16.299 15.412 16.299 15 L 16.299 12.383 C 16.299 11.97 15.962 11.633 15.549 11.633 C 14.619 11.633 13.712 11.482 12.872 11.205 C 12.797 11.175 12.714 11.168 12.639 11.168 C 12.444 11.168 12.257 11.242 12.107 11.385 L 10.457 13.035 C 8.334 11.947 6.594 10.215 5.514 8.092 L 7.164 6.442 C 7.374 6.232 7.434 5.94 7.352 5.678 C 7.074 4.838 6.924 3.938 6.924 3 C 6.924 2.587 6.587 2.25 6.174 2.25 Z"
android:fillColor="#fe5e00"
android:strokeWidth="1"/>
</group>
</group>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M231.59,90.13h0C175.44,34 80.56,34 24.41,90.13c-20,20 -21.92,49.49 -4.69,71.71A16,16 0,0 0,32.35 168a15.8,15.8 0,0 0,5.75 -1.08l49,-17.37 0.29,-0.11a16,16 0,0 0,9.75 -11.73l5.9,-29.52a76.52,76.52 0,0 1,49.68 -0.11h0l6.21,29.75a16,16 0,0 0,9.72 11.59l0.29,0.11 49,17.39a16,16 0,0 0,18.38 -5.06C253.51,139.62 251.58,110.13 231.59,90.13ZM223.67,152l-0.3,-0.12 -48.82,-17.33 -6.21,-29.74A16,16 0,0 0,158 93a92.56,92.56 0,0 0,-60.34 0.13,16 16,0 0,0 -10.32,12l-5.9,29.51L32.63,151.86c-0.1,0 -0.17,0.13 -0.27,0.17 -12.33,-15.91 -11,-36.23 3.36,-50.58 25,-25 58.65,-37.53 92.28,-37.53s67.27,12.51 92.28,37.53C234.61,115.8 236,136.12 223.67,152ZM223.99,200a8,8 0,0 1,-8 8L40,208a8,8 0,0 1,0 -16L216,192A8,8 0,0 1,224 200Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M222.36,158.46l-47.1,-21.11 -0.12,-0.06a16,16 0,0 0,-15.18 1.4,8.12 8.12,0 0,0 -0.75,0.56L134.87,160c-15.42,-7.49 -31.34,-23.29 -38.83,-38.51l20.78,-24.71c0.2,-0.25 0.39,-0.5 0.57,-0.77a16,16 0,0 0,1.32 -15.06,0.61 0.61,0 0,1 0,-0.12L97.54,33.64a16,16 0,0 0,-16.62 -9.52A56.26,56.26 0,0 0,32 80c0,79.4 64.6,144 144,144a56.26,56.26 0,0 0,55.88 -48.92A16,16 0,0 0,222.36 158.46ZM176,208A128.14,128.14 0,0 1,48 80,40.2 40.2,0 0,1 82.87,40a0.61,0.61 0,0 0,0 0.12l21,47L83.2,111.86a6.13,6.13 0,0 0,-0.57 0.77,16 16,0 0,0 -1,15.7c9.06,18.53 27.73,37.06 46.46,46.11a16,16 0,0 0,15.75 -1.14,6.92 6.92,0 0,0 0.74,-0.57L168.89,152l47,21.06h0s0.08,0 0.11,0A40.21,40.21 0,0 1,176 208ZM144,72a8,8 0,0 1,8 -8h24V40a8,8 0,0 1,16 0V64h24a8,8 0,0 1,0 16H192v24a8,8 0,0 1,-16 0V80H152A8,8 0,0 1,144 72Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="60dp"
android:height="60dp"
android:viewportWidth="60"
android:viewportHeight="60">
<path
android:name="path"
android:pathData="M 35.3 12.5 L 39.875 17.5 L 50 17.5 L 50 47.5 L 10 47.5 L 10 17.5 L 20.125 17.5 L 24.7 12.5 L 35.3 12.5 Z M 37.5 7.5 L 22.5 7.5 L 17.925 12.5 L 10 12.5 C 7.25 12.5 5 14.75 5 17.5 L 5 47.5 C 5 50.25 7.25 52.5 10 52.5 L 50 52.5 C 52.75 52.5 55 50.25 55 47.5 L 55 17.5 C 55 14.75 52.75 12.5 50 12.5 L 42.075 12.5 L 37.5 7.5 Z M 30 25 C 34.125 25 37.5 28.375 37.5 32.5 C 37.5 36.625 34.125 40 30 40 C 25.875 40 22.5 36.625 22.5 32.5 C 22.5 28.375 25.875 25 30 25 Z M 30 20 C 23.1 20 17.5 25.6 17.5 32.5 C 17.5 39.4 23.1 45 30 45 C 36.9 45 42.5 39.4 42.5 32.5 C 42.5 25.6 36.9 20 30 20 Z"
android:fillColor="#4e6074"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M128,24A104,104 0,1 0,232 128,104.11 104.11,0 0,0 128,24ZM128,216a88,88 0,1 1,88 -88A88.1,88.1 0,0 1,128 216ZM176,128a8,8 0,0 1,-8 8L136,136v32a8,8 0,0 1,-16 0L120,136L88,136a8,8 0,0 1,0 -16h32L120,88a8,8 0,0 1,16 0v32h32A8,8 0,0 1,176 128Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M104,40L56,40A16,16 0,0 0,40 56v48a16,16 0,0 0,16 16h48a16,16 0,0 0,16 -16L120,56A16,16 0,0 0,104 40ZM104,104L56,104L56,56h48v48ZM104,136L56,136a16,16 0,0 0,-16 16v48a16,16 0,0 0,16 16h48a16,16 0,0 0,16 -16L120,152A16,16 0,0 0,104 136ZM104,200L56,200L56,152h48v48ZM200,40L152,40a16,16 0,0 0,-16 16v48a16,16 0,0 0,16 16h48a16,16 0,0 0,16 -16L216,56A16,16 0,0 0,200 40ZM200,104L152,104L152,56h48v48ZM136,176L136,144a8,8 0,0 1,16 0v32a8,8 0,0 1,-16 0ZM216,160a8,8 0,0 1,-8 8L184,168v40a8,8 0,0 1,-8 8L144,216a8,8 0,0 1,0 -16h24L168,144a8,8 0,0 1,16 0v8h24A8,8 0,0 1,216 160ZM216,192v16a8,8 0,0 1,-16 0L200,192a8,8 0,0 1,16 0Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M140,180a12,12 0,1 1,-12 -12A12,12 0,0 1,140 180ZM128,72c-22.06,0 -40,16.15 -40,36v4a8,8 0,0 0,16 0v-4c0,-11 10.77,-20 24,-20s24,9 24,20 -10.77,20 -24,20a8,8 0,0 0,-8 8v8a8,8 0,0 0,16 0v-0.72c18.24,-3.35 32,-17.9 32,-35.28C168,88.15 150.06,72 128,72ZM232,128A104,104 0,1 1,128 24,104.11 104.11,0 0,1 232,128ZM216,128a88,88 0,1 0,-88 88A88.1,88.1 0,0 0,216 128Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M128,24A104,104 0,1 0,232 128,104.11 104.11,0 0,0 128,24ZM128,216a88,88 0,1 1,88 -88A88.1,88.1 0,0 1,128 216ZM128,56a72,72 0,1 0,72 72A72.08,72.08 0,0 0,128 56ZM128,184a56,56 0,1 1,56 -56A56.06,56.06 0,0 1,128 184Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,20 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<group android:name="group">
<path
android:name="path_1"
android:pathData="M 12 0.333 C 5.56 0.333 0.333 5.56 0.333 12 C 0.333 18.44 5.56 23.666 12 23.666 C 18.44 23.666 23.667 18.44 23.667 12 C 23.667 5.56 18.44 0.333 12 0.333 Z M 12 21.333 C 6.843 21.333 2.667 17.156 2.667 12 C 2.667 6.843 6.843 2.666 12 2.666 C 17.157 2.666 21.333 6.843 21.333 12 C 21.333 17.156 17.157 21.333 12 21.333 Z"
android:fillColor="#000"
android:strokeWidth="1"/>
<path
android:name="path_2"
android:pathData="M 12 17.833 C 15.222 17.833 17.833 15.221 17.833 11.999 C 17.833 8.778 15.222 6.166 12 6.166 C 8.778 6.166 6.167 8.778 6.167 11.999 C 6.167 15.221 8.778 17.833 12 17.833 Z"
android:fillColor="#000"
android:strokeWidth="1"/>
</group>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="25dp"
android:viewportWidth="24"
android:viewportHeight="25">
<path
android:name="path"
android:pathData="M 15.5 14.5 L 14.71 14.5 L 14.43 14.23 C 15.41 13.09 16 11.61 16 10 C 16 6.41 13.09 3.5 9.5 3.5 C 5.91 3.5 3 6.41 3 10 C 3 13.59 5.91 16.5 9.5 16.5 C 11.11 16.5 12.59 15.91 13.73 14.93 L 14 15.21 L 14 16 L 19 20.99 L 20.49 19.5 L 15.5 14.5 Z M 9.5 14.5 C 7.01 14.5 5 12.49 5 10 C 5 7.51 7.01 5.5 9.5 5.5 C 11.99 5.5 14 7.51 14 10 C 14 12.49 11.99 14.5 9.5 14.5 Z"
android:fillColor="#ffffff"
android:strokeWidth="1"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path_1"
android:pathData="M 19.459 12.98 C 19.499 12.66 19.529 12.34 19.529 12 C 19.529 11.66 19.499 11.34 19.459 11.02 L 21.569 9.37 C 21.759 9.22 21.809 8.95 21.689 8.73 L 19.689 5.27 C 19.599 5.11 19.429 5.02 19.249 5.02 C 19.189 5.02 19.129 5.03 19.079 5.05 L 16.589 6.05 C 16.069 5.65 15.509 5.32 14.899 5.07 L 14.519 2.42 C 14.489 2.18 14.279 2 14.029 2 L 10.029 2 C 9.779 2 9.569 2.18 9.539 2.42 L 9.159 5.07 C 8.549 5.32 7.989 5.66 7.469 6.05 L 4.979 5.05 C 4.919 5.03 4.859 5.02 4.799 5.02 C 4.629 5.02 4.459 5.11 4.369 5.27 L 2.369 8.73 C 2.239 8.95 2.299 9.22 2.489 9.37 L 4.599 11.02 C 4.559 11.34 4.529 11.67 4.529 12 C 4.529 12.33 4.559 12.66 4.599 12.98 L 2.489 14.63 C 2.299 14.78 2.249 15.05 2.369 15.27 L 4.369 18.73 C 4.459 18.89 4.629 18.98 4.809 18.98 C 4.869 18.98 4.929 18.97 4.979 18.95 L 7.469 17.95 C 7.989 18.35 8.549 18.68 9.159 18.93 L 9.539 21.58 C 9.569 21.82 9.779 22 10.029 22 L 14.029 22 C 14.279 22 14.489 21.82 14.519 21.58 L 14.899 18.93 C 15.509 18.68 16.069 18.34 16.589 17.95 L 19.079 18.95 C 19.139 18.97 19.199 18.98 19.259 18.98 C 19.429 18.98 19.599 18.89 19.689 18.73 L 21.689 15.27 C 21.809 15.05 21.759 14.78 21.569 14.63 L 19.459 12.98 Z M 17.479 11.27 C 17.519 11.58 17.529 11.79 17.529 12 C 17.529 12.21 17.509 12.43 17.479 12.73 L 17.339 13.86 L 18.229 14.56 L 19.309 15.4 L 18.609 16.61 L 17.339 16.1 L 16.299 15.68 L 15.399 16.36 C 14.969 16.68 14.559 16.92 14.149 17.09 L 13.089 17.52 L 12.929 18.65 L 12.729 20 L 11.329 20 L 11.139 18.65 L 10.979 17.52 L 9.919 17.09 C 9.489 16.91 9.089 16.68 8.689 16.38 L 7.779 15.68 L 6.719 16.11 L 5.449 16.62 L 4.749 15.41 L 5.829 14.57 L 6.719 13.87 L 6.579 12.74 C 6.549 12.43 6.529 12.2 6.529 12 C 6.529 11.8 6.549 11.57 6.579 11.27 L 6.719 10.14 L 5.829 9.44 L 4.749 8.6 L 5.449 7.39 L 6.719 7.9 L 7.759 8.32 L 8.659 7.64 C 9.089 7.32 9.499 7.08 9.909 6.91 L 10.969 6.48 L 11.129 5.35 L 11.329 4 L 12.719 4 L 12.909 5.35 L 13.069 6.48 L 14.129 6.91 C 14.559 7.09 14.959 7.32 15.359 7.62 L 16.269 8.32 L 17.329 7.89 L 18.599 7.38 L 19.299 8.59 L 18.229 9.44 L 17.339 10.14 L 17.479 11.27 Z M 12.029 8 C 9.819 8 8.029 9.79 8.029 12 C 8.029 14.21 9.819 16 12.029 16 C 14.239 16 16.029 14.21 16.029 12 C 16.029 9.79 14.239 8 12.029 8 Z M 12.029 14 C 10.929 14 10.029 13.1 10.029 12 C 10.029 10.9 10.929 10 12.029 10 C 13.129 10 14.029 10.9 14.029 12 C 14.029 13.1 13.129 14 12.029 14 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="29dp"
android:height="28dp"
android:viewportWidth="29"
android:viewportHeight="28">
<path
android:name="path_1"
android:pathData="M 21.5 18.807 C 20.613 18.807 19.82 19.157 19.213 19.705 L 10.895 14.863 C 10.953 14.595 11 14.327 11 14.047 C 11 13.767 10.953 13.498 10.895 13.23 L 19.12 8.435 C 19.75 9.018 20.578 9.38 21.5 9.38 C 23.437 9.38 25 7.817 25 5.88 C 25 3.943 23.437 2.38 21.5 2.38 C 19.563 2.38 18 3.943 18 5.88 C 18 6.16 18.047 6.428 18.105 6.697 L 9.88 11.492 C 9.25 10.908 8.422 10.546 7.5 10.546 C 5.563 10.546 4 12.11 4 14.047 C 4 15.983 5.563 17.547 7.5 17.547 C 8.422 17.547 9.25 17.185 9.88 16.602 L 18.187 21.455 C 18.128 21.7 18.093 21.957 18.093 22.213 C 18.093 24.092 19.622 25.62 21.5 25.62 C 23.378 25.62 24.907 24.092 24.907 22.213 C 24.907 20.335 23.378 18.807 21.5 18.807 Z M 21.5 4.713 C 22.142 4.713 22.667 5.238 22.667 5.88 C 22.667 6.522 22.142 7.047 21.5 7.047 C 20.858 7.047 20.333 6.522 20.333 5.88 C 20.333 5.238 20.858 4.713 21.5 4.713 Z M 7.5 15.213 C 6.858 15.213 6.333 14.688 6.333 14.047 C 6.333 13.405 6.858 12.88 7.5 12.88 C 8.142 12.88 8.667 13.405 8.667 14.047 C 8.667 14.688 8.142 15.213 7.5 15.213 Z M 21.5 23.403 C 20.858 23.403 20.333 22.878 20.333 22.237 C 20.333 21.595 20.858 21.07 21.5 21.07 C 22.142 21.07 22.667 21.595 22.667 22.237 C 22.667 22.878 22.142 23.403 21.5 23.403 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M176,160a39.89,39.89 0,0 0,-28.62 12.09l-46.1,-29.63a39.8,39.8 0,0 0,0 -28.92l46.1,-29.63a40,40 0,1 0,-8.66 -13.45l-46.1,29.63a40,40 0,1 0,0 55.82l46.1,29.63A40,40 0,1 0,176 160ZM176,32a24,24 0,1 1,-24 24A24,24 0,0 1,176 32ZM64,152a24,24 0,1 1,24 -24A24,24 0,0 1,64 152ZM176,224a24,24 0,1 1,24 -24A24,24 0,0 1,176 224Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="16dp"
android:height="17dp"
android:viewportWidth="16"
android:viewportHeight="17">
<path
android:name="path"
android:pathData="M 8 4.833 C 10.527 4.833 12.78 6.253 13.88 8.5 C 12.78 10.747 10.527 12.167 8 12.167 C 5.473 12.167 3.22 10.747 2.12 8.5 C 3.22 6.253 5.473 4.833 8 4.833 Z M 8 3.5 C 4.667 3.5 1.82 5.573 0.667 8.5 C 1.82 11.427 4.667 13.5 8 13.5 C 11.333 13.5 14.18 11.427 15.333 8.5 C 14.18 5.573 11.333 3.5 8 3.5 Z M 8 6.833 C 8.92 6.833 9.667 7.58 9.667 8.5 C 9.667 9.42 8.92 10.167 8 10.167 C 7.08 10.167 6.333 9.42 6.333 8.5 C 6.333 7.58 7.08 6.833 8 6.833 Z M 8 5.5 C 6.347 5.5 5 6.847 5 8.5 C 5 10.153 6.347 11.5 8 11.5 C 9.653 11.5 11 10.153 11 8.5 C 11 6.847 9.653 5.5 8 5.5 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M155.51,24.81a8,8 0,0 0,-8.42 0.88L77.25,80L32,80A16,16 0,0 0,16 96v64a16,16 0,0 0,16 16L77.25,176l69.84,54.31A8,8 0,0 0,160 224L160,32A8,8 0,0 0,155.51 24.81ZM32,96L72,96v64L32,160ZM144,207.64 L88,164.09L88,91.91l56,-43.55ZM198,101.56a40,40 0,0 1,0 52.88,8 8,0 0,1 -12,-10.58 24,24 0,0 0,0 -31.72,8 8,0 0,1 12,-10.58ZM248,128a79.9,79.9 0,0 1,-20.37 53.34,8 8,0 0,1 -11.92,-10.67 64,64 0,0 0,0 -85.33,8 8,0 1,1 11.92,-10.67A79.83,79.83 0,0 1,248 128Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path"
android:pathData="M 4.34 2.935 L 2.93 4.345 L 7.29 8.705 L 7 9.005 L 3 9.005 L 3 15.005 L 7 15.005 L 12 20.005 L 12 13.415 L 16.18 17.595 C 15.53 18.085 14.8 18.475 14 18.705 L 14 20.765 C 15.34 20.465 16.57 19.845 17.61 19.015 L 19.66 21.065 L 21.07 19.655 L 4.34 2.935 Z M 10 15.175 L 7.83 13.005 L 5 13.005 L 5 11.005 L 7.83 11.005 L 8.71 10.125 L 10 11.415 L 10 15.175 Z M 19 12.005 C 19 12.825 18.85 13.615 18.59 14.345 L 20.12 15.875 C 20.68 14.705 21 13.395 21 12.005 C 21 7.725 18.01 4.145 14 3.235 L 14 5.295 C 16.89 6.155 19 8.835 19 12.005 Z M 12 4.005 L 10.12 5.885 L 12 7.765 L 12 4.005 Z M 16.5 12.005 C 16.5 10.235 15.48 8.715 14 7.975 L 14 9.765 L 16.48 12.245 C 16.49 12.165 16.5 12.085 16.5 12.005 Z"
android:fillColor="#000000"
android:strokeWidth="1"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path_1"
android:pathData="M 3 8.77 L 3 14.77 L 7 14.77 L 12 19.77 L 12 3.77 L 7 8.77 L 3 8.77 Z M 10 8.6 L 10 14.94 L 7.83 12.77 L 5 12.77 L 5 10.77 L 7.83 10.77 L 10 8.6 Z M 16.5 11.77 C 16.5 10 15.48 8.48 14 7.74 L 14 15.79 C 15.48 15.06 16.5 13.54 16.5 11.77 Z M 14 3 L 14 5.06 C 16.89 5.92 19 8.6 19 11.77 C 19 14.94 16.89 17.62 14 18.48 L 14 20.54 C 18.01 19.63 21 16.05 21 11.77 C 21 7.49 18.01 3.91 14 3 Z"
android:fillColor="#000000"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M53.92,34.62A8,8 0,1 0,42.08 45.38L73.55,80L32,80A16,16 0,0 0,16 96v64a16,16 0,0 0,16 16L77.25,176l69.84,54.31A8,8 0,0 0,160 224L160,175.09l42.08,46.29a8,8 0,1 0,11.84 -10.76ZM32,96L72,96v64L32,160ZM144,207.64 L88,164.09L88,95.89l56,61.6ZM186,143.87a24,24 0,0 0,0 -31.72,8 8,0 1,1 12,-10.57 40,40 0,0 1,0 52.88,8 8,0 0,1 -12,-10.59ZM105.84,67.87a8,8 0,0 1,1.4 -11.23l39.85,-31A8,8 0,0 1,160 32v74.83a8,8 0,0 1,-16 0L144,48.36l-26.94,21A8,8 0,0 1,105.84 67.91ZM248,128a79.9,79.9 0,0 1,-20.37 53.34,8 8,0 0,1 -11.92,-10.67 64,64 0,0 0,0 -85.33,8 8,0 1,1 11.92,-10.67A79.83,79.83 0,0 1,248 128Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="5dp"
android:height="4dp"
android:viewportWidth="5"
android:viewportHeight="4">
<path
android:name="path"
android:pathData="M 2.475 3.65 L 0 1.175 L 0.825 0.35 L 2.475 2 L 4.125 0.35 L 4.95 1.175 L 2.475 3.65 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
</vector>

View file

@ -1,20 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<group android:name="group">
<path
android:name="path"
android:pathData="M 16 7 L 15 7 L 14 6 L 10 6 L 9 7 L 8 7 C 6.9 7 6 7.9 6 9 L 6 15 C 6 16.1 6.9 17 8 17 L 16 17 C 17.1 17 18 16.1 18 15 L 18 9 C 18 7.9 17.1 7 16 7 Z M 16 15 L 8 15 L 8 9 L 9.83 9 L 10.83 8 L 13.17 8 L 14.17 9 L 16 9 L 16 15 Z"
android:fillColor="#000"
android:strokeWidth="1"/>
<path
android:name="path_2"
android:pathData="M 12 13.999 C 13.105 13.999 14 13.104 14 11.999 C 14 10.895 13.105 9.999 12 9.999 C 10.896 9.999 10 10.895 10 11.999 C 10 13.104 10.896 13.999 12 13.999 Z M 8.57 0.519 L 13.05 4.999 L 14.46 3.589 L 12.92 2.049 C 17.7 2.459 21.53 6.239 22 10.999 L 24 10.999 C 23.36 3.299 15.79 -1.671 8.57 0.519 Z M 9.54 20.409 L 11.08 21.949 C 6.3 21.539 2.47 17.759 2 12.999 L 0 12.999 C 0.64 20.699 8.21 25.669 15.43 23.479 L 10.95 18.999 L 9.54 20.409 Z"
android:fillColor="#000"
android:strokeWidth="1"/>
</group>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M216,48H40a8,8 0,0 0,0 16h8V208a16,16 0,0 0,16 16H192a16,16 0,0 0,16 -16V64h8a8,8 0,0 0,0 -16ZM192,208H64V64H192ZM80,24a8,8 0,0 1,8 -8h80a8,8 0,0 1,0 16H88A8,8 0,0 1,80 24Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M128,24A104,104 0,1 0,232 128,104.11 104.11,0 0,0 128,24ZM74.08,197.5a64,64 0,0 1,107.84 0,87.83 87.83,0 0,1 -107.84,0ZM96,120a32,32 0,1 1,32 32A32,32 0,0 1,96 120ZM193.76,186.41a79.66,79.66 0,0 0,-36.06 -28.75,48 48,0 1,0 -59.4,0 79.66,79.66 0,0 0,-36.06 28.75,88 88,0 1,1 131.52,0Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M144,157.68a68,68 0,1 0,-71.9 0c-20.65,6.76 -39.23,19.39 -54.17,37.17a8,8 0,1 0,12.24 10.3C50.25,181.19 77.91,168 108,168s57.75,13.19 77.87,37.15a8,8 0,0 0,12.26 -10.3C183.18,177.07 164.6,164.44 144,157.68ZM56,100a52,52 0,1 1,52 52A52.06,52.06 0,0 1,56 100ZM244.25,143.07 L239.59,140.38a23.6,23.6 0,0 0,0 -8.76l4.66,-2.69a8,8 0,0 0,-8 -13.86l-4.67,2.7a23.92,23.92 0,0 0,-7.58 -4.39L224,108a8,8 0,0 0,-16 0v5.38a23.92,23.92 0,0 0,-7.58 4.39l-4.67,-2.7a8,8 0,1 0,-8 13.86l4.66,2.69a23.6,23.6 0,0 0,0 8.76l-4.66,2.69a8,8 0,0 0,8 13.86l4.67,-2.7a23.92,23.92 0,0 0,7.58 4.39L208,164a8,8 0,0 0,16 0v-5.38a23.92,23.92 0,0 0,7.58 -4.39l4.67,2.7a7.92,7.92 0,0 0,4 1.07,8 8,0 0,0 4,-14.93ZM208,136a8,8 0,1 1,8 8A8,8 0,0 1,208 136Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M256,136a8,8 0,0 1,-8 8L232,144v16a8,8 0,0 1,-16 0L216,144L200,144a8,8 0,0 1,0 -16h16L216,112a8,8 0,0 1,16 0v16h16A8,8 0,0 1,256 136ZM198.13,194.85a8,8 0,0 1,-12.26 10.3C165.75,181.19 138.09,168 108,168s-57.75,13.19 -77.87,37.15a8,8 0,0 1,-12.25 -10.3c14.94,-17.78 33.52,-30.41 54.17,-37.17a68,68 0,1 1,71.9 0C164.6,164.44 183.18,177.07 198.13,194.85ZM108,152a52,52 0,1 0,-52 -52A52.06,52.06 0,0 0,108 152Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M244.8,150.4a8,8 0,0 1,-11.2 -1.6A51.6,51.6 0,0 0,192 128a8,8 0,0 1,-7.37 -4.89,8 8,0 0,1 0,-6.22A8,8 0,0 1,192 112a24,24 0,1 0,-23.24 -30,8 8,0 1,1 -15.5,-4A40,40 0,1 1,219 117.51a67.94,67.94 0,0 1,27.43 21.68A8,8 0,0 1,244.8 150.4ZM190.92,212a8,8 0,1 1,-13.84 8,57 57,0 0,0 -98.16,0 8,8 0,1 1,-13.84 -8,72.06 72.06,0 0,1 33.74,-29.92 48,48 0,1 1,58.36 0A72.06,72.06 0,0 1,190.92 212ZM128,176a32,32 0,1 0,-32 -32A32,32 0,0 0,128 176ZM72,120a8,8 0,0 0,-8 -8A24,24 0,1 1,87.24 82a8,8 0,1 0,15.5 -4A40,40 0,1 0,37 117.51,67.94 67.94,0 0,0 9.6,139.19a8,8 0,1 0,12.8 9.61A51.6,51.6 0,0 1,64 128,8 8,0 0,0 72,120Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="path_1"
android:pathData="M 16 6.667 L 16 17.333 L 2.667 17.333 L 2.667 6.667 L 16 6.667 Z M 17.333 4 L 1.333 4 C 0.6 4 0 4.6 0 5.333 L 0 18.667 C 0 19.4 0.6 20 1.333 20 L 17.333 20 C 18.067 20 18.667 19.4 18.667 18.667 L 18.667 14 L 24 19.333 L 24 4.667 L 18.667 10 L 18.667 5.333 C 18.667 4.6 18.067 4 17.333 4 Z"
android:fillColor="#6c7a87"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M251.77,73a8,8 0,0 0,-8.21 0.39L208,97.05L208,72a16,16 0,0 0,-16 -16L32,56A16,16 0,0 0,16 72L16,184a16,16 0,0 0,16 16L192,200a16,16 0,0 0,16 -16L208,159l35.56,23.71A8,8 0,0 0,248 184a8,8 0,0 0,8 -8L256,80A8,8 0,0 0,251.77 73ZM192,184L32,184L32,72L192,72L192,184ZM240,161.05 L208,139.72L208,116.28L240,95Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M251.77,73a8,8 0,0 0,-8.21 0.39L208,97.05V72a16,16 0,0 0,-16 -16H113.06a8,8 0,0 0,0 16H192v87.63a8,8 0,0 0,16 0V159l35.56,23.71A8,8 0,0 0,248 184a8,8 0,0 0,8 -8V80A8,8 0,0 0,251.77 73ZM240,161.05l-32,-21.33V116.28L240,95ZM53.92,34.62A8,8 0,1 0,42.08 45.38L51.73,56H32A16,16 0,0 0,16 72V184a16,16 0,0 0,16 16H182.64l19.44,21.38a8,8 0,1 0,11.84 -10.76ZM32,184V72H66.28L168.1,184Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -1,13 +0,0 @@
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="vector"
android:width="14dp"
android:height="14dp"
android:viewportWidth="14"
android:viewportHeight="14">
<path
android:name="path"
android:pathData="M 6.417 8.75 L 7.583 8.75 L 7.583 9.916 L 6.417 9.916 L 6.417 8.75 Z M 6.417 4.083 L 7.583 4.083 L 7.583 7.583 L 6.417 7.583 L 6.417 4.083 Z M 6.994 1.167 C 3.774 1.167 1.167 3.78 1.167 7 C 1.167 10.22 3.774 12.833 6.994 12.833 C 10.22 12.833 12.833 10.22 12.833 7 C 12.833 3.78 10.22 1.167 6.994 1.167 Z M 7 11.666 C 4.422 11.666 2.333 9.578 2.333 7 C 2.333 4.421 4.422 2.333 7 2.333 C 9.578 2.333 11.667 4.421 11.667 7 C 11.667 9.578 9.578 11.666 7 11.666 Z"
android:fillColor="#fe5e00"
android:strokeWidth="1"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M128,24A104,104 0,1 0,232 128,104.11 104.11,0 0,0 128,24ZM128,216a88,88 0,1 1,88 -88A88.1,88.1 0,0 1,128 216ZM120,136L120,80a8,8 0,0 1,16 0v56a8,8 0,0 1,-16 0ZM140,172a12,12 0,1 1,-12 -12A12,12 0,0 1,140 172Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M205.66,194.34a8,8 0,0 1,-11.32 11.32L128,139.31 61.66,205.66a8,8 0,0 1,-11.32 -11.32L116.69,128 50.34,61.66A8,8 0,0 1,61.66 50.34L128,116.69l66.34,-66.35a8,8 0,0 1,11.32 11.32L139.31,128Z"
android:fillColor="#4e6074"/>
</vector>

View file

@ -34,7 +34,7 @@
android:id="@+id/contacts"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:drawableTop="@drawable/contacts"
android:drawableTop="@drawable/address_book"
android:drawablePadding="10dp"
android:drawableTint="@{viewModel.contactsSelected ? @color/primary_color : @color/gray_9, default=@color/gray_9}"
android:onClick="@{onContactsClicked}"
@ -51,7 +51,7 @@
android:id="@+id/calls"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:drawableTop="@drawable/calls"
android:drawableTop="@drawable/phone"
android:drawableTint="@{viewModel.callsSelected ? @color/primary_color : @color/gray_9, default=@color/gray_9}"
android:drawablePadding="10dp"
android:text="Calls"
@ -82,7 +82,7 @@
android:enabled="false"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:drawableTop="@drawable/conversations"
android:drawableTop="@drawable/chat_text"
android:drawablePadding="10dp"
android:drawableTint="@{viewModel.conversationsSelected ? @color/primary_color : @color/gray_9, default=@color/gray_9}"
android:onClick="@{onConversationsClicked}"
@ -100,7 +100,7 @@
android:visibility="@{viewModel.hideMeetings ? View.GONE : View.VISIBLE, default=gone}"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:drawableTop="@drawable/meetings"
android:drawableTop="@drawable/users_three"
android:drawablePadding="10dp"
android:drawableTint="@{viewModel.meetingsSelected ? @color/primary_color : @color/gray_9, default=@color/gray_9}"
android:text="Meetings"

View file

@ -50,11 +50,7 @@
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_marginEnd="9dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:paddingStart="10dp"
android:paddingEnd="10dp"
android:src="@drawable/dot_menu"
android:src="@drawable/dots_three_vertical"
app:tint="@color/white"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/top_bar"
@ -123,7 +119,7 @@
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
android:src="@drawable/add"
android:src="@drawable/plus_circle"
app:tint="@color/gray_8"
app:backgroundTint="@color/white"
app:layout_constraintEnd_toEndOf="parent"

Some files were not shown because too many files have changed in this diff Show more