Show status icon when using hardware keyboard

This commit is contained in:
Rocka 2025-12-21 01:33:18 +08:00
parent 9ea5b01c65
commit 9963edd1bd
No known key found for this signature in database
GPG Key ID: 28031158FFDD6853
23 changed files with 249 additions and 0 deletions

View File

@ -4,11 +4,13 @@
<w>androidfrontend</w>
<w>androidkeyboard</w>
<w>androidnotification</w>
<w>anthy</w>
<w>berberman</w>
<w>bopomofo</w>
<w>constraintlayout</w>
<w>cout</w>
<w>customphrase</w>
<w>dianbaoma</w>
<w>endl</w>
<w>fcitx</w>
<w>fmtlib</w>
@ -29,6 +31,7 @@
<w>libintl</w>
<w>libthai</w>
<w>ljava</w>
<w>mozc</w>
<w>nihaoshijie</w>
<w>orphis</w>
<w>pkgdatadir</w>
@ -45,7 +48,10 @@
<w>stringutils</w>
<w>unfocus</w>
<w>unikey</w>
<w>wbpy</w>
<w>zhengma</w>
<w>zhuyin</w>
<w>ziranma</w>
<w>zlib</w>
</words>
</dictionary>

View File

@ -107,6 +107,11 @@ class FcitxInputMethodService : LifecycleInputMethodService() {
setCandidatePagingMode(if (isVirtualKeyboard) 0 else 1)
}
currentInputConnection?.monitorCursorAnchor(!isVirtualKeyboard)
if (isVirtualKeyboard) {
hideStatusIcon()
} else {
showStatusIcon(StatusIconMapping.fromEntry(fcitx.runImmediately { inputMethodEntryCached }))
}
window.window?.let {
navbarMgr.evaluate(it, isVirtualKeyboard)
}
@ -312,6 +317,9 @@ class FcitxInputMethodService : LifecycleInputMethodService() {
// [^1]: notify system that input method subtype has changed
switchInputMethod(InputMethodUtil.componentName, subtype)
}
if (inputDeviceMgr.evaluateOnInputMethodActivate()) {
showStatusIcon(StatusIconMapping.fromEntry(event.data))
}
}
is FcitxEvent.SwitchInputMethodEvent -> {
val (reason) = event.data
@ -767,6 +775,7 @@ class FcitxInputMethodService : LifecycleInputMethodService() {
// support monitoring CursorAnchorInfo
candidatesView?.updateCursorAnchor(contentSize)
}
showStatusIcon(StatusIconMapping.fromEntry(fcitx.runImmediately { inputMethodEntryCached }))
}
}
@ -1032,6 +1041,7 @@ class FcitxInputMethodService : LifecycleInputMethodService() {
postFcitxJob {
focusOutIn()
}
hideStatusIcon()
showingDialog?.dismiss()
}

View File

@ -142,6 +142,15 @@ class InputDeviceManager(private val onChange: (Boolean) -> Unit) {
return !isVirtualKeyboard && !startedInputView
}
/**
* Should be called whenever active input method changes,
* eg. focus in/out, editor capability flag changes, user presses the shortcut, and so on...
* @return should update status icon for this change
*/
fun evaluateOnInputMethodActivate(): Boolean {
return startedInputView && !isVirtualKeyboard
}
fun onFinishInputView() {
startedInputView = false
}

View File

@ -0,0 +1,53 @@
/*
* SPDX-License-Identifier: LGPL-2.1-or-later
* SPDX-FileCopyrightText: Copyright 2025 Fcitx5 for Android Contributors
*/
package org.fcitx.fcitx5.android.input
import androidx.annotation.DrawableRes
import org.fcitx.fcitx5.android.R
import org.fcitx.fcitx5.android.core.InputMethodEntry
object StatusIconMapping {
@DrawableRes
fun fromEntry(entry: InputMethodEntry): Int {
if (entry.subMode.icon.isNotEmpty()) {
when (entry.subMode.icon) {
"fcitx_mozc_direct" -> return R.drawable.ic_status_latin_direct
"fcitx_mozc_hiragana" -> return R.drawable.ic_status_hiragana
"fcitx_mozc_katakana_full" -> return R.drawable.ic_status_katakana
"fcitx_mozc_alpha_half" -> return R.drawable.ic_status_latin_half_underscore
"fcitx_mozc_alpha_full" -> return R.drawable.ic_status_latin_wide
"fcitx_mozc_katakana_half" -> return R.drawable.ic_status_katakana_half_underscore
}
}
if (entry.subMode.label.isNotEmpty()) {
when (entry.subMode.label) {
"" -> return R.drawable.ic_status_hiragana
"" -> return R.drawable.ic_status_katakana
"" -> return R.drawable.ic_status_katakana_half
"" -> return R.drawable.ic_status_latin_wide
"A" -> return R.drawable.ic_status_latin_direct
}
}
when (entry.icon) {
"fcitx-pinyin" -> return R.drawable.ic_status_pinyin
"fcitx-shuangpin" -> return R.drawable.ic_status_shuangpin
"fcitx-wubi", "fcitx-wbpy" -> return R.drawable.ic_status_wubi
"fcitx-cangjie" -> return R.drawable.ic_status_cangjie
"fcitx-ziranma" -> return R.drawable.ic_status_ziranma
"fcitx-dianbaoma" -> return R.drawable.ic_status_dianbaoma
"fcitx-zhengma", "fcitx_zhengma" -> return R.drawable.ic_status_zhengma
"fcitx-jyutping", "fcitx_jyutping_table" -> return R.drawable.ic_status_jyutping
}
when (entry.languageCode) {
"en", "en_US" -> return R.drawable.ic_status_en
"zh", "zh_CN", "zh_TW", "zh_HK" -> return R.drawable.ic_status_zh
"ja" -> return R.drawable.ic_status_hiragana
"ko" -> return R.drawable.ic_status_hangul
"vi" -> return R.drawable.ic_status_vi
}
return R.drawable.ic_baseline_keyboard_24
}
}

View File

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 11.962891 1.8300781 C 11.280225 2.7687433 10.404556 3.6206731 9.3378906 4.3886719 C 8.2854479 5.1566707 7.1343661 5.8329054 5.8828125 6.4160156 C 4.6312589 6.9849036 3.3659354 7.4544416 2.0859375 7.8242188 C 2.3988259 8.1371072 2.7105492 8.5069278 3.0234375 8.9335938 C 3.3363259 9.3460376 3.5793336 9.7231201 3.75 10.064453 C 4.3457516 9.8449656 4.9348402 9.6069967 5.5195312 9.3515625 L 5.5195312 11.941406 C 5.5195312 12.552961 5.4851735 13.221934 5.4140625 13.947266 C 5.3429515 14.658376 5.192399 15.383492 4.9648438 16.123047 C 4.7515107 16.862601 4.4325254 17.580456 4.0058594 18.277344 C 3.5791934 18.974232 2.9954137 19.621418 2.2558594 20.21875 C 2.440748 20.332528 2.6619692 20.495652 2.9179688 20.708984 C 3.1739683 20.922318 3.4222851 21.143538 3.6640625 21.371094 C 3.9058399 21.598648 4.083488 21.798083 4.1972656 21.96875 C 4.9937088 21.314529 5.648157 20.567626 6.1601562 19.728516 C 6.4665624 19.22635 6.7294035 18.713946 6.9492188 18.191406 L 6.9492188 22.224609 L 9.1679688 22.224609 L 9.1679688 21.669922 L 16.720703 21.669922 L 16.720703 22.074219 L 19.044922 22.074219 L 19.044922 16.443359 L 7.5214844 16.443359 C 7.5970814 16.143121 7.6620166 15.843969 7.71875 15.546875 L 18.640625 15.546875 L 18.640625 9.1699219 C 19.287329 9.4236888 19.941778 9.6439643 20.603516 9.8300781 C 20.731516 9.5883007 20.894639 9.3235065 21.09375 9.0390625 C 21.292861 8.7546185 21.504867 8.471944 21.732422 8.1875 C 21.959977 7.903056 22.166674 7.6673105 22.351562 7.4824219 C 21.455564 7.2975333 20.574585 7.0637408 19.707031 6.7792969 C 18.853699 6.4806307 18.028865 6.1451678 17.232422 5.7753906 C 16.450201 5.3913912 15.732346 4.9726885 15.078125 4.5175781 C 14.610001 4.1919269 14.192351 3.857793 13.826172 3.5175781 C 13.977221 3.3409837 14.124768 3.1620066 14.267578 2.9804688 L 11.962891 1.8300781 z M 12.298828 5.09375 C 12.570528 5.3622305 12.857346 5.6249348 13.158203 5.8828125 C 13.85509 6.4801449 14.600041 7.0276137 15.396484 7.5253906 C 16.192928 8.0231676 17.032286 8.470919 17.914062 8.8691406 C 18.082732 8.9425933 18.252165 9.013262 18.421875 9.0820312 L 13.257812 9.0820312 L 14.074219 8.5273438 C 13.860885 8.2144554 13.549163 7.8591591 13.136719 7.4609375 C 12.738497 7.0484938 12.361415 6.6931974 12.005859 6.3945312 L 10.234375 7.5039062 C 10.604152 7.8452391 10.981234 8.2368462 11.365234 8.6777344 C 11.492454 8.8190894 11.609479 8.9531645 11.714844 9.0820312 L 8.0585938 9.0820312 L 7.546875 9.0820312 L 6.1191406 9.0820312 C 6.6565901 8.8343057 7.1888152 8.5714646 7.7167969 8.2929688 C 9.011017 7.596081 10.212934 6.8075576 11.322266 5.9257812 C 11.660425 5.6561099 11.986435 5.3788812 12.298828 5.09375 z M 8.0585938 10.746094 L 16.1875 10.746094 L 16.1875 11.535156 L 8.0585938 11.535156 L 8.0585938 10.746094 z M 8.0253906 13.029297 L 16.1875 13.029297 L 16.1875 13.882812 L 7.953125 13.882812 C 7.9837151 13.5909 8.0080782 13.306272 8.0253906 13.029297 z M 9.1679688 18.298828 L 16.720703 18.298828 L 16.720703 19.791016 L 9.1679688 19.791016 L 9.1679688 18.298828 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 10.703125 2.1699219 L 10.703125 5.1367188 L 6.5644531 5.1367188 L 5.5410156 5.1367188 L 3.9199219 5.1367188 L 3.9199219 17.787109 L 6.5644531 17.787109 L 6.5644531 16.548828 L 10.703125 16.548828 L 10.703125 17.679688 C 10.703125 18.774797 10.810104 19.621418 11.023438 20.21875 C 11.250993 20.816083 11.6426 21.234785 12.197266 21.476562 C 12.751932 21.71834 13.520621 21.839844 14.501953 21.839844 L 15.078125 21.839844 L 15.994141 21.839844 L 17.019531 21.839844 L 17.935547 21.839844 L 18.576172 21.839844 C 19.443726 21.839844 20.12527 21.691244 20.623047 21.392578 C 21.135046 21.093912 21.519391 20.60985 21.775391 19.941406 C 22.03139 19.258741 22.2163 18.355976 22.330078 17.232422 C 21.946078 17.147089 21.505589 17.003799 21.007812 16.804688 C 20.72507 16.679948 20.469489 16.55343 20.240234 16.423828 L 20.240234 5.1367188 L 13.455078 5.1367188 L 13.455078 2.1699219 L 10.703125 2.1699219 z M 6.5644531 7.6328125 L 10.703125 7.6328125 L 10.703125 9.7011719 L 6.5644531 9.7011719 L 6.5644531 7.6328125 z M 13.455078 7.6328125 L 17.636719 7.6328125 L 17.636719 9.7011719 L 13.455078 9.7011719 L 13.455078 7.6328125 z M 6.5644531 12.048828 L 10.703125 12.048828 L 10.703125 14.03125 L 6.5644531 14.03125 L 6.5644531 12.048828 z M 13.455078 12.048828 L 17.636719 12.048828 L 17.636719 14.03125 L 13.455078 14.03125 L 13.455078 12.048828 z M 13.455078 16.548828 L 19.761719 16.548828 C 19.708489 17.180996 19.639242 17.686845 19.556641 18.064453 C 19.471307 18.519564 19.32997 18.831287 19.130859 19.001953 C 18.945971 19.17262 18.668605 19.257812 18.298828 19.257812 L 17.787109 19.257812 L 16.976562 19.257812 L 16.101562 19.257812 L 15.291016 19.257812 L 14.779297 19.257812 C 14.395298 19.257812 14.103408 19.223455 13.904297 19.152344 C 13.719406 19.067011 13.597902 18.916458 13.541016 18.703125 C 13.484129 18.489792 13.455078 18.156283 13.455078 17.701172 L 13.455078 16.548828 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="m 2,4 v 16.304688 h 9.349609 V 17.59375 H 5.28125 v -4.355469 h 5.117188 V 10.607422 H 5.28125 V 6.7207031 h 6.046875 V 4 Z m 16.886719,3.9648438 c -0.619618,0 -1.175262,0.1378476 -1.667969,0.4140624 -0.438327,0.2390873 -0.824273,0.5757045 -1.15625,1.0097657 L 15.962891,8.1875 h -2.933594 v 12.117188 h 3.146484 v -8.822266 c 0.152738,-0.278519 0.340022,-0.495842 0.560547,-0.652344 0.231423,-0.164236 0.496311,-0.246094 0.794922,-0.246094 0.321007,0 0.581641,0.06024 0.783203,0.179688 0.209027,0.111979 0.366189,0.314323 0.470703,0.605469 0.104514,0.28368 0.158203,0.686415 0.158203,1.208984 v 7.726563 h 3.146485 v -7.705079 c 0,-0.86597 -0.07956,-1.593837 -0.236328,-2.183593 C 21.696745,9.8262594 21.47704,9.3524734 21.193359,8.9941406 20.909679,8.6358078 20.569487,8.3751734 20.173828,8.2109375 19.785635,8.0467016 19.357031,7.9648438 18.886719,7.9648438 Z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 7.3945312,2.2988281 V 4.3886719 H 3 v 2.21875 h 11.605469 v -2.21875 H 10.210938 V 2.2988281 Z m 8.2988278,0.021484 V 17.082031 h 2.837891 v -6.398437 h 2.623047 V 8.3359375 H 18.53125 V 2.3203125 Z M 8.8027344,7.3125 c -0.9386652,0 -1.7780237,0.1631238 -2.5175782,0.4902344 -0.7395543,0.3128884 -1.3160718,0.7606398 -1.7285156,1.34375 -0.4124438,0.568888 -0.6171875,1.2233366 -0.6171875,1.9628906 0,0.753777 0.2047437,1.422749 0.6171875,2.005859 0.4124438,0.568888 0.9889612,1.01664 1.7285156,1.34375 0.7395545,0.312889 1.578913,0.46875 2.5175782,0.46875 0.9528875,0 1.7922466,-0.155861 2.5175776,-0.46875 0.739555,-0.32711 1.316073,-0.774862 1.728516,-1.34375 0.412444,-0.58311 0.617188,-1.252082 0.617188,-2.005859 0,-0.739554 -0.204744,-1.3940026 -0.617188,-1.9628906 C 12.636385,8.5633742 12.059867,8.1156228 11.320312,7.8027344 10.594981,7.4756238 9.7556219,7.3125 8.8027344,7.3125 Z m 0,2.1542969 c 0.6399989,0 1.151157,0.1413372 1.5351566,0.4257812 0.398222,0.2844439 0.597656,0.6978369 0.597656,1.2382809 0,0.526222 -0.199434,0.9304 -0.597656,1.214844 -0.3839996,0.284444 -0.8951577,0.427735 -1.5351566,0.427735 -0.6257768,0 -1.1369347,-0.143291 -1.5351563,-0.427735 -0.3982216,-0.284444 -0.5976562,-0.688622 -0.5976562,-1.214844 0,-0.540444 0.1994346,-0.953837 0.5976562,-1.2382809 C 7.6657997,9.6081341 8.1769576,9.4667969 8.8027344,9.4667969 Z M 5.7949219,15.972656 v 5.759766 H 19.234375 v -2.28125 H 8.6523438 v -3.478516 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 9.359375 2.9394531 C 9.373597 3.1243417 9.373597 3.3363476 9.359375 3.578125 C 9.3451523 3.8056802 9.3306283 4.0196392 9.3164062 4.21875 C 9.2804936 4.5778762 9.240154 4.9609059 9.1933594 5.3671875 C 8.911201 5.3697785 8.6252931 5.3710938 8.3359375 5.3710938 C 7.9092715 5.3710938 7.4324714 5.3565697 6.90625 5.328125 C 6.3942508 5.2854585 5.9101885 5.2418854 5.4550781 5.1992188 C 5.0141899 5.1565522 4.6661558 5.1149323 4.4101562 5.0722656 L 4.4746094 7.546875 C 4.8159422 7.561097 5.2075493 7.5828835 5.6484375 7.6113281 C 6.0893257 7.6255508 6.5370771 7.6381218 6.9921875 7.6523438 C 7.4615201 7.6665658 7.8802228 7.6738281 8.25 7.6738281 C 8.472866 7.6738281 8.7001754 7.6740248 8.9316406 7.671875 C 8.87682 8.2424762 8.8271567 8.8260593 8.7832031 9.4238281 C 8.7603446 9.734704 8.7420732 10.043626 8.7265625 10.351562 C 8.1952816 10.598111 7.6878707 10.892803 7.2050781 11.236328 C 6.4797459 11.762549 5.8325599 12.360854 5.2636719 13.029297 C 4.7090061 13.683518 4.275779 14.386848 3.9628906 15.140625 C 3.6500022 15.88018 3.4941406 16.627083 3.4941406 17.380859 C 3.4941406 18.461747 3.7768151 19.252223 4.3457031 19.75 C 4.9145911 20.233555 5.5908259 20.474609 6.3730469 20.474609 C 7.2974899 20.474609 8.2002549 20.282437 9.0820312 19.898438 C 9.2893027 19.806317 9.4928368 19.710299 9.6894531 19.611328 C 9.7777732 19.927934 9.8661289 20.223387 9.9570312 20.496094 L 12.410156 19.75 C 12.239634 19.238431 12.078629 18.704486 11.927734 18.150391 C 12.446861 17.715736 12.970424 17.196365 13.498047 16.591797 C 14.180713 15.795354 14.813374 14.870803 15.396484 13.818359 C 15.768709 13.153673 16.10582 12.448698 16.40625 11.701172 C 16.476913 11.730066 16.545934 11.758806 16.613281 11.791016 C 17.281725 12.089682 17.780311 12.495813 18.107422 13.007812 C 18.448755 13.50559 18.619141 14.060321 18.619141 14.671875 C 18.619141 15.368763 18.419706 16.044997 18.021484 16.699219 C 17.637485 17.35344 17.019348 17.915433 16.166016 18.384766 C 15.326906 18.839876 14.217444 19.144337 12.837891 19.300781 L 14.246094 21.541016 C 15.995424 21.270794 17.382252 20.801256 18.40625 20.132812 C 19.430249 19.450147 20.162628 18.6471 20.603516 17.722656 C 21.044404 16.783991 21.263672 15.810557 21.263672 14.800781 C 21.263672 13.69145 20.96452 12.716063 20.367188 11.876953 C 19.769855 11.023621 18.945021 10.354648 17.892578 9.8710938 C 17.651353 9.7587425 17.403065 9.6604658 17.146484 9.5742188 C 17.166976 9.5123163 17.188734 9.4474692 17.210938 9.3808594 L 17.53125 8.484375 L 14.927734 7.8671875 C 14.913512 8.0947427 14.871892 8.3992037 14.800781 8.7832031 C 14.780426 8.9155109 14.758504 9.0401969 14.736328 9.1542969 C 14.609622 9.1496665 14.480992 9.1464844 14.351562 9.1464844 C 13.540897 9.1464844 12.716062 9.2244152 11.876953 9.3808594 C 11.634161 9.4269061 11.397718 9.4785318 11.166016 9.5332031 C 11.174938 9.3978187 11.184851 9.261 11.195312 9.125 C 11.234425 8.6087112 11.280011 8.1041508 11.332031 7.609375 C 12.101599 7.5699941 12.88085 7.5198235 13.669922 7.4609375 C 14.637031 7.3898265 15.561583 7.3046335 16.443359 7.2050781 C 17.339358 7.0913005 18.15693 6.9697966 18.896484 6.8417969 L 18.875 4.3671875 C 17.239447 4.7654091 15.582517 5.0355124 13.904297 5.1777344 C 13.17948 5.233017 12.422 5.2771875 11.630859 5.3085938 C 11.696913 4.8845844 11.763634 4.4923798 11.833984 4.1328125 C 11.876651 3.9763683 11.920224 3.8059823 11.962891 3.6210938 C 12.019781 3.4219829 12.075926 3.2152861 12.132812 3.0019531 L 9.359375 2.9394531 z M 14.027344 11.324219 C 13.703232 12.101885 13.334181 12.791299 12.921875 13.392578 C 12.422777 14.135916 11.888817 14.800004 11.318359 15.384766 C 11.164807 14.332412 11.087891 13.155212 11.087891 11.855469 C 11.087891 11.833103 11.087846 11.811446 11.087891 11.789062 C 11.245299 11.739605 11.408468 11.690594 11.578125 11.642578 C 12.305124 11.440634 13.121927 11.335 14.027344 11.324219 z M 8.6835938 12.898438 C 8.7016592 13.728862 8.7564033 14.553724 8.8476562 15.375 C 8.9270431 16.001274 9.0202127 16.604604 9.1269531 17.181641 C 9.0059187 17.252928 8.8837004 17.318571 8.7617188 17.380859 C 8.0932754 17.70797 7.5041867 17.871094 6.9921875 17.871094 C 6.3379663 17.871094 6.0097656 17.523059 6.0097656 16.826172 C 6.0097656 16.342617 6.1675803 15.816934 6.4804688 15.248047 C 6.7933572 14.679159 7.2265842 14.138952 7.78125 13.626953 C 8.0620922 13.360513 8.3626444 13.117478 8.6835938 12.898438 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 10.490234,1.8300781 C 10.33379,2.1429665 10.127093,2.4982628 9.8710938,2.8964844 9.7197996,3.1318308 9.5721079,3.3510988 9.4257812,3.5566406 H 4.4960938 V 12.431641 H 19.962891 V 3.5566406 h -7.826172 c 0.03382,-0.035118 0.06896,-0.069476 0.103515,-0.1054687 0.355555,-0.3697772 0.696327,-0.7831709 1.023438,-1.2382813 z M 6.7578125,5.1992188 H 9.3378906 14.964844 C 14.82971,5.4389137 14.654039,5.709017 14.4375,6.0097656 14.1815,6.3653206 13.945755,6.678997 13.732422,6.9492188 H 13.115234 V 5.4140625 H 11.257812 V 6.9492188 H 9.7226562 L 10.619141,6.5644531 C 10.476919,6.3795645 10.284746,6.1602965 10.042969,5.9042969 9.8011913,5.6340751 9.5654458,5.3983296 9.3378906,5.1992188 L 7.9101562,5.7539062 c 0.2133331,0.2133331 0.4326012,0.4636029 0.6601563,0.7480469 0.1450665,0.1621331 0.2708935,0.3107325 0.375,0.4472657 H 7.2480469 v 1.3652343 h 3.0703121 c -0.08774,0.050113 -0.179596,0.1009487 -0.27539,0.1503907 C 9.6020805,8.6781768 9.1180183,8.8683961 8.5917969,9.0390625 8.0797977,9.1955067 7.5686398,9.3315349 7.0566406,9.4453125 7.227307,9.6017567 7.4194795,9.8084533 7.6328125,10.064453 7.8461455,10.30623 8.0092693,10.525499 8.1230469,10.724609 8.6777126,10.568165 9.2179192,10.363422 9.7441406,10.107422 10.284584,9.8514225 10.78848,9.5667947 11.257812,9.2539062 v 1.2792968 h 1.857422 V 8.3144531 h 3.945313 V 6.9492188 h -1.626953 c 0.05083,-0.055818 0.10381,-0.1119619 0.15625,-0.1699219 C 15.874288,6.4664085 16.158915,6.14547 16.443359,5.8183594 L 15.275391,5.1992188 H 17.59375 V 10.789062 H 6.7578125 Z m 7.5292965,3.2226562 -0.9375,0.9589844 c 0.284444,0.1279998 0.583596,0.2712902 0.896485,0.4277344 0.32711,0.1422219 0.638834,0.2908212 0.9375,0.4472652 0.312888,0.142222 0.568467,0.270988 0.767578,0.384766 L 16.912109,9.5742188 C 16.698777,9.4604412 16.435936,9.3389373 16.123047,9.2109375 15.824381,9.0687155 15.510704,8.9326873 15.183594,8.8046875 14.856483,8.6624655 14.557331,8.5356526 14.287109,8.421875 Z M 2.6621094,13.349609 v 1.876953 H 6.2519531 C 6.030286,15.883586 5.5813915,17.176339 5.1152344,18.255859 H 16.638672 c -0.04258,0.174032 -0.08789,0.329899 -0.132813,0.46875 -0.156444,0.469333 -0.334092,0.775747 -0.533203,0.917969 -0.113777,0.08533 -0.24059,0.141475 -0.382812,0.169922 -0.128,0.01422 -0.291124,0.02148 -0.490235,0.02148 -0.270222,0 -0.69814,-0.0073 -1.28125,-0.02148 -0.58311,-0.01422 -1.172198,-0.04858 -1.769531,-0.105469 0.213333,0.298666 0.38372,0.639438 0.511719,1.023438 0.142225,0.398221 0.220155,0.76078 0.234375,1.08789 0.639999,0.02845 1.250874,0.04297 1.833984,0.04297 0.583111,0 1.045386,-0.0073 1.386719,-0.02148 0.426666,-0.02844 0.796487,-0.08459 1.109375,-0.169922 0.312889,-0.08533 0.604778,-0.243148 0.875,-0.470703 0.312888,-0.284444 0.575729,-0.724934 0.789062,-1.322266 0.213333,-0.611555 0.412768,-1.450913 0.597657,-2.517578 0.02845,-0.170666 0.05023,-0.37541 0.06445,-0.617187 l 0.04297,-0.363282 H 8.4140625 C 8.542594,15.994459 8.67306,15.610643 8.8027339,15.226567 H 21.732422 v -1.876953 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 3.9628906 4.1328125 L 3.9628906 7.0996094 C 4.4606676 7.0569428 4.908419 7.0206316 5.3066406 6.9921875 C 5.7048622 6.9637428 6.1235649 6.9492188 6.5644531 6.9492188 L 7.5039062 6.9492188 L 9.1035156 6.9492188 L 11.087891 6.9492188 L 13.177734 6.9492188 L 15.162109 6.9492188 L 16.742188 6.9492188 L 17.679688 6.9492188 C 17.537466 7.2194405 17.330768 7.5258547 17.060547 7.8671875 C 16.804547 8.2085203 16.500086 8.5710787 16.144531 8.9550781 C 15.803198 9.3248553 15.426115 9.6801516 15.013672 10.021484 C 14.601228 10.362817 14.180572 10.661969 13.753906 10.917969 L 15.972656 12.6875 C 16.669544 12.189723 17.345779 11.593372 18 10.896484 C 18.654221 10.185375 19.250572 9.4728287 19.791016 8.7617188 C 20.331459 8.0363866 20.766639 7.3964626 21.09375 6.8417969 C 21.193305 6.6853527 21.32738 6.5004424 21.498047 6.2871094 C 21.668713 6.0595542 21.812003 5.8746439 21.925781 5.7324219 L 20.240234 4.1542969 C 20.112234 4.1969632 19.905538 4.2332741 19.621094 4.2617188 C 19.350872 4.2901634 19.073507 4.3119499 18.789062 4.3261719 C 18.504618 4.3403939 18.263564 4.3457031 18.064453 4.3457031 L 17.146484 4.3457031 L 15.525391 4.3457031 L 13.476562 4.3457031 L 11.279297 4.3457031 L 9.2109375 4.3457031 L 7.546875 4.3457031 L 6.5644531 4.3457031 C 6.1235649 4.3457031 5.6830757 4.3258698 5.2421875 4.2832031 C 4.8012993 4.2405364 4.3753344 4.1897012 3.9628906 4.1328125 z M 10.128906 8.6132812 C 10.20002 8.954614 10.241639 9.2808616 10.255859 9.59375 C 10.270079 9.8924159 10.277344 10.206092 10.277344 10.533203 C 10.277344 11.400758 10.233771 12.203805 10.148438 12.943359 C 10.063105 13.668691 9.907243 14.344926 9.6796875 14.970703 C 9.4521323 15.582257 9.1258847 16.151512 8.6992188 16.677734 C 8.286775 17.203956 7.7393062 17.700589 7.0566406 18.169922 C 6.6726412 18.454366 6.2882963 18.697374 5.9042969 18.896484 C 5.5202975 19.081373 5.1577391 19.229973 4.8164062 19.34375 L 7.3125 21.371094 C 8.4644981 20.759539 9.4088834 20.090567 10.148438 19.365234 C 10.887992 18.639902 11.464509 17.871212 11.876953 17.060547 C 12.303619 16.249882 12.610033 15.397952 12.794922 14.501953 C 12.994033 13.591732 13.115536 12.645395 13.158203 11.664062 C 13.20087 10.68273 13.220703 9.6657237 13.220703 8.6132812 L 10.128906 8.6132812 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="m 11.919986,6.5013117 q -0.106666,0.213333 -0.255999,0.5119992 -0.149333,0.2773328 -0.192,0.5119991 -0.170666,0.5333325 -0.426666,1.279998 -0.256,0.7466655 -0.597332,1.535998 -0.341333,0.789332 -0.7253326,1.514664 -0.3626661,0.725332 -0.7466655,1.279998 L 7.4613267,11.53597 Q 7.8453261,11.023971 8.1866589,10.298639 8.5493249,9.5733068 8.8266578,8.8479746 9.125324,8.1013091 9.2533238,7.5893099 q -0.1919997,0 -0.7253322,0 -0.5119991,0 -1.1946647,0 -0.6826656,0 -1.3653312,0 -0.6826656,0 -1.2159981,0 -0.5119992,0 -0.7039989,0 -0.3626661,0 -0.6613323,0.021333 -0.2986662,0.021333 -0.6826656,0.085333 V 4.8586476 q 0.3199995,0.085333 0.639999,0.1066665 0.3413328,0.021333 0.7039989,0.021333 0.1919997,0 0.7466655,0 0.5759991,0 1.3013313,0 0.7466655,0 1.4719977,0 0.7253322,0 1.2799979,0 0.5546658,0 0.7039989,0 0.2346663,0 0.575999,-0.042667 0.341333,-0.064 0.575999,-0.1493331 z M 5.5199964,9.0613076 H 7.7173263 Q 7.695993,10.874638 7.6319931,12.602635 7.5893265,14.330633 7.3119936,15.909297 7.055994,17.487961 6.415995,18.874625 5.7973293,20.26129 4.6453311,21.370622 L 2.8533339,19.685291 q 0.2773329,-0.213333 0.6186657,-0.597333 0.3626661,-0.383999 0.6613323,-0.831998 0.6613323,-0.981332 0.9599985,-2.090664 0.3199995,-1.109331 0.4053327,-2.410662 0.1066665,-1.301332 0.1066665,-2.837329 0,-0.490666 -0.021333,-0.9599988 -0.021333,-0.4693326 -0.064,-0.8959986 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="m 9.9374061,20.175957 v 1.583331 H 1.8124189 v -1.583331 z M 0 0 m 20.555389,6.5013117 q -0.106667,0.213333 -0.256,0.5119992 -0.149333,0.2773328 -0.191999,0.5119991 -0.170667,0.5333325 -0.426666,1.279998 -0.256,0.7466655 -0.597333,1.535998 -0.341332,0.789332 -0.725332,1.514664 -0.362666,0.725332 -0.746665,1.279998 L 16.096729,11.53597 q 0.384,-0.511999 0.725333,-1.237331 0.362666,-0.7253322 0.639999,-1.4506644 0.298666,-0.7466655 0.426666,-1.2586647 -0.192,0 -0.725333,0 -0.511999,0 -1.194664,0 -0.682666,0 -1.365332,0 -0.682665,0 -1.215998,0 -0.511999,0 -0.703999,0 -0.362666,0 -0.661332,0.021333 -0.298666,0.021333 -0.682665,0.085333 V 4.8586476 q 0.319999,0.085333 0.639999,0.1066665 0.341332,0.021333 0.703998,0.021333 0.192,0 0.746666,0 0.575999,0 1.301331,0 0.746666,0 1.471998,0 0.725332,0 1.279998,0 0.554666,0 0.703999,0 0.234666,0 0.575999,-0.042667 0.341333,-0.064 0.575999,-0.1493331 z m -6.39999,2.5599959 h 2.19733 q -0.02133,1.8133304 -0.08533,3.5413274 -0.04267,1.727998 -0.32,3.306662 -0.255999,1.578664 -0.895998,2.965328 -0.618666,1.386665 -1.770664,2.495997 l -1.791997,-1.685331 q 0.277333,-0.213333 0.618665,-0.597333 0.362666,-0.383999 0.661333,-0.831998 0.661332,-0.981332 0.959998,-2.090664 0.32,-1.109331 0.405333,-2.410662 0.106666,-1.301332 0.106666,-2.837329 0,-0.490666 -0.02133,-0.9599988 -0.02133,-0.4693326 -0.064,-0.8959986 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 6.5234375,4.3671875 1.4667969,20.175781 h 3.1992187 l 1.1132813,-4.052734 h 5.1015621 l 1.103516,4.052734 H 15.3125 L 10.255859,4.3671875 Z m 1.7480469,2.4121094 h 0.085937 c 0.5985535,2.302498 1.2323344,4.5951791 1.8574221,6.8906251 H 6.453125 C 7.1424942,11.180742 7.9170283,8.2983943 8.2714844,6.7792969 Z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="m 15.203125,4 -5.095703,16.304688 h 3.460937 l 0.878907,-3.359376 h 4.505859 l 0.884766,3.359376 h 3.482421 L 18.181641,4 Z m 1.490234,4.3632812 1.542969,5.8613278 H 15.158203 Z M 0.9140625,20.304688 v 2.529296 h 8.6894531 v -2.529296 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 4.495998,20.175957 10.149322,4.3253151 h 3.989327 L 19.89864,20.175957 H 16.421313 L 15.098648,16.143963 H 9.125324 L 7.8453261,20.175957 Z M 9.8293229,13.690634 H 14.437316 C 13.644661,11.375763 12.894903,9.0467053 12.154653,6.7146447 h -0.08533 C 11.371452,9.0408609 10.76641,10.91284 9.8293229,13.690634 Z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 18.576172 2 C 18.43395 2.4693326 18.256302 2.9877526 18.042969 3.5566406 C 17.829636 4.1255286 17.601152 4.6802595 17.359375 5.2207031 C 17.172555 5.6273115 16.985648 6.0043943 16.798828 6.3515625 L 13.296875 6.3515625 L 14.927734 5.6699219 C 14.828178 5.3428113 14.679579 4.9729907 14.480469 4.5605469 C 14.281358 4.1481031 14.060137 3.7274472 13.818359 3.3007812 C 13.576582 2.8598931 13.335527 2.4629769 13.09375 2.1074219 L 10.896484 2.9609375 C 11.12404 3.3449369 11.343308 3.7636396 11.556641 4.21875 C 11.784196 4.6738604 11.990893 5.1143496 12.175781 5.5410156 C 12.306472 5.8325559 12.413193 6.1026591 12.494141 6.3515625 L 9.8515625 6.3515625 L 9.8515625 8.7617188 L 12.068359 8.7617188 L 12.068359 12.068359 L 9.1894531 12.068359 L 9.1894531 14.523438 L 11.951172 14.523438 C 11.888879 15.193535 11.757189 15.875078 11.556641 16.570312 C 11.343308 17.295645 11.009798 17.986404 10.554688 18.640625 C 10.099577 19.294846 9.4814397 19.869411 8.6992188 20.367188 C 8.8983295 20.509409 9.1030732 20.687057 9.3164062 20.900391 C 9.5439614 21.127946 9.7579205 21.356429 9.9570312 21.583984 C 10.156142 21.811539 10.312004 22.010974 10.425781 22.181641 C 11.293336 21.541641 11.998619 20.831049 12.539062 20.048828 C 13.093729 19.252385 13.512431 18.420288 13.796875 17.552734 C 14.095541 16.68518 14.294976 15.816773 14.394531 14.949219 C 14.412979 14.806249 14.429856 14.664912 14.445312 14.523438 L 16.847656 14.523438 L 16.847656 22.009766 L 19.386719 22.009766 L 19.386719 14.523438 L 21.96875 14.523438 L 21.96875 12.068359 L 19.386719 12.068359 L 19.386719 8.7617188 L 21.476562 8.7617188 L 21.476562 6.3515625 L 19.404297 6.3515625 C 19.440937 6.2885317 19.476547 6.2251253 19.513672 6.1601562 C 19.798116 5.648157 20.090006 5.1152127 20.388672 4.5605469 C 20.687339 3.9916589 20.979228 3.436928 21.263672 2.8964844 L 18.576172 2 z M 4.5605469 2.0644531 L 4.5605469 6.0957031 L 2.3417969 6.0957031 L 2.3417969 8.4433594 L 4.5605469 8.4433594 L 4.5605469 12.263672 C 3.5876013 12.51233 2.7337183 12.719193 2 12.880859 L 2.5546875 15.333984 C 3.1836321 15.150139 3.8526049 14.955548 4.5605469 14.751953 L 4.5605469 19.023438 C 4.5605469 19.165662 4.531498 19.265379 4.4746094 19.322266 C 4.4319428 19.364932 4.3467498 19.386719 4.21875 19.386719 L 3.515625 19.386719 C 3.1742922 19.386719 2.8170428 19.379454 2.4472656 19.365234 C 2.617932 19.72079 2.7684846 20.139492 2.8964844 20.623047 C 3.0244841 21.106602 3.1096771 21.519995 3.1523438 21.861328 C 3.8350094 21.861328 4.4168358 21.825017 4.9003906 21.753906 C 5.3981676 21.697018 5.8188235 21.562943 6.1601562 21.349609 C 6.4872669 21.150499 6.7137971 20.865871 6.8417969 20.496094 C 6.9697967 20.126316 7.0351562 19.634992 7.0351562 19.023438 L 7.0351562 14.027344 C 7.6462991 13.844036 8.2499121 13.659871 8.8476562 13.476562 L 8.5273438 11.173828 C 8.0270729 11.316763 7.5304393 11.455803 7.0351562 11.59375 L 7.0351562 8.4433594 L 8.7832031 8.4433594 L 8.7832031 6.0957031 L 7.0351562 6.0957031 L 7.0351562 2.0644531 L 4.5605469 2.0644531 z M 14.564453 8.7617188 L 16.847656 8.7617188 L 16.847656 12.068359 L 14.564453 12.068359 L 14.564453 8.7617188 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 9.765625 3.5351562 L 9.3164062 3.6210938 L 8.8691406 3.6210938 L 2.7460938 3.6210938 L 2.7460938 6.0742188 L 8.6582031 6.0742188 C 8.5053231 7.1732808 8.3057197 8.2411227 8.0585938 9.2753906 C 7.9018031 9.9315882 7.7290482 10.567704 7.5390625 11.183594 C 7.2205717 10.799126 6.89474 10.418589 6.5644531 10.042969 C 5.8533431 9.2038592 5.157275 8.4133825 4.4746094 7.6738281 L 2.5976562 9.1894531 C 3.2660996 9.9574522 3.9476435 10.775024 4.6445312 11.642578 C 5.2838191 12.422509 5.8947466 13.218789 6.4765625 14.033203 C 5.9239424 15.277974 5.2931814 16.401466 4.5820312 17.402344 C 3.8140324 18.469008 2.9528873 19.337416 2 20.005859 C 2.213333 20.162304 2.4345542 20.361738 2.6621094 20.603516 C 2.8896646 20.845293 3.1089326 21.09361 3.3222656 21.349609 C 3.5355986 21.619831 3.7059846 21.860886 3.8339844 22.074219 C 5.2704266 20.907999 6.5013922 19.472289 7.5253906 17.765625 C 7.7644529 17.369371 7.9929891 16.957667 8.2109375 16.53125 C 8.2895423 16.651771 8.3674202 16.771585 8.4433594 16.890625 C 8.9695807 17.715512 9.3882835 18.47694 9.7011719 19.173828 L 11.855469 17.359375 C 11.514136 16.67671 11.066384 15.929806 10.511719 15.119141 C 10.181207 14.62761 9.8290854 14.129727 9.453125 13.623047 C 9.6658223 13.02132 9.8620824 12.397171 10.042969 11.75 C 10.69719 9.4460039 11.152204 6.8645215 11.408203 4.0058594 L 9.765625 3.5351562 z M 19.791016 3.5351562 L 19.365234 3.6210938 L 18.939453 3.6210938 L 12.027344 3.6210938 L 12.027344 6.0742188 L 13.058594 6.0742188 L 12.132812 6.2246094 C 12.531035 8.6566055 13.051408 10.895363 13.691406 12.943359 C 14.027548 13.988322 14.416152 14.969412 14.857422 15.886719 C 14.700461 16.091487 14.538388 16.290527 14.373047 16.484375 C 13.149938 17.920817 11.699704 19.023017 10.021484 19.791016 C 10.220595 19.961682 10.427292 20.175641 10.640625 20.431641 C 10.853958 20.701863 11.053393 20.979228 11.238281 21.263672 C 11.437392 21.548116 11.593254 21.803695 11.707031 22.03125 C 13.479826 21.091131 15.011872 19.879994 16.302734 18.394531 C 17.361278 19.897172 18.695342 21.130095 20.304688 22.095703 C 20.432687 21.868148 20.595811 21.612569 20.794922 21.328125 C 21.008255 21.057903 21.227523 20.795062 21.455078 20.539062 C 21.696855 20.283063 21.918076 20.069104 22.117188 19.898438 C 20.595412 19.101994 19.330088 18.007057 18.320312 16.613281 C 18.200157 16.443348 18.083312 16.269691 17.96875 16.09375 C 18.665601 14.937713 19.266509 13.646611 19.771484 12.21875 C 20.610594 9.8863092 21.177896 7.1417033 21.476562 3.984375 L 19.791016 3.5351562 z M 14.539062 6.0742188 L 18.693359 6.0742188 C 18.397303 7.9492146 17.959052 9.6642424 17.380859 11.216797 C 17.110111 11.943805 16.8115 12.6322 16.482422 13.283203 C 16.275942 12.795978 16.085183 12.292493 15.910156 11.771484 C 15.321232 10.004711 14.864204 8.1047734 14.539062 6.0742188 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="m 18.814453,3.3730469 c -0.530034,0 -0.952084,0.1571619 -1.265625,0.4707031 -0.306076,0.3135412 -0.458984,0.7120232 -0.458984,1.1972656 0,0.4852424 0.152908,0.8879779 0.458984,1.2089844 0.313541,0.3135412 0.735591,0.4707031 1.265625,0.4707031 0.522569,0 0.938065,-0.1571619 1.244141,-0.4707031 0.306076,-0.3210065 0.458984,-0.723742 0.458984,-1.2089844 0,-0.4852424 -0.152908,-0.8837244 -0.458984,-1.1972656 C 19.752518,3.5302088 19.337022,3.3730469 18.814453,3.3730469 Z M 2.9257812,4 7.6171875,20.304688 H 10.976562 L 15.701172,4 h -3.53711 L 9.2910156,15.914062 6.4296875,4 Z M 17.236328,8.1875 v 12.117188 h 3.146484 V 8.1875 Z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 3.9414062 4.0058594 L 3.9414062 6.5449219 L 9.671875 6.5449219 C 9.5772465 7.2781114 9.472303 8.0303239 9.359375 8.8046875 C 9.2967825 9.2669088 9.2312219 9.7291849 9.1621094 10.191406 L 5.1152344 10.191406 L 5.1152344 12.6875 L 8.7578125 12.6875 C 8.7453742 12.758611 8.7332957 12.82928 8.7207031 12.900391 C 8.493148 14.251499 8.2574024 15.545872 8.015625 16.783203 C 7.9029339 17.395961 7.7904255 17.979741 7.6777344 18.533203 L 2.703125 18.533203 L 2.703125 21.072266 L 21.839844 21.072266 L 21.839844 18.533203 L 17.701172 18.533203 C 17.723249 18.322065 17.744426 18.108106 17.765625 17.892578 C 17.86518 17.025023 17.950373 16.151307 18.021484 15.269531 C 18.10682 14.387755 18.177488 13.519348 18.234375 12.666016 C 18.305486 11.812684 18.363583 11.002374 18.40625 10.234375 L 16.378906 10.085938 L 15.910156 10.191406 L 15.632812 10.191406 L 11.972656 10.191406 C 12.041255 9.7583346 12.108593 9.3251073 12.175781 8.890625 C 12.298764 8.0871347 12.414634 7.3058735 12.523438 6.5449219 L 20.431641 6.5449219 L 20.431641 4.0058594 L 3.9414062 4.0058594 z M 11.568359 12.6875 L 15.490234 12.6875 C 15.436912 13.413494 15.377822 14.182185 15.3125 14.992188 C 15.241389 15.873964 15.156196 16.762204 15.056641 17.658203 C 15.027959 17.954579 14.997085 18.246468 14.966797 18.533203 L 10.509766 18.533203 C 10.615462 18.009513 10.723075 17.454783 10.832031 16.869141 C 11.059587 15.646032 11.28807 14.358922 11.515625 13.007812 C 11.533395 12.90119 11.550676 12.79421 11.568359 12.6875 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 10.810547 2.0429688 L 10.810547 5.7539062 L 3.4296875 5.7539062 L 3.4296875 16.570312 L 5.9902344 16.570312 L 5.9902344 15.396484 L 10.810547 15.396484 L 10.810547 22.074219 L 13.519531 22.074219 L 13.519531 15.396484 L 18.363281 15.396484 L 18.363281 16.464844 L 21.050781 16.464844 L 21.050781 5.7539062 L 13.519531 5.7539062 L 13.519531 2.0429688 L 10.810547 2.0429688 z M 5.9902344 8.2714844 L 10.810547 8.2714844 L 10.810547 12.880859 L 5.9902344 12.880859 L 5.9902344 8.2714844 z M 13.519531 8.2714844 L 18.363281 8.2714844 L 18.363281 12.880859 L 13.519531 12.880859 L 13.519531 8.2714844 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 6.03125 2.1074219 L 3.8984375 2.9804688 C 4.2539925 3.4782457 4.5875022 4.0402388 4.9003906 4.6660156 C 5.1586621 5.1601001 5.3608935 5.6025425 5.5039062 5.9902344 L 3.109375 5.9902344 L 3.109375 8.3144531 L 7.078125 8.3144531 L 7.078125 9.53125 C 7.078125 10.043249 7.0563385 10.632338 7.0136719 11.300781 C 7.0109676 11.364331 7.0077675 11.429691 7.0039062 11.494141 L 2.4257812 11.494141 L 2.4257812 13.818359 L 6.6542969 13.818359 C 6.4980169 14.459594 6.2771525 15.121304 5.9902344 15.802734 C 5.6489016 16.599178 5.1721015 17.387701 4.5605469 18.169922 C 3.9489923 18.952143 3.1730401 19.706309 2.234375 20.431641 C 2.5757077 20.616529 2.9382662 20.864846 3.3222656 21.177734 C 3.7204872 21.504845 4.0196392 21.803997 4.21875 22.074219 C 5.2000818 21.249331 6.0176538 20.390139 6.671875 19.494141 C 7.2745996 18.66867 7.7633496 17.835589 8.1367188 16.998047 C 8.2877825 17.150001 8.4389565 17.306847 8.5917969 17.466797 C 9.2033515 18.092574 9.7726064 18.710711 10.298828 19.322266 C 10.825049 19.919598 11.23649 20.459804 11.535156 20.943359 L 13.519531 19.279297 C 13.178199 18.809964 12.730447 18.284282 12.175781 17.701172 C 11.621115 17.103839 11.024764 16.512798 10.384766 15.929688 C 9.8966617 15.463771 9.4292152 15.028395 8.984375 14.623047 C 9.0281814 14.453436 9.0677101 14.285198 9.1035156 14.117188 C 9.1265169 14.016968 9.1488185 13.917251 9.1699219 13.818359 L 13.732422 13.818359 L 13.732422 11.494141 L 9.5 11.494141 C 9.5488583 10.77985 9.5742188 10.132665 9.5742188 9.5527344 L 9.5742188 8.3144531 L 13.158203 8.3144531 L 13.158203 5.9902344 L 11.181641 5.9902344 C 11.330314 5.7113447 11.483357 5.4121927 11.642578 5.09375 C 12.012355 4.3399734 12.367652 3.5785457 12.708984 2.8105469 L 10.128906 2.1699219 C 10.029351 2.5965879 9.8860605 3.0661258 9.7011719 3.578125 C 9.5162833 4.075902 9.3241108 4.5744886 9.125 5.0722656 C 8.9896156 5.4010564 8.8541344 5.7074706 8.71875 5.9902344 L 6.2636719 5.9902344 L 7.8242188 5.2851562 C 7.6677746 4.844268 7.4194578 4.325848 7.078125 3.7285156 C 6.7510144 3.1311832 6.4010272 2.5909767 6.03125 2.1074219 z M 20.539062 3.0019531 L 20.132812 3.109375 L 19.642578 3.109375 L 14.203125 3.109375 L 14.203125 22.074219 L 16.677734 22.074219 L 16.677734 5.4980469 L 19.189453 5.4980469 C 19.025431 6.0292226 18.843068 6.6057354 18.640625 7.2265625 C 18.427292 7.8665615 18.206071 8.5064854 17.978516 9.1464844 C 17.765183 9.7722612 17.551224 10.341516 17.337891 10.853516 C 18.205445 11.678403 18.781962 12.466926 19.066406 13.220703 C 19.365074 13.97448 19.520936 14.643453 19.535156 15.226562 C 19.535156 15.59634 19.493536 15.902754 19.408203 16.144531 C 19.337092 16.372087 19.208326 16.549734 19.023438 16.677734 C 18.90966 16.73462 18.782847 16.776241 18.640625 16.804688 C 18.512625 16.833134 18.376597 16.854921 18.234375 16.869141 C 18.063708 16.883361 17.878798 16.890625 17.679688 16.890625 C 17.480577 16.876405 17.261309 16.854619 17.019531 16.826172 C 17.232864 17.181727 17.388726 17.602383 17.488281 18.085938 C 17.587839 18.569493 17.643983 18.988195 17.658203 19.34375 L 18.554688 19.34375 C 18.853354 19.34375 19.123457 19.329228 19.365234 19.300781 C 19.948344 19.215449 20.439669 19.030538 20.837891 18.746094 C 21.236112 18.46165 21.528002 18.057471 21.712891 17.53125 C 21.912001 17.005028 22.009766 16.35058 22.009766 15.568359 C 22.009766 15.084805 21.953621 14.578956 21.839844 14.052734 C 21.726066 13.526513 21.519369 12.971783 21.220703 12.388672 C 20.922037 11.79134 20.474286 11.173202 19.876953 10.533203 C 20.289397 9.6229825 20.717315 8.5987135 21.158203 7.4609375 C 21.613314 6.3089394 22.032016 5.2140019 22.416016 4.1757812 L 20.539062 3.0019531 z" />
</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="24"
android:viewportHeight="24">
<path
android:fillColor="#ffffff"
android:pathData="M 10.683594 2.0214844 C 10.640927 2.3912616 10.568305 2.7973931 10.46875 3.2382812 C 10.383417 3.6649473 10.283699 4.0981743 10.169922 4.5390625 C 10.144808 4.6332391 10.120817 4.7256942 10.095703 4.8164062 L 4.6230469 4.8164062 L 4.6230469 22.074219 L 7.2050781 22.074219 L 7.2050781 20.986328 L 17.402344 20.986328 L 17.402344 22.03125 L 20.111328 22.03125 L 20.111328 4.8164062 L 12.791016 4.8164062 C 12.848365 4.6852994 12.905646 4.5492712 12.964844 4.4101562 C 13.249288 3.7417128 13.519391 3.060169 13.775391 2.3632812 L 10.683594 2.0214844 z M 7.2050781 7.2695312 L 17.402344 7.2695312 L 17.402344 9.4667969 L 7.2050781 9.4667969 L 7.2050781 7.2695312 z M 7.2050781 11.833984 L 17.402344 11.833984 L 17.402344 14.03125 L 7.2050781 14.03125 L 7.2050781 11.833984 z M 7.2050781 16.400391 L 17.402344 16.400391 L 17.402344 18.619141 L 7.2050781 18.619141 L 7.2050781 16.400391 z" />
</vector>