Merge branch 'master' into master
This commit is contained in:
commit
5cecafe615
32 changed files with 1358 additions and 40 deletions
|
@ -36,7 +36,6 @@ import android.support.v4.app.ActivityCompat;
|
|||
import android.support.v4.content.ContextCompat;
|
||||
import android.support.v7.widget.Toolbar;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
import android.view.View;
|
||||
import android.view.ViewStub;
|
||||
import android.widget.LinearLayout;
|
||||
|
@ -60,8 +59,10 @@ import org.shadowice.flocke.andotp.Utilities.Tools;
|
|||
import java.io.ByteArrayInputStream;
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.InputStream;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
||||
import javax.crypto.SecretKey;
|
||||
|
||||
|
@ -120,6 +121,7 @@ public class BackupActivity extends BaseActivity {
|
|||
TextView cryptSetup = v.findViewById(R.id.msg_crypt_setup);
|
||||
LinearLayout backupCrypt = v.findViewById(R.id.button_backup_crypt);
|
||||
LinearLayout restoreCrypt = v.findViewById(R.id.button_restore_crypt);
|
||||
LinearLayout restoreCryptOld = v.findViewById(R.id.button_restore_crypt_old);
|
||||
|
||||
if (settings.getBackupPasswordEnc().isEmpty()) {
|
||||
cryptSetup.setVisibility(View.VISIBLE);
|
||||
|
@ -141,6 +143,13 @@ public class BackupActivity extends BaseActivity {
|
|||
}
|
||||
});
|
||||
|
||||
restoreCryptOld.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
openFileWithPermissions(Constants.INTENT_BACKUP_OPEN_DOCUMENT_CRYPT_OLD, Constants.PERMISSIONS_BACKUP_READ_IMPORT_CRYPT_OLD);
|
||||
}
|
||||
});
|
||||
|
||||
// OpenPGP
|
||||
|
||||
String PGPProvider = settings.getOpenPGPProvider();
|
||||
|
@ -231,6 +240,12 @@ public class BackupActivity extends BaseActivity {
|
|||
} else {
|
||||
Toast.makeText(this, R.string.backup_toast_storage_permissions, Toast.LENGTH_LONG).show();
|
||||
}
|
||||
} else if (requestCode == Constants.PERMISSIONS_BACKUP_READ_IMPORT_CRYPT_OLD) {
|
||||
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||
showOpenFileSelector(Constants.INTENT_BACKUP_OPEN_DOCUMENT_CRYPT_OLD);
|
||||
} else {
|
||||
Toast.makeText(this, R.string.backup_toast_storage_permissions, Toast.LENGTH_LONG).show();
|
||||
}
|
||||
} else if (requestCode == Constants.PERMISSIONS_BACKUP_WRITE_EXPORT_CRYPT) {
|
||||
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||
showSaveFileSelector(Constants.BACKUP_MIMETYPE_CRYPT, Constants.BackupType.ENCRYPTED, Constants.INTENT_BACKUP_SAVE_DOCUMENT_CRYPT);
|
||||
|
@ -269,7 +284,11 @@ public class BackupActivity extends BaseActivity {
|
|||
}
|
||||
} else if (requestCode == Constants.INTENT_BACKUP_OPEN_DOCUMENT_CRYPT && resultCode == RESULT_OK) {
|
||||
if (intent != null) {
|
||||
doRestoreCrypt(intent.getData());
|
||||
doRestoreCrypt(intent.getData(), false);
|
||||
}
|
||||
} else if (requestCode == Constants.INTENT_BACKUP_OPEN_DOCUMENT_CRYPT_OLD && resultCode == RESULT_OK) {
|
||||
if (intent != null) {
|
||||
doRestoreCrypt(intent.getData(), true);
|
||||
}
|
||||
} else if (requestCode == Constants.INTENT_BACKUP_SAVE_DOCUMENT_CRYPT && resultCode == RESULT_OK) {
|
||||
if (intent != null) {
|
||||
|
@ -300,7 +319,9 @@ public class BackupActivity extends BaseActivity {
|
|||
if (intentId == Constants.INTENT_BACKUP_OPEN_DOCUMENT_PLAIN)
|
||||
doRestorePlain(Tools.buildUri(settings.getBackupDir(), Constants.BACKUP_FILENAME_PLAIN));
|
||||
else if (intentId == Constants.INTENT_BACKUP_OPEN_DOCUMENT_CRYPT)
|
||||
doRestoreCrypt(Tools.buildUri(settings.getBackupDir(), Constants.BACKUP_FILENAME_CRYPT));
|
||||
doRestoreCrypt(Tools.buildUri(settings.getBackupDir(), Constants.BACKUP_FILENAME_CRYPT), false);
|
||||
else if (intentId == Constants.INTENT_BACKUP_OPEN_DOCUMENT_CRYPT_OLD)
|
||||
doRestoreCrypt(Tools.buildUri(settings.getBackupDir(), Constants.BACKUP_FILENAME_CRYPT), true);
|
||||
else if (intentId == Constants.INTENT_BACKUP_OPEN_DOCUMENT_PGP)
|
||||
restoreEncryptedWithPGP(Tools.buildUri(settings.getBackupDir(), Constants.BACKUP_FILENAME_PGP), null);
|
||||
}
|
||||
|
@ -415,34 +436,47 @@ public class BackupActivity extends BaseActivity {
|
|||
|
||||
/* Encrypted backup functions */
|
||||
|
||||
private void doRestoreCrypt(final Uri uri) {
|
||||
private void doRestoreCrypt(final Uri uri, final boolean old_format) {
|
||||
String password = settings.getBackupPasswordEnc();
|
||||
|
||||
if (password.isEmpty()) {
|
||||
PasswordEntryDialog pwDialog = new PasswordEntryDialog(this, PasswordEntryDialog.Mode.ENTER, new PasswordEntryDialog.PasswordEnteredCallback() {
|
||||
@Override
|
||||
public void onPasswordEntered(String newPassword) {
|
||||
doRestoreCryptWithPassword(uri, newPassword);
|
||||
doRestoreCryptWithPassword(uri, newPassword, old_format);
|
||||
}
|
||||
});
|
||||
pwDialog.show();
|
||||
} else {
|
||||
doRestoreCryptWithPassword(uri, password);
|
||||
doRestoreCryptWithPassword(uri, password, old_format);
|
||||
}
|
||||
}
|
||||
|
||||
private void doRestoreCryptWithPassword(Uri uri, String password) {
|
||||
private void doRestoreCryptWithPassword(Uri uri, String password, boolean old_format) {
|
||||
if (Tools.isExternalStorageReadable()) {
|
||||
boolean success = true;
|
||||
String decryptedString = "";
|
||||
|
||||
try {
|
||||
byte[] encrypted = FileHelper.readFileToBytes(this, uri);
|
||||
byte[] data = FileHelper.readFileToBytes(this, uri);
|
||||
|
||||
SecretKey key = EncryptionHelper.generateSymmetricKeyFromPassword(password);
|
||||
byte[] decrypted = EncryptionHelper.decrypt(key, encrypted);
|
||||
if (old_format) {
|
||||
SecretKey key = EncryptionHelper.generateSymmetricKeyFromPassword(password);
|
||||
byte[] decrypted = EncryptionHelper.decrypt(key, data);
|
||||
|
||||
decryptedString = new String(decrypted, StandardCharsets.UTF_8);
|
||||
decryptedString = new String(decrypted, StandardCharsets.UTF_8);
|
||||
} else {
|
||||
byte[] iterBytes = Arrays.copyOfRange(data, 0, Constants.INT_LENGTH);
|
||||
byte[] salt = Arrays.copyOfRange(data, Constants.INT_LENGTH, Constants.INT_LENGTH + Constants.ENCRYPTION_IV_LENGTH);
|
||||
byte[] encrypted = Arrays.copyOfRange(data, Constants.INT_LENGTH + Constants.ENCRYPTION_IV_LENGTH, data.length);
|
||||
|
||||
int iter = ByteBuffer.wrap(iterBytes).getInt();
|
||||
|
||||
SecretKey key = EncryptionHelper.generateSymmetricKeyPBKDF2(password, iter, salt);
|
||||
|
||||
byte[] decrypted = EncryptionHelper.decrypt(key, encrypted);
|
||||
decryptedString = new String(decrypted, StandardCharsets.UTF_8);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
success = false;
|
||||
e.printStackTrace();
|
||||
|
@ -482,10 +516,20 @@ public class BackupActivity extends BaseActivity {
|
|||
boolean success = true;
|
||||
|
||||
try {
|
||||
SecretKey key = EncryptionHelper.generateSymmetricKeyFromPassword(password);
|
||||
int iter = EncryptionHelper.generateRandomIterations();
|
||||
byte[] salt = EncryptionHelper.generateRandom(Constants.ENCRYPTION_IV_LENGTH);
|
||||
|
||||
SecretKey key = EncryptionHelper.generateSymmetricKeyPBKDF2(password, iter, salt);
|
||||
byte[] encrypted = EncryptionHelper.encrypt(key, plain.getBytes(StandardCharsets.UTF_8));
|
||||
|
||||
FileHelper.writeBytesToFile(this, uri, encrypted);
|
||||
byte[] iterBytes = ByteBuffer.allocate(Constants.INT_LENGTH).putInt(iter).array();
|
||||
byte[] data = new byte[Constants.INT_LENGTH + Constants.ENCRYPTION_IV_LENGTH + encrypted.length];
|
||||
|
||||
System.arraycopy(iterBytes, 0, data, 0, Constants.INT_LENGTH);
|
||||
System.arraycopy(salt, 0, data, Constants.INT_LENGTH, Constants.ENCRYPTION_IV_LENGTH);
|
||||
System.arraycopy(encrypted, 0, data, Constants.INT_LENGTH + Constants.ENCRYPTION_IV_LENGTH, encrypted.length);
|
||||
|
||||
FileHelper.writeBytesToFile(this, uri, data);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
success = false;
|
||||
|
@ -510,7 +554,6 @@ public class BackupActivity extends BaseActivity {
|
|||
decryptIntent = new Intent(OpenPgpApi.ACTION_DECRYPT_VERIFY);
|
||||
|
||||
String input = FileHelper.readFileToString(this, uri);
|
||||
Log.d("OpenPGP", input);
|
||||
|
||||
InputStream is = new ByteArrayInputStream(input.getBytes(StandardCharsets.UTF_8));
|
||||
ByteArrayOutputStream os = new ByteArrayOutputStream();
|
||||
|
|
|
@ -58,24 +58,26 @@ public class Constants {
|
|||
public final static int INTENT_MAIN_BACKUP = 102;
|
||||
public final static int INTENT_MAIN_INTRO = 103;
|
||||
|
||||
public final static int INTENT_BACKUP_OPEN_DOCUMENT_PLAIN = 200;
|
||||
public final static int INTENT_BACKUP_SAVE_DOCUMENT_PLAIN = 201;
|
||||
public final static int INTENT_BACKUP_OPEN_DOCUMENT_CRYPT = 202;
|
||||
public final static int INTENT_BACKUP_SAVE_DOCUMENT_CRYPT = 203;
|
||||
public final static int INTENT_BACKUP_OPEN_DOCUMENT_PGP = 204;
|
||||
public final static int INTENT_BACKUP_SAVE_DOCUMENT_PGP = 205;
|
||||
public final static int INTENT_BACKUP_ENCRYPT_PGP = 206;
|
||||
public final static int INTENT_BACKUP_DECRYPT_PGP = 207;
|
||||
public final static int INTENT_BACKUP_OPEN_DOCUMENT_PLAIN = 200;
|
||||
public final static int INTENT_BACKUP_SAVE_DOCUMENT_PLAIN = 201;
|
||||
public final static int INTENT_BACKUP_OPEN_DOCUMENT_CRYPT = 202;
|
||||
public final static int INTENT_BACKUP_SAVE_DOCUMENT_CRYPT = 203;
|
||||
public final static int INTENT_BACKUP_OPEN_DOCUMENT_PGP = 204;
|
||||
public final static int INTENT_BACKUP_SAVE_DOCUMENT_PGP = 205;
|
||||
public final static int INTENT_BACKUP_ENCRYPT_PGP = 206;
|
||||
public final static int INTENT_BACKUP_DECRYPT_PGP = 207;
|
||||
public final static int INTENT_BACKUP_OPEN_DOCUMENT_CRYPT_OLD = 208;
|
||||
|
||||
public static final int INTENT_SETTINGS_AUTHENTICATE = 300;
|
||||
|
||||
// Permission requests (Format: A1x with A = parent Activity, x = number of the request)
|
||||
public final static int PERMISSIONS_BACKUP_READ_IMPORT_PLAIN = 210;
|
||||
public final static int PERMISSIONS_BACKUP_WRITE_EXPORT_PLAIN = 211;
|
||||
public final static int PERMISSIONS_BACKUP_READ_IMPORT_CRYPT = 212;
|
||||
public final static int PERMISSIONS_BACKUP_WRITE_EXPORT_CRYPT = 213;
|
||||
public final static int PERMISSIONS_BACKUP_READ_IMPORT_PGP = 214;
|
||||
public final static int PERMISSIONS_BACKUP_WRITE_EXPORT_PGP = 215;
|
||||
public final static int PERMISSIONS_BACKUP_READ_IMPORT_PLAIN = 210;
|
||||
public final static int PERMISSIONS_BACKUP_WRITE_EXPORT_PLAIN = 211;
|
||||
public final static int PERMISSIONS_BACKUP_READ_IMPORT_CRYPT = 212;
|
||||
public final static int PERMISSIONS_BACKUP_WRITE_EXPORT_CRYPT = 213;
|
||||
public final static int PERMISSIONS_BACKUP_READ_IMPORT_PGP = 214;
|
||||
public final static int PERMISSIONS_BACKUP_WRITE_EXPORT_PGP = 215;
|
||||
public final static int PERMISSIONS_BACKUP_READ_IMPORT_CRYPT_OLD = 216;
|
||||
|
||||
// Intent extras
|
||||
public final static String EXTRA_AUTH_PASSWORD_KEY = "password_key";
|
||||
|
@ -92,7 +94,9 @@ public class Constants {
|
|||
final static String ALGORITHM_ASYMMETRIC = "RSA/ECB/PKCS1Padding";
|
||||
|
||||
final static int ENCRYPTION_KEY_LENGTH = 16; // 128-bit encryption key (KeyStore-mode)
|
||||
final static int ENCRYPTION_IV_LENGTH = 12;
|
||||
public final static int ENCRYPTION_IV_LENGTH = 12;
|
||||
|
||||
public final static int INT_LENGTH = 4;
|
||||
|
||||
final static int PBKDF2_MIN_ITERATIONS = 1000;
|
||||
final static int PBKDF2_MAX_ITERATIONS = 5000;
|
||||
|
|
|
@ -89,6 +89,14 @@ public class EncryptionHelper {
|
|||
return new SecretKeySpec(data, 0, data.length, "AES");
|
||||
}
|
||||
|
||||
public static SecretKey generateSymmetricKeyPBKDF2(String password, int iter, byte[] salt)
|
||||
throws NoSuchAlgorithmException, InvalidKeySpecException {
|
||||
SecretKeyFactory secretKeyFactory = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1");
|
||||
KeySpec keySpec = new PBEKeySpec(password.toCharArray(), salt, iter, Constants.PBKDF2_LENGTH);
|
||||
|
||||
return secretKeyFactory.generateSecret(keySpec);
|
||||
}
|
||||
|
||||
public static SecretKey generateSymmetricKeyFromPassword(String password)
|
||||
throws NoSuchAlgorithmException {
|
||||
MessageDigest sha = MessageDigest.getInstance("SHA-256");
|
||||
|
|
|
@ -42,18 +42,21 @@ public class EntryThumbnail {
|
|||
Default(R.mipmap.ic_launcher_round),
|
||||
OnePassword(R.drawable.thumb_1password),
|
||||
Adobe(R.drawable.thumb_adobe),
|
||||
AdGuard(R.drawable.thumb_adguard),
|
||||
Airbrake(R.drawable.thumb_airbrake),
|
||||
AllegroPl(R.drawable.thumb_allegropl),
|
||||
Amazon(R.drawable.thumb_amazon),
|
||||
AmazonWebServices(R.drawable.thumb_amazonwebservices),
|
||||
AngelList(R.drawable.thumb_angellist),
|
||||
AnimeBytes(R.drawable.thumb_animebytes),
|
||||
Apache(R.drawable.thumb_apache),
|
||||
Apple(R.drawable.thumb_apple),
|
||||
ArenaNet(R.drawable.thumb_arenanet),
|
||||
Atlassian(R.drawable.thumb_atlassian),
|
||||
AVM(R.drawable.thumb_avm),
|
||||
Backblaze(R.drawable.thumb_backblaze),
|
||||
BattleNet(R.drawable.thumb_battlenet),
|
||||
Betterment(R.drawable.thumb_betterment),
|
||||
Binance(R.drawable.thumb_binance),
|
||||
BitBucket(R.drawable.thumb_bitbucket),
|
||||
Bitcoin(R.drawable.thumb_bitcoin),
|
||||
|
@ -67,18 +70,22 @@ public class EntryThumbnail {
|
|||
BlockchainInfo(R.drawable.thumb_blockchain_info),
|
||||
CloudDownload(R.drawable.thumb_cloud_download),
|
||||
Cloudflare(R.drawable.thumb_cloudflare),
|
||||
Cobranded(R.drawable.thumb_cobranded),
|
||||
Codegiant(R.drawable.thumb_codegiant),
|
||||
Coinbase(R.drawable.thumb_coinbase),
|
||||
ComputerBase(R.drawable.thumb_computerbase),
|
||||
ConnectWiseManage(R.drawable.thumb_connectwise_manage),
|
||||
CozyCloud(R.drawable.thumb_cozycloud),
|
||||
Dashlane(R.drawable.thumb_dashlane),
|
||||
Debian(R.drawable.thumb_debian),
|
||||
Degiro(R.drawable.thumb_degiro),
|
||||
Diaspora(R.drawable.thumb_diaspora),
|
||||
Diaspora(R.drawable.thumb_diaspora),
|
||||
Digidentity(R.drawable.thumb_digidentity),
|
||||
DigitalOcean(R.drawable.thumb_digital_ocean),
|
||||
Discord(R.drawable.thumb_discord),
|
||||
Discourse(R.drawable.thumb_discourse),
|
||||
Disroot(R.drawable.thumb_disroot),
|
||||
DocuSign(R.drawable.thumb_docusign),
|
||||
Dropbox(R.drawable.thumb_dropbox),
|
||||
ElectronicArts(R.drawable.thumb_electronic_arts),
|
||||
Email(R.drawable.thumb_email),
|
||||
|
@ -90,6 +97,7 @@ public class EntryThumbnail {
|
|||
Firefox(R.drawable.thumb_firefox),
|
||||
Flight(R.drawable.thumb_flight_takeoff),
|
||||
Floatplane(R.drawable.thumb_floatplane),
|
||||
Fritz(R.drawable.thumb_fritz),
|
||||
Gamepad(R.drawable.thumb_gamepad),
|
||||
Gandi(R.drawable.thumb_gandi),
|
||||
Git(R.drawable.thumb_git),
|
||||
|
@ -123,6 +131,7 @@ public class EntryThumbnail {
|
|||
LocalMonero(R.drawable.thumb_localmonero),
|
||||
LogMeIn(R.drawable.thumb_logmein),
|
||||
Mailbox(R.drawable.thumb_mailbox),
|
||||
Mailcow(R.drawable.thumb_mailcow),
|
||||
Mailgun(R.drawable.thumb_mailgun),
|
||||
Mapbox(R.drawable.thumb_mapbox),
|
||||
Mastodon(R.drawable.thumb_mastodon),
|
||||
|
@ -134,6 +143,8 @@ public class EntryThumbnail {
|
|||
Migadu(R.drawable.thumb_migadu),
|
||||
Miraheze(R.drawable.thumb_miraheze),
|
||||
Mixer(R.drawable.thumb_mixer),
|
||||
NameCheap(R.drawable.thumb_namecheap),
|
||||
NameCom(R.drawable.thumb_namecom),
|
||||
NAS(R.drawable.thumb_nas),
|
||||
netcup(R.drawable.thumb_netcup),
|
||||
NextCloud(R.drawable.thumb_nextcloud),
|
||||
|
@ -148,13 +159,20 @@ public class EntryThumbnail {
|
|||
Packet(R.drawable.thumb_packet),
|
||||
Patreon(R.drawable.thumb_patreon),
|
||||
PayPal(R.drawable.thumb_paypal),
|
||||
PaySafe(R.drawable.thumb_paysafecard),
|
||||
PayWithPrivacy(R.drawable.thumb_paywithprivacy),
|
||||
PCloud(R.drawable.thumb_pcloud),
|
||||
Phabricator(R.drawable.thumb_phabricator),
|
||||
phpMyAdmin(R.drawable.thumb_phpmyadmin),
|
||||
Plurk(R.drawable.thumb_plurk),
|
||||
Posteo(R.drawable.thumb_posteo),
|
||||
ProtonMail(R.drawable.thumb_protonmail),
|
||||
Proxmox(R.drawable.thumb_proxmox),
|
||||
PyPI(R.drawable.thumb_pypi),
|
||||
Rackspace(R.drawable.thumb_rackspace),
|
||||
Reddit(R.drawable.thumb_reddit),
|
||||
RipeNNC(R.drawable.thumb_ripe_ncc),
|
||||
Robinhood(R.drawable.thumb_robinhood),
|
||||
Rockstar(R.drawable.thumb_rockstar),
|
||||
RSS(R.drawable.thumb_rss),
|
||||
SAP(R.drawable.thumb_sap),
|
||||
|
@ -177,11 +195,13 @@ public class EntryThumbnail {
|
|||
TeaHub(R.drawable.thumb_teahub),
|
||||
TeamViewer(R.drawable.thumb_teamviewer),
|
||||
Terminal(R.drawable.thumb_terminal),
|
||||
TransIP(R.drawable.thumb_transip),
|
||||
Trello(R.drawable.thumb_trello),
|
||||
Tumblr(R.drawable.thumb_tumblr),
|
||||
Tutanota(R.drawable.thumb_tutanota),
|
||||
Twitch(R.drawable.thumb_twitch),
|
||||
Twitter(R.drawable.thumb_twitter),
|
||||
Uber(R.drawable.thumb_uber),
|
||||
Ubisoft(R.drawable.thumb_ubisoft),
|
||||
UbiquitiNetworks(R.drawable.thumb_ubnt),
|
||||
UbuntuOne(R.drawable.thumb_ubuntu_one),
|
||||
|
@ -191,6 +211,7 @@ public class EntryThumbnail {
|
|||
Wallabag(R.drawable.thumb_wallabag),
|
||||
Wallet(R.drawable.thumb_wallet),
|
||||
Wargaming(R.drawable.thumb_wargaming),
|
||||
Wasabi(R.drawable.thumb_wasabi),
|
||||
Wikimedia(R.drawable.thumb_wikimedia),
|
||||
Wordpress(R.drawable.thumb_wordpress),
|
||||
Zoho(R.drawable.thumb_zoho);
|
||||
|
|
15
app/src/main/res/drawable/thumb_adguard.xml
Normal file
15
app/src/main/res/drawable/thumb_adguard.xml
Normal file
|
@ -0,0 +1,15 @@
|
|||
<vector android:height="96dp" android:viewportHeight="80"
|
||||
android:viewportWidth="80" android:width="96dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FFFFFF" android:fillType="evenOdd"
|
||||
android:pathData="M20,0L60,0A20,20 0,0 1,80 20L80,60A20,20 0,0 1,60 80L20,80A20,20 0,0 1,0 60L0,20A20,20 0,0 1,20 0z"
|
||||
android:strokeColor="#00000000" android:strokeWidth="1"/>
|
||||
<path android:fillColor="#68BC71" android:fillType="evenOdd"
|
||||
android:pathData="M40.2221,12C31.4008,12 20.76,14.0744 12,18.6404C12,28.5016 11.8791,53.0689 40.2221,69.855C68.5658,53.0689 68.4455,28.5016 68.4455,18.6404C59.6849,14.0744 49.0441,12 40.2221,12L40.2221,12Z"
|
||||
android:strokeColor="#00000000" android:strokeWidth="1"/>
|
||||
<path android:fillColor="#67B279" android:fillType="evenOdd"
|
||||
android:pathData="M40.1933,69.8379C11.8792,53.0523 12,28.4983 12,18.6404C20.7504,14.0794 31.3776,12.0045 40.1933,12L40.1933,69.8379Z"
|
||||
android:strokeColor="#00000000" android:strokeWidth="1"/>
|
||||
<path android:fillColor="#FFFFFF" android:fillType="evenOdd"
|
||||
android:pathData="M39.1927,50.6027L56.2591,27.601C55.0085,26.5987 53.9115,27.3061 53.3077,27.8538L53.2857,27.8556L39.0557,42.6585L33.6943,36.2065C31.1365,33.2514 27.6593,35.5055 26.847,36.1012L39.1927,50.6027"
|
||||
android:strokeColor="#00000000" android:strokeWidth="1"/>
|
||||
</vector>
|
129
app/src/main/res/drawable/thumb_apache.xml
Normal file
129
app/src/main/res/drawable/thumb_apache.xml
Normal file
|
@ -0,0 +1,129 @@
|
|||
<vector android:height="33dp" android:viewportHeight="262.04547"
|
||||
android:viewportWidth="1000" android:width="128dp"
|
||||
xmlns:aapt="http://schemas.android.com/aapt" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:pathData="m652.77,173.14c20.27,-9.59 39.71,-20.14 58.14,-31.85 0.65,-0.42 1.3,-0.8 1.95,-1.22 -7.51,19.1 -3.84,52.58 -3.75,52.44 11.85,-34.71 26.51,-65.25 48.74,-84.67 8.48,7.59 14.92,21.83 20.21,39.88 2.62,-24.85 -1.86,-38.73 -4.05,-43.8 10.92,12.95 30.73,20.18 52.04,26.46 -23.95,-14.54 -39.79,-28.88 -46,-42.96 68.31,-21.02 142.29,-46.16 219.96,-74.03 -6.09,-4.59 -12.64,-5.17 -19.44,-3.17 -14.02,5.1 -106.22,38.31 -231.64,76.24 -3.56,1.08 -7.16,2.15 -10.77,3.24 -1.01,0.31 -2.03,0.6 -3.02,0.89 -13.17,3.95 -26.67,7.92 -40.46,11.92 -3.14,0.9 -6.29,1.81 -9.45,2.72 -0.07,0.02 -0.13,0.04 -0.18,0.05l-34.51,68.93c0.71,-0.34 1.49,-0.72 2.24,-1.09z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="460.62814" android:endY="179.8324"
|
||||
android:startX="943.8995" android:startY="81.02936" android:type="linear">
|
||||
<item android:color="#FF282662" android:offset="0"/>
|
||||
<item android:color="#FF662E8D" android:offset="0.095484"/>
|
||||
<item android:color="#FF9F2064" android:offset="0.7882"/>
|
||||
<item android:color="#FFCD2032" android:offset="0.9487"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:pathData="m19.2,247.05c19.07,7.2 39.61,9.08 59.73,11.27 11.85,1.12 23.74,1.91 35.63,2.49 8.17,-17.1 16.34,-34.21 24.51,-51.31 -31.49,0.86 -63.09,0.18 -94.39,-3.54 30.94,3.1 62.14,1.85 93.13,0.17 -22.37,-26.67 -46.91,-51.43 -71.93,-75.59 -23.52,11.84 -46.29,28.35 -58.63,52.24 -6.3,14.55 -9.95,31.53 -4.82,46.98 2.76,7.89 9.06,14.16 16.77,17.28z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="-53.64759" android:endY="114.66263"
|
||||
android:startX="106.064" android:startY="239.02583" android:type="linear">
|
||||
<item android:color="#FFF69923" android:offset="0"/>
|
||||
<item android:color="#FFF79A23" android:offset="0.3123"/>
|
||||
<item android:color="#FFE97826" android:offset="0.8383"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:fillColor="#be202e" android:pathData="m411.42,67.56c2.52,2.36 5.08,4.82 7.72,7.34 0.01,0.02 0.04,0.02 0.06,0.04 -1.29,-1.29 -2.56,-2.57 -3.86,-3.8s-2.59,-2.42 -3.91,-3.57z"/>
|
||||
<path android:fillAlpha="0.35" android:fillColor="#be202e"
|
||||
android:pathData="m411.42,67.56c2.52,2.36 5.08,4.82 7.72,7.34 0.01,0.02 0.04,0.02 0.06,0.04 -1.29,-1.29 -2.56,-2.57 -3.86,-3.8s-2.59,-2.42 -3.91,-3.57z" android:strokeAlpha="0.35"/>
|
||||
<path android:fillColor="#be202e" android:pathData="m370.83,86.56s0.01,0.02 0.03,0c0.01,0.02 0.03,0 0.04,0.02 -0.39,-0.42 -0.81,-0.8 -1.19,-1.2 -1.62,-1.63 -3.26,-3.18 -4.92,-4.64 1.97,1.91 4,3.84 6.04,5.81z"/>
|
||||
<path android:fillAlpha="0.35" android:fillColor="#be202e"
|
||||
android:pathData="m370.83,86.56s0.01,0.02 0.03,0c0.01,0.02 0.03,0 0.04,0.02 -0.39,-0.42 -0.81,-0.8 -1.19,-1.2 -1.62,-1.63 -3.26,-3.18 -4.92,-4.64 1.97,1.91 4,3.84 6.04,5.81z" android:strokeAlpha="0.35"/>
|
||||
<path android:pathData="m290.11,195.22c-16.96,2.51 -33.72,4.73 -50.22,6.64 -17.12,1.99 -33.96,3.64 -50.42,4.9 -0.96,0.08 -1.94,0.15 -2.92,0.24 -16.22,1.22 -32.06,2.04 -47.49,2.48l-24.51,51.31c3.16,0.15 6.35,0.28 9.61,0.42 12.25,0.46 25.27,0.74 38.9,0.81 15.36,0.08 31.56,-0.13 48.36,-0.6 15.52,-0.45 31.6,-1.15 48.05,-2.13 14,-0.84 28.32,-1.84 42.84,-3.09 0.54,-0.05 1.07,-0.08 1.61,-0.12 13.32,-22.17 22.89,-45.72 34.33,-68.58 -16.18,2.78 -32.24,5.36 -48.16,7.72z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="143.81642" android:endY="248.6387"
|
||||
android:startX="1063.3987" android:startY="60.633514" android:type="linear">
|
||||
<item android:color="#FF9E2064" android:offset="0.3233"/>
|
||||
<item android:color="#FFC92037" android:offset="0.6302"/>
|
||||
<item android:color="#FFCD2335" android:offset="0.7514"/>
|
||||
<item android:color="#FFE97826" android:offset="1"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:pathData="m635.62,119.22c-16.18,4.45 -32.6,8.86 -49.24,13.25 -15.94,4.19 -32.05,8.29 -48.31,12.33 -16.26,4.04 -32.63,7.98 -49.1,11.82 -16.74,3.91 -33.56,7.68 -50.38,11.31 -16.63,3.58 -33.29,7.01 -49.89,10.27 -5.99,1.17 -11.97,2.32 -17.94,3.45 -10.32,1.95 -20.6,3.81 -30.84,5.58 -0.55,0.11 -1.1,0.18 -1.66,0.27l-34.33,68.58c1.08,-0.09 2.16,-0.2 3.24,-0.29 15.39,-1.37 31.01,-2.94 46.78,-4.81 15.92,-1.87 31.97,-4.03 48.06,-6.44 13.58,-2.03 27.16,-4.25 40.72,-6.68 2.75,-0.5 5.46,-1 8.18,-1.51 16.98,-3.18 33.09,-6.65 48.37,-10.29 17.3,-4.13 33.51,-8.49 48.61,-12.99 9.94,-2.95 19.41,-5.97 28.43,-8.98 7.64,-2.65 15.23,-5.39 22.71,-8.22 17.65,-6.64 34.84,-13.84 51.5,-21.64 11.64,-22.61 23.67,-45.59 34.51,-68.93 -12.62,3.62 -25.47,7.28 -38.5,10.9 -3.62,1.01 -7.28,2.02 -10.93,3.03z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="93.92231" android:endY="267.76477"
|
||||
android:startX="1013.5046" android:startY="79.75959" android:type="linear">
|
||||
<item android:color="#FF9E2064" android:offset="0.3233"/>
|
||||
<item android:color="#FFC92037" android:offset="0.6302"/>
|
||||
<item android:color="#FFCD2335" android:offset="0.7514"/>
|
||||
<item android:color="#FFE97826" android:offset="1"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:pathData="m339.72,179.73c2.22,-0.41 4.46,-0.83 6.72,-1.25 6.76,-1.28 13.63,-2.59 20.66,-3.96 7.59,-1.49 15.32,-3.05 23.22,-4.68 3.98,-0.81 7.97,-1.65 12.03,-2.5 12.13,-2.55 24.6,-5.26 37.43,-8.13 15.76,-3.54 32.06,-7.31 48.89,-11.36 16.04,-3.86 32.56,-7.96 49.58,-12.31 16.15,-4.12 32.74,-8.5 49.77,-13.09 15.2,-4.11 30.72,-8.4 46.64,-12.91 0.77,-0.22 1.55,-0.43 2.3,-0.67 15.8,-4.47 31.97,-9.16 48.48,-14.05 0.38,-0.12 0.76,-0.23 1.12,-0.34l-19.14,-20.68c0.24,0.51 0.53,1.01 0.77,1.52 -23.3,-24.43 -69.92,-45.28 -111.88,-50 -19.34,-2.18 -39.99,-1.84 -62.41,0.93 -16.69,2.06 -34.35,5.47 -53.19,10.22 -16.46,4.14 -33.81,9.27 -52.18,15.43 7.84,3.76 15.48,9.07 22.93,15.65 1.29,1.15 2.61,2.34 3.91,3.57s2.59,2.5 3.86,3.8c-0.01,-0.02 -0.04,-0.02 -0.06,-0.04 -28.25,-17.93 -58.62,-19.94 -89.97,-14.53 9.39,3.27 23.24,9.63 35.6,20.38 1.69,1.46 3.32,3.03 4.92,4.64 0.41,0.41 0.81,0.8 1.19,1.2 -0.01,-0.02 -0.03,-0 -0.04,-0.02 0,0 -0.01,-0.02 -0.03,-0 -10.1,-6.01 -19.62,-10.33 -29.16,-13.14 -2.04,-0.6 -4.08,-1.14 -6.14,-1.59 -3.13,-0.7 -6.26,-1.23 -9.43,-1.62 -2.03,-0.25 -4.06,-0.45 -6.12,-0.56 -4.82,-0.29 -9.76,-0.25 -14.88,0.14 -1.56,0.11 -3.13,0.26 -4.73,0.43 -2.23,0.36 -4.39,0.73 -6.53,1.11 -9.64,1.72 -18,3.58 -25.18,5.45 -3.59,0.93 -6.86,1.85 -9.85,2.78 -1.19,0.36 -2.34,0.72 -3.45,1.08 -3.31,1.08 -6.2,2.1 -8.7,3.07 -3.73,1.45 -6.57,2.76 -8.57,3.8 1.3,0.35 2.7,0.83 4.17,1.44 10.15,4.22 23.89,14.17 33.59,23.22l-17.58,-18.98 17.58,18.98c0.15,0.13 0.29,0.28 0.44,0.41 0.95,0.91 1.9,1.86 2.86,2.79 -0.23,-0.13 -0.44,-0.17 -0.65,-0.32l60.16,64.89c0.34,-0.06 0.68,-0.12 1.05,-0.17z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="74.4654" android:endY="172.59598"
|
||||
android:startX="994.04767" android:startY="-15.409223" android:type="linear">
|
||||
<item android:color="#FF9E2064" android:offset="0.3233"/>
|
||||
<item android:color="#FFC92037" android:offset="0.6302"/>
|
||||
<item android:color="#FFCD2335" android:offset="0.7514"/>
|
||||
<item android:color="#FFE97826" android:offset="1"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:pathData="m137.82,206.1c14.31,-0.87 30.36,-2.12 48.24,-3.94 0.93,-0.08 1.89,-0.19 2.83,-0.29 15.47,-1.59 32.29,-3.56 50.49,-6.02 15.72,-2.11 32.44,-4.57 50.24,-7.46 15.51,-2.5 31.89,-5.32 49.04,-8.49l-59.49,-64.57c-24.74,-13.57 -40.82,-16.79 -59.84,-16.55 -5.18,0.16 -10.52,0.42 -15.98,0.79 -16.71,1.14 -34.47,3.28 -51.6,6.11 -16.54,2.74 -32.44,6.13 -46.23,9.91 -8.77,2.42 -16.68,4.99 -23.33,7.64 -5.86,2.34 -11.27,4.79 -16.29,7.3 25.1,24.05 54.59,54.42 71.93,75.56z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="132.47421" android:endY="165.65561"
|
||||
android:startX="1052.0565" android:startY="-22.349586" android:type="linear">
|
||||
<item android:color="#FF9E2064" android:offset="0.3233"/>
|
||||
<item android:color="#FFC92037" android:offset="0.6302"/>
|
||||
<item android:color="#FFCD2335" android:offset="0.7514"/>
|
||||
<item android:color="#FFE97826" android:offset="1"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:fillColor="#be202e" android:pathData="m415.33,71.13c1.3,1.23 2.59,2.5 3.86,3.8 -1.27,-1.31 -2.56,-2.57 -3.86,-3.8z"/>
|
||||
<path android:fillAlpha="0.35" android:fillColor="#be202e"
|
||||
android:pathData="m415.33,71.13c1.3,1.23 2.59,2.5 3.86,3.8 -1.27,-1.31 -2.56,-2.57 -3.86,-3.8z" android:strokeAlpha="0.35"/>
|
||||
<path android:pathData="m415.33,71.13c1.3,1.23 2.59,2.5 3.86,3.8 -1.27,-1.31 -2.56,-2.57 -3.86,-3.8z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="68.67838" android:endY="144.29018"
|
||||
android:startX="988.2607" android:startY="-43.715023" android:type="linear">
|
||||
<item android:color="#FF9E2064" android:offset="0.3233"/>
|
||||
<item android:color="#FFC92037" android:offset="0.6302"/>
|
||||
<item android:color="#FFCD2335" android:offset="0.7514"/>
|
||||
<item android:color="#FFE97826" android:offset="1"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:fillColor="#be202e" android:pathData="m370.92,86.61c-0.39,-0.42 -0.81,-0.8 -1.19,-1.2 0.38,0.4 0.78,0.79 1.19,1.2z"/>
|
||||
<path android:fillAlpha="0.35" android:fillColor="#be202e"
|
||||
android:pathData="m370.92,86.61c-0.39,-0.42 -0.81,-0.8 -1.19,-1.2 0.38,0.4 0.78,0.79 1.19,1.2z" android:strokeAlpha="0.35"/>
|
||||
<path android:pathData="m370.92,86.61c-0.39,-0.42 -0.81,-0.8 -1.19,-1.2 0.38,0.4 0.78,0.79 1.19,1.2z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="69.340515" android:endY="147.52882"
|
||||
android:startX="988.9228" android:startY="-40.476376" android:type="linear">
|
||||
<item android:color="#FF9E2064" android:offset="0.3233"/>
|
||||
<item android:color="#FFC92037" android:offset="0.6302"/>
|
||||
<item android:color="#FFCD2335" android:offset="0.7514"/>
|
||||
<item android:color="#FFE97826" android:offset="1"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:fillColor="#be202e" android:pathData="m370.87,86.57s-0.01,-0.02 -0.03,-0c0,0 0.01,0.02 0.03,0z"/>
|
||||
<path android:fillAlpha="0.35" android:fillColor="#be202e"
|
||||
android:pathData="m370.87,86.57s-0.01,-0.02 -0.03,-0c0,0 0.01,0.02 0.03,0z" android:strokeAlpha="0.35"/>
|
||||
<path android:pathData="m370.87,86.57s-0.01,-0.02 -0.03,-0c0,0 0.01,0.02 0.03,0z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="269.1897" android:endY="107.3452"
|
||||
android:startX="472.44736" android:startY="65.78992" android:type="linear">
|
||||
<item android:color="#FF9E2064" android:offset="0.3233"/>
|
||||
<item android:color="#FFC92037" android:offset="0.6302"/>
|
||||
<item android:color="#FFCD2335" android:offset="0.7514"/>
|
||||
<item android:color="#FFE97826" android:offset="1"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:fillColor="#6d6e71" android:pathData="m959.82,240.37 l0,2.58 6.04,-0 0.01,17.06 2.8,-0 -0.01,-17.06 6.08,-0 -0,-2.58 -14.92,0.01zM994.7,240.35 L987.97,254.06 981.17,240.36 977.8,240.36 977.81,260 980.39,259.99 980.38,244.41 987.06,257.92 988.85,257.92 995.52,244.41 995.53,259.99 998.11,259.99 998.1,240.35 994.7,240.35z"/>
|
||||
<path android:pathData="m693.8,92.35c12.86,-3.83 25.9,-7.76 39.19,-11.86 0.2,-0.07 0.38,-0.12 0.58,-0.18 1.88,-0.57 3.75,-1.16 5.63,-1.73 8.95,-2.77 16.95,-5.33 35.18,-11.13 -2.34,-10.97 2.62,-24.85 9.17,-39.36 -11.07,9.23 -18.39,22.08 -20.06,37.4 -28.14,-41.77 -64.17,-69.02 -107.07,-65.11 -3.83,0.34 -7.68,0.92 -11.62,1.79 16.44,0.49 28.37,7.36 41.45,27.26 0.04,0.02 0.1,0.06 0.15,0.08 -0.04,-0.02 -0.1,-0.06 -0.15,-0.08 -33.43,-18.78 -55.96,-23.94 -85.23,-21.56 -6.94,0.56 -14.25,1.54 -22.18,2.87 43.48,5.87 71.79,29.04 88.59,63.09l0.78,1.49 18.37,19.18c2.42,-0.7 4.83,-1.41 7.25,-2.14z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="385.56235" android:endY="103.12256"
|
||||
android:startX="933.54193" android:startY="-8.909838" android:type="linear">
|
||||
<item android:color="#FF282662" android:offset="0"/>
|
||||
<item android:color="#FF662E8D" android:offset="0.095484"/>
|
||||
<item android:color="#FF9F2064" android:offset="0.7882"/>
|
||||
<item android:color="#FFCD2032" android:offset="0.9487"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
</vector>
|
14
app/src/main/res/drawable/thumb_betterment.xml
Normal file
14
app/src/main/res/drawable/thumb_betterment.xml
Normal file
|
@ -0,0 +1,14 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="128dp"
|
||||
android:height="128dp"
|
||||
android:viewportWidth="5569"
|
||||
android:viewportHeight="5569">
|
||||
<path
|
||||
android:pathData="M2787,4750l1970,0c504,-504 816,-1200 816,-1969l0,-4c-1,-658 -230,-1263 -612,-1739l-2174,3712z"
|
||||
android:fillColor="#2f363c"
|
||||
android:fillType="nonZero"/>
|
||||
<path
|
||||
android:pathData="M0,2780c0,769 312,1466 816,1970l3941,-3941c-504,-504 -1201,-816 -1970,-816 -1539,0 -2787,1248 -2787,2787z"
|
||||
android:fillColor="#2f363c"
|
||||
android:fillType="nonZero"/>
|
||||
</vector>
|
24
app/src/main/res/drawable/thumb_cobranded.xml
Normal file
24
app/src/main/res/drawable/thumb_cobranded.xml
Normal file
|
@ -0,0 +1,24 @@
|
|||
<vector android:height="128dp" android:viewportHeight="761"
|
||||
android:viewportWidth="400" android:width="67dp"
|
||||
xmlns:aapt="http://schemas.android.com/aapt" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#407DB8" android:fillType="evenOdd" android:pathData="M286.2,742.5l-0.1,-21.6h37l0.1,21.6c0,10.2 -8.3,18.5 -18.5,18.5C294.5,761 286.2,752.7 286.2,742.5z"/>
|
||||
<path android:fillColor="#407DB8" android:fillType="evenOdd" android:pathData="M183.5,742.5l-0.1,-21.6h37l0.1,21.6c0,10.2 -8.3,18.5 -18.5,18.5C191.8,761 183.5,752.7 183.5,742.5z"/>
|
||||
<path android:fillColor="#407DB8" android:fillType="evenOdd" android:pathData="M80.8,742.5l-0.1,-21.6h37l0.1,21.6c0,10.2 -8.3,18.5 -18.5,18.5C89.1,761 80.8,752.7 80.8,742.5z"/>
|
||||
<path android:fillColor="#407DB8" android:fillType="evenOdd" android:pathData="M358.7,697.7L341.8,726h-281l-15.6,-28.3H358.7z"/>
|
||||
<path android:fillType="evenOdd" android:pathData="M14.8,525.3V198.5h0.1c0.6,-89.8 72.9,-163.6 166,-173.4c4.9,-1.2 8.4,-4.4 9.8,-6.9c2.7,-5.2 5.7,-11 7.6,-15.7c1.2,-2.8 6.3,-3.6 7.7,0.1c1.8,4.8 4.9,10.4 7.6,15.6c1.3,2.5 4.3,5.7 9.7,6.9c93,9.9 165.3,83.6 165.9,173.4h0.1v326.8H14.8z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="389.1691" android:endY="262.634"
|
||||
android:startX="14.8006" android:startY="262.634" android:type="linear">
|
||||
<item android:color="#FFF9AC1A" android:offset="0"/>
|
||||
<item android:color="#FFF9C51A" android:offset="1"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<group>
|
||||
<clip-path android:pathData="M14.8,525.3V198.5h0.1c0.6,-89.8 72.9,-163.6 166,-173.4c4.9,-1.2 8.4,-4.4 9.8,-6.9c2.7,-5.2 5.7,-11 7.6,-15.7c1.2,-2.8 6.3,-3.6 7.7,0.1c1.8,4.8 4.9,10.4 7.6,15.6c1.3,2.5 4.3,5.7 9.7,6.9c93,9.9 165.3,83.6 165.9,173.4h0.1v326.8H14.8z M 0,0"/>
|
||||
<path android:fillColor="#162331" android:fillType="evenOdd" android:pathData="M316.2,406.6c-22.6,0 -29.5,8.9 -29.5,25.3c0,28 34.6,61.2 34.6,112.6c0,37.4 -22.2,68.7 -70.5,68.7h-22.5v-45.8h10.1c17.7,0 23.8,-10.3 23.8,-27.1c0,-37.8 -20.9,-72.4 -20.9,-100.9c0,-29 9.5,-42.5 44.2,-49.9c-34.6,-7.5 -44.2,-30 -44.2,-58.9c0,-28 20.9,-51.4 20.9,-89.7c0,-16.8 -8.7,-30.2 -29.4,-30.2c-7.7,0 -14,0 -19.9,0v-35.1c52.1,-26.7 95.4,20.8 95.4,55.9c0,50.9 -21.5,90.2 -21.5,118.3c0,15.9 7,23 29.5,23h15.4v34H316.2zM191.2,210.6c-5.4,0 -11.2,0 -18.1,0c-20.7,0 -29.4,13.4 -29.4,30.2c0,38.3 20.9,61.7 20.9,89.7c0,29 -11.4,51.5 -46,58.9c34.6,7.5 46,21 46,49.9c0,28.5 -20.9,63.1 -20.9,100.9c0,16.8 6,27.1 23.8,27.1h10.1v45.8H155c-48.3,0 -70.5,-31.3 -70.5,-68.7c0,-51.4 34.6,-84.6 34.6,-112.6c0,-16.4 -5.8,-25.3 -28.3,-25.3H72.3v-34h18.5c22.6,0 28.3,-7.1 28.3,-23c0,-28 -21.5,-67.3 -21.5,-118.3c0,-34.8 42.1,-81.6 93.5,-56.6V210.6z"/>
|
||||
</group>
|
||||
<path android:fillColor="#5592C8" android:fillType="evenOdd" android:pathData="M384.2,546.8c-2,5.8 -2.8,12.6 -3.1,18.3c0,0.1 0,0.3 0,0.4v117.3c0,10.2 -8.3,18.5 -18.5,18.5H41.4c-10.2,0 -18.5,-8.3 -18.5,-18.5V565.4c0,-0.1 0,-0.3 0,-0.4c-0.3,-5.6 -1.1,-12.3 -3.1,-18.1C15.2,533.7 0,528.4 0,528.4l1,-7.2H403l1,7.2C404,528.4 388.7,533.6 384.2,546.8z"/>
|
||||
<path android:fillColor="#88BCE8" android:fillType="evenOdd" android:pathData="M381,612.6h-125c-7.8,0 -14.2,-6.4 -14.2,-14.2c0,-7.9 6.4,-14.2 14.2,-14.2h125V612.6z"/>
|
||||
<path android:fillColor="#88BCE8" android:fillType="evenOdd" android:pathData="M22.9,584.2l125,0c7.8,0 14.2,6.4 14.2,14.2c0,7.9 -6.4,14.2 -14.2,14.2l-125,0L22.9,584.2z"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/thumb_dashlane.xml
Normal file
9
app/src/main/res/drawable/thumb_dashlane.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:viewportWidth="128"
|
||||
android:viewportHeight="128"
|
||||
android:width="128dp"
|
||||
android:height="128dp">
|
||||
<path
|
||||
android:pathData="M84.29 53.81A10.62 10.62 0 0 1 80 45.23a21.44 21.44 0 0 1 1 -4.46c0.19 -0.66 0.23 -1 1 -1.14 3.65 -0.75 5.25 -0.63 5.56 -1.07a13.17 13.17 0 0 0 1.38 -3.85l-28.2 -9s1.78 4.58 2.71 5l12.82 5.7S69.6 37.83 66 38.93l-0.86 0.27a12.17 12.17 0 0 0 3.56 3.67c2.38 -0.69 6.76 -1.81 6.76 -1.81A36.94 36.94 0 0 1 42.69 61.18c-0.63 0 -3.27 0 -4.92 0.1 -1.44 0.13 -2.13 1.31 -0.72 1.94a10.69 10.69 0 0 1 5.17 6.27c0.51 1.65 -0.39 2.64 -1.52 3.54 -2.49 1.92 -8.83 6.66 -15.07 11.3 -0.73 -1.38 -1.41 -2.78 -2 -4.18 -5.62 -12.71 -8.35 -30.36 -8.35 -54V26L63.93 10.34 112.62 26v0.22a231.3 231.3 0 0 1 -1.11 23.55l-0.07 0.62h8l0 -0.51a236.47 236.47 0 0 0 1.09 -23.66v-6L63.93 2 7.3 20.18v6c0 24.74 3 43.44 9 57.19 0.86 1.94 1.82 3.87 2.86 5.76l-8.75 6.49c1.13 2 2.42 3.87 2.42 3.87L44 77.24A101.06 101.06 0 0 1 100.63 60h9.45a88 88 0 0 1 -5.82 20.16A68.1 68.1 0 0 1 92.93 97.79 72.62 72.62 0 0 1 80 109.27a67.73 67.73 0 0 1 -16 8.4l-0.06 0 -0.15 0a68.06 68.06 0 0 1 -15.93 -8.38A73.34 73.34 0 0 1 34.92 97.78c-1.19 -1.35 -2.38 -2.82 -3.63 -4.51L31 92.83 24.5 97.46l0.34 0.46c1.42 1.91 2.77 3.59 4.13 5.12A81.27 81.27 0 0 0 43.3 115.78a74.81 74.81 0 0 0 18 9.39c0.06 0 1.47 0.51 2.18 0.71l0.37 0.09 0.12 0 0.12 0 0.38 -0.09c0.7 -0.2 2.11 -0.69 2.17 -0.71a74.65 74.65 0 0 0 17.93 -9.38 81 81 0 0 0 14.35 -12.73 76.17 76.17 0 0 0 12.65 -19.69A96.83 96.83 0 0 0 118.14 60h6.77l0.72 -4.53h-25C90 55.26 86.88 55.66 84.29 53.81Z"
|
||||
android:fillColor="#007C97" />
|
||||
</vector>
|
11
app/src/main/res/drawable/thumb_digidentity.xml
Normal file
11
app/src/main/res/drawable/thumb_digidentity.xml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<vector android:height="128dp" android:viewportHeight="512"
|
||||
android:viewportWidth="512" android:width="128dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000"
|
||||
android:pathData="M213,296l-96,95zM256,256h0.1"
|
||||
android:strokeColor="#00e864" android:strokeLineCap="round"
|
||||
android:strokeLineJoin="round" android:strokeWidth="25"/>
|
||||
<path android:fillColor="#FF000000"
|
||||
android:pathData="M256,63v135m0,116v135M63,256h135m116,0h135M119,119l96,96m82,82l96,96m0,-274l-96,96"
|
||||
android:strokeColor="#000" android:strokeLineCap="round"
|
||||
android:strokeLineJoin="round" android:strokeWidth="25"/>
|
||||
</vector>
|
15
app/src/main/res/drawable/thumb_docusign.xml
Normal file
15
app/src/main/res/drawable/thumb_docusign.xml
Normal file
|
@ -0,0 +1,15 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="117dp"
|
||||
android:height="33dp"
|
||||
android:viewportWidth="117"
|
||||
android:viewportHeight="33">
|
||||
<path
|
||||
android:pathData="M0,22.93h6c5,0 9.43,-2.92 9.43,-8.34 0,-6.13 -4.52,-8.43 -9.93,-8.43L0,6.16v16.77zM3.69,9.57h2.19c3.12,0 5.76,1.54 5.76,4.84 0,3.81 -2.58,5.12 -6,5.12L3.69,19.53L3.69,9.57zM16.28,17.17c0,3.68 2.84,6 6.39,6s6.4,-2.37 6.4,-6 -2.84,-6 -6.4,-6c-3.56,0 -6.39,2.37 -6.39,6m3.55,0a2.69,2.69 0,0 1,2.46 -2.91h0.38a2.69,2.69 0,0 1,2.84 2.91,2.7 2.7,0 0,1 -2.84,2.92 2.69,2.69 0,0 1,-2.84 -2.92m20.74,-4.49a5.76,5.76 0,0 0,-4.1 -1.54c-3.56,0 -6.39,2.37 -6.39,6s2.84,6 6.39,6a5.76,5.76 0,0 0,4.1 -1.54l-2.35,-2.47a2.27,2.27 0,0 1,-1.73 0.88,2.69 2.69,0 0,1 -2.84,-2.92 2.69,2.69 0,0 1,2.84 -2.91,2.19 2.19,0 0,1 1.73,0.88l2.35,-2.46m12.13,-1.14h-3.56v5.73c0,1.5 -0.28,2.94 -2.13,2.94 -1.85,0 -1.84,-1.73 -1.84,-3v-5.67h-3.56v6.3c0,3.08 0.66,5.45 4.27,5.45a3.72,3.72 0,0 0,3.36 -1.85v1.56h3.46L52.7,11.39"
|
||||
android:fillColor="#005CB9"/>
|
||||
<path
|
||||
android:pathData="M53.61,21.94h5.63v1.16h-5.63zM61.86,21.94h5.63v1.16h-5.63zM70.12,21.94h5.63v1.16h-5.63zM78.37,21.94L84,21.94v1.16h-5.63zM86.62,21.94h5.63v1.16h-5.63zM94.87,21.94h5.63v1.16h-5.63zM103.12,21.94h5.63v1.16h-5.63zM111.37,21.94L117,21.94v1.16h-5.63z"
|
||||
android:fillColor="#000"/>
|
||||
<path
|
||||
android:pathData="M85.07,20.22c-0.61,-0.61 5.56,-5.54 7.42,-5.29 -0.71,2.14 -6.81,5.9 -7.42,5.29m7.26,2.05a34.7,34.7 0,0 0,3.18 -7.66c0,-1.39 -1.26,-2.12 -2.62,-2.12 -4.47,0 -11.68,7.62 -13.2,7.62 -1.73,0 0.92,-3.65 0.92,-5.08 0,-0.95 -0.85,-1.93 -1.53,-1.93 -1.32,0 -5.49,4 -8.22,4.88a6.14,6.14 0,0 0,0.92 -2.74c0,-4.88 -13.83,-3 -13.83,-5.76 0,-2.46 8.65,-6.7 13.72,-6.7 0.71,0 5.38,0.31 5.38,1.93 0,0.61 -1,0.81 -1,1.42 0,0.61 0.51,0.71 1.12,0.71a1.65,1.65 0,0 0,1.52 -1.83c0,-4.14 -3.6,-5 -6.5,-5 -7.49,0 -16.36,6.5 -16.36,9.45 0,3.86 12.6,3.15 12.6,6.61 0,4.16 -13.51,7.92 -13.51,8.94 0,1.02 0.72,0.92 1.53,0.92 5.49,0 19.91,-9.15 21.13,-10.37 0.1,2.13 -0.8,4.16 -0.8,5.07 0,0.91 0.7,2.15 1.73,2.15s2.54,-1.53 4.78,-2.74c-0.1,0.71 0.51,1.83 1.32,1.83 1.73,0 7,-4.27 8,-5a12.05,12.05 0,0 1,-2.2 5,6.54 6.54,0 0,0 -1.73,-0.22c-2.1,0 -7.9,6.14 -7.9,9 0,1.12 0.61,2.24 1.73,2.24 1.55,0 7.15,-4.61 9.22,-9.31 0.91,0.1 2.39,0.78 2.39,0.06s-1,-1.2 -1.78,-1.4M83,30.46c-0.36,0 -0.58,-0.16 -0.58,-1 0,-2.61 5.44,-6.31 7.33,-6.31 -1.1,2.47 -5.75,7.31 -6.75,7.31m-1.76,-23a1.27,1.27 0,1 1,2.54 0,1.27 1.27,0 0,1 -2.54,0m17,9.85c-0.71,0.92 -2.54,3 -2.54,3.86 0,0.86 0.41,1.32 1,1.32 1.52,0 6.5,-6 8.84,-6 1.73,0 -1.11,6.2 2.65,6.2 1.36,0 5.91,-3 5.91,-4.75 0,-0.31 -0.32,-0.84 -0.73,-0.84 -0.24,0 -3.35,3.76 -4.67,3.76 -1.12,0 0,-2.33 0,-3.86 0,-1.53 -0.25,-2.95 -1.83,-2.95 -2.13,0 -5.19,2.74 -5.89,3.15a2.71,2.71 0,0 0,0.41 -1.32,2.05 2.05,0 0,0 -1.83,-1.73c-0.7,0 -4.46,1.93 -4.46,4.4 0,0.61 2.23,-1.55 3.14,-1.24"
|
||||
android:fillColor="#000"/>
|
||||
</vector>
|
241
app/src/main/res/drawable/thumb_fritz.xml
Normal file
241
app/src/main/res/drawable/thumb_fritz.xml
Normal file
|
@ -0,0 +1,241 @@
|
|||
<vector android:height="128dp" android:viewportHeight="270"
|
||||
android:viewportWidth="270" android:width="128dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000" android:pathData="M210,145l9.5,-17.2c-7.2,-7.5 -19.1,-19.2 -39.1,-37.7c-46.6,-43.2 -49.4,-43 -50.5,-43c-1.2,0 -3.4,-0.8 -49.8,42.9C27.9,139.1 29.7,140.8 29.7,140.8s-1.6,2.7 50.9,51.2c47.1,43.6 48,42.4 49.3,42.4c1.3,0 4.1,0.7 50.6,-43c25.1,-23.6 37.6,-36.2 43.7,-42.9L210,145"/>
|
||||
<path android:fillColor="#FF000000" android:pathData="M210,145l0.5,0.2l9.6,-17.5l-0.3,-0.3c-7.2,-7.5 -19.1,-19.2 -39.1,-37.7c-23.1,-21.4 -35.4,-32.1 -42.1,-37.5c-3.4,-2.7 -5.3,-4.1 -6.5,-4.8c-0.6,-0.4 -1,-0.5 -1.4,-0.7c-0.3,-0.1 -0.6,-0.1 -0.8,-0.1h0l-0.1,0c-0.2,0 -0.5,0 -0.8,0.1c-1.2,0.4 -3.7,1.9 -10.8,7.9c-7.1,6 -18.8,16.5 -38.4,35c-24.4,23 -37,35.6 -43.5,42.5c-3.2,3.4 -5,5.5 -5.9,6.7c-0.5,0.6 -0.7,1 -0.9,1.3c-0.2,0.3 -0.2,0.4 -0.2,0.6c0,0.1 0,0.3 0.2,0.4l0.4,-0.4L29.2,140.5c-0.1,0.1 -0.1,0.2 -0.1,0.3c0,0.2 0.1,0.4 0.2,0.7c0.5,1 2.4,3.7 9.6,11.2c7.2,7.5 19.6,19.7 41.3,39.7c22.3,20.6 34.3,31.2 40.8,36.7c3.3,2.7 5.2,4.2 6.4,4.9c0.6,0.4 1,0.6 1.4,0.7c0.3,0.1 0.6,0.2 0.8,0.2c0.1,0 0.2,0 0.2,0l0.1,0c0.2,0 0.5,0 0.9,-0.1c1.3,-0.4 3.9,-1.9 11.2,-7.9c7.2,-6 19.1,-16.6 38.8,-35.1c25.1,-23.6 37.6,-36.2 43.7,-43l0.6,-0.6l-15,-3.6L210,145l0.5,0.2L210,145l-0.1,0.5l14.1,3.4l0.1,-0.5l-0.4,-0.3c-6.1,6.7 -18.5,19.3 -43.7,42.9c-22.5,21.1 -34.7,31.9 -41.5,37.3c-3.4,2.7 -5.4,4.1 -6.7,4.8c-0.6,0.4 -1,0.5 -1.3,0.6c-0.3,0.1 -0.4,0.1 -0.6,0.1l-0.1,0l-0.2,0c-0.1,0 -0.2,0 -0.5,-0.1c-0.4,-0.2 -1.3,-0.6 -2.8,-1.8c-4.7,-3.5 -16.2,-13.3 -45.4,-40.4C56.2,168.7 43.4,156 36.9,149c-3.3,-3.5 -5,-5.6 -5.9,-6.8c-0.4,-0.6 -0.7,-1 -0.8,-1.2C30.2,140.9 30.2,140.8 30.2,140.8l0,0l-0.2,0L30.2,140.8l0,0l-0.2,0L30.2,140.8h-0.5l0.4,0.2c0.1,-0.1 0.1,-0.2 0.1,-0.2h-0.5l0.4,0.2l0.2,-0.4l-0.3,-0.3l-0.3,0.3L30.2,140.6c0,-0.1 0,-0.2 -0.2,-0.3l-0.3,0.3L30.2,140.6h-0.3l0.3,0.1l0,-0.1h-0.3l0.3,0.1l-0.1,0l0.1,0l0,0l-0.1,0l0.1,0l0,-0.1c0.1,-0.3 0.6,-1 1.9,-2.5c3.9,-4.6 15.3,-16.7 48.3,-47.7c22.4,-21.1 34.5,-31.8 41.1,-37.2c3.3,-2.7 5.3,-4.1 6.5,-4.8c0.6,-0.4 1,-0.5 1.2,-0.6c0.3,-0.1 0.4,-0.1 0.5,-0.1l0.1,0h0c0.1,0 0.2,0 0.5,0.1c0.4,0.1 1.2,0.5 2.8,1.6c4.8,3.3 16.5,13.1 46.9,41.1c20,18.5 31.9,30.2 39.1,37.7l0.4,-0.4l-0.5,-0.2l-9.8,17.8l0.7,0.2L210,145"/>
|
||||
<path android:fillColor="#FFE500" android:pathData="M210,145l8.1,-14.8c-6.1,-6.8 -18.6,-19.4 -43.9,-42.8c-46.3,-42.8 -48.8,-43 -50.5,-43c-1.7,0 -3.3,-0.9 -49.8,42.9C21.8,136.4 23.6,138 23.6,138s-1.6,2.7 50.9,51.2c46.8,43.3 47.9,42.4 49.3,42.4c1.4,0 4.1,0.7 50.6,-43c23.9,-22.5 36.3,-35 42.7,-41.9L210,145"/>
|
||||
<path android:fillColor="#FF000000" android:pathData="M210,145l0.7,0.4l8.1,-14.8l-0.1,-0.9c-6.1,-6.8 -18.6,-19.4 -43.9,-42.8c-23.2,-21.4 -35.4,-32.2 -42,-37.6c-3.3,-2.7 -5.3,-4.1 -6.5,-4.8c-0.6,-0.4 -1.1,-0.6 -1.5,-0.7c-0.4,-0.1 -0.7,-0.1 -1,-0.1l-0.2,0c-0.2,0 -0.6,0 -1,0.2c-0.7,0.2 -1.7,0.7 -3.4,1.9c-5,3.6 -16.5,13.4 -45.8,41c-24.4,23 -37,35.6 -43.5,42.5c-3.3,3.4 -5,5.5 -5.9,6.7c-0.5,0.6 -0.7,1 -0.9,1.3c-0.2,0.3 -0.2,0.5 -0.3,0.8c0,0.2 0.1,0.4 0.2,0.6L23.6,138l-0.7,-0.4c-0.1,0.1 -0.1,0.3 -0.1,0.4c0,0.3 0.1,0.5 0.2,0.8c0.3,0.6 0.9,1.5 2.3,3.2c4.3,5.2 16.1,17.7 48.5,47.7c22.5,20.8 34.4,31.4 40.9,36.8c3.3,2.7 5.2,4.1 6.4,4.9c0.6,0.4 1.1,0.6 1.4,0.7c0.4,0.1 0.7,0.2 0.9,0.2l0.2,0l0.1,0c0.2,0 0.6,0 1,-0.1c0.7,-0.2 1.7,-0.7 3.4,-1.9c5.2,-3.5 17,-13.4 46.6,-41.1c23.9,-22.5 36.3,-35 42.8,-41.9l-0.4,-1.3l-7.1,-1.7L210,145l0.7,0.4L210,145l-0.2,0.7l7.1,1.7l0.2,-0.7l-0.6,-0.5c-6.4,6.9 -18.8,19.4 -42.7,41.9c-22.5,21.1 -34.7,31.9 -41.5,37.3c-3.4,2.7 -5.4,4.1 -6.6,4.8c-0.6,0.3 -1,0.5 -1.3,0.6c-0.3,0.1 -0.4,0.1 -0.5,0.1l-0.1,0l-0.2,0c-0.1,0 -0.2,0 -0.4,-0.1c-0.4,-0.1 -1.2,-0.5 -2.7,-1.7c-4.6,-3.4 -16,-13.1 -45.5,-40.4c-24.7,-22.9 -37.4,-35.5 -43.9,-42.5c-3.3,-3.5 -5,-5.6 -5.8,-6.8c-0.4,-0.6 -0.7,-1 -0.8,-1.2C24.4,138 24.3,138 24.3,138l0,0l-0.4,0.1h0.4l0,-0.1l-0.4,0.1h0.4L23.6,138.1L24.2,138.4c0.1,-0.1 0.1,-0.3 0.1,-0.4L23.6,138L24.2,138.4l-0.1,-1L23.6,138h0.7c0,-0.1 0,-0.4 -0.2,-0.5L23.6,138h0.7L23.8,138l0.5,0.1l0,-0.1L23.8,138l0.5,0.1l-0.2,0l0.2,0.1l0,0l-0.2,0l0.2,0.1c0,0 0.3,-0.6 1.4,-2C29.2,132 40.1,120.2 74.4,87.9c22.3,-21 34.3,-31.7 40.9,-37.2c3.3,-2.7 5.2,-4.1 6.4,-4.8c0.6,-0.3 1,-0.5 1.2,-0.6c0.3,-0.1 0.4,-0.1 0.6,-0.1l0.2,0c0.2,0 0.3,0 0.6,0.1c0.4,0.1 1.2,0.5 2.8,1.6c4.7,3.3 16.3,13 46.6,41.1c25.3,23.4 37.7,36 43.8,42.7l0.6,-0.5l-0.7,-0.4l-8.1,14.8l0.5,1.1L210,145"/>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE500" android:pathData="M106.9,212.7l-5,-6l-5.2,-5.8l-3.5,-3.6c-18.5,-18.5 -56.1,-56.3 -56.5,-56.6c-0.1,-0.1 -0.2,-0.2 -0.2,-0.3v0c0,-0.1 0.1,-0.2 0.1,-0.3c1.6,-1.5 38.4,-37 58.4,-54L126,61l-0.9,-19l-47,41.9C60.9,99 28.1,135 27.8,135.3c-0.8,0.7 -1.3,1.8 -1.3,3c0,1.2 0.5,2.2 1.4,3l0.2,0.2c5.7,5.4 34.6,33 49.3,47.1c5,4.8 6.8,6.3 8.6,7.8l8,6.6L106.9,212.7z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE500" android:pathData="M101.7,206.7L101.7,206.7c-0.1,-0.1 -0.7,-0.8 -5.2,-5.8l-3.5,-3.6l-48.6,-48.7l-7.9,-7.9l-0.2,-0.4l0.2,-0.4c3.9,-3.8 39,-37.5 58.4,-54c0,0 30.2,-24.4 30.8,-24.9c0,-0.1 -0.9,-18 -0.9,-18.6C124.4,42.8 78.2,84 78.2,84C61,99.1 28.2,135.1 27.9,135.4c-0.8,0.7 -1.2,1.8 -1.2,2.9c0,1.1 0.5,2.1 1.3,2.9l0,0l0.2,0.2c5.7,5.4 34.6,33 49.3,47.1c4.9,4.7 6.7,6.2 8.5,7.7l8.1,6.6c0,0 8.9,6.7 11.9,9C104.8,210.4 101.7,206.7 101.7,206.7z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE600" android:pathData="M101.6,206.8L101.6,206.8c0,0 -0.5,-0.5 -5.2,-5.8l-3.5,-3.6l-48.6,-48.7l-7.9,-7.9L36.2,140.3v0c0,-0.1 0.2,-0.5 0.2,-0.5c3.9,-3.8 38.9,-37.4 58.5,-54c0,0 30.2,-24.4 30.7,-24.9c0,-0.1 -0.9,-17.6 -0.9,-18.2c-0.5,0.4 -46.5,41.5 -46.5,41.5c-17.2,15.1 -50,51.1 -50.3,51.4c-0.8,0.7 -1.2,1.7 -1.2,2.8c0,1.1 0.4,2.1 1.3,2.8l0.2,0.2c10.3,9.8 35.8,34.1 49.3,47.1c4.9,4.7 6.7,6.2 8.5,7.7l8.1,6.6c0,0 9.4,7.1 10.9,8.2C103.9,209.6 101.6,206.8 101.6,206.8z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE600" android:pathData="M101.5,206.9l0.1,0.1c-0.2,-0.1 -0.5,-0.6 -5.3,-5.9l-3.5,-3.6l-48.6,-48.7l-7.9,-7.9l-0.3,-0.5v0c0,-0.1 0.2,-0.6 0.2,-0.6c0.4,-0.4 37.8,-36.5 58.5,-54.1c0,0 30.1,-24.3 30.7,-24.8c0,-0.1 -0.9,-17.2 -0.9,-17.8C124.2,43.4 78.4,84.2 78.4,84.2c-16.8,14.8 -49,50 -50.3,51.3c-0.8,0.7 -1.2,1.7 -1.2,2.7c0,1 0.4,2 1.2,2.7l0.2,0.2c10.3,9.8 35.7,34 49.3,47.1c4.9,4.7 6.7,6.2 8.5,7.6l8.1,6.6c0,0 8.3,6.3 9.9,7.5C103.1,208.8 101.5,206.9 101.5,206.9z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE600" android:pathData="M101.4,207l0.2,0.1c-0.2,-0.1 -0.4,-0.4 -5,-5.6l-0.3,-0.3l-3.5,-3.6L44.2,148.9l-7.9,-7.9l-0.3,-0.5l0,0c0,-0.1 0.2,-0.8 0.2,-0.8c0.3,-0.3 37.9,-36.6 58.6,-54.1c0,0 30.1,-24.3 30.6,-24.8c0,-0.1 -0.9,-16.8 -0.9,-17.4c-0.5,0.4 -46,41 -46,41c-16.9,14.9 -49,50 -50.3,51.3c-0.7,0.7 -1.1,1.6 -1.1,2.6c0,1 0.4,1.9 1.2,2.6l0.2,0.2c10.3,9.8 35.7,34 49.3,47.1c4.9,4.7 6.7,6.2 8.5,7.6l8.1,6.6c0,0 6.3,4.8 8.8,6.7C102.4,208.2 101.4,207 101.4,207z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE707" android:pathData="M101.3,207.1L101.3,207.1c-0.4,-0.4 -1.3,-1.5 -4.9,-5.5l-0.3,-0.3l-3.5,-3.6L44.1,149L36.2,141l-0.3,-0.5l0,0c0,-0.1 0.2,-0.9 0.2,-0.9c0.2,-0.3 37.8,-36.5 58.6,-54.2c0,0 30,-24.2 30.6,-24.7c0,-0.1 -0.9,-16.4 -0.9,-17.1c-0.5,0.4 -45.8,40.8 -45.8,40.8c-17,14.9 -49,50 -50.3,51.3c-0.7,0.6 -1.1,1.5 -1.1,2.5c0,0.9 0.4,1.8 1.1,2.5l0.2,0.2c10.3,9.8 35.6,33.9 49.3,47.1c4.9,4.7 6.7,6.2 8.5,7.6l8.1,6.6c0,0 6.5,5 7.8,5.9C101.7,207.6 101.3,207.1 101.3,207.1z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE71C" android:pathData="M101.2,207.2L101.2,207.2l-5.2,-5.8l-3.4,-3.6l-48.6,-48.7l-7.9,-7.9l-0.3,-0.6l0,0c0,-0.2 0.2,-1 0.2,-1c0.2,-0.2 37.4,-36.2 58.6,-54.3c0,0 30,-24.2 30.5,-24.7c0,-0.1 -0.9,-16 -0.9,-16.7c-0.5,0.4 -45.5,40.6 -45.5,40.6C62.2,99 31.7,132.6 28.4,135.9c-0.7,0.6 -1.1,1.5 -1.1,2.4c0,0.9 0.4,1.7 1.1,2.4l0.2,0.2c10.2,9.7 35.5,33.8 49.3,47.1c4.9,4.7 6.7,6.2 8.4,7.6l8.1,6.6c0,0 5.4,4.1 6.8,5.1L101.2,207.2z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE829" android:pathData="M95.9,201.5l-3.4,-3.6l-48.6,-48.7l-7.9,-7.9l-0.4,-0.6l0,0c0,-0.2 0.1,-1.1 0.1,-1.1c0.1,-0.2 37.5,-36.4 58.7,-54.4c0,0 29.9,-24.2 30.5,-24.6c0,-0.1 -0.9,-15.7 -0.9,-16.3c-0.5,0.4 -45.3,40.4 -45.3,40.4c-16.5,14.5 -47,48 -50.3,51.3c-0.6,0.6 -1,1.4 -1,2.3c0,0.9 0.4,1.7 1,2.3l0.2,0.2c10.2,9.7 35.4,33.7 49.3,47.1c4.9,4.7 6.7,6.2 8.4,7.6c0,0 0,0 8.1,6.7c0,0 3.8,2.8 5.7,4.3C99.1,205.1 95.9,201.5 95.9,201.5z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE833" android:pathData="M95.8,201.6l-3.4,-3.6l-48.6,-48.7l-7.9,-7.9l-0.4,-0.6l0,0c0,-0.2 0.1,-1.2 0.1,-1.2c0.1,-0.2 37,-36 58.7,-54.4c0,0 29.9,-24.1 30.4,-24.6c0,-0.1 -0.9,-15.3 -0.9,-15.9c-0.5,0.4 -45,40.1 -45,40.1c-16.4,14.4 -47,48 -50.3,51.3c-0.6,0.6 -1,1.4 -1,2.2c0,0.8 0.3,1.6 1,2.2l0.2,0.2c10.1,9.7 35.3,33.6 49.3,47.1c4.9,4.7 6.7,6.2 8.4,7.6l-0.2,0c0.2,0 1,0.7 7.5,6l0.8,0.7c0,0 3.7,2.8 4.5,3.4C98,204 95.8,201.6 95.8,201.6z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE93C" android:pathData="M95.7,201.6L95.7,201.6l-3.4,-3.6l-48.6,-48.7l-7.9,-7.9l-0.4,-0.7l0,0c0,-0.2 0.1,-1.2 0.1,-1.2C35.5,139.4 72.5,103.4 94.2,85c0,0 29.8,-24.1 30.4,-24.6c0,-0.1 -0.9,-14.9 -0.9,-15.5c-0.5,0.4 -44.8,39.9 -44.8,39.9c-16.4,14.4 -47,48 -50.3,51.3c-0.6,0.5 -0.9,1.3 -0.9,2.1c0,0.8 0.3,1.5 0.9,2.1l0.2,0.2c10.2,9.7 35.3,33.6 49.3,47.1c4.8,4.7 6.7,6.2 8.4,7.6l0,0l0,0c0.5,0.3 1.9,1.4 7.3,5.9l0.8,0.7c0,0 2,1.5 3.3,2.5C97.6,203.8 95.7,201.6 95.7,201.6z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE944" android:pathData="M95.6,201.7L95.6,201.7l-3.4,-3.5l-48.6,-48.7l-7.9,-7.9L35.2,140.9l0,-0.1l0.1,-1.3c0.1,-0.1 36.6,-35.8 58.8,-54.6c0,0 29.8,-24 30.3,-24.5c0,-0.1 -0.9,-14.5 -0.9,-15.1C123.1,45.7 79.1,85 79.1,85C62.7,99.4 32.1,133 28.8,136.3c-0.6,0.5 -0.9,1.2 -0.9,2c0,0.7 0.3,1.4 0.9,2l0.2,0.2C39.2,150 64.3,174 78.3,187.5c4.8,4.7 6.6,6.2 8.4,7.6c0.5,0.4 8.1,6.6 8.1,6.6c0,0 1.1,0.8 2,1.5C96.2,202.5 95.6,201.7 95.6,201.7z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEA4B" android:pathData="M95.4,201.8L95.4,201.8l-3.4,-3.5l-48.6,-48.7l-7.9,-7.9l-0.4,-0.7l0,-0.2l0.1,-1.3c0.2,-0.5 37.7,-36.8 58.9,-54.7c0,0 29.7,-24 30.3,-24.5c0,-0.1 -0.9,-14.1 -0.9,-14.7C123,46 79.2,85.1 79.2,85.1C62.8,99.5 32.2,133.1 28.9,136.4c-0.5,0.5 -0.8,1.2 -0.8,1.9c0,0.7 0.3,1.4 0.8,1.8l0.2,0.2c10.2,9.7 35.3,33.6 49.3,47.1c4.8,4.7 6.6,6.1 8.4,7.6l8.2,6.7c0,0 0.2,0.1 0.8,0.6C95.7,202.1 95.4,201.8 95.4,201.8z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEA52" android:pathData="M91.9,198.4l-48.6,-48.7l-7.9,-7.9L35,141l-0.1,-0.3l0.1,-1.3C35.2,139 72.7,102.6 93.9,84.6c0,0 29.7,-23.9 30.2,-24.4c0,-0.1 -0.9,-13.7 -0.9,-14.3c-0.5,0.4 -44,39.3 -44,39.3c-16.4,14.4 -46.9,48 -50.2,51.3c-0.5,0.5 -0.8,1.1 -0.8,1.7c0,0.7 0.3,1.3 0.8,1.7l0.2,0.2c10.1,9.7 35.3,33.6 49.3,47.1c4.8,4.7 6.6,6.1 8.4,7.6c0,0 6.3,5.2 7.4,6.1C93.3,199.9 91.9,198.4 91.9,198.4z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEB58" android:pathData="M91.8,198.5L43.2,149.8l-7.9,-7.9l-0.5,-0.8l-0.1,-0.3c0,-0.1 0.1,-1.3 0.1,-1.3c0.2,-0.5 37.7,-36.9 59,-54.9c0,0 29.6,-23.9 30.2,-24.4c0,-0.1 -0.9,-13.3 -0.9,-13.9c-0.5,0.4 -43.8,39.1 -43.8,39.1C63.1,99.6 32.5,133.3 29.2,136.6c-0.5,0.4 -0.8,1 -0.8,1.6c0,0.6 0.3,1.2 0.7,1.6l0.2,0.2c10.1,9.6 35.2,33.5 49.3,47.1c4.8,4.7 6.6,6.1 8.3,7.5c0,0 5.2,4.2 5.6,4.5C92.2,198.9 91.8,198.5 91.8,198.5z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEB5E" android:pathData="M43.1,149.9L35.2,142l-0.5,-0.8l-0.1,-0.2l0,-0.2l0.1,-1.3c0.2,-0.5 37.7,-36.9 59,-55c0,0 29.6,-23.9 30.1,-24.3c0,-0.1 -0.9,-12.9 -0.9,-13.5C122.5,47 79.5,85.4 79.5,85.4C63.2,99.7 32.6,133.4 29.3,136.7c-0.5,0.4 -0.7,1 -0.7,1.5c0,0.6 0.2,1.1 0.7,1.5l0.2,0.2c10.1,9.6 35.1,33.4 49.3,47.1c4.8,4.7 6.6,6.1 8.3,7.5c0,0 1.9,1.5 3.5,2.8C86.4,193.2 70.5,177.3 43.1,149.9z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEC64" android:pathData="M35.1,142.1l-0.5,-0.8L34.5,141l0,-0.2l0.1,-1.4c0.2,-0.5 37.7,-37 59.1,-55.1c0,0 29.5,-23.8 30.1,-24.3c0,-0.1 -0.9,-12.5 -0.9,-13.1c-0.5,0.4 -43.3,38.6 -43.3,38.6c-16.3,14.3 -46.9,48 -50.2,51.3c-0.4,0.4 -0.7,0.9 -0.7,1.4c0,0.5 0.2,1 0.6,1.4l0.2,0.2c10.1,9.6 35.2,33.5 49.3,47.1c4.8,4.7 6.6,6.1 8.3,7.5c0,0 0.6,0.5 1.2,1C84.8,191.9 35.1,142.1 35.1,142.1z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEC64" android:pathData="M35,142.2L35,142.2l-0.6,-0.8L34.3,141c0,-0.1 0,-0.2 0,-0.2l0.1,-1.4c0.2,-0.5 37.7,-37 59.2,-55.2c0,0 29.5,-23.8 30,-24.2c0,-0.1 -0.9,-12.1 -0.9,-12.7c-0.5,0.4 -43,38.4 -43,38.4c-16.2,14.2 -46.9,48 -50.2,51.3c-0.4,0.4 -0.6,0.9 -0.6,1.3c0,0.5 0.2,1 0.6,1.3l0.2,0.2c10.1,9.6 35.2,33.5 49.3,47.1c3.9,3.8 5.8,5.4 7.3,6.7C82.4,189.7 35,142.2 35,142.2z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEC6A" android:pathData="M34.9,142.3L34.9,142.3l-0.6,-0.9L34.2,141.1l0,-0.2l0.1,-1.4c0.2,-0.5 37.7,-37.1 59.2,-55.3c0,0 29.4,-23.7 30,-24.2c0,-0.1 -0.9,-11.7 -0.9,-12.3C122.1,48 79.8,85.7 79.8,85.7C63.6,100 32.9,133.7 29.6,137c-0.4,0.3 -0.6,0.8 -0.6,1.2c0,0.4 0.2,0.9 0.6,1.2l0.2,0.2c7.9,7.5 34.6,33 49.3,47.1c1.6,1.6 2.9,2.8 3.9,3.7C77.5,184.9 34.9,142.3 34.9,142.3z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEC6A" android:pathData="M34.8,142.4L34.8,142.4L34.2,141.5l-0.1,-0.4l-0.1,-0.3l0.1,-1.4c0.1,-0.5 37.7,-37.2 59.3,-55.4c0,0 29.4,-23.7 29.9,-24.2c0,-0.1 -0.9,-11.3 -0.9,-11.9c-0.5,0.4 -42.5,38 -42.5,38c-16.2,14.2 -46.9,48 -50.2,51.3c-0.3,0.3 -0.5,0.7 -0.5,1.1c0,0.4 0.2,0.8 0.5,1.1l0.2,0.2c7,6.7 29.2,27.8 44.3,42.3C62.4,170 34.8,142.4 34.8,142.4z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFED75" android:pathData="M34.7,142.5L34.7,142.5l-0.6,-0.9l-0.2,-0.4l-0.1,-0.3l0.1,-1.5c0.1,-0.5 37.7,-37.2 59.3,-55.5c0,0 29.3,-23.6 29.9,-24.1c0,-0.1 -0.9,-10.9 -0.9,-11.5C121.8,48.6 80,86 80,86C63.8,100.2 33.1,133.9 29.8,137.2c-0.3,0.3 -0.5,0.7 -0.5,1c0,0.4 0.2,0.7 0.5,1c0,0 22.8,21.8 35.7,34.1C55,162.8 34.7,142.5 34.7,142.5z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEE7B" android:pathData="M34.6,142.6l-0.1,-0.1l-0.5,-0.8l-0.2,-0.4l-0.1,-0.4l0.1,-1.5c0.1,-0.5 37.7,-37.3 59.4,-55.6c0,0 29.3,-23.6 29.8,-24.1c0,-0.1 -0.9,-10.6 -0.9,-11.1c-0.5,0.4 -42,37.5 -42,37.5C63.9,100.3 33.2,134 29.9,137.3c-0.3,0.3 -0.5,0.6 -0.5,0.9c0,0.3 0.1,0.6 0.4,0.9c0,0 17.9,17.1 27,25.7C47.9,155.9 34.6,142.6 34.6,142.6z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEE80" android:pathData="M34.5,142.7l-0.1,-0.1l-0.5,-0.8l-0.2,-0.4l-0.1,-0.4l0.1,-1.5c0.1,-0.5 37.7,-37.4 59.4,-55.7c0,0 29.2,-23.6 29.8,-24c0,-0.1 -0.9,-10.2 -0.9,-10.8C121.5,49.3 80.2,86.2 80.2,86.2C64.1,100.3 33.3,134.1 30,137.4c-0.3,0.2 -0.4,0.5 -0.4,0.8c0,0.3 0.1,0.6 0.4,0.8c0,0 11.8,11.2 18.2,17.4C41.7,149.9 34.5,142.7 34.5,142.7z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFEF85" android:pathData="M34.4,142.8l-0.1,-0.2l0,0c-0.1,-0.1 -0.2,-0.3 -0.6,-0.9l-0.2,-0.5l-0.1,-0.4l0.1,-1.5c0.1,-0.5 37.8,-37.4 59.5,-55.8c0,0 29.2,-23.5 29.7,-24c0,-0.1 -0.9,-9.8 -0.9,-10.4c-0.5,0.4 -41.6,37.1 -41.6,37.1C64.2,100.4 33.4,134.2 30.1,137.5c-0.2,0.2 -0.4,0.5 -0.4,0.7c0,0.2 0.1,0.5 0.3,0.7c0,0 6.8,6.4 9.5,9C37.1,145.5 34.4,142.8 34.4,142.8z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF08A" android:pathData="M34.3,142.9L34.3,142.9L34.3,142.9zM33.6,141.9l-0.2,-0.5l-0.1,-0.5v0l0.1,-1.6c0.1,-0.5 37.8,-37.5 59.5,-55.9c0,0 29.1,-23.5 29.7,-23.9c0,-0.1 -0.9,-9.4 -0.9,-10C121.2,49.9 80.4,86.4 80.4,86.4C64.3,100.5 33.5,134.3 30.2,137.6c-0.2,0.2 -0.3,0.4 -0.3,0.6c0,0.2 0.1,0.4 0.3,0.6c0,0 2.5,2.4 3.8,3.6C33.8,142.2 33.6,141.9 33.6,141.9z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF08F" android:pathData="M33.5,142L33.5,142L33.5,142zM33.2,141.4L33.1,141v0l0.1,-1.6c0.1,-0.5 37.8,-37.6 59.6,-56c0,0 29.1,-23.4 29.6,-23.9c0,-0.1 -0.9,-9 -0.9,-9.6c-0.5,0.4 -41.1,36.7 -41.1,36.7c-16,14.1 -46.8,47.9 -50.2,51.2c-0.2,0.2 -0.3,0.4 -0.3,0.5c0,0.2 0.1,0.3 0.2,0.5c0,0 2.2,2.1 3.1,2.9L33.2,141.4z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF194" android:pathData="M33,141c0,-0.1 0.1,-1.7 0.1,-1.7c0.1,-0.5 37.8,-37.6 59.6,-56.1c0,0 29,-23.4 29.6,-23.9c0,-0.1 -0.9,-8.6 -0.9,-9.2c-0.5,0.4 -40.8,36.4 -40.8,36.4c-16,14 -46.8,47.9 -50.2,51.2L30.2,138.2l0.2,0.4c0,0 2.3,2.2 2.7,2.5L33,141z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF199" android:pathData="M32.9,139.3c0.1,-0.5 37.8,-37.7 59.7,-56.2c0.3,-0.2 28.5,-23 29.5,-23.8c0,-0.1 -0.1,-2 -0.1,-2s-0.8,-6.2 -0.8,-6.8c-0.5,0.4 -40.6,36.2 -40.6,36.2c-12.4,10.9 -34,34 -44.4,45.1l-5.8,6.1l0,0c0,0 -0.1,0.2 -0.2,0.3l0.1,0.3c0,0 1.7,1.6 2.4,2.3C32.9,140.4 32.9,139.3 32.9,139.3z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF29E" android:pathData="M32.8,139.3L32.8,139.3c0.1,-0.5 37.8,-37.8 59.7,-56.3c0,0 28.9,-23.3 29.5,-23.8c0,-0.1 -0.1,-2 -0.1,-2s-0.7,-5.1 -0.8,-6.4c-0.5,0.4 -40.3,36 -40.3,36c-12.5,10.9 -34,34 -44.3,45.1L30.6,138l0,-0.1c0,0 -0.1,0.2 -0.2,0.4l0.1,0.2l-0.1,0c0.2,0.1 0.7,0.6 2.2,2C32.7,140.1 32.8,139.3 32.8,139.3z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF2A3" android:pathData="M32.6,139.3L32.6,139.3c0.1,-0.5 37.9,-37.9 59.8,-56.5c0,0 28.8,-23.2 29.4,-23.7c0,-0.1 -0.1,-1.9 -0.1,-1.9s-0.7,-4.9 -0.8,-6.1c-0.5,0.4 -40.1,35.8 -40.1,35.8c-12.4,10.9 -34,34 -44.3,45c0,0 0,0 -5.8,6.2l0,0l0,0.1l0.1,0.2l-0.1,-0.1c0.2,0.1 0.7,0.6 2,1.8C32.6,139.8 32.6,139.3 32.6,139.3z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF3A8" android:pathData="M32.5,139.3L32.5,139.3c0.1,-0.5 37.9,-38 59.8,-56.6c0,0 0,0 16,-13.2c0,0 13.3,-10.4 13.4,-10.5c0,-0.1 -0.8,-6.4 -0.8,-7.6C120.4,51.8 81,87 81,87C68.5,98 47,121 36.7,132l0,0c-0.1,0.1 -0.3,0.4 -0.9,0.9l-5,5.3l0.1,0.1c0.2,0.2 0.7,0.6 1.6,1.5C32.5,139.6 32.5,139.3 32.5,139.3z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF4AC" android:pathData="M32.3,139.3l0,-0.1c0.1,-0.4 37.9,-37.9 59.9,-56.5l0,0c0.1,-0.1 0.2,-0.2 0.5,-0.4c0,0 28.7,-23.2 28.8,-23.3c0,-0.1 -0.8,-6.7 -0.8,-7.3c-0.5,0.4 -39.6,35.4 -39.6,35.4c-12.4,10.9 -34,33.9 -44.3,45L36,133c-0.1,0.1 -4.5,4.7 -4.9,5.2c0.1,0.2 0.9,0.9 1.3,1.3L32.3,139.3z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF4B1" android:pathData="M81.2,87.3C68.7,98.2 47.2,121.2 36.9,132.2l-0.8,0.8c0,0 -4.3,4.6 -4.8,5.1c0.1,0.1 0.7,0.7 1,0.9c0.1,-0.5 38,-38 59.9,-56.6l0.5,-0.4c0,0 28.1,-22.7 28.8,-23.2c0,-0.1 -0.2,-1.7 -0.2,-1.7c-0.2,-1.8 -0.5,-4.4 -0.6,-5.2C120.2,52.4 81.2,87.3 81.2,87.3z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF5B5" android:pathData="M81.3,87.4c-12.4,10.9 -33.9,33.9 -44.3,45c0,0 -5,5.3 -5.6,5.9c0.1,0.1 0.6,0.6 0.8,0.7c2.5,-2.7 38.6,-38.5 59.8,-56.5l0.5,-0.4c0,0 27.9,-22.5 28.7,-23.2c0,-0.1 -0.2,-1.6 -0.2,-1.6s-0.4,-3.9 -0.5,-4.9C120.1,52.7 81.3,87.4 81.3,87.4z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF5B9" android:pathData="M81.3,87.5C68.9,98.4 47.4,121.4 37.1,132.4c0,0 -5.3,5.6 -5.5,5.8c0.1,0.1 0.4,0.4 0.6,0.5c3.1,-3.3 38.8,-38.7 59.7,-56.4l0.5,-0.4c0,0 28.5,-23 28.7,-23.1c0,-0.1 -0.2,-1.5 -0.2,-1.5c0,0 -0.4,-3.6 -0.5,-4.6C119.9,53 81.3,87.5 81.3,87.5z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF6BE" android:pathData="M81.4,87.6C69,98.5 47.6,121.5 37.2,132.5c0,0 -5.2,5.5 -5.4,5.7c0.1,0.1 0.3,0.3 0.4,0.3c3.5,-3.8 38.7,-38.6 59.6,-56.4l0.5,-0.4c0,0 0,0 16,-12.9c0,0 12.5,-10.1 12.6,-10.2c0,-0.1 -0.2,-1.5 -0.2,-1.5c0,0 -0.4,-3.9 -0.5,-4.4C119.8,53.3 81.4,87.6 81.4,87.6z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF6C2" android:pathData="M81.5,87.7C69.1,98.6 47.7,121.6 37.3,132.6c0,0 0,0 -2.8,2.9c0,0 -2.3,2.5 -2.5,2.7l0.1,0.1c3.9,-4.2 38.8,-38.6 59.5,-56.3l0.5,-0.4l0,0.1c0.1,-0.1 0.6,-0.5 2.8,-2.3c0,0 25.7,-20.7 25.8,-20.8c0,-0.1 -0.2,-1.4 -0.2,-1.4c0,0 -0.4,-3.7 -0.5,-4.1C119.7,53.6 81.5,87.7 81.5,87.7z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFF7C6" android:pathData="M81.6,87.8C69.2,98.7 47.8,121.7 37.4,132.7v0c0,0.1 -0.2,0.2 -0.5,0.6c0,0 -0.9,1 -1.6,1.7c10,-10 38.4,-37.8 56.3,-53l0.5,-0.4l0,0.1c0.1,-0.2 0.4,-0.5 2.8,-2.4c0,0 25.6,-20.7 25.7,-20.8c0,-0.1 -0.1,-1.3 -0.1,-1.3c0,0 -0.4,-3.5 -0.4,-3.8C119.6,53.9 81.6,87.8 81.6,87.8z"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE500" android:pathData="M140.5,64.5l5,6l5.2,5.8L154.2,80c18.5,18.5 56.1,56.3 56.5,56.6c0.1,0.1 0.2,0.2 0.2,0.3v0c0,0.1 -0.1,0.2 -0.1,0.3c-1.6,1.5 -38.4,37 -58.4,54l-30.8,24.9l0.9,19l47,-41.9c17.2,-15.1 50,-51.1 50.3,-51.4c0.8,-0.7 1.3,-1.8 1.3,-3c0,-1.2 -0.5,-2.2 -1.3,-3l-0.2,-0.2c-5.7,-5.4 -34.6,-33 -49.3,-47.1c-5,-4.8 -6.8,-6.3 -8.6,-7.8l-8,-6.6L140.5,64.5"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE500" android:pathData="M217.1,143.7c-2.6,2.8 -7.4,7.9 -13.1,14c4.5,-4.6 7.9,-8.2 10.4,-10.9c0.4,-0.5 0.8,-0.9 1.2,-1.3c0.5,-0.6 1,-1.1 1.5,-1.6L217.1,143.7M142.4,66.3c1.1,1.3 3.4,4.1 3.4,4.1l-0.1,-0.1c0.1,0.1 0.6,0.6 5.3,5.9l3.5,3.6l48.6,48.7l7.9,7.9l0.2,0.4v0c0,0.1 -0.2,0.5 -0.2,0.5c-4,3.8 -38.9,37.4 -58.5,54c0,0 -30.2,24.4 -30.7,24.9c0,0.1 0.4,7.6 0.6,13c0.1,0.1 0.2,0.2 0.3,0.3c-0.3,-5.1 -0.7,-13 -0.7,-13.1c0.6,-0.5 30.6,-24.8 30.6,-24.8c20.6,-17.5 58.2,-53.8 58.5,-54.1c0,0 0.2,-0.6 0.2,-0.8l0,0l-0.3,-0.5l-7.9,-7.9l-48.6,-48.7L151.2,76l-0.3,-0.3c-4.6,-5.2 -4.9,-5.5 -5,-5.6l0.2,0.1c0,0 -1,-1.2 -1.7,-2.1c2.5,1.9 8.8,6.7 8.8,6.7l8.1,6.6c1.8,1.4 3.6,2.9 8.5,7.6c12.9,12.5 36.7,35.1 47.8,45.7l0,-0.4c-11.2,-10.7 -34.8,-33.1 -47.6,-45.5c-4.9,-4.7 -6.7,-6.2 -8.5,-7.7l-8.1,-6.6C153.2,74.5 143.8,67.4 142.4,66.3"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE400" android:pathData="M217.1,143.2c-3.9,4.2 -12.8,13.8 -22.5,23.9c3.6,-3.5 6.7,-6.6 9.4,-9.4c5.7,-6.1 10.5,-11.2 13.1,-14L217.1,143.2M144.2,68.1c0.8,0.9 1.7,2.1 1.7,2.1l-0.2,-0.1c0.2,0.1 0.4,0.4 5,5.6L151.2,76l3.5,3.6L203.2,128.3l7.9,7.9l0.3,0.5l0,0c0,0.1 -0.2,0.8 -0.2,0.8c-0.3,0.3 -37.9,36.6 -58.5,54.1c0,0 -30.1,24.3 -30.6,24.8c0,0.1 0.4,8 0.7,13.1c0.1,0.1 0.2,0.2 0.3,0.3c-0.3,-4.9 -0.7,-13.2 -0.7,-13.3c0.6,-0.5 30.5,-24.7 30.5,-24.7c21.2,-18 58.5,-54 58.6,-54.3c0,0 0.2,-0.8 0.2,-1l0,0l-0.3,-0.6l-7.9,-7.9l-48.6,-48.7l-3.4,-3.6L146.2,70l0,0l-0.1,-0.1c1.4,1 6.8,5.1 6.8,5.1l8.1,6.6c1.8,1.4 3.6,2.9 8.4,7.6c13.3,12.8 37,35.5 48,45.9l0,-0.4c-11.1,-10.6 -34.8,-33.2 -47.8,-45.7c-4.9,-4.7 -6.7,-6.2 -8.5,-7.6l-8.1,-6.6C153.1,74.8 146.8,70 144.2,68.1"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE400" android:pathData="M158.9,201c-5.4,4.8 -12.2,10.9 -18.4,16.4C145.2,213.3 151.2,208 158.9,201M217.1,142.8c-4.7,5 -17.5,18.9 -30,31.6c2.7,-2.6 5.2,-5 7.5,-7.3c9.7,-10.1 18.6,-19.7 22.5,-23.9L217.1,142.8M146.1,69.9L146.2,70l0,0l5.2,5.8l3.4,3.6l48.6,48.7l7.9,7.9l0.3,0.6l0,0c0,0.2 -0.2,1 -0.2,1c-0.2,0.2 -37.4,36.2 -58.6,54.3c0,0 -30,24.2 -30.5,24.7c0,0.1 0.5,8.4 0.7,13.3c0.1,0.1 0.3,0.2 0.3,0.3c-0.2,-4.5 -0.7,-13.3 -0.7,-13.4c0.6,-0.5 30.4,-24.6 30.4,-24.6c21.7,-18.4 58.6,-54.3 58.7,-54.4c0,0 0.1,-0.9 0.1,-1.2l0,0l-0.4,-0.6l-7.9,-7.9l-48.6,-48.7l-3.4,-3.6c0,0 -2.2,-2.4 -3.4,-3.8c0.8,0.6 4.4,3.4 4.5,3.4l0.8,0.7c6.5,5.3 7.3,6 7.5,6l-0.2,0c1.8,1.4 3.6,2.9 8.4,7.6c13.5,13.1 37.4,35.8 48.1,46l0,-0.4c-10.9,-10.4 -34.7,-33 -48,-45.9c-4.9,-4.7 -6.7,-6.2 -8.4,-7.6l-8.1,-6.6C152.9,75 147.5,70.9 146.1,69.9"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFE100" android:pathData="M170,190.7c-0.6,0.5 -1.2,1 -1.7,1.5c0,0 -21.6,19.3 -34.8,31c1.9,-1.6 4.2,-3.5 7,-5.8c6.2,-5.6 13.1,-11.7 18.4,-16.4C162.3,197.9 166,194.4 170,190.7M217.2,142.3c-5.7,6 -24.9,27 -39.9,41.5c3.6,-3.4 6.9,-6.6 9.9,-9.5c12.5,-12.7 25.3,-26.6 30,-31.6L217.2,142.3M148.2,71.9c1.2,1.3 3.4,3.8 3.4,3.8l3.4,3.6l48.6,48.7l7.9,7.9l0.4,0.6l0,0c0,0.2 -0.1,1.2 -0.1,1.2c-0.1,0.2 -37,36 -58.7,54.4c0,0 -29.9,24.1 -30.4,24.6c0,0.1 0.5,8.9 0.7,13.4c0.1,0.1 0.1,0.1 0.1,0.1l0.2,0c0,0 0,0 0,0c-0.2,-4 -0.8,-13.2 -0.8,-13.3c0.6,-0.5 30.3,-24.5 30.3,-24.5c22.2,-18.9 58.8,-54.5 58.8,-54.6l0.1,-1.3l0,-0.1l-0.4,-0.7l-7.9,-7.9L155.3,79l-3.4,-3.6l0,0c0,0 -0.7,-0.8 -1.4,-1.5c0.9,0.7 2,1.5 2,1.5c0,0 7.7,6.3 8.1,6.6c1.7,1.4 3.6,2.9 8.4,7.6c13.6,13.1 37.6,36 48.3,46.2l0,-0.4c-10.8,-10.3 -34.6,-33 -48.1,-46c-4.9,-4.7 -6.7,-6.2 -8.4,-7.6l0.2,0c-0.2,0 -1,-0.7 -7.5,-6l-0.8,-0.7C152.7,75.2 149,72.5 148.2,71.9"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFDE00" android:pathData="M217.2,141.9c-6.6,6.9 -33.9,36.8 -49.1,50.1c0,0 -26.4,23.5 -38.3,34.2c1.1,-0.8 2.3,-1.8 3.7,-2.9c13.1,-11.7 34.8,-31 34.8,-31c0.6,-0.5 1.1,-1 1.7,-1.5c1.1,-1 2.2,-2.1 3.3,-3.1c1.3,-1.3 2.6,-2.5 3.9,-3.7c15,-14.6 34.2,-35.5 39.9,-41.5L217.2,141.9M150.5,73.9c0.7,0.7 1.4,1.5 1.4,1.5l0,0l3.4,3.6l48.6,48.7l7.9,7.9l0.4,0.7l0,0.1l-0.1,1.3c-0.1,0.1 -36.6,35.8 -58.8,54.6c0,0 -29.8,24 -30.3,24.5c0,0.1 0.6,9.3 0.8,13.3c0.1,0 0.2,0 0.3,-0.1c-0.2,-3.5 -0.8,-13 -0.8,-13.1c0.6,-0.5 30.2,-24.4 30.2,-24.4c21.2,-18 58.8,-54.4 58.9,-54.8l0.1,-1.3l-0.1,-0.3l-0.5,-0.7l-7.9,-7.9l-48.6,-48.7c0,0 -1.4,-1.5 -2.4,-2.5c1.1,0.9 7.4,6.1 7.4,6.1c1.7,1.4 3.5,2.9 8.4,7.6c13.7,13.2 37.9,36.3 48.5,46.4l0,-0.4c-10.7,-10.2 -34.8,-33.1 -48.3,-46.2c-4.8,-4.7 -6.6,-6.2 -8.4,-7.6c-0.5,-0.4 -8.1,-6.6 -8.1,-6.6C152.5,75.5 151.4,74.6 150.5,73.9"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFDA00" android:pathData="M217.2,141.4c-6.1,6.5 -34,36.9 -49.3,50.3c0,0 -30.8,27.5 -40.6,36.2c0.7,-0.5 1.5,-1.1 2.5,-1.8c11.9,-10.6 38.3,-34.2 38.3,-34.2c15.2,-13.3 42.5,-43.2 49.1,-50.1L217.2,141.4M153,76.3c1,1 2.4,2.5 2.4,2.5l48.6,48.7l7.9,7.9l0.5,0.7l0.1,0.3l-0.1,1.3c-0.2,0.5 -37.7,36.8 -58.9,54.8c0,0 -29.7,23.9 -30.2,24.4c0,0.1 0.6,9.6 0.8,13.1c0.1,0 0.2,-0.1 0.3,-0.2c-0.2,-2.8 -0.8,-12.7 -0.8,-12.8c0.6,-0.5 30.1,-24.3 30.1,-24.3c21.3,-18.1 58.9,-54.6 59,-55l0.1,-1.3l0,-0.2l-0.1,-0.2l-0.5,-0.8l-7.9,-7.9c-27.4,-27.5 -43.3,-43.4 -47.4,-47.5c1.6,1.3 3.5,2.8 3.5,2.8c1.7,1.4 3.5,2.9 8.3,7.5c13.9,13.4 38.3,36.7 48.7,46.6l0,-0.4c-10.6,-10.1 -34.8,-33.2 -48.5,-46.4c-4.8,-4.7 -6.6,-6.1 -8.4,-7.6C160.5,82.3 154.2,77.2 153,76.3"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFD800" android:pathData="M217.2,141c-5.6,5.9 -34.1,37 -49.5,50.6c0,0 -36,32.2 -42.2,37.6c0.5,-0.3 1.1,-0.7 1.8,-1.2c9.8,-8.7 40.6,-36.2 40.6,-36.2c15.3,-13.4 43.2,-43.9 49.3,-50.3L217.2,141M156.8,79.7c4.2,4.2 20,20.1 47.4,47.5l7.9,7.9l0.5,0.8l0.1,0.2l0,0.2l-0.1,1.3c-0.2,0.5 -37.7,36.9 -59,55c0,0 -29.6,23.9 -30.1,24.3c0,0.1 0.7,9.9 0.8,12.8c0.1,0 0.2,-0.1 0.3,-0.2c-0.1,-1.8 -0.9,-12.4 -0.9,-12.5c0.6,-0.5 30,-24.2 30,-24.2c21.4,-18.2 59,-54.8 59.1,-55.2l0.1,-1.4c0,0 0,-0.1 0,-0.2l-0.1,-0.3l-0.5,-0.8l0,0c0,0 -47.4,-47.5 -51.2,-51.4c1.5,1.2 3.4,2.9 7.3,6.7c13.9,13.4 38.6,36.9 48.9,46.8l0,-0.4c-10.4,-9.9 -34.8,-33.1 -48.7,-46.6c-4.8,-4.7 -6.6,-6.1 -8.3,-7.5C160.3,82.6 158.4,81 156.8,79.7"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FFD700" android:pathData="M161.1,83.6c3.8,3.8 51.2,51.4 51.2,51.4l0,0l0.5,0.8l0.1,0.3c0,0.1 0,0.2 0,0.2l-0.1,1.4c-0.2,0.5 -37.7,37 -59.1,55.2c0,0 -29.5,23.8 -30,24.2c0,0.1 0.8,10.6 0.9,12.5c0.2,-0.1 0.5,-0.3 0.9,-0.5c6.1,-5.5 42.2,-37.6 42.2,-37.6C183.1,178 211.6,146.9 217.2,141l0,-0.4c-5.1,5.3 -34.1,37.1 -49.7,50.8c0,0 -42,37.5 -42.5,38c0,-0.6 -0.9,-11.8 -0.9,-11.9c0.6,-0.5 29.9,-24.2 29.9,-24.2c21.5,-18.3 59.1,-55 59.2,-55.4l0.1,-1.4l-0.1,-0.3l-0.1,-0.4l-0.5,-0.8l-0.1,-0.1c0,0 -27.6,-27.7 -39.3,-39.4c15,14.4 36.9,35.2 44.1,42.1l0,-0.4c-10.4,-9.9 -35,-33.3 -48.9,-46.8C164.5,86.5 162.6,84.9 161.1,83.6"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FED500" android:pathData="M173.3,95.4c11.7,11.8 39.3,39.4 39.3,39.4l0.1,0.1l0.5,0.8l0.1,0.4l0.1,0.3l-0.1,1.4c-0.1,0.5 -37.7,37.2 -59.2,55.4c0,0 -29.4,23.7 -29.9,24.2c0,0.1 0.9,11.3 0.9,11.9c0.5,-0.4 42.5,-38 42.5,-38c15.6,-13.7 44.7,-45.5 49.7,-50.8l0,-0.4c-4.3,4.4 -34.1,37.1 -49.9,51c0,0 -41.6,37.1 -42,37.5c0,-0.6 -0.9,-11 -0.9,-11.1c0.6,-0.5 29.8,-24.1 29.8,-24.1c21.6,-18.3 59.2,-55.2 59.3,-55.6l0.1,-1.5l-0.1,-0.4l-0.2,-0.4l-0.5,-0.8l-0.1,-0.1c0,0 -13.3,-13.3 -22.2,-22.3c8.5,8.1 24.8,23.7 26.8,25.6l0,-0.4C210.1,130.6 188.2,109.8 173.3,95.4"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FED400" android:pathData="M190.6,112.3c8.9,8.9 22.2,22.3 22.2,22.3l0.1,0.1l0.5,0.8l0.2,0.4l0.1,0.4l-0.1,1.5c-0.1,0.5 -37.7,37.3 -59.3,55.6c0,0 -29.3,23.6 -29.8,24.1c0,0.1 0.9,10.6 0.9,11.1c0.5,-0.4 42,-37.5 42,-37.5c15.8,-13.9 45.6,-46.6 49.9,-51l0,-0.4c-3.4,3.4 -34.1,37.1 -50.2,51.2c0,0 -41.1,36.7 -41.5,37.1c0,-0.6 -0.9,-10.2 -0.9,-10.4c0.6,-0.5 29.7,-24 29.7,-24c21.7,-18.4 59.3,-55.4 59.4,-55.8l0.1,-1.5l-0.1,-0.4l-0.2,-0.5c-0.4,-0.5 -0.5,-0.8 -0.6,-0.9l0,0l-0.1,-0.2c0,0 -2.7,-2.7 -5.1,-5.1c2.6,2.5 9.1,8.7 9.4,9l0,-0.4C215.3,136 199,120.4 190.6,112.3"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FDD200" android:pathData="M213.9,135.2L213.9,135.2L213.9,135.2M207.9,129.2c2.4,2.4 5.1,5.1 5.1,5.1l0.1,0.2l0,0c0.1,0.1 0.2,0.3 0.6,0.9l0.2,0.5l0.1,0.4l-0.1,1.5c-0.1,0.5 -37.8,37.4 -59.4,55.8c0,0 -29.2,23.5 -29.7,24c0,0.1 0.9,9.8 0.9,10.4c0.5,-0.4 41.5,-37.1 41.5,-37.1c16.1,-14.1 46.7,-47.8 50.2,-51.2l0,-0.5c0,0.1 -0.1,0.2 -0.2,0.3c-3.3,3.3 -34.2,37.2 -50.2,51.2c0,0 -40.6,36.2 -41.1,36.7c0,-0.6 -0.9,-9.4 -0.9,-9.6c0.6,-0.5 29.6,-23.9 29.6,-23.9c21.8,-18.5 59.4,-55.6 59.6,-56l0.1,-1.6v0l-0.1,-0.5l-0.1,-0.2c0.9,0.9 3.1,2.9 3.1,2.9c0.1,0.1 0.1,0.2 0.2,0.2l0,-0.5C217,138 210.5,131.8 207.9,129.2"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FDD000" android:pathData="M126.1,226.7c0,-0.6 -0.7,-6.8 -0.7,-6.8s-0.2,-1.9 -0.2,-2c1,-0.8 29.2,-23.6 29.5,-23.8c21.8,-18.5 59.5,-55.8 59.7,-56.2c0,0 0.1,-1.1 0.1,-1.4c0.7,0.6 2.4,2.3 2.4,2.3l0,0l0.1,0.3c-0.1,0.1 -0.2,0.3 -0.2,0.3l0,0l-5.8,6.1c-10.4,11.1 -31.9,34.1 -44.3,45.1C166.7,190.5 126.6,226.3 126.1,226.7M214.1,135.6l0.1,0.2l0.1,0.5v0l-0.1,1.6c-0.1,0.5 -37.8,37.6 -59.6,56c0,0 -29.1,23.4 -29.6,23.9c0,0.1 0.9,9 0.9,9.6c0.5,-0.4 41.1,-36.7 41.1,-36.7c16,-14.1 46.8,-47.9 50.2,-51.2c0.1,-0.1 0.2,-0.2 0.2,-0.3l0,-0.5c0,-0.1 -0.1,-0.2 -0.2,-0.2C217.1,138.5 215,136.4 214.1,135.6M213.9,135.2L213.9,135.2L213.9,135.2"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FCCE00" android:pathData="M126.4,226.1c0,-1.3 -0.6,-6 -0.6,-6s-0.2,-1.9 -0.2,-2c0.6,-0.5 29.4,-23.7 29.4,-23.7c21.9,-18.6 59.6,-56 59.7,-56.4l0,-0.1c0,0 0,-0.5 0,-0.8c1.3,1.2 1.8,1.7 2,1.8l-0.1,-0.1l0.1,0.2l0,0.1l0,0c-5.6,5.9 -5.8,6.2 -5.8,6.2c0,0 0,0 0,0c-10.3,11.1 -31.9,34.1 -44.3,45C166.5,190.2 126.9,225.7 126.4,226.1M214.5,136.4c0,0.3 -0.1,1.4 -0.1,1.4c-0.1,0.5 -37.8,37.7 -59.7,56.2c-0.3,0.2 -28.5,23 -29.5,23.8c0,0.1 0.2,2 0.2,2s0.6,6.2 0.7,6.8c0.5,-0.4 40.6,-36.2 40.6,-36.2c12.4,-10.9 34,-34 44.3,-45.1l5.8,-6.1l0,0c0,0 0.1,-0.2 0.2,-0.3l-0.1,-0.3l0,0C216.9,138.7 215.2,137 214.5,136.4"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FBCD00" android:pathData="M155.2,194.5c21.9,-18.6 59.7,-56.1 59.8,-56.5l0,-0.1l0,-0.2c0.4,0.4 1.2,1.1 1.3,1.3c-0.5,0.5 -4.9,5.2 -4.9,5.2l-0.8,0.8c-10.3,11.1 -31.8,34.1 -44.3,45c0,0 -39.2,35 -39.6,35.4c0,-0.6 -0.8,-7.1 -0.8,-7.3c0.1,-0.1 28.8,-23.3 28.8,-23.3C155,194.7 155.1,194.6 155.2,194.5L155.2,194.5M214.8,137.1c0,0.3 0,0.8 0,0.8l0,0.1c-0.1,0.4 -37.9,37.8 -59.7,56.4c0,0 -28.8,23.2 -29.4,23.7c0,0.1 0.2,2 0.2,2s0.6,4.7 0.6,6c0.5,-0.4 40.1,-35.8 40.1,-35.8c12.4,-10.9 34,-33.9 44.3,-45c0,0 0,0 0,0c0,0 0.2,-0.3 5.8,-6.2l0,0l0,-0.1l-0.1,-0.2l0.1,0.1C216.5,138.7 216.1,138.3 214.8,137.1"/>
|
||||
</group>
|
||||
<group>
|
||||
<clip-path android:pathData="M123.7,45.9L123.7,45.9L123.7,45.9l0.2,0l-0.1,0C124.1,45.9 123.5,45.9 123.7,45.9M217.5,132.3c-5.5,-6.2 -17.3,-18.8 -44.3,-43.8c-40.9,-38 -48.4,-42.1 -49.5,-42.6c-1.1,0.4 -8.5,4.5 -48.8,42.5C54.4,107.7 39.8,122 31.5,130.8c-3.6,3.8 -6.1,6.8 -6.4,7.1c0.8,1.4 6.5,9.6 50.4,50.2c18.8,17.4 32.6,29.7 41.2,36.7c1.2,1 6.9,5.3 6.9,5.3l0.2,0c0.6,-0.1 7.1,-2.5 49.7,-42.6c26.2,-24.7 38,-37.3 43.8,-43.6L217.5,132.3M24.8,138.8c0.2,-0.3 0.2,-0.5 0.2,-0.7l0,0L24.8,138.8 M 0,0"/>
|
||||
<path android:fillColor="#FBCB00" android:pathData="M215,137.7l0,0.2l0,0.1c-0.1,0.4 -37.9,37.9 -59.8,56.5l0,0c-0.1,0.1 -0.2,0.2 -0.5,0.4c0,0 -28.7,23.2 -28.8,23.3c0,0.1 0.8,6.7 0.8,7.3c0.5,-0.4 39.6,-35.4 39.6,-35.4c12.4,-10.9 33.9,-33.9 44.3,-45l0.8,-0.8c0.1,-0.1 4.5,-4.7 4.9,-5.2C216.2,138.8 215.4,138.1 215,137.7"/>
|
||||
</group>
|
||||
<path android:fillColor="#FFE500" android:pathData="M37.983,105.977l8.966,8.994l-9.277,9.249l-8.966,-8.994z"/>
|
||||
<path android:fillColor="#FFE500" android:pathData="M202.6,107.1h2.6v10.1h-2.6z"/>
|
||||
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M136,104.7l0,59l-17.4,0l-0.1,-48.3l7.5,-1.8l-2.2,-8.8z"/>
|
||||
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M65.7,117.5c7.2,-0.3 17.7,-0.8 24.3,0c8.4,1 19.4,3.2 20.3,15c0.4,5.6 -1.5,10.4 -9.4,16.7c0,0 8,8.7 15.3,17c0,0 -9.1,8.6 -14.1,12.7l-17.9,-29.7c4,-3.1 8.8,-7.6 8.8,-12.9c0,-5.1 -4.8,-7.5 -6.5,-7.5h-3.7v49.6L65.7,178.4L65.7,117.5z"/>
|
||||
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M156.3,178.1l0,-46.6l-16.8,0l0,-15l51.2,0l0,15l-16.7,0l0,46.6z"/>
|
||||
<path android:fillColor="#FF000000" android:pathData="M59.1,102.1L59,117l-18.1,0l0,13.8l16.7,-0.1v14.2l-16.4,0l0,23.9L23.2,168.8L23.2,102.9C41.2,102.1 59.1,102.1 59.1,102.1z"/>
|
||||
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M245.2,139.7l11.6,0.4l4.6,-29.9l-14.4,-1.2z"/>
|
||||
<path android:fillColor="#FF000000" android:pathData="M240,146.3l9.1,-7.4l9.6,12l-9.1,7.3l-7.3,-9.1z"/>
|
||||
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M132,160.3l-20.4,0l-0.1,-51l7.2,-1.8l-2.3,-9.2l15.6,0z"/>
|
||||
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M149.3,128.1c0,0 -15.2,0.4 -15.1,0.4l-1.7,0.2L132.5,110.1h54.3v18.6l-1.8,0l-14.9,-0.6v46.6h-20.7L149.4,128.1z"/>
|
||||
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M185.7,95.3l0.6,0c5.9,0 23,-0.3 46.2,1l2.6,0.2l-24.4,45.4c5,0.1 11.5,0.2 20.1,-0.4l1.9,-0.1l0,18.4c0,0 -47.4,0 -48.2,0h-3.6L205.2,113.2c-5.2,0 -11.4,0 -18.9,0.4l-0.7,0.1L185.6,95.3z"/>
|
||||
<path android:fillColor="#FF000000" android:pathData="M55.1,97l0,16.7l-1.7,0l-16.5,0l0,10.2l16.7,-0.1l0,17.4h-1.7l-14.7,0l0,23.9L16.2,165.1L16.2,96.6l1.4,-0.1c18,-0.8 37,-0.7 37,-0.7"/>
|
||||
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M78.8,142.4c3.7,-3.1 7.3,-6.8 7.3,-11.1c0,-4.1 -3.9,-6 -5.1,-6h-2.2L78.8,142.4zM84.7,111.1c8.2,1 20.6,3.3 21.6,16.4c0.4,5.9 -1.6,10.9 -8.7,17l15.3,17.9l-0.9,0.9c-4.2,4.3 -8.9,8.4 -13.9,12.4l-1.3,1.1l-17.9,-29.7v27.8L58.7,174.9L58.7,111.2l1.4,-0.1C67.4,110.8 78,110.4 84.7,111.1z"/>
|
||||
<path android:fillColor="#FF000000" android:fillType="evenOdd" android:pathData="M240.4,104.6l17.6,1.4l-5.1,32.9l-14.5,-0.5z"/>
|
||||
<path android:fillColor="#FF000000" android:pathData="M255.3,148.5l-9.3,-11.5l-11.5,9.3h-1.8v1.8c-8.2,0.4 -14.4,0.2 -18.9,0.1l24.5,-45.5c-23.2,-1.3 -40,-1 -52.2,-0.7v15.3c15.1,-0.8 21.6,-0.7 27.2,-0.8l-24.2,46.6h1.1c0.8,0 46.7,0 46.7,0l0,-14l7,8.7L255.3,148.5z"/>
|
||||
<path android:fillColor="#E2001A" android:fillType="evenOdd" android:pathData="M130.5,99.8l0,58.9l-17.4,0l-0.1,-48.2l7.5,-1.8l-2.2,-8.9z"/>
|
||||
<path android:fillColor="#E2001A" android:fillType="evenOdd" android:pathData="M60.2,112.6c7.2,-0.3 17.7,-0.8 24.3,0c8.4,1 19.4,3.2 20.3,15c0.4,5.6 -1.5,10.4 -9.4,16.7l15.4,18c-4.1,4.2 -8.8,8.3 -13.7,12.3l-18.3,-30.4c4,-3.1 8.8,-7.6 8.8,-12.9c0,-5.1 -4.8,-7.5 -6.5,-7.5h-3.7v49.6L60.2,173.4L60.2,112.6z"/>
|
||||
<path android:fillColor="#E2001A" android:fillType="evenOdd" android:pathData="M150.8,173.2l0,-46.6l-16.8,0.4l0,-15.4l51.2,0l0,15.4l-16.7,-0.4l0,46.6z"/>
|
||||
<path android:fillColor="#E2001A" android:fillType="evenOdd" android:pathData="M186.9,112.1L186.9,96.8c5.9,0 22.7,-0.3 45.9,1l-24.5,45.5c5.3,0.1 12.8,0.3 23,-0.4l0,15.3c0,0 -45.9,0 -46.7,0l-1.1,0l24.2,-46.6C202.1,111.7 195.6,111.7 186.9,112.1z"/>
|
||||
<path android:fillColor="#E2001A" android:pathData="M53.6,106.5l0,5.5l-18.2,0l0,13.8l16.7,-0.1l0,14.2l-16.5,0l0,23.9l-17.9,0l0,-65.8l35.9,-0.7z"/>
|
||||
<path android:fillColor="#E2001A" android:fillType="evenOdd" android:pathData="M240,136.9l11.6,0.4l4.6,-29.9l-14.4,-1.2z"/>
|
||||
<path android:fillColor="#E2001A" android:pathData="M253.127,148.388l-9.091,7.365l-7.365,-9.091l9.091,-7.365z"/>
|
||||
</vector>
|
33
app/src/main/res/drawable/thumb_mailcow.xml
Normal file
33
app/src/main/res/drawable/thumb_mailcow.xml
Normal file
|
@ -0,0 +1,33 @@
|
|||
<vector android:height="112dp" android:viewportHeight="376.871"
|
||||
android:viewportWidth="394.821" android:width="128dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#3d5263" android:pathData="m65.948,223.25c0.073,-20.261 -0.716,-17.261 -3.656,-39.267 2.228,-22.439 -7.628,-38.859 -7.669,-58.34 0,-4.715 -5.806,-6.78 -4.761,-11.137 -6.292,13.037 -9.833,27.707 -9.833,43.222 0,25.946 9.89,49.533 26.027,67.059 -0.048,-0.511 -0.082,-1.023 -0.108,-1.536z"/>
|
||||
<path android:fillColor="#f9e82d" android:pathData="m264.808,190.412 l-0.567,0.455c-10.49,39.88 -40.951,71.658 -80.048,83.996l10.952,9.206 53.296,44.799 31.601,26.563c0.783,-2.011 1.229,-4.19 1.231,-6.478 0,-0.007 0.001,-0.013 0.001,-0.02l0,-16.836 0,-0.001 0,-28.141 0,-126.736 -16.466,13.193z"/>
|
||||
<path android:fillColor="#f9e82d" android:pathData="m33.027,195.52 l-6.574,-5.225 -16.452,-13.076 0,90.407 0,81.307c0,2.295 0.447,4.481 1.233,6.499l58.39,-48.683 26.964,-22.481 12.38,-10.321C72.73,261.524 44.307,232.274 33.027,195.52Z"/>
|
||||
<path android:fillAlpha="0.89499996" android:fillColor="#edd514" android:pathData="m248.441,328.868 l-53.296,-44.799 -10.952,-9.206c-11.431,3.607 -23.597,5.558 -36.22,5.558 -13.653,0 -26.772,-2.28 -39.004,-6.474l-12.38,10.321 -26.965,22.482 -58.39,48.683c2.605,6.69 9.094,11.438 16.706,11.438l235.394,0c7.613,0 14.103,-4.749 16.707,-11.44l-31.6,-26.563z"/>
|
||||
<path android:fillAlpha="0.1" android:fillColor="#3d5263"
|
||||
android:pathData="M248.441,328.868C206.984,332.876 133.368,334.434 69.625,306.75 48.082,297.394 27.666,284.7 10.002,267.627l0,81.307c0,2.295 0.447,4.481 1.233,6.499 2.605,6.69 9.094,11.438 16.706,11.438l235.394,0c7.613,0 14.103,-4.749 16.707,-11.44 0.783,-2.011 1.229,-4.19 1.231,-6.478l0,-24.584c0,0 -12.58,2.541 -32.832,4.499z" android:strokeAlpha="0.1"/>
|
||||
<path android:fillAlpha="0.1" android:fillColor="#3d5263"
|
||||
android:pathData="m96.588,284.268c14.979,6.703 31.579,10.435 49.051,10.435 17.648,0 34.408,-3.803 49.505,-10.634 37.082,-16.777 64.125,-51.824 69.664,-93.657l-0.567,0.455c-10.49,39.88 -40.951,71.658 -80.048,83.996 -11.431,3.607 -23.597,5.558 -36.22,5.558 -13.653,0 -26.772,-2.28 -39.004,-6.474C72.731,261.524 44.308,232.274 33.028,195.52l-6.574,-5.225c5.525,42.054 32.786,77.261 70.134,93.973z" android:strokeAlpha="0.1"/>
|
||||
<path android:fillColor="#ffffff" android:pathData="m64.293,73.875c-1.799,1.745 -3.541,3.548 -5.229,5.402 -0.042,0.046 -0.085,0.092 -0.127,0.139 -0.234,0.258 -0.473,0.51 -0.705,0.77 0.055,-0.055 0.111,-0.108 0.166,-0.163 21.76,-21.782 51.828,-35.259 85.046,-35.259 66.396,0 120.222,53.826 120.222,120.223 0,30.718 -11.526,58.74 -30.482,79.991 21.633,-21.737 35.006,-51.7 35.01,-84.791 0,-0.004 0,-0.009 0,-0.013 0,-21.143 -5.465,-41.007 -15.049,-58.269 -1.449,-2.608 -2.991,-5.157 -4.624,-7.643 -5.377,-8.187 -11.727,-15.676 -18.885,-22.307 -5.903,-5.467 -12.351,-10.354 -19.26,-14.558 -4.278,-2.604 -8.734,-4.944 -13.341,-7.006 -10.627,-4.756 -22.07,-8.016 -34.062,-9.509 -4.915,-0.612 -9.921,-0.931 -15.001,-0.931 -5.747,0 -11.398,0.409 -16.93,1.189 -12.291,1.733 -23.981,5.329 -34.784,10.487 -4.742,2.264 -9.313,4.83 -13.688,7.672 -6.561,4.266 -12.682,9.149 -18.277,14.576z"/>
|
||||
<path android:fillColor="#ffffff" android:pathData="m105.828,128.535c2.559,0 4.63,-2.071 4.63,-4.629 0,-2.553 -2.071,-4.626 -4.63,-4.626 -2.558,0 -4.634,2.074 -4.634,4.626 0.001,2.557 2.076,4.629 4.634,4.629z"/>
|
||||
<path android:fillColor="#ffffff" android:pathData="m196.85,128.535c2.556,0 4.629,-2.071 4.629,-4.629 0,-2.553 -2.074,-4.626 -4.629,-4.626 -2.559,0 -4.631,2.074 -4.631,4.626 0,2.557 2.073,4.629 4.631,4.629z"/>
|
||||
<path android:fillColor="#f1f2f2" android:pathData="m233.701,244.394c18.648,-21.18 29.965,-48.971 29.965,-79.408 0,-66.396 -53.825,-120.223 -120.222,-120.223 -33.218,0 -63.286,13.477 -85.046,35.259 -4.591,5.125 -8.746,10.647 -12.413,16.507 -1.524,2.437 -2.963,4.931 -4.314,7.48 -7.067,13.341 -11.704,28.167 -13.301,43.893 -0.411,4.043 -0.622,8.146 -0.622,12.298 0,3.849 0.188,7.653 0.542,11.409 0.776,8.241 2.38,16.24 4.735,23.912 11.281,36.754 39.703,66.004 75.941,78.427 12.231,4.193 25.351,6.474 39.004,6.474 12.623,0 24.79,-1.95 36.22,-5.558 18.139,-5.725 34.412,-15.64 47.7,-28.603 0.536,-0.522 1.811,-1.867 1.811,-1.867zM227.913,186.038c-2.132,7.217 -5.052,14.085 -8.668,20.495 -16.571,29.372 -47.64,49.146 -83.233,49.146 -27.584,0 -52.447,-11.88 -69.956,-30.895C49.919,207.26 40.03,183.673 40.03,157.726c0,-15.515 3.54,-30.185 9.833,-43.222 15.648,-32.42 48.344,-54.73 86.15,-54.73 3.967,0 7.876,0.25 11.717,0.728 47.479,5.898 84.262,47.175 84.262,97.224 -0.002,9.846 -1.431,19.348 -4.079,28.312z"/>
|
||||
<path android:fillColor="#f1f2f2" android:pathData="m59.064,79.277c-0.042,0.046 -0.085,0.092 -0.127,0.139 0.042,-0.047 0.085,-0.093 0.127,-0.139z"/>
|
||||
<path android:fillColor="#5a3620" android:pathData="m267.626,171.89c-0.488,5.062 -1.29,10.032 -2.387,14.89 -0.31,1.371 -0.643,2.733 -0.999,4.086l0.567,-0.455 16.466,-13.193 0,-0.023 -13.647,-5.305z"/>
|
||||
<path android:fillColor="#5a3620" android:pathData="m10.001,177.219 l16.451,13.076 6.574,5.225c-2.354,-7.672 -3.959,-15.671 -4.735,-23.912l-2.85,0.871L10,177.196"/>
|
||||
<path android:fillColor="#5a3620" android:pathData="m97.491,202.337c-6.21,0 -11.254,5.034 -11.254,11.257 0,6.216 5.043,11.257 11.254,11.257 6.221,0 11.261,-5.041 11.261,-11.257 0,-6.223 -5.041,-11.257 -11.261,-11.257z"/>
|
||||
<path android:fillColor="#5a3620" android:pathData="m191.307,202.337c-6.218,0 -11.259,5.034 -11.259,11.257 0,6.216 5.041,11.257 11.259,11.257 6.22,0 11.257,-5.041 11.257,-11.257 0,-6.223 -5.037,-11.257 -11.257,-11.257z"/>
|
||||
<path android:fillColor="#5a3620" android:pathData="m192.997,112.251c-6.963,0 -15.442,7.766 -15.442,14.735 0,6.965 8.126,17.207 15.089,17.207 6.968,0 15.799,-9.536 15.799,-16.5 0.001,-6.97 -8.477,-15.442 -15.445,-15.442zM196.85,128.535c-2.558,0 -4.631,-2.072 -4.631,-4.629 0,-2.552 2.072,-4.626 4.631,-4.626 2.555,0 4.629,2.073 4.629,4.626 0,2.558 -2.073,4.629 -4.629,4.629z"/>
|
||||
<path android:fillColor="#5a3620" android:pathData="m99.71,112.604c-6.971,0 -14.38,8.12 -14.38,15.089 0,6.965 8.825,16.147 15.794,16.147 6.963,0 15.793,-9.183 15.793,-16.147 0.001,-6.97 -10.243,-15.089 -17.207,-15.089zM105.828,128.535c-2.559,0 -4.634,-2.072 -4.634,-4.629 0,-2.552 2.076,-4.626 4.634,-4.626 2.559,0 4.63,2.073 4.63,4.626 0,2.558 -2.071,4.629 -4.63,4.629z"/>
|
||||
<path android:fillColor="#fef3df" android:pathData="m346.302,266.425c3.59,-9.155 7.701,-11 9.346,-11.346 -40.757,3.757 -36.661,27.769 -34.026,35.96 0.55,1.712 1.037,2.733 1.037,2.733 0,0 2.031,4.787 7.536,8.748 4.149,2.986 10.27,5.503 18.995,5.144 27.063,0.461 35.631,-50.166 35.631,-50.166 -6.654,11.655 -26.404,9.876 -38.519,8.927z"/>
|
||||
<path android:fillColor="#fef3df" android:pathData="m58.937,79.415c0.042,-0.046 0.085,-0.092 0.127,-0.139 1.688,-1.854 3.43,-3.657 5.229,-5.402 -8.915,-6.977 -24.344,-15.826 -41.744,-11.633 0,0 2.814,20.458 23.437,34.287 3.667,-5.86 7.822,-11.381 12.413,-16.507 -0.055,0.055 -0.111,0.108 -0.166,0.163 0.231,-0.258 0.47,-0.511 0.704,-0.769z"/>
|
||||
<path android:fillColor="#fef3df" android:pathData="m268.812,62.242c-15.831,-3.815 -30.029,3.169 -39.176,9.714 7.158,6.63 13.508,14.12 18.885,22.307 17.763,-13.689 20.291,-32.021 20.291,-32.021z"/>
|
||||
<path android:fillColor="#fef3df" android:pathData="m144.269,170.225c-43.299,0 -78.388,22.964 -78.388,51.289 0,0.582 0.038,1.157 0.067,1.735 0.026,0.514 0.06,1.025 0.108,1.535 17.508,19.015 42.371,30.895 69.956,30.895 35.594,0 66.662,-19.774 83.233,-49.146 -9.796,-21.016 -39.651,-36.308 -74.976,-36.308zM97.491,224.85c-6.211,0 -11.254,-5.041 -11.254,-11.257 0,-6.223 5.044,-11.257 11.254,-11.257 6.22,0 11.261,5.034 11.261,11.257 0,6.216 -5.04,11.257 -11.261,11.257zM191.307,224.85c-6.218,0 -11.259,-5.041 -11.259,-11.257 0,-6.223 5.041,-11.257 11.259,-11.257 6.22,0 11.257,5.034 11.257,11.257 0,6.216 -5.037,11.257 -11.257,11.257z"/>
|
||||
<path android:fillColor="#fef3df" android:pathData="M96.265,10C78.102,26.373 96.113,51.427 96.258,51.628 107.061,46.47 118.751,42.874 131.042,41.141 107.629,37.686 96.265,10 96.265,10Z"/>
|
||||
<path android:fillColor="#fef3df" android:pathData="m196.204,10c0,0 -10.863,26.476 -33.231,30.883 11.992,1.493 23.435,4.752 34.062,9.509C200.383,45.136 212.036,24.271 196.204,10Z"/>
|
||||
<path android:fillColor="#87654a" android:pathData="m227.913,186.038c2.647,-8.964 6.552,-25.892 6.552,-35.737C234.465,100.252 195.208,66.4 147.728,60.502c-2.157,28.03 3.629,87.043 80.185,125.536zM180.383,127.693c0,-6.97 5.651,-12.614 12.614,-12.614 6.968,0 12.617,5.645 12.617,12.614 0,6.964 -5.649,12.611 -12.617,12.611 -6.963,0 -12.614,-5.646 -12.614,-12.611z"/>
|
||||
<path android:fillColor="#b58765" android:pathData="m322.658,293.772c0,0 -0.487,-1.021 -1.037,-2.733 -3.758,3.317 -13.036,10.236 -27.03,12.416l0,-0.001c-0.009,0.002 -0.019,0.003 -0.027,0.005 -4.044,0.628 -8.479,0.863 -13.29,0.497l0,28.141c2.059,-0.801 4.607,-1.834 7.477,-3.083 5.462,-2.377 12.093,-5.542 18.771,-9.395 0.027,-0.016 0.054,-0.031 0.081,-0.047 8.158,-4.713 16.37,-10.452 22.593,-17.052 -5.506,-3.961 -7.538,-8.748 -7.538,-8.748z"/>
|
||||
<path android:fillColor="#b58765" android:pathData="m22.549,62.242c17.4,-4.193 32.83,4.656 41.744,11.633C69.888,68.449 76.009,63.565 82.57,59.301 58.272,28.498 12.169,47.201 12.169,47.201 8.886,77.502 25.288,94.594 41.672,104.01 43.023,101.461 44.462,98.966 45.986,96.53 25.363,82.699 22.549,62.242 22.549,62.242Z"/>
|
||||
<path android:fillColor="#b58765" android:pathData="m210.376,57.398c6.909,4.205 13.356,9.091 19.26,14.558 9.146,-6.545 23.345,-13.529 39.176,-9.714 0,0 -2.527,18.332 -20.291,32.021 1.633,2.485 3.175,5.034 4.624,7.643 15.141,-9.784 29.097,-26.539 26.046,-54.704 0,-0.001 -44.152,-17.909 -68.815,10.196z"/>
|
||||
<path android:fillColor="#b58765" android:pathData="m148.854,60.502c-3.841,-0.478 -8.875,-0.728 -12.842,-0.728 -37.806,0 -70.502,22.31 -86.15,54.73 -1.045,4.357 -1.603,8.897 -1.603,13.612 0,1.454 0.085,2.787 0.121,4.175 0.127,3.935 0.448,7.585 0.855,11.135 4.292,24.958 7.959,42.492 13.464,66.758 0.056,0.407 0.164,0.804 0.224,1.211 0.617,4.028 1.642,7.992 3.025,11.854 -0.029,-0.578 -0.067,-1.153 -0.067,-1.735 0,-28.325 35.089,-51.289 78.388,-51.289 35.325,0 65.181,15.292 74.977,36.308 3.616,-6.409 6.536,-13.277 8.668,-20.495C189.989,162.549 173.999,144.89 163.253,121.821 152.507,98.753 147.775,74.517 148.854,60.502ZM101.124,140.304c-6.97,0 -12.612,-5.646 -12.612,-12.611 0,-6.97 5.642,-12.614 12.612,-12.614 6.964,0 12.611,5.645 12.611,12.614 0.001,6.964 -5.648,12.611 -12.611,12.611z"/>
|
||||
</vector>
|
94
app/src/main/res/drawable/thumb_namecheap.xml
Normal file
94
app/src/main/res/drawable/thumb_namecheap.xml
Normal file
|
@ -0,0 +1,94 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:width="128dp"
|
||||
android:height="128dp"
|
||||
android:viewportWidth="128"
|
||||
android:viewportHeight="128">
|
||||
<path
|
||||
android:pathData="M117.16,28.55L117.73,28.62L118.29,28.72L118.84,28.83L119.38,28.98L119.91,29.14L120.43,29.34L120.93,29.55L121.43,29.79L121.91,30.04L122.38,30.32L122.83,30.62L123.27,30.94L123.69,31.28L124.1,31.63L124.49,32.01L124.87,32.4L125.22,32.81L125.56,33.23L125.88,33.67L126.18,34.12L126.46,34.59L126.71,35.07L126.95,35.57L127.16,36.07L127.36,36.59L127.52,37.12L127.67,37.66L127.78,38.21L127.88,38.77L127.95,39.34L127.99,39.92L128,40.5L128,40.65L128,40.81L127.99,40.96L127.99,41.11L127.98,41.26L127.97,41.41L127.96,41.56L127.94,41.71L127.93,41.86L127.91,42.01L127.89,42.15L127.87,42.3L127.85,42.44L127.83,42.59L127.8,42.73L127.77,42.88L127.74,43.02L127.71,43.16L127.68,43.3L127.65,43.44L127.61,43.58L127.57,43.72L127.53,43.86L127.49,44L127.45,44.14L127.41,44.27L127.36,44.41L127.32,44.55L127.27,44.68L127.22,44.82L127.17,44.95L127.11,45.08L127.06,45.22L127,45.35L126.45,46.45L103.1,92.45L102.65,93.3L102.54,93.48L102.43,93.67L102.32,93.85L102.2,94.02L102.08,94.2L101.96,94.37L101.83,94.54L101.71,94.71L101.57,94.88L101.44,95.04L101.3,95.21L101.16,95.37L101.02,95.52L100.88,95.68L100.73,95.83L100.58,95.98L100.43,96.13L100.27,96.27L100.11,96.41L99.95,96.55L99.79,96.69L99.62,96.82L99.45,96.95L99.28,97.08L99.11,97.2L98.93,97.33L98.76,97.45L98.58,97.56L98.39,97.68L98.21,97.79L98.02,97.89L97.83,98L97.64,98.1L97.45,98.2L97.26,98.11L97.07,98.01L96.88,97.91L96.69,97.8L96.51,97.69L96.32,97.58L96.14,97.47L95.97,97.35L95.79,97.23L95.62,97.1L95.45,96.97L95.28,96.84L95.11,96.71L94.95,96.57L94.79,96.43L94.63,96.29L94.48,96.14L94.32,96L94.17,95.84L94.02,95.69L93.88,95.54L93.74,95.38L93.6,95.22L93.46,95.05L93.33,94.89L93.19,94.72L93.07,94.55L92.94,94.38L92.82,94.2L92.7,94.03L92.58,93.85L92.47,93.67L92.36,93.48L92.25,93.3L91.8,92.45L84,77.1L95.9,53.65L105.3,35.15L105.55,34.65L105.74,34.33L105.93,34.02L106.13,33.71L106.35,33.41L106.57,33.12L106.8,32.83L107.04,32.55L107.29,32.28L107.54,32.02L107.81,31.76L108.08,31.51L108.36,31.27L108.64,31.04L108.94,30.82L109.24,30.61L109.54,30.4L109.86,30.21L110.18,30.02L110.5,29.84L110.83,29.68L111.17,29.52L111.51,29.37L111.86,29.24L112.22,29.11L112.58,29L112.94,28.9L113.31,28.81L113.68,28.73L114.06,28.66L114.44,28.6L114.82,28.56L115.21,28.53L115.6,28.51L116,28.5L116.58,28.51L117.16,28.55Z"
|
||||
android:fillColor="#ff5000"
|
||||
android:fillAlpha="1"/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M117.16,28.55L117.73,28.62L118.29,28.72L118.84,28.83L119.38,28.98L119.91,29.14L120.43,29.34L120.93,29.55L121.43,29.79L121.91,30.04L122.38,30.32L122.83,30.62L123.27,30.94L123.69,31.28L124.1,31.63L124.49,32.01L124.87,32.4L125.22,32.81L125.56,33.23L125.88,33.67L126.18,34.12L126.46,34.59L126.71,35.07L126.95,35.57L127.16,36.07L127.36,36.59L127.52,37.12L127.67,37.66L127.78,38.21L127.88,38.77L127.95,39.34L127.99,39.92L128,40.5L128,40.65L128,40.81L127.99,40.96L127.99,41.11L127.98,41.26L127.97,41.41L127.96,41.56L127.94,41.71L127.93,41.86L127.91,42.01L127.89,42.15L127.87,42.3L127.85,42.44L127.83,42.59L127.8,42.73L127.77,42.88L127.74,43.02L127.71,43.16L127.68,43.3L127.65,43.44L127.61,43.58L127.57,43.72L127.53,43.86L127.49,44L127.45,44.14L127.41,44.27L127.36,44.41L127.32,44.55L127.27,44.68L127.22,44.82L127.17,44.95L127.11,45.08L127.06,45.22L127,45.35L126.45,46.45L103.1,92.45L102.65,93.3L102.54,93.48L102.43,93.67L102.32,93.85L102.2,94.02L102.08,94.2L101.96,94.37L101.83,94.54L101.71,94.71L101.57,94.88L101.44,95.04L101.3,95.21L101.16,95.37L101.02,95.52L100.88,95.68L100.73,95.83L100.58,95.98L100.43,96.13L100.27,96.27L100.11,96.41L99.95,96.55L99.79,96.69L99.62,96.82L99.45,96.95L99.28,97.08L99.11,97.2L98.93,97.33L98.76,97.45L98.58,97.56L98.39,97.68L98.21,97.79L98.02,97.89L97.83,98L97.64,98.1L97.45,98.2L97.26,98.11L97.07,98.01L96.88,97.91L96.69,97.8L96.51,97.69L96.32,97.58L96.14,97.47L95.97,97.35L95.79,97.23L95.62,97.1L95.45,96.97L95.28,96.84L95.11,96.71L94.95,96.57L94.79,96.43L94.63,96.29L94.48,96.14L94.32,96L94.17,95.84L94.02,95.69L93.88,95.54L93.74,95.38L93.6,95.22L93.46,95.05L93.33,94.89L93.19,94.72L93.07,94.55L92.94,94.38L92.82,94.2L92.7,94.03L92.58,93.85L92.47,93.67L92.36,93.48L92.25,93.3L91.8,92.45L84,77.1L95.9,53.65L105.3,35.15L105.55,34.65L105.74,34.33L105.93,34.02L106.13,33.71L106.35,33.41L106.57,33.12L106.8,32.83L107.04,32.55L107.29,32.28L107.54,32.02L107.81,31.76L108.08,31.51L108.36,31.27L108.64,31.04L108.94,30.82L109.24,30.61L109.54,30.4L109.86,30.21L110.18,30.02L110.5,29.84L110.83,29.68L111.17,29.52L111.51,29.37L111.86,29.24L112.22,29.11L112.58,29L112.94,28.9L113.31,28.81L113.68,28.73L114.06,28.66L114.44,28.6L114.82,28.56L115.21,28.53L115.6,28.51L116,28.5L116.58,28.51L117.16,28.55Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M105.55,34.65C105.53,34.68 105.45,34.85 105.3,35.15L95.9,53.65L84,77.1L91.8,92.45C92.07,92.96 92.22,93.24 92.25,93.3C93.45,95.4 95.25,97.15 97.45,98.2C99.65,97.1 101.45,95.4 102.65,93.3C102.68,93.24 102.83,92.96 103.1,92.45L126.45,46.45C126.78,45.79 126.96,45.42 127,45.35C127.65,43.85 128,42.25 128,40.5C128,33.85 122.6,28.5 116,28.5C111.5,28.5 107.55,31 105.55,34.65Z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:startY="94.68"
|
||||
android:startX="89.86"
|
||||
android:endY="29.29"
|
||||
android:endX="120.35"
|
||||
android:type="linear">
|
||||
<item android:offset="0" android:color="#FFD4202C"/>
|
||||
<item android:offset="0.04166" android:color="#F4D82D2B"/>
|
||||
<item android:offset="0.176" android:color="#D2E25226"/>
|
||||
<item android:offset="0.3167" android:color="#AEEB7123"/>
|
||||
<item android:offset="0.4635" android:color="#88F28920"/>
|
||||
<item android:offset="0.6188" android:color="#61F69A1E"/>
|
||||
<item android:offset="0.7886" android:color="#35F9A41D"/>
|
||||
<item android:offset="1" android:color="#00FAA71D"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M105.55,34.65C105.53,34.68 105.45,34.85 105.3,35.15L95.9,53.65L84,77.1L91.8,92.45C92.07,92.96 92.22,93.24 92.25,93.3C93.45,95.4 95.25,97.15 97.45,98.2C99.65,97.1 101.45,95.4 102.65,93.3C102.68,93.24 102.83,92.96 103.1,92.45L126.45,46.45C126.78,45.79 126.96,45.42 127,45.35C127.65,43.85 128,42.25 128,40.5C128,33.85 122.6,28.5 116,28.5C111.5,28.5 107.55,31 105.55,34.65Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M30.93,29.94L31.12,30.04L31.31,30.15L31.49,30.26L31.68,30.37L31.86,30.48L32.03,30.6L32.21,30.72L32.38,30.85L32.55,30.98L32.72,31.11L32.89,31.24L33.05,31.38L33.21,31.52L33.37,31.66L33.53,31.81L33.68,31.95L33.83,32.11L33.98,32.26L34.12,32.41L34.26,32.57L34.4,32.73L34.54,32.9L34.67,33.06L34.81,33.23L34.93,33.4L35.06,33.57L35.18,33.75L35.3,33.92L35.42,34.1L35.53,34.28L35.64,34.47L35.75,34.65L36.2,35.5L44,50.85L32.1,74.3L22.7,92.8L22.45,93.3L22.26,93.62L22.07,93.93L21.87,94.24L21.65,94.54L21.43,94.83L21.2,95.12L20.96,95.4L20.71,95.67L20.46,95.93L20.19,96.19L19.92,96.44L19.64,96.68L19.36,96.91L19.06,97.13L18.76,97.34L18.46,97.55L18.14,97.74L17.82,97.93L17.5,98.11L17.17,98.27L16.83,98.43L16.49,98.58L16.14,98.71L15.78,98.84L15.42,98.95L15.06,99.05L14.69,99.14L14.32,99.22L13.94,99.29L13.56,99.35L13.18,99.39L12.79,99.42L12.4,99.44L12,99.45L11.42,99.44L10.84,99.4L10.27,99.33L9.71,99.23L9.16,99.12L8.62,98.97L8.09,98.81L7.57,98.61L7.07,98.4L6.57,98.16L6.09,97.91L5.62,97.63L5.17,97.33L4.73,97.01L4.31,96.67L3.9,96.32L3.51,95.94L3.13,95.55L2.78,95.14L2.44,94.72L2.12,94.28L1.82,93.83L1.54,93.36L1.29,92.88L1.05,92.38L0.84,91.88L0.64,91.36L0.48,90.83L0.33,90.29L0.22,89.74L0.12,89.18L0.05,88.61L0.01,88.03L0,87.45L0,87.3L0,87.14L0.01,86.99L0.01,86.84L0.02,86.69L0.03,86.54L0.04,86.39L0.06,86.24L0.07,86.09L0.09,85.94L0.11,85.8L0.13,85.65L0.15,85.51L0.17,85.36L0.2,85.22L0.23,85.07L0.26,84.93L0.29,84.79L0.32,84.65L0.35,84.51L0.39,84.37L0.43,84.23L0.47,84.09L0.51,83.95L0.55,83.81L0.59,83.68L0.64,83.54L0.68,83.4L0.73,83.27L0.78,83.13L0.83,83L0.89,82.87L0.94,82.73L1,82.6L1.55,81.5L24.9,35.5L25.35,34.65L25.46,34.47L25.57,34.28L25.68,34.1L25.8,33.93L25.92,33.75L26.04,33.58L26.17,33.41L26.29,33.24L26.43,33.07L26.56,32.91L26.7,32.74L26.84,32.58L26.98,32.43L27.12,32.27L27.27,32.12L27.42,31.97L27.57,31.82L27.73,31.68L27.89,31.54L28.05,31.4L28.21,31.26L28.38,31.13L28.55,31L28.72,30.87L28.89,30.75L29.07,30.62L29.24,30.5L29.42,30.39L29.61,30.27L29.79,30.16L29.98,30.06L30.17,29.95L30.36,29.85L30.55,29.75L30.74,29.84L30.93,29.94Z"
|
||||
android:fillColor="#ff5000"
|
||||
android:fillAlpha="1"/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M30.93,29.94L31.12,30.04L31.31,30.15L31.49,30.26L31.68,30.37L31.86,30.48L32.03,30.6L32.21,30.72L32.38,30.85L32.55,30.98L32.72,31.11L32.89,31.24L33.05,31.38L33.21,31.52L33.37,31.66L33.53,31.81L33.68,31.95L33.83,32.11L33.98,32.26L34.12,32.41L34.26,32.57L34.4,32.73L34.54,32.9L34.67,33.06L34.81,33.23L34.93,33.4L35.06,33.57L35.18,33.75L35.3,33.92L35.42,34.1L35.53,34.28L35.64,34.47L35.75,34.65L36.2,35.5L44,50.85L32.1,74.3L22.7,92.8L22.45,93.3L22.26,93.62L22.07,93.93L21.87,94.24L21.65,94.54L21.43,94.83L21.2,95.12L20.96,95.4L20.71,95.67L20.46,95.93L20.19,96.19L19.92,96.44L19.64,96.68L19.36,96.91L19.06,97.13L18.76,97.34L18.46,97.55L18.14,97.74L17.82,97.93L17.5,98.11L17.17,98.27L16.83,98.43L16.49,98.58L16.14,98.71L15.78,98.84L15.42,98.95L15.06,99.05L14.69,99.14L14.32,99.22L13.94,99.29L13.56,99.35L13.18,99.39L12.79,99.42L12.4,99.44L12,99.45L11.42,99.44L10.84,99.4L10.27,99.33L9.71,99.23L9.16,99.12L8.62,98.97L8.09,98.81L7.57,98.61L7.07,98.4L6.57,98.16L6.09,97.91L5.62,97.63L5.17,97.33L4.73,97.01L4.31,96.67L3.9,96.32L3.51,95.94L3.13,95.55L2.78,95.14L2.44,94.72L2.12,94.28L1.82,93.83L1.54,93.36L1.29,92.88L1.05,92.38L0.84,91.88L0.64,91.36L0.48,90.83L0.33,90.29L0.22,89.74L0.12,89.18L0.05,88.61L0.01,88.03L0,87.45L0,87.3L0,87.14L0.01,86.99L0.01,86.84L0.02,86.69L0.03,86.54L0.04,86.39L0.06,86.24L0.07,86.09L0.09,85.94L0.11,85.8L0.13,85.65L0.15,85.51L0.17,85.36L0.2,85.22L0.23,85.07L0.26,84.93L0.29,84.79L0.32,84.65L0.35,84.51L0.39,84.37L0.43,84.23L0.47,84.09L0.51,83.95L0.55,83.81L0.59,83.68L0.64,83.54L0.68,83.4L0.73,83.27L0.78,83.13L0.83,83L0.89,82.87L0.94,82.73L1,82.6L1.55,81.5L24.9,35.5L25.35,34.65L25.46,34.47L25.57,34.28L25.68,34.1L25.8,33.93L25.92,33.75L26.04,33.58L26.17,33.41L26.29,33.24L26.43,33.07L26.56,32.91L26.7,32.74L26.84,32.58L26.98,32.43L27.12,32.27L27.27,32.12L27.42,31.97L27.57,31.82L27.73,31.68L27.89,31.54L28.05,31.4L28.21,31.26L28.38,31.13L28.55,31L28.72,30.87L28.89,30.75L29.07,30.62L29.24,30.5L29.42,30.39L29.61,30.27L29.79,30.16L29.98,30.06L30.17,29.95L30.36,29.85L30.55,29.75L30.74,29.84L30.93,29.94Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M22.45,93.3C22.47,93.27 22.55,93.1 22.7,92.8L32.1,74.3L44,50.85L36.2,35.5C35.93,34.99 35.78,34.71 35.75,34.65C34.55,32.55 32.75,30.8 30.55,29.75C28.35,30.85 26.55,32.55 25.35,34.65C25.32,34.71 25.19,34.99 24.95,35.5L1.6,81.5C1.24,82.19 1.04,82.57 1,82.65C0.35,84.15 0,85.75 0,87.5C0,94.1 5.35,99.45 12,99.45C16.5,99.45 20.45,96.95 22.45,93.3Z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:startY="33.26"
|
||||
android:startX="38.11"
|
||||
android:endY="98.65"
|
||||
android:endX="7.62"
|
||||
android:type="linear">
|
||||
<item android:offset="0" android:color="#FFD4202C"/>
|
||||
<item android:offset="0.04166" android:color="#F4D82D2B"/>
|
||||
<item android:offset="0.176" android:color="#D2E25226"/>
|
||||
<item android:offset="0.3167" android:color="#AEEB7123"/>
|
||||
<item android:offset="0.4635" android:color="#88F28920"/>
|
||||
<item android:offset="0.6188" android:color="#61F69A1E"/>
|
||||
<item android:offset="0.7886" android:color="#35F9A41D"/>
|
||||
<item android:offset="1" android:color="#00FAA71D"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M22.45,93.3C22.47,93.27 22.55,93.1 22.7,92.8L32.1,74.3L44,50.85L36.2,35.5C35.93,34.99 35.78,34.71 35.75,34.65C34.55,32.55 32.75,30.8 30.55,29.75C28.35,30.85 26.55,32.55 25.35,34.65C25.32,34.71 25.19,34.99 24.95,35.5L1.6,81.5C1.24,82.19 1.04,82.57 1,82.65C0.35,84.15 0,85.75 0,87.5C0,94.1 5.35,99.45 12,99.45C16.5,99.45 20.45,96.95 22.45,93.3Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M36.2,35.5C35.93,34.99 35.78,34.71 35.75,34.65C34.55,32.55 32.75,30.8 30.55,29.75C31.25,29.4 32.05,29.1 32.8,28.9C33.75,28.65 34.8,28.5 35.8,28.5C37.44,28.5 50.56,28.5 52.2,28.5C56.7,28.55 60.6,31 62.65,34.65C62.67,34.71 62.79,34.99 63,35.5L84.05,77.15L91.8,92.45C92.07,92.96 92.22,93.24 92.25,93.3C93.45,95.4 95.25,97.15 97.45,98.2C96.75,98.55 95.95,98.85 95.2,99.05C94.25,99.3 93.2,99.45 92.15,99.45C90.52,99.45 77.48,99.45 75.85,99.45C71.35,99.4 67.45,96.95 65.4,93.3C65.37,93.24 65.22,92.96 64.95,92.45L43.95,50.8L36.2,35.5Z"
|
||||
android:fillColor="#ff8c44"
|
||||
android:fillAlpha="1"/>
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M36.2,35.5C35.93,34.99 35.78,34.71 35.75,34.65C34.55,32.55 32.75,30.8 30.55,29.75C31.25,29.4 32.05,29.1 32.8,28.9C33.75,28.65 34.8,28.5 35.8,28.5C37.44,28.5 50.56,28.5 52.2,28.5C56.7,28.55 60.6,31 62.65,34.65C62.67,34.71 62.79,34.99 63,35.5L84.05,77.15L91.8,92.45C92.07,92.96 92.22,93.24 92.25,93.3C93.45,95.4 95.25,97.15 97.45,98.2C96.75,98.55 95.95,98.85 95.2,99.05C94.25,99.3 93.2,99.45 92.15,99.45C90.52,99.45 77.48,99.45 75.85,99.45C71.35,99.4 67.45,96.95 65.4,93.3C65.37,93.24 65.22,92.96 64.95,92.45L43.95,50.8L36.2,35.5Z"
|
||||
android:strokeAlpha="0"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0"
|
||||
android:strokeColor="#000000"/>
|
||||
</vector>
|
30
app/src/main/res/drawable/thumb_namecom.xml
Normal file
30
app/src/main/res/drawable/thumb_namecom.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="96dp"
|
||||
android:height="96dp"
|
||||
android:viewportWidth="96"
|
||||
android:viewportHeight="96">
|
||||
<path
|
||||
android:pathData="m0,48l0,-48l96,0l0,96l-96,0z"
|
||||
android:fillColor="#8cc43e"/>
|
||||
<path
|
||||
android:pathData="m0,48l0,-48l96,0l0,96l-96,0zM36.3576,60.234 L36.35,39.108 36.702,38.6643c0.7667,-0.9664 2.6257,-2.5322 3.9817,-3.3539 4.2827,-2.595 9.5608,-3.0896 13.7964,-1.2929 2.7562,1.1691 4.2212,3.3605 4.9364,7.3831 0.0998,0.5613 0.1519,6.2719 0.1858,20.37l0.0472,19.59l20.8776,0l-0.039,-24.15c-0.0359,-22.2192 -0.0557,-24.2592 -0.2478,-25.5216 -0.4408,-2.895 -1.1089,-5.1936 -2.0628,-7.0973 -2.8507,-5.6891 -7.826,-8.8854 -15.504,-9.9602 -0.6525,-0.0913 -2.1563,-0.1173 -4.44,-0.0766 -2.9858,0.0532 -3.673,0.1018 -5.0759,0.359 -6.1913,1.1353 -11.1161,3.5365 -15.5076,7.5612l-1.29,1.1823l0,-7.4573l-20.88,0l0,65.16l20.8848,0l-0.0076,-21.126z"
|
||||
android:fillColor="#8ac142"/>
|
||||
<path
|
||||
android:pathData="m0,48l0,-48l96,0l0,96l-96,0zM36.36,60.1824l0,-21.1776l1.05,-1.0637c1.2871,-1.3039 2.5906,-2.2727 4.1714,-3.1002 3.7964,-1.9873 8.2517,-2.4365 11.8871,-1.1985 3.5234,1.1999 5.1115,3.241 5.8955,7.5772 0.1739,0.9615 0.2002,3.2221 0.2403,20.61l0.0451,19.53l20.8764,0l-0.0384,-24.15c-0.0413,-26.004 -0.0091,-24.5964 -0.634,-27.7464 -0.2763,-1.3931 -1.056,-3.6571 -1.7414,-5.0562 -1.2712,-2.5949 -3.5702,-5.1042 -6.1733,-6.7375 -2.2422,-1.4069 -5.9308,-2.6225 -9.198,-3.0313 -1.862,-0.233 -7.7098,-0.0891 -9.4612,0.2328 -6.4474,1.1848 -11.701,3.8021 -16.08,8.0108l-0.78,0.7497 -0.0317,-3.7157 -0.0317,-3.7158l-20.8764,0l0,65.16l20.88,0z"
|
||||
android:fillColor="#88bc48"/>
|
||||
<path
|
||||
android:pathData="m0,48l0,-48l96,0l0,96l-96,0zM36.36,60.2592l0,-21.2208l1.29,-1.2541c2.398,-2.3312 4.9612,-3.7291 8.25,-4.4992 0.7577,-0.1774 1.4279,-0.2244 3.18,-0.2233 2.5146,0.0017 3.4888,0.1834 5.4,1.0073 2.6321,1.1346 4.0542,3.1132 4.7522,6.6112 0.3256,1.6314 0.3983,5.861 0.4031,23.43l0.0047,17.37l20.8872,0l-0.0386,-24.45c-0.042,-26.6184 0.0045,-24.726 -0.6847,-27.8844 -1.4932,-6.8413 -5.84,-11.5262 -12.6036,-13.584 -2.9801,-0.9065 -4.5193,-1.0797 -8.9999,-1.013 -3.904,0.0581 -4.7195,0.1528 -7.6055,0.8827 -4.9266,1.246 -9.5454,3.748 -12.9792,7.0312 -0.6079,0.5811 -1.1389,1.0566 -1.18,1.0566 -0.0412,0 -0.0748,-1.647 -0.0748,-3.66l0,-3.66l-20.88,0l0,65.28l20.88,0z"
|
||||
android:fillColor="#81a65d"/>
|
||||
<path
|
||||
android:pathData="m0,48l0,-48l96,0l0,96l-96,0zM36.36,60.2844l0,-21.1956l1.23,-1.2182c2.2733,-2.2516 4.8395,-3.6901 8.0028,-4.4862 1.1497,-0.2893 1.4731,-0.3185 3.4872,-0.3144 2.0212,0.0042 2.3274,0.0334 3.42,0.3263 3.9958,1.0712 5.8855,3.1477 6.737,7.4027 0.2537,1.2679 0.3795,9.8886 0.3924,26.91l0.0105,13.77l20.886,0l-0.0376,-24.51c-0.0339,-22.1352 -0.0568,-24.6264 -0.2362,-25.71 -0.6663,-4.0246 -1.8022,-6.9349 -3.6811,-9.4318 -2.6598,-3.5346 -6.3766,-5.7266 -11.7107,-6.9064 -1.3528,-0.2992 -1.6727,-0.3217 -5.28,-0.3709 -4.1207,-0.0562 -5.0802,0.0109 -7.5553,0.5285 -5.5556,1.1618 -10.2148,3.5232 -14.3748,7.2856l-1.29,1.1667l0,-7.453l-20.9232,0.0613 0.0218,27.36c0.012,15.048 0.0216,29.7492 0.0214,32.67l-0.0004,5.31l20.88,0z"
|
||||
android:fillColor="#809e63"/>
|
||||
<path
|
||||
android:pathData="m0,48l0,-48l96,0l0,96l-96,0zM36.36,60.3468l0,-21.1332l0.63,-0.7288c1.8018,-2.0844 4.7786,-3.9643 7.6273,-4.817 2.3591,-0.7061 5.3293,-0.8558 7.4027,-0.3731 1.2524,0.2916 2.9686,0.9835 3.7752,1.5221 2.1466,1.4334 3.3764,4.1213 3.6714,8.0242 0.0424,0.561 0.0853,9.471 0.0953,19.8l0.0182,18.78 20.946,0.0613 -0.038,-24.5712c-0.0346,-22.3572 -0.0561,-24.6732 -0.2394,-25.7148 -0.9153,-5.2034 -2.3604,-8.2807 -5.2418,-11.1623 -2.7827,-2.7828 -6.7432,-4.6325 -11.4245,-5.3357 -1.6876,-0.2535 -7.821,-0.2467 -9.5671,0.0105 -3.5023,0.516 -6.4843,1.4489 -9.6108,3.0066 -2.7372,1.3638 -4.8388,2.8285 -7.1147,4.9586l-0.93,0.8705l0,-7.4651l-20.94,0.0613 -0.0604,65.34l21,0z"
|
||||
android:fillColor="#7d9767"/>
|
||||
<path
|
||||
android:pathData="m0,48l0,-48l96,0l0,96l-96,0zM36.4212,60.2904 L36.4218,39.1608 37.0689,38.4138c1.0597,-1.2232 2.9575,-2.678 4.6279,-3.5477 4.3207,-2.2494 9.2891,-2.4512 13.2084,-0.5366 2.6027,1.2715 4.0261,3.76 4.4909,7.851 0.0785,0.6912 0.123,7.9604 0.1237,20.19l0.001,19.11l21.006,0l-0.0375,-24.63c-0.0342,-22.4712 -0.0552,-24.7308 -0.24,-25.7808 -0.8412,-4.779 -2.3068,-7.9913 -4.8881,-10.7143 -2.5747,-2.7161 -5.8433,-4.4264 -10.3872,-5.4352 -1.3613,-0.3022 -1.6376,-0.3206 -5.5308,-0.3686 -3.3438,-0.0412 -4.3376,-0.0149 -5.4,0.1426 -6.5784,0.9756 -12.5004,3.8038 -16.8144,8.0305l-0.8728,0.855 0.0522,-3.6097c0.0287,-1.9854 0.0131,-3.6731 -0.0347,-3.7505 -0.0656,-0.1062 -2.6437,-0.1332 -10.5194,-0.11l-10.4326,0.0307 -0.0604,65.3412 21.06,-0.0613 0.0006,-21.1296z"
|
||||
android:fillColor="#7a8d6c"/>
|
||||
<path
|
||||
android:pathData="m0,48l0,-48l96,0l0,96l-96,0zM36.4608,60.33 L36.4205,39.18 36.7805,38.7692c3.6097,-4.1188 9.2171,-6.3326 14.1852,-5.6005 3.7702,0.5556 6.0812,2.0316 7.2871,4.6542 0.5104,1.1101 0.9859,3.0377 1.1446,4.6399 0.0783,0.7907 0.1231,8.1125 0.1231,20.13l0,18.8868l21.1308,0l-0.0441,-24.15c-0.0478,-26.1792 -0.0203,-25.0596 -0.6894,-28.0644 -1.7556,-7.8818 -6.6109,-12.5256 -15.0564,-14.4 -1.0868,-0.2412 -1.606,-0.2709 -5.5025,-0.3145 -3.5311,-0.0395 -4.5221,-0.0137 -5.5267,0.1438 -6.4556,1.0123 -12.174,3.7348 -16.3608,7.7884l-0.99,0.9587l0,-7.3626l-21.12,0l0,65.4l21.1404,0z"
|
||||
android:fillColor="#757576"/>
|
||||
</vector>
|
42
app/src/main/res/drawable/thumb_paysafecard.xml
Normal file
42
app/src/main/res/drawable/thumb_paysafecard.xml
Normal file
|
@ -0,0 +1,42 @@
|
|||
<vector android:height="22dp" android:viewportHeight="164.09814"
|
||||
android:viewportWidth="922.8823" android:width="128dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M169.215,73.79C169.112,70.621 167.618,68.985 164.718,68.878L149.224,68.878C145.557,69.102 143.663,71.114 143.575,74.898L143.575,102.764C143.663,106.671 145.758,108.663 149.83,108.775L164.029,108.775C165.504,108.775 166.729,108.228 167.706,107.11C168.726,106.27 169.215,105.191 169.215,103.853L169.215,73.79zM123.682,69.835C123.785,62.862 125.338,57.564 128.35,53.941C129.927,52.423 131.9,51.153 134.302,50.103C136.798,48.985 139.215,48.443 141.558,48.443L169.996,48.443C182.54,48.551 188.917,55.411 189.117,69.039L189.117,110.982C189.024,115.821 187.13,120.02 183.468,123.531C179.84,127.222 175.509,129.102 170.465,129.215L143.575,129.215L143.575,159.454L123.682,159.454L123.682,69.835" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M225.025,104.727C225.025,105.894 225.562,106.817 226.612,107.51C227.55,108.341 228.731,108.775 230.225,108.775L245.504,108.775C248.956,108.775 250.748,107.437 250.85,104.727L250.85,99.024C250.85,95.909 249.029,94.337 245.357,94.337L230.225,94.337C228.233,94.337 226.856,94.669 226.09,95.294C225.382,96.031 225.025,97.491 225.025,99.654L225.025,104.727zM250.85,73.297C250.953,70.24 249.171,68.78 245.499,68.878L205.435,68.878L205.435,48.443L250.543,48.443C263.682,48.658 270.352,55.006 270.577,67.54L270.577,110.289C270.465,115.694 268.809,120.152 265.596,123.697C262.237,127.369 257.906,129.215 252.598,129.215L225.333,129.215C212.061,129.102 205.333,123.043 205.128,110.997L205.128,94.503C205.23,81.915 211.661,75.518 224.39,75.299L250.85,75.299L250.85,73.297" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M326.446,139.014C328.023,138.917 329.39,138.35 330.499,137.335C331.563,136.387 332.1,135.299 332.1,134.063L332.1,129.215L306.632,129.215C303.311,129.215 300.655,128.79 298.673,127.945C296.578,127.178 294.493,125.748 292.393,123.717C290.406,121.563 288.975,119.312 288.106,116.959C287.203,114.805 286.744,112.066 286.744,108.775L286.744,48.443L306.632,48.443L306.632,102.301C306.632,106.617 308.394,108.775 311.964,108.775L326.007,108.775C327.677,108.775 329.127,108.228 330.343,107.11C331.514,106.163 332.1,105.04 332.1,103.721L332.1,48.443L351.827,48.443L351.827,137.447C351.715,144.034 350.025,149.307 346.768,153.306C343.463,157.305 338.941,159.351 333.175,159.454L286.744,159.454L286.744,139.014L326.446,139.014" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M367.447,108.775L402.891,108.775C406.134,108.663 407.818,107.364 407.921,104.874L407.921,103.038C407.921,102.506 407.76,101.915 407.447,101.28C406.656,99.737 405.684,98.97 404.527,98.97L386.954,98.97C381.739,98.868 377.291,97.071 373.551,93.604C369.766,90.401 367.828,86.461 367.716,81.837L367.716,66.597C367.921,54.708 374.381,48.658 387.105,48.443L428.214,48.443L428.214,68.878L393.385,68.878C389.298,68.878 387.237,70.133 387.237,72.633L387.237,74.61C387.237,77.203 389.342,78.502 393.536,78.502L411.055,78.502C415.723,78.609 419.703,80.396 423.018,83.883C426.368,87.393 428.106,91.568 428.214,96.417L428.214,111.324C428.106,115.513 426.168,119.693 422.442,123.863C420.626,125.909 418.765,127.315 416.905,128.111C414.981,128.844 412.369,129.215 409.034,129.215L367.447,129.215L367.447,108.775" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M462.252,104.727C462.252,105.894 462.789,106.817 463.863,107.51C464.791,108.341 465.977,108.775 467.452,108.775L482.76,108.775C486.212,108.775 487.994,107.437 488.096,104.727L488.096,99.024C488.096,95.909 486.251,94.337 482.594,94.337L467.452,94.337C465.465,94.337 464.093,94.669 463.331,95.294C462.623,96.031 462.252,97.491 462.252,99.654L462.252,104.727zM488.096,73.297C488.184,70.24 486.402,68.78 482.725,68.878L442.672,68.878L442.672,48.443L487.794,48.443C500.919,48.658 507.594,55.006 507.799,67.54L507.799,110.289C507.691,115.694 506.021,120.152 502.828,123.697C499.493,127.369 495.157,129.215 489.844,129.215L462.554,129.215C449.293,129.102 442.559,123.043 442.374,110.997L442.374,94.503C442.462,81.915 448.887,75.518 461.627,75.299L488.096,75.299L488.096,73.297" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M523.97,36.856C524.093,31.339 526.124,26.91 530.108,23.59C533.975,20.216 539.053,18.482 545.333,18.385L557.965,18.385L557.965,38.126L550.313,38.126C546.109,38.223 543.966,40.235 543.873,44.122L543.873,48.448L557.965,48.448L557.965,68.902L543.873,68.902L543.873,129.224L523.97,129.224L523.97,36.856" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M614.537,72.916L614.537,72.442C614.537,71.392 614.112,70.499 613.258,69.835C612.33,69.19 611.197,68.878 609.835,68.878L595.987,68.878C594.21,68.878 592.779,69.376 591.671,70.396C590.294,71.339 589.595,72.579 589.595,74.107L589.595,82.31L614.537,72.916zM589.913,101.802L589.913,103.077C589.913,104.713 590.338,106.011 591.202,106.954C591.827,108.16 592.667,108.775 593.785,108.775L634.649,108.775L634.649,129.215L591.202,129.215C587.237,129.215 584.146,128.844 581.964,128.101C579.576,127.315 577.432,126.031 575.562,124.244C573.375,122.081 571.885,119.879 571.138,117.613C570.318,115.25 569.913,112.115 569.913,108.209L569.742,67.305C569.962,54.947 576.417,48.658 589.102,48.443L615.919,48.443C628.306,48.658 634.581,55.167 634.781,68.004L634.781,84.161L589.913,101.802" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M676.89,129.215C673.878,129.215 671.129,128.936 668.634,128.428C666.021,128.004 663.419,126.793 660.758,124.747C658.028,122.369 656.138,119.703 655.103,116.759C654.01,113.863 653.482,110.582 653.482,106.89L653.482,68.751C653.37,65.64 653.682,62.911 654.41,60.543C655.079,58.179 656.485,55.865 658.609,53.599C661.031,51.221 663.502,49.639 666.109,48.863C668.619,48.233 671.446,47.916 674.615,47.916L705.103,47.916L705.103,52.696L675.323,52.696C670.064,52.696 665.933,53.775 662.911,55.938C659.82,58.297 658.243,62.364 658.243,68.096L658.243,106.26C658.243,108.946 658.653,111.558 659.469,114.078C660.303,116.553 661.695,118.726 663.692,120.626C665.86,122.271 668.018,123.297 670.123,123.717C672.315,124.2 674.669,124.429 677.164,124.429L705.582,124.429L705.582,129.215L676.89,129.215" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M783.516,79.732L743.546,79.732C738.76,79.84 735.01,81.319 732.31,84.171C729.517,87.066 728.135,91.036 728.135,96.08L728.135,108.253C728.135,110.611 728.38,112.769 728.887,114.713C729.39,116.759 730.645,118.585 732.628,120.152C736.08,123.013 739.903,124.429 744.083,124.429L768.302,124.429C778.424,124.322 783.516,118.99 783.516,108.404L783.516,79.732zM788.267,107.213C788.267,110.284 788.033,112.979 787.637,115.352C786.993,117.93 785.67,120.416 783.663,122.779C779.488,127.178 774.312,129.322 768.135,129.215L744.371,129.215C738.194,129.215 733.189,127.369 729.312,123.697C725.352,120.069 723.345,115.025 723.345,108.555L723.345,96.26C723.546,82.388 730.455,75.284 744.068,74.962L783.663,74.962L783.663,69.581C783.663,65.147 782.379,61.265 779.825,57.926C778.204,55.758 776.285,54.307 774.107,53.56C771.905,52.984 769.434,52.696 766.68,52.696L723.487,52.696L723.487,47.916L764.434,47.916C768.179,47.916 771.563,48.179 774.63,48.697C776.207,49.01 777.637,49.625 778.961,50.513C780.362,51.358 781.671,52.594 782.882,54.215C786.553,58.951 788.345,64.415 788.267,70.567L788.267,107.213" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M832.965,52.696C821.881,52.901 816.417,58.951 816.622,70.855L816.622,129.215L811.861,129.215L811.861,70.875C811.636,55.562 818.927,47.916 833.731,47.916L839.024,47.916L839.024,52.696L832.965,52.696" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#008ac9"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M913.482,52.72L875.806,52.72C873.092,52.72 870.66,53.023 868.468,53.599C866.173,54.117 863.956,55.509 861.881,57.774C859.893,59.84 858.643,61.885 858.121,63.931C857.423,65.997 857.105,68.472 857.218,71.358L857.218,108.565C857.218,114.752 859.01,118.961 862.642,121.221C864.434,122.271 866.402,123.057 868.609,123.585C870.806,124.171 873.258,124.459 875.958,124.459L892.432,124.459C898.585,124.459 903.619,123.043 907.486,120.186C911.373,117.506 913.35,112.882 913.482,106.29L913.482,52.72zM918.238,106.617C917.818,122.017 909.669,129.566 893.795,129.249L876.134,129.249C872.403,129.249 869.068,128.922 866.119,128.302C863.082,127.515 860.177,125.665 857.379,122.779C855.274,120.186 853.922,117.564 853.38,114.879C852.652,112.198 852.335,109.215 852.447,105.958L852.447,71.236C852.652,55.596 860.528,47.823 876.094,47.94L913.482,47.94L913.482,21.578L918.238,21.578L918.238,106.617" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#e3001b"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M13.184,45.372C14.747,44.683 16.309,44.146 17.872,43.809C20.743,30.098 32.886,19.815 47.442,19.815C62.008,19.815 74.156,30.113 77.022,43.819C81.49,44.669 85.186,46.475 88.067,49.166C88.184,46.534 88.077,44 87.764,41.612C85.924,20.899 68.555,4.644 47.379,4.644C25.577,4.644 7.828,21.925 6.905,43.526C6.778,45.391 6.739,47.335 6.807,49.366C8.638,47.823 10.728,46.436 13.184,45.372" android:strokeColor="#00000000"/>
|
||||
<path android:fillAlpha="1" android:fillColor="#e3001b"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M71.109,48.443L22.525,48.443C20.186,48.443 17.764,48.985 15.269,50.103C12.862,51.153 10.889,52.423 9.307,53.941C6.295,57.564 4.752,62.862 4.644,69.835L4.644,107.813C4.752,114.801 6.295,120.094 9.307,123.697C10.889,125.24 12.862,126.51 15.269,127.569C17.764,128.663 20.186,129.215 22.525,129.215L71.109,129.215C83.658,129.102 90.04,122.218 90.24,108.609L90.24,69.039C90.04,55.411 83.658,48.551 71.109,48.443" android:strokeColor="#00000000"/>
|
||||
</vector>
|
65
app/src/main/res/drawable/thumb_paywithprivacy.xml
Normal file
65
app/src/main/res/drawable/thumb_paywithprivacy.xml
Normal file
|
@ -0,0 +1,65 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:width="128dp"
|
||||
android:height="128dp"
|
||||
android:viewportWidth="32"
|
||||
android:viewportHeight="32">
|
||||
<path
|
||||
android:pathData="M0,0h32v32h-32z"
|
||||
android:strokeWidth="1"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:startY="30.117647"
|
||||
android:startX="30.117647"
|
||||
android:endY="1.882353"
|
||||
android:endX="1.882353"
|
||||
android:type="linear">
|
||||
<item android:offset="0" android:color="#FFFF254C"/>
|
||||
<item android:offset="1" android:color="#FFFF4246"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:pathData="M5,13.4913C5,12.6677 5.6704,12 6.4949,12L25.5051,12C26.3307,12 27,12.6625 27,13.4913L27,23.5087C27,24.3323 26.3296,25 25.5051,25L6.4949,25C5.6693,25 5,24.3375 5,23.5087L5,13.4913ZM7.0526,10.5C7.0526,9.6716 7.7323,9 8.5475,9L23.4525,9C24.2781,9 24.9474,9.6658 24.9474,10.5L24.9474,12L7.0526,12L7.0526,10.5ZM7.0526,11L24.9474,11L24.9474,12L7.0526,12L7.0526,11ZM9.1053,7.5C9.1053,6.6716 9.7704,6 10.6072,6L21.3928,6C22.2223,6 22.8947,6.6658 22.8947,7.5L22.8947,9L9.1053,9L9.1053,7.5ZM9.1053,8L22.8947,8L22.8947,9L9.1053,9L9.1053,8Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:startY="25"
|
||||
android:startX="27"
|
||||
android:endY="6"
|
||||
android:endX="5"
|
||||
android:type="linear">
|
||||
<item android:offset="0" android:color="#FFFF00AA"/>
|
||||
<item android:offset="1" android:color="#FFFF381A"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:pathData="M5,13.4913C5,12.6677 5.6704,12 6.4949,12L25.5051,12C26.3307,12 27,12.6625 27,13.4913L27,23.5087C27,24.3323 26.3296,25 25.5051,25L6.4949,25C5.6693,25 5,24.3375 5,23.5087L5,13.4913ZM7.0526,10.5C7.0526,9.6716 7.7323,9 8.5475,9L23.4525,9C24.2781,9 24.9474,9.6658 24.9474,10.5L24.9474,12L7.0526,12L7.0526,10.5ZM7.0526,11L24.9474,11L24.9474,12L7.0526,12L7.0526,11ZM9.1053,7.5C9.1053,6.6716 9.7704,6 10.6072,6L21.3928,6C22.2223,6 22.8947,6.6658 22.8947,7.5L22.8947,9L9.1053,9L9.1053,7.5ZM9.1053,8L22.8947,8L22.8947,9L9.1053,9L9.1053,8Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M5,13.4913C5,12.6677 5.6704,12 6.4949,12L25.5051,12C26.3307,12 27,12.6625 27,13.4913L27,23.5087C27,24.3323 26.3296,25 25.5051,25L6.4949,25C5.6693,25 5,24.3375 5,23.5087L5,13.4913ZM7.0526,10.5C7.0526,9.6716 7.7323,9 8.5475,9L23.4525,9C24.2781,9 24.9474,9.6658 24.9474,10.5L24.9474,12L7.0526,12L7.0526,10.5ZM7.0526,11L24.9474,11L24.9474,12L7.0526,12L7.0526,11ZM9.1053,7.5C9.1053,6.6716 9.7704,6 10.6072,6L21.3928,6C22.2223,6 22.8947,6.6658 22.8947,7.5L22.8947,9L9.1053,9L9.1053,7.5ZM9.1053,8L22.8947,8L22.8947,9L9.1053,9L9.1053,8Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillAlpha="0.1"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:startY="25"
|
||||
android:startX="27"
|
||||
android:endY="6"
|
||||
android:endX="5"
|
||||
android:type="linear">
|
||||
<item android:offset="0" android:color="#00FFFFFF"/>
|
||||
<item android:offset="1" android:color="#FFFFFFFF"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
</vector>
|
38
app/src/main/res/drawable/thumb_posteo.xml
Normal file
38
app/src/main/res/drawable/thumb_posteo.xml
Normal file
|
@ -0,0 +1,38 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="96dp"
|
||||
android:height="96dp"
|
||||
android:viewportWidth="96"
|
||||
android:viewportHeight="96">
|
||||
<path
|
||||
android:pathData="m0.1427,48.0168l0,-47.8491l95.6847,0l0,95.6962l-95.6847,0z"
|
||||
android:strokeWidth=".19938"
|
||||
android:fillColor="#fdfdfd"/>
|
||||
<path
|
||||
android:pathData="m0.1427,48.0168l0,-47.8491l95.6847,0l0,95.6962l-95.6847,0zM35.803,85.4388c0.1517,-0.1424 -0.3978,-6.0153 -1.2209,-13.0505s-1.343,-12.945 -1.1553,-13.133c0.1877,-0.1878 3.2041,-0.7839 6.7029,-1.3246 8.7316,-1.3495 16.5499,-5.4558 20.1548,-10.5856 5.2857,-7.5217 4.8093,-21.1922 -1.0106,-28.9858 -5.2822,-7.0732 -13.3799,-8.9071 -31.7429,-7.1877 -7.3033,0.6838 -13.7723,1.5484 -14.3757,1.9213 -0.7781,0.481 0.0682,10.7891 2.9126,35.4746 2.2052,19.1382 4.0095,35.6436 4.0095,36.679 0,1.745 0.5642,1.8302 7.7248,1.167 4.2486,-0.3935 7.8487,-0.832 8.0007,-0.9744zM31.9526,45.9014c-0.6445,-2.821 -2.514,-21.5076 -2.2068,-22.0581 0.2294,-0.4112 3.0568,-0.7477 6.283,-0.7477 7.9452,0 11.0177,2.5293 11.7001,9.6326 0.5641,5.8708 -0.6578,8.6987 -4.6511,10.7641 -2.7357,1.4148 -10.9462,3.1928 -11.1252,2.4092z"
|
||||
android:strokeWidth=".19938"
|
||||
android:fillColor="#e6f1d0"/>
|
||||
<path
|
||||
android:pathData="m0.1427,48.0168l0,-47.8491l95.6847,0l0,95.6962l-95.6847,0zM35.798,85.4603c0.4276,-0.4277 -1.4321,-20.0002 -2.2891,-24.092 -0.3979,-1.8996 0.2307,-2.2104 6.5974,-3.2619 16.4414,-2.7156 23.8282,-10.3241 23.8282,-24.544 0,-10.2386 -3.456,-16.5743 -11.2102,-20.5512 -5.6116,-2.878 -11.3352,-3.2804 -26.6847,-1.8764 -12.208,1.1167 -13.9358,1.4942 -13.9358,3.0455 0,0.9739 1.7941,17.4908 3.987,36.704s3.987,35.2416 3.987,35.6181c0,0.7125 14.9576,-0.2788 15.7205,-1.0419zM31.752,43.3445c-0.3131,-1.5659 -0.887,-6.7627 -1.2753,-11.5485l-0.7059,-8.7012l5.0557,0c2.7808,0 6.185,0.4293 7.5648,0.954 4.7049,1.789 7.0194,9.7811 4.4598,15.3994 -1.2508,2.7455 -5.4056,5.0553 -10.9338,6.0778 -3.3664,0.6229 -3.6327,0.4834 -4.1657,-2.1818z"
|
||||
android:strokeWidth=".19938"
|
||||
android:fillColor="#d5e8af"/>
|
||||
<path
|
||||
android:pathData="m0.1427,48.0168l0,-47.8491l95.6847,0l0,95.6962l-95.6847,0zM32.4176,86.2332 L36.2853,85.5943 35.656,79.017c-0.3461,-3.6175 -0.912,-9.5456 -1.2575,-13.1735l-0.6282,-6.5962 4.8653,-0.6838c9.1775,-1.2898 14.4897,-3.6295 19.4074,-8.5482 3.8519,-3.8523 4.9013,-5.7043 5.8661,-10.3516 1.211,-5.8343 0.3602,-13.104 -2.0939,-17.8918 -2.2403,-4.3706 -7.3143,-8.6397 -12.197,-10.2616 -5.0222,-1.6682 -17.7517,-1.5726 -32.2818,0.2425 -4.8479,0.6056 -5.2327,0.8502 -5.2327,3.3244 0,2.431 6.126,57.5477 7.5113,67.5773 0.5826,4.2191 0.6023,4.2366 4.7601,4.2257 2.2963,-0.006 5.9156,-0.2985 8.0427,-0.65zM32.0384,44.9469c0,-0.5919 -0.5044,-5.3533 -1.1208,-10.5806 -1.2703,-10.7726 -1.0506,-11.2296 5.4066,-11.2556 7.3928,-0.0298 11.6621,4.3704 11.6621,12.0195 0,4.4232 -4.2465,8.5762 -10.0399,9.8186 -6.1225,1.3132 -5.9081,1.3132 -5.9081,-0.0017z"
|
||||
android:strokeWidth=".19938"
|
||||
android:fillColor="#c8e196"/>
|
||||
<path
|
||||
android:pathData="m0.1427,48.0168l0,-47.8491l95.6847,0l0,95.6962l-95.6847,0zM33.7069,86.3112 L36.6212,85.7283 35.3744,75.0967c-1.9877,-16.9488 -2.4695,-15.5154 5.6851,-16.9138 12.6255,-2.1653 19.7823,-7.5957 22.5664,-17.1238 1.3227,-4.5264 1.4175,-6.6247 0.534,-11.822 -2.0515,-12.068 -8.9646,-18.0688 -21.761,-18.8902 -7.5223,-0.4828 -29.3593,1.3754 -30.3831,2.5855 -0.4044,0.4779 7.1004,69.5672 8.0072,73.7121 0.1086,0.4965 10.8418,0.2347 13.6838,-0.3337zM31.116,35.3933c-0.6513,-5.7888 -0.8971,-10.8126 -0.5462,-11.1636 0.3509,-0.351 3.0314,-0.6381 5.9565,-0.6381 6.494,0 9.9889,2.7179 10.9712,8.5307 1.1743,6.9517 -3.0889,11.62 -12.0891,13.2375l-3.1085,0.5587z"
|
||||
android:strokeWidth=".19938"
|
||||
android:fillColor="#bedb81"/>
|
||||
<path
|
||||
android:pathData="m1.3885,94.3749c-1.9621,-2.2289 -1.7922,-90.8114 0.178,-92.7813 2.1245,-2.1248 90.7155,-2.1248 92.8401,0 2.1246,2.1248 2.1246,90.7264 0,92.8513 -2.1165,2.1168 -91.1504,2.0526 -93.0151,-0.067zM36.3084,85.8938c0.2429,-0.2721 -0.1484,-5.4293 -0.8697,-11.46 -1.9661,-16.4413 -2.3499,-15.0869 4.4957,-15.8619 17.5652,-1.9875 27.5026,-14.4954 24.1671,-30.4198 -2.6505,-12.6545 -10.2349,-17.9918 -25.5844,-18.0038 -7.1429,-0.0055 -26.3413,1.6459 -27.0737,2.3288 -0.258,0.2405 7.6203,69.6822 8.2002,72.2771 0.5047,2.26 0.8131,2.3333 8.3737,1.9899 4.3173,-0.1961 8.0482,-0.5791 8.2912,-0.8512zM31.1818,35.0158c-0.6399,-5.6288 -0.9462,-10.4511 -0.6805,-10.7171 0.2657,-0.2657 2.9322,-0.5185 5.9256,-0.5617 6.3985,-0.0925 9.0566,1.7371 10.5428,7.2577 2.0084,7.4597 -1.9641,12.8275 -10.1784,13.7534l-4.4457,0.5012z"
|
||||
android:strokeWidth=".19938"
|
||||
android:fillColor="#b2d56a"/>
|
||||
<path
|
||||
android:pathData="m1.1396,92.875c-0.9967,-0.6442 -1.0798,-0.9714 -0.2492,-0.9816 1.8241,-0.0225 1.8241,-87.7315 0,-87.7565 -0.8306,-0.0102 -0.7476,-0.3374 0.2492,-0.9816 0.9095,-0.5878 19.2604,-0.9663 46.847,-0.9663s45.9371,0.3785 46.847,0.9663c0.9967,0.6442 1.0798,0.9714 0.2492,0.9816 -1.8241,0.0223 -1.8241,87.7315 0,87.7565 0.8306,0.01 0.7476,0.3374 -0.2492,0.9816 -0.9095,0.5878 -19.2604,0.9663 -46.847,0.9663s-45.9371,-0.3785 -46.847,-0.9663zM35.692,86.1242c0.8796,-0.5597 0.8155,-3.72 -0.2643,-13.015 -0.7843,-6.7517 -1.1685,-12.6925 -0.8537,-13.2015 0.3147,-0.5093 1.8515,-0.9261 3.4149,-0.9261 4.5125,0 14.7226,-3.5538 18.5095,-6.4422 5.6626,-4.3195 7.8967,-9.6756 7.9167,-18.9777 0.0145,-6.6772 -0.3882,-8.6977 -2.4746,-12.4165 -5.7811,-10.3046 -14.4117,-12.8065 -36.2452,-10.5076 -7.6428,0.8047 -14.0348,1.6021 -14.2042,1.772 -0.3564,0.3564 7.5188,71.3621 8.1232,73.2371 0.4436,1.3783 14.0278,1.7808 16.0779,0.4764zM31.6251,37.7987c-0.369,-3.975 -0.9254,-8.6852 -1.2365,-10.4671l-0.5655,-3.2398l6.1365,0c5.1867,0 6.5155,0.3789 8.5831,2.4469 3.5448,3.5452 3.5126,11.613 -0.0595,14.9239 -1.3783,1.2775 -3.9013,2.6019 -5.6066,2.943 -6.457,1.2915 -6.5245,1.2302 -7.2518,-6.6072z"
|
||||
android:strokeWidth=".19938"
|
||||
android:fillColor="#a8cf56"/>
|
||||
<path
|
||||
android:pathData="m72.5416,82.2754c-6.6644,-6.6652 0.0589,-17.2153 9.0745,-14.2394 6.372,2.1031 7.8187,10.7081 2.5037,14.8894 -3.5929,2.8265 -8.3707,2.5582 -11.5786,-0.6501z"
|
||||
android:strokeWidth=".19938"
|
||||
android:fillColor="#e28444"/>
|
||||
</vector>
|
13
app/src/main/res/drawable/thumb_proxmox.xml
Normal file
13
app/src/main/res/drawable/thumb_proxmox.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="96dp"
|
||||
android:height="96dp"
|
||||
android:viewportWidth="96"
|
||||
android:viewportHeight="96">
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="m25.8,6.37c-1.88,0.0136 -3.65,0.373 -5.29,1.08 -1.64,0.705 -3.08,1.67 -4.31,2.91l31.8,35 31.8,-35c-1.23,-1.23 -2.67,-2.2 -4.31,-2.91 -1.64,-0.705 -3.4,-1.06 -5.29,-1.08 -2,0.0153 -3.83,0.412 -5.5,1.19 -1.67,0.778 -3.11,1.84 -4.34,3.2l-12.4,13.5 -12.3,-13.5c-1.27,-1.36 -2.75,-2.42 -4.44,-3.2 -1.69,-0.778 -3.51,-1.17 -5.48,-1.19zM48,50.37 L16.2,85.37c1.23,1.23 2.67,2.2 4.31,2.91 1.64,0.705 3.4,1.06 5.29,1.08 2,-0.0153 3.83,-0.412 5.5,-1.19 1.67,-0.778 3.11,-1.84 4.34,-3.2l12.4,-13.5 12.3,13.5c1.27,1.36 2.75,2.42 4.44,3.2 1.69,0.778 3.52,1.17 5.48,1.19 1.88,-0.0136 3.65,-0.371 5.29,-1.08 1.64,-0.705 3.08,-1.67 4.31,-2.91l-31.8,-35z"
|
||||
android:strokeWidth=".167"/>
|
||||
<path
|
||||
android:pathData="m10.5,16.9c-2.06,0.0149 -3.99,0.408 -5.79,1.18 -1.8,0.772 -3.37,1.83 -4.72,3.18l24.3,26.7 -24.3,26.7c1.35,1.39 2.92,2.48 4.72,3.26 1.8,0.781 3.73,1.18 5.79,1.19 2.16,-0.0167 4.17,-0.451 6.03,-1.3s3.48,-2.02 4.83,-3.51l24,-26.4 -24,-26.3c-1.39,-1.49 -3.01,-2.66 -4.86,-3.51 -1.85,-0.851 -3.85,-1.28 -6,-1.3zM85.5,16.9c-2.15,0.0168 -4.15,0.449 -6,1.3 -1.85,0.852 -3.47,2.02 -4.86,3.51l-24,26.3 24,26.4c1.35,1.49 2.96,2.65 4.83,3.51 1.87,0.852 3.88,1.29 6.03,1.3 2.06,-0.013 3.99,-0.41 5.79,-1.19 1.8,-0.781 3.37,-1.87 4.72,-3.26l-24.3,-26.7 24.3,-26.7c-1.35,-1.35 -2.92,-2.41 -4.72,-3.18 -1.8,-0.772 -3.73,-1.16 -5.79,-1.18z"
|
||||
android:fillColor="#e57000"/>
|
||||
</vector>
|
347
app/src/main/res/drawable/thumb_pypi.xml
Normal file
347
app/src/main/res/drawable/thumb_pypi.xml
Normal file
|
@ -0,0 +1,347 @@
|
|||
<vector android:height="58dp" android:viewportHeight="58"
|
||||
android:viewportWidth="65.812035" android:width="66dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M18.93,18.826l9.323,3.394v10.957l-9.323,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M9.47,22.27v10.957l9.46,-3.444V18.826z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M9.47,33.227l9.322,3.393 9.46,-3.443 -9.322,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M9.47,22.27l9.322,3.393 9.46,-3.443 -9.322,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#fff"
|
||||
android:pathData="M18.792,25.663V36.62l9.46,-3.443V22.22z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M9.47,22.27l9.322,3.393V36.62L9.47,33.227z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M28.293,11.166l9.323,3.393v10.957l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M18.833,14.609v10.957l9.46,-3.443V11.166z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M18.833,25.566l9.322,3.393 9.461,-3.443 -9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M18.833,14.609l9.322,3.393 9.461,-3.443 -9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#fff"
|
||||
android:pathData="M28.155,18.002V28.96l9.461,-3.443V14.559z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M18.833,14.609l9.322,3.393V28.96l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M9.567,33.297l9.322,3.393v10.957l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M0.106,36.74v10.957l9.46,-3.443V33.297z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M0.106,47.697L9.43,51.09l9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M0.106,36.74l9.323,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#fff"
|
||||
android:pathData="M9.429,40.133V51.09l9.46,-3.443V36.69z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M0.106,36.74l9.323,3.393V51.09L0.106,47.697z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M18.93,36.702l9.323,3.393v10.957l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M9.47,40.145v10.957l9.46,-3.443V36.702z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M9.47,51.102l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M9.47,40.145l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#fff"
|
||||
android:pathData="M18.792,43.538v10.957l9.46,-3.443V40.095z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M9.47,40.145l9.322,3.393v10.957L9.47,51.102z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M18.93,25.636l9.323,3.393v10.957l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M9.47,29.08v10.956l9.46,-3.443V25.636z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M9.47,40.036l9.322,3.394 9.46,-3.444 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M9.47,29.08l9.322,3.393 9.46,-3.444 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#fff"
|
||||
android:pathData="M18.792,32.473V43.43l9.46,-3.444V29.03z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M9.47,29.08l9.322,3.393V43.43L9.47,40.036z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M56.383,29.892l9.323,3.393v10.957l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M46.923,33.335v10.957l9.46,-3.443V29.892z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M46.923,44.292l9.322,3.394 9.46,-3.444 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M46.923,33.335l9.322,3.394 9.46,-3.444 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#fff"
|
||||
android:pathData="M56.245,36.729v10.957l9.46,-3.444V33.285z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M46.923,33.335l9.322,3.394v10.957l-9.322,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M47.0168,33.2954l9.3223,3.3931l0,10.9569l-9.3223,-3.3931z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M37.5563,36.7387l0,10.9569l9.4604,-3.4433l0,-10.9563z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M37.5563,47.6956l9.3223,3.3931 9.4604,-3.4433 -9.3223,-3.3931z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M37.5563,36.7387l9.3223,3.3931 9.4604,-3.4433 -9.3223,-3.3931z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#ffd242"
|
||||
android:pathData="M46.8786,40.1318l0,10.9569l9.4604,-3.4433l0,-10.9563z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M37.5563,36.7387l9.3223,3.3931l0,10.9569l-9.3223,-3.3931z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#fff" android:pathData="M52.821,43.4602m-1.8172,0.6614a2.2402,1.5686 125.0006,1 1,3.6344 -1.3228a2.2402,1.5686 125.0006,1 1,-3.6344 1.3228"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M37.657,36.702l9.322,3.393v10.957l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M28.196,40.145v10.957l9.46,-3.443V36.702z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M28.196,51.102l9.323,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M28.196,40.145l9.323,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#ffd242"
|
||||
android:pathData="M37.519,43.538v10.957l9.46,-3.443V40.095z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M28.196,40.145l9.323,3.393v10.957l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M28.293,40.107l9.323,3.393v10.957l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M18.833,43.55v10.957l9.46,-3.443V40.107z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M18.833,54.507l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M18.833,43.55l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#fff"
|
||||
android:pathData="M28.155,46.943V57.9l9.46,-3.443V43.5z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M18.833,43.55l9.322,3.393V57.9l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M56.383,18.826l9.323,3.394v10.957l-9.323,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M46.923,22.27v10.957l9.46,-3.444V18.826z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M46.923,33.227l9.322,3.393 9.46,-3.443 -9.322,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M46.923,22.27l9.322,3.393 9.46,-3.443 -9.322,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#ffd242"
|
||||
android:pathData="M56.245,25.663V36.62l9.46,-3.443V22.22z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M46.923,22.27l9.322,3.393V36.62l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M56.383,7.76l9.323,3.394V22.11l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M46.923,11.204v10.957l9.46,-3.443V7.76z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M46.923,22.161l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#ffc91d"
|
||||
android:pathData="M46.923,11.204l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#ffd242"
|
||||
android:pathData="M56.245,14.597v10.957l9.46,-3.443V11.154z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M46.923,11.204l9.322,3.393v10.957l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M47.02,22.231l9.322,3.393v10.957l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M37.56,25.675v10.957l9.46,-3.444V22.231z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M37.56,36.632l9.322,3.393 9.46,-3.444 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M37.56,25.675l9.322,3.393 9.46,-3.444 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#ffd242"
|
||||
android:pathData="M46.882,29.068v10.957l9.46,-3.444V25.624z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M37.56,25.675l9.322,3.393v10.957l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M47.02,11.166l9.322,3.393v10.957l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M37.56,14.609v10.957l9.46,-3.443V11.166z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M37.56,25.566l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M37.56,14.609l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#3775a9"
|
||||
android:pathData="M46.882,18.002V28.96l9.46,-3.443V14.559z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M37.56,14.609l9.322,3.393V28.96l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M47.02,0.1l9.322,3.393V14.45l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M37.56,3.543V14.5l9.46,-3.443V0.1z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M37.56,14.5l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#2f6491"
|
||||
android:pathData="M37.56,3.543l9.322,3.393 9.46,-3.443L47.02,0.1z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#3775a9"
|
||||
android:pathData="M46.882,6.936v10.957l9.46,-3.443V3.493z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M37.56,3.543l9.322,3.393v10.957L37.559,14.5z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M37.657,25.636l9.322,3.393v10.957l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M28.196,29.08v10.956l9.46,-3.443V25.636z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M28.196,40.036l9.323,3.394 9.46,-3.444 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M28.196,29.08l9.323,3.393 9.46,-3.444 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#ffd242"
|
||||
android:pathData="M37.519,32.473V43.43l9.46,-3.444V29.03z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M28.196,29.08l9.323,3.393V43.43l-9.323,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M37.657,14.57l9.322,3.394V28.92l-9.322,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M28.196,18.014V28.97l9.46,-3.444V14.57z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M28.196,28.97l9.323,3.394 9.46,-3.443 -9.322,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M28.196,18.014l9.323,3.393 9.46,-3.443 -9.322,-3.394z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#3775a9"
|
||||
android:pathData="M37.519,21.407v10.957l9.46,-3.443V17.964z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#efeeea"
|
||||
android:pathData="M28.196,18.014l9.323,3.393v10.957l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M28.293,29.04l9.323,3.394v10.957l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M18.833,32.484v10.957l9.46,-3.443V29.04z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M18.833,43.441l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#f7f7f4"
|
||||
android:pathData="M18.833,32.484l9.322,3.393 9.46,-3.443 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#3775a9"
|
||||
android:pathData="M28.155,35.877v10.957l9.46,-3.443V32.434z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#2f6491"
|
||||
android:pathData="M18.833,32.484l9.322,3.393v10.957l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M28.293,17.975l9.323,3.393v10.957l-9.323,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M18.833,21.419v10.957l9.46,-3.444V17.975z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M18.833,32.376l9.322,3.393 9.46,-3.444 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#2f6491"
|
||||
android:pathData="M18.833,21.419l9.322,3.393 9.46,-3.444 -9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#3775a9"
|
||||
android:pathData="M28.155,24.812v10.957l9.46,-3.444V21.368z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#2f6491"
|
||||
android:pathData="M18.833,21.419l9.322,3.393v10.957l-9.322,-3.393z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".214"/>
|
||||
<path android:fillColor="#e9e9ff"
|
||||
android:pathData="M37.6534,3.5036l9.3229,3.3931l0,10.9569l-9.3229,-3.3931z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#353564"
|
||||
android:pathData="M28.193,6.9469l0,10.9569l9.4604,-3.4433l0,-10.9569z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#afafde"
|
||||
android:pathData="M28.193,17.9038l9.3229,3.3931 9.4604,-3.4433 -9.3229,-3.3931z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#2f6491"
|
||||
android:pathData="M28.193,6.9469l9.3229,3.3931 9.4604,-3.4433 -9.3229,-3.3931z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#3775a9"
|
||||
android:pathData="M37.5159,10.3401l0,10.9569l9.4604,-3.4433l0,-10.9569z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#2f6491"
|
||||
android:pathData="M28.193,6.9469l9.3229,3.3931l0,10.9569l-9.3229,-3.3931z"
|
||||
android:strokeColor="#ccc" android:strokeLineJoin="bevel" android:strokeWidth=".328"/>
|
||||
<path android:fillColor="#fff" android:pathData="M41.0611,14.5152m-1.8172,0.6614a2.2402,1.5686 125.0006,1 1,3.6344 -1.3228a2.2402,1.5686 125.0006,1 1,-3.6344 1.3228"/>
|
||||
</vector>
|
57
app/src/main/res/drawable/thumb_ripe_ncc.xml
Normal file
57
app/src/main/res/drawable/thumb_ripe_ncc.xml
Normal file
|
@ -0,0 +1,57 @@
|
|||
<vector android:height="128dp" android:viewportHeight="841.9"
|
||||
android:viewportWidth="595.3" android:width="90dp"
|
||||
xmlns:aapt="http://schemas.android.com/aapt" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#25316A" android:pathData="M211.2,482.3l-19.3,-34.5h-11.1v34.5h-24.5v-97.5H199c9.7,0 17.2,2.1 23.4,6.6c7.5,5.5 11.5,14.5 11.5,24.2c0,11.9 -5.7,23.5 -18.5,28.7l22.4,38L211.2,482.3L211.2,482.3zM195.9,403.9h-15.2v25.8h15.2c8.8,0 14.2,-5.1 14.2,-13C210.1,407.7 204.1,403.9 195.9,403.9z"/>
|
||||
<path android:fillColor="#25316A" android:pathData="M249,482.3v-97.5h24.5v97.5H249z"/>
|
||||
<path android:fillColor="#25316A" android:pathData="M334.7,448.5h-20.2v33.8h-24.3v-97.5h44c21.6,0 34.2,13.3 34.2,31.3C368.3,432.1 358.5,448.5 334.7,448.5zM330.2,403.9h-15.7v25.8h15.7c8.3,0 14.2,-4.4 14.2,-13.1C344.4,408.1 338.9,403.9 330.2,403.9z"/>
|
||||
<path android:fillColor="#25316A" android:pathData="M380.6,482.3v-97.5h71.8v19.8H405v18.6h39.9v19.7H405v19.4h47.7v20H380.6z"/>
|
||||
<path android:fillColor="#25316A" android:pathData="M224.5,610.9l-42.6,-64h-0.3v64h-25.2V502h26.4l41.4,61.6h0.3V502h25.4v108.9H224.5z"/>
|
||||
<path android:fillColor="#25316A" android:pathData="M312,612.7c-24,0 -46.4,-12.1 -46.4,-39.3v-33.2c0,-26.7 21.7,-40.2 45.7,-40.2c21.2,0 44.3,10.7 44.3,35.9v5.2h-25.7v-2.6c0,-11.3 -9.6,-16.2 -18,-16.2c-9.6,0 -18.9,5 -18.9,17.4v33c0,11.2 8.1,17.6 19.2,17.6c8.4,0 17.7,-4.7 17.7,-16.2v-2.6h25.7v5.3C355.6,602 333.1,612.7 312,612.7z"/>
|
||||
<path android:fillColor="#25316A" android:pathData="M414.5,612.7c-24,0 -46.4,-12.1 -46.4,-39.3v-33.2c0,-26.7 21.7,-40.2 45.7,-40.2c21.2,0 44.3,10.7 44.3,35.9v5.2h-25.7v-2.6c0,-11.3 -9.6,-16.2 -18,-16.2c-9.6,0 -18.9,5 -18.9,17.4v33c0,11.2 8.1,17.6 19.2,17.6c8.4,0 17.7,-4.7 17.7,-16.2v-2.6H458v5.3C458,602 435.6,612.7 414.5,612.7z"/>
|
||||
<path android:pathData="M380,172.6L380,172.6V90.4l-76.3,-44l-76.3,44v82.1v0.1l-71.1,41v88.1l76.3,44l71.1,-41l71.1,41l76.3,-44v-88.1L380,172.6zM303.7,210.5l-60.7,-35l60.7,-35l60.7,35L303.7,210.5zM237.9,184.6l60.7,35v70l-60.7,-35L237.9,184.6L237.9,184.6zM309,219.6l60.7,-35v70l-60.7,35V219.6zM237.9,96.4l65.9,-38l65.9,38v70.1l-65.9,-38l-65.9,38V96.4zM166.8,295.7v-76.1l60.7,-35v76l66,38.1l-60.8,35.1L166.8,295.7zM440.7,295.7l-65.9,38L314,298.6l66,-38.1v-76l60.7,35L440.7,295.7L440.7,295.7z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient android:endX="412.45" android:endY="122.84"
|
||||
android:startX="194.95" android:startY="340.34" android:type="linear">
|
||||
<item android:color="#FF25316A" android:offset="0"/>
|
||||
<item android:color="#FF293269" android:offset="0.06051821"/>
|
||||
<item android:color="#FF343468" android:offset="0.1216"/>
|
||||
<item android:color="#FF453764" android:offset="0.183"/>
|
||||
<item android:color="#FF5B3C60" android:offset="0.2446"/>
|
||||
<item android:color="#FF764459" android:offset="0.3064"/>
|
||||
<item android:color="#FF964D4F" android:offset="0.3684"/>
|
||||
<item android:color="#FFBF5A3D" android:offset="0.4293"/>
|
||||
<item android:color="#FFF36C21" android:offset="0.4872"/>
|
||||
<item android:color="#FF9C9C9C" android:offset="1"/>
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M161.2,662.1v12h-3.4v-28.9h7.9c3.5,0 6.2,0.7 7.9,2s2.5,3.4 2.5,6.1c0,3.8 -1.9,6.4 -5.8,7.7l7.8,13h-4l-7,-12H161.2zM161.2,659.2h4.6c2.4,0 4.1,-0.5 5.2,-1.4s1.7,-2.4 1.7,-4.2c0,-1.9 -0.6,-3.3 -1.7,-4.1c-1.1,-0.8 -2.9,-1.3 -5.4,-1.3h-4.4V659.2z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M182.8,674.1v-28.9h3.4v28.9H182.8z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M212.4,653.7c0,2.9 -1,5.2 -3,6.7c-2,1.6 -4.8,2.4 -8.6,2.4h-3.4v11.4h-3.4v-28.9h7.5C208.8,645.3 212.4,648.1 212.4,653.7zM197.5,659.9h3c3,0 5.1,-0.5 6.5,-1.4c1.3,-1 2,-2.5 2,-4.6c0,-1.9 -0.6,-3.3 -1.9,-4.3c-1.3,-0.9 -3.2,-1.4 -5.8,-1.4h-3.8V659.9z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M234.5,674.1h-16.1v-28.9h16.1v3h-12.7v9.3h12v3h-12v10.6h12.7V674.1z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M274,674.1h-3.8l-15.8,-24.2h-0.2c0.2,2.8 0.3,5.5 0.3,7.8v16.4h-3.1v-28.9h3.8l15.7,24.1h0.2c0,-0.4 -0.1,-1.5 -0.2,-3.4c-0.1,-1.9 -0.1,-3.3 -0.1,-4.1v-16.6h3.1V674.1z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M298,674.1h-16.1v-28.9H298v3h-12.7v9.3h12v3h-12v10.6H298V674.1z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M313.3,674.1H310v-25.9h-9.1v-3h21.6v3h-9.1V674.1z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M352,674.1h-3.3l-5.8,-19.3c-0.3,-0.9 -0.6,-1.9 -0.9,-3.2c-0.3,-1.3 -0.5,-2.1 -0.5,-2.3c-0.3,1.7 -0.8,3.6 -1.4,5.7l-5.6,19.2h-3.3l-7.7,-28.9h3.6l4.6,17.8c0.6,2.5 1.1,4.8 1.4,6.8c0.4,-2.4 0.9,-4.8 1.6,-7.1l5.2,-17.6h3.6l5.4,17.7c0.6,2 1.2,4.3 1.6,6.9c0.2,-1.9 0.7,-4.1 1.4,-6.8l4.5,-17.8h3.6L352,674.1z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M389.3,659.7c0,4.6 -1.2,8.3 -3.5,10.9c-2.3,2.6 -5.6,4 -9.7,4c-4.3,0 -7.5,-1.3 -9.8,-3.9s-3.5,-6.3 -3.5,-11c0,-4.7 1.2,-8.3 3.5,-10.9s5.6,-3.9 9.9,-3.9c4.1,0 7.4,1.3 9.7,3.9C388.2,651.4 389.3,655 389.3,659.7zM366.3,659.7c0,3.9 0.8,6.9 2.5,8.9c1.7,2 4.1,3 7.3,3c3.2,0 5.6,-1 7.2,-3c1.6,-2 2.4,-5 2.4,-8.9c0,-3.9 -0.8,-6.8 -2.4,-8.8c-1.6,-2 -4,-3 -7.2,-3c-3.2,0 -5.6,1 -7.3,3C367.1,652.9 366.3,655.8 366.3,659.7z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M399.1,662.1v12h-3.4v-28.9h7.9c3.5,0 6.2,0.7 7.8,2c1.7,1.4 2.5,3.4 2.5,6.1c0,3.8 -1.9,6.4 -5.8,7.7l7.8,13h-4l-7,-12H399.1zM399.1,659.2h4.6c2.4,0 4.1,-0.5 5.2,-1.4c1.1,-0.9 1.7,-2.4 1.7,-4.2c0,-1.9 -0.6,-3.3 -1.7,-4.1c-1.1,-0.8 -2.9,-1.3 -5.4,-1.3h-4.4V659.2z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M441.6,674.1h-3.9l-10.5,-14l-3,2.7v11.3h-3.4v-28.9h3.4v14.3l13.1,-14.3h4l-11.6,12.5L441.6,674.1z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M170.2,696.3c-3.2,0 -5.7,1.1 -7.5,3.2c-1.8,2.1 -2.8,5 -2.8,8.7c0,3.8 0.9,6.7 2.7,8.8c1.8,2.1 4.3,3.1 7.6,3.1c2,0 4.3,-0.4 6.9,-1.1v2.9c-2,0.8 -4.5,1.1 -7.4,1.1c-4.3,0 -7.5,-1.3 -9.8,-3.9s-3.5,-6.2 -3.5,-11c0,-3 0.6,-5.6 1.7,-7.8c1.1,-2.2 2.7,-4 4.8,-5.2c2.1,-1.2 4.6,-1.8 7.4,-1.8c3,0 5.7,0.6 7.9,1.7l-1.4,2.9C174.5,696.9 172.4,696.3 170.2,696.3z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M208.4,708.2c0,4.6 -1.2,8.3 -3.5,10.9c-2.3,2.6 -5.6,4 -9.7,4c-4.3,0 -7.5,-1.3 -9.8,-3.9s-3.5,-6.3 -3.5,-11c0,-4.7 1.2,-8.3 3.5,-10.9s5.6,-3.9 9.9,-3.9c4.1,0 7.4,1.3 9.7,3.9C207.2,699.9 208.4,703.5 208.4,708.2zM185.4,708.2c0,3.9 0.8,6.9 2.5,8.9c1.7,2 4.1,3 7.3,3c3.2,0 5.6,-1 7.2,-3c1.6,-2 2.4,-5 2.4,-8.9c0,-3.9 -0.8,-6.8 -2.4,-8.8c-1.6,-2 -4,-3 -7.2,-3c-3.2,0 -5.6,1 -7.3,3C186.2,701.4 185.4,704.3 185.4,708.2z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M239.9,708.2c0,4.6 -1.2,8.3 -3.5,10.9c-2.3,2.6 -5.6,4 -9.7,4c-4.3,0 -7.5,-1.3 -9.8,-3.9s-3.5,-6.3 -3.5,-11c0,-4.7 1.2,-8.3 3.5,-10.9s5.6,-3.9 9.9,-3.9c4.1,0 7.4,1.3 9.7,3.9C238.7,699.9 239.9,703.5 239.9,708.2zM216.9,708.2c0,3.9 0.8,6.9 2.5,8.9c1.7,2 4.1,3 7.3,3c3.2,0 5.6,-1 7.2,-3c1.6,-2 2.4,-5 2.4,-8.9c0,-3.9 -0.8,-6.8 -2.4,-8.8c-1.6,-2 -4,-3 -7.2,-3c-3.2,0 -5.6,1 -7.3,3C217.7,701.4 216.9,704.3 216.9,708.2z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M249.7,710.6v12h-3.4v-28.9h7.9c3.5,0 6.2,0.7 7.9,2s2.5,3.4 2.5,6.1c0,3.8 -1.9,6.4 -5.8,7.7l7.8,13h-4l-7,-12H249.7zM249.7,707.7h4.6c2.4,0 4.1,-0.5 5.2,-1.4s1.7,-2.4 1.7,-4.2c0,-1.9 -0.6,-3.3 -1.7,-4.1c-1.1,-0.8 -2.9,-1.3 -5.4,-1.3h-4.4V707.7z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M294.4,707.9c0,4.8 -1.3,8.4 -3.9,10.9c-2.6,2.5 -6.3,3.8 -11.2,3.8h-8v-28.9h8.8c4.5,0 8,1.2 10.5,3.7C293.1,700 294.4,703.5 294.4,707.9zM290.8,708c0,-3.8 -0.9,-6.6 -2.8,-8.5c-1.9,-1.9 -4.7,-2.9 -8.4,-2.9h-4.9v23.1h4.1c4,0 7,-1 9,-3S290.8,711.9 290.8,708z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M300.8,722.6v-28.9h3.4v28.9H300.8z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M334.6,722.6h-3.8L315,698.4h-0.2c0.2,2.8 0.3,5.5 0.3,7.8v16.4h-3.1v-28.9h3.8l15.7,24.1h0.2c0,-0.4 -0.1,-1.5 -0.2,-3.4c-0.1,-1.9 -0.1,-3.3 -0.1,-4.1v-16.6h3.1V722.6z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M360.7,722.6l-3.6,-9.2h-11.6l-3.6,9.2h-3.4l11.4,-29h2.8l11.4,29H360.7zM356.1,710.4l-3.4,-8.9c-0.4,-1.1 -0.9,-2.5 -1.3,-4.2c-0.3,1.3 -0.7,2.7 -1.2,4.2l-3.4,8.9H356.1z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M377.1,722.6h-3.4v-25.9h-9.1v-3h21.6v3h-9.1V722.6z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M390.6,722.6v-28.9h3.4v28.9H390.6z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M426.9,708.2c0,4.6 -1.2,8.3 -3.5,10.9s-5.6,4 -9.7,4c-4.3,0 -7.5,-1.3 -9.8,-3.9s-3.5,-6.3 -3.5,-11c0,-4.7 1.2,-8.3 3.5,-10.9s5.6,-3.9 9.9,-3.9c4.1,0 7.4,1.3 9.7,3.9C425.7,699.9 426.9,703.5 426.9,708.2zM403.9,708.2c0,3.9 0.8,6.9 2.5,8.9c1.7,2 4.1,3 7.3,3c3.2,0 5.6,-1 7.2,-3c1.6,-2 2.4,-5 2.4,-8.9c0,-3.9 -0.8,-6.8 -2.4,-8.8s-4,-3 -7.2,-3c-3.2,0 -5.6,1 -7.3,3C404.7,701.4 403.9,704.3 403.9,708.2z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M455.9,722.6h-3.8l-15.8,-24.2h-0.2c0.2,2.8 0.3,5.5 0.3,7.8v16.4h-3.1v-28.9h3.8l15.7,24.1h0.2c0,-0.4 -0.1,-1.5 -0.2,-3.4c-0.1,-1.9 -0.1,-3.3 -0.1,-4.1v-16.6h3.1V722.6z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M170.2,744.9c-3.2,0 -5.7,1.1 -7.5,3.2c-1.8,2.1 -2.8,5 -2.8,8.7c0,3.8 0.9,6.7 2.7,8.8c1.8,2.1 4.3,3.1 7.6,3.1c2,0 4.3,-0.4 6.9,-1.1v2.9c-2,0.8 -4.5,1.1 -7.4,1.1c-4.3,0 -7.5,-1.3 -9.8,-3.9c-2.3,-2.6 -3.5,-6.2 -3.5,-11c0,-3 0.6,-5.6 1.7,-7.8c1.1,-2.2 2.7,-4 4.8,-5.2c2.1,-1.2 4.6,-1.8 7.4,-1.8c3,0 5.7,0.6 7.9,1.7l-1.4,2.9C174.5,745.5 172.4,744.9 170.2,744.9z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M199.4,771.2h-16.1v-28.9h16.1v3h-12.7v9.3h12v3h-12v10.6h12.7V771.2z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M228.4,771.2h-3.8L208.8,747h-0.2c0.2,2.8 0.3,5.5 0.3,7.8v16.4h-3.1v-28.9h3.8l15.7,24.1h0.2c0,-0.4 -0.1,-1.5 -0.2,-3.4c-0.1,-1.9 -0.1,-3.3 -0.1,-4.1v-16.6h3.1V771.2z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M245.2,771.2h-3.4v-25.9h-9.1v-3h21.6v3h-9.1V771.2z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M262.1,759.2v12h-3.4v-28.9h7.9c3.5,0 6.2,0.7 7.9,2c1.7,1.4 2.5,3.4 2.5,6.1c0,3.8 -1.9,6.4 -5.8,7.7l7.8,13h-4l-7,-12H262.1zM262.1,756.3h4.6c2.4,0 4.1,-0.5 5.2,-1.4s1.7,-2.4 1.7,-4.2c0,-1.9 -0.6,-3.3 -1.7,-4.1c-1.1,-0.8 -2.9,-1.3 -5.4,-1.3h-4.4V756.3z"/>
|
||||
<path android:fillColor="#5B5C87" android:pathData="M299.8,771.2h-16.1v-28.9h16.1v3h-12.7v9.3h12v3h-12v10.6h12.7V771.2z"/>
|
||||
</vector>
|
18
app/src/main/res/drawable/thumb_robinhood.xml
Normal file
18
app/src/main/res/drawable/thumb_robinhood.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="128dp"
|
||||
android:height="128dp"
|
||||
android:viewportWidth="20"
|
||||
android:viewportHeight="27">
|
||||
<path
|
||||
android:pathData="M8.0826,20.8073L7.8989,20.8808C6.7967,21.2482 5.1435,21.7993 3.7107,22.4973C3.6372,22.5341 3.5637,22.6443 3.5637,22.6443C3.527,22.7178 3.4902,22.7912 3.4535,22.8647C3.3065,23.2321 3.0494,23.7832 2.9759,24.0404L2.9024,24.2241C2.9024,24.2608 2.9024,24.2975 2.9024,24.2975L2.9391,24.3343H2.9759L3.1596,24.2608C3.5637,24.0771 4.0781,23.7832 4.5924,23.526H4.6291C5.6578,23.0484 6.7967,22.4973 7.458,22.1667C7.458,22.1667 7.5683,22.0932 7.6417,21.983L8.1561,20.9543C8.1561,20.9175 8.1561,20.8808 8.1561,20.8808C8.1561,20.8073 8.1193,20.7706 8.0826,20.8073Z"
|
||||
android:fillColor="#21ce99"/>
|
||||
<path
|
||||
android:pathData="M3.9678,19.191C4.0413,19.044 4.3719,18.4195 4.4454,18.2725V18.2358C6.6865,14.0108 9.4052,10.043 12.528,6.4058L12.6015,6.2956C12.6382,6.2589 12.6382,6.2221 12.6015,6.1854C12.5647,6.1486 12.528,6.1119 12.4913,6.1486H12.3443C10.2869,6.4426 8.1928,6.8099 6.1354,7.3243C5.915,7.3978 5.8048,7.508 5.768,7.5447C4.225,9.3817 2.7922,11.3288 1.4328,13.3127C1.4696,13.423 1.4696,13.6434 1.4696,13.6434C1.4696,13.6434 1.8002,16.2151 2.2778,18.1256C1.1022,21.6158 0,26.2449 0,26.2449C0,26.2816 0,26.3183 0,26.3183C0,26.3551 0.0367,26.3551 0.0735,26.3551H0.7715C0.8083,26.3551 0.845,26.3183 0.8817,26.2816L0.9185,26.1346C1.6165,24.2242 2.4248,22.3138 3.3065,20.4768C3.5269,20.0727 3.9678,19.191 3.9678,19.191Z"
|
||||
android:fillColor="#21ce99"/>
|
||||
<path
|
||||
android:pathData="M13.5934,7.1774V7.0304C13.5934,6.9937 13.5567,6.957 13.5199,6.9202C13.4832,6.9202 13.4464,6.9202 13.4097,6.957L13.3362,7.0672C9.6623,11.2922 6.613,15.9948 4.1882,21.028L4.1147,21.1382C4.1147,21.175 4.1147,21.2117 4.1147,21.2484C4.1515,21.2852 4.1515,21.2852 4.1882,21.2852H4.225L4.3352,21.2484C6.3926,20.4034 8.4867,19.6687 10.5808,19.0441C10.691,19.0074 10.8012,18.9339 10.8747,18.8237C11.7932,17.0602 13.9241,13.6067 13.9241,13.6067C13.9975,13.4965 13.9608,13.3863 13.9608,13.3863C13.9608,13.3863 13.5934,9.2715 13.5934,7.1774Z"
|
||||
android:fillColor="#21ce99"/>
|
||||
<path
|
||||
android:pathData="M18.296,1.2254C17.7817,0.7846 17.0101,0.5641 15.8345,0.5274C14.8058,0.4906 13.5567,0.7478 12.1239,1.1887C11.9034,1.2622 11.7565,1.3724 11.5728,1.5193C10.1032,2.8787 8.7071,4.3482 7.3845,5.8178L7.2743,5.928C7.2376,5.9647 7.2376,6.0015 7.2743,6.0382C7.3111,6.075 7.3478,6.1117 7.3845,6.075L7.5315,6.0382C9.6991,5.5606 11.8667,5.23 13.9976,5.0095C14.1445,5.0095 14.2915,5.0463 14.4017,5.1198C14.5119,5.23 14.5486,5.3402 14.5486,5.4871C14.5119,7.618 14.5854,9.7489 14.7691,11.8062V11.9532C14.7691,11.9899 14.8058,12.0267 14.8426,12.0267C14.8426,12.0267 14.8425,12.0267 14.8793,12.0267C14.916,12.0267 14.9528,12.0267 14.9528,11.9899L15.0262,11.8797C16.2386,10.153 17.5245,8.4997 18.9206,6.92C19.0675,6.7363 19.1043,6.626 19.141,6.4791C19.5819,3.7971 18.9206,1.7398 18.296,1.2254Z"
|
||||
android:fillColor="#21ce99"/>
|
||||
</vector>
|
12
app/src/main/res/drawable/thumb_transip.xml
Normal file
12
app/src/main/res/drawable/thumb_transip.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="43dp"
|
||||
android:height="22dp"
|
||||
android:viewportWidth="43"
|
||||
android:viewportHeight="22">
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M12.7,12.4c-0.1,2.5 -0.3,2.8 -3.2,2.898h-0.8c-2.4,-0.1 -3.1,-0.6 -3.1,-2.7V6.7h9V4.6h-9V1.8H2.9v2.9H0v2.1h2.9v6.6c0,1 0.3,2.1 1.1,2.8 0.8,0.8 2.2,1.2 4.3,1.2h1.2c2.5,0 3.8,-0.5 4.6,-1.3 0.7,-0.802 0.8,-2 0.8,-3.2v-1.5h-2.3v1h0.1z"/>
|
||||
<path
|
||||
android:pathData="M18,0h2.7v2.2h-2.7zM18,4.6h2.7v12.5h-2.7zM38.8,12.2c0,2.7 -1.3,3.1 -4,3.1h-4c-2.4,0 -4.1,-0.4 -4.2,-3.2L26.6,9.8c0,-2 1,-3.3 3.9,-3.3h4.5c3.1,0.1 3.8,1 3.8,3.3v2.4zM39.5,5.5c-1.2,-0.8 -2.8,-1 -4.4,-1h-4.3c-1.8,0 -3.4,0.5 -4.3,1.6L26.5,4.6h-2.5v16.8h2.7v-5.3c0.6,0.9 1.8,1.3 3.8,1.3h4.3c2.3,0 4,-0.3 5.2,-1.2 1.1,-0.9 1.6,-2.3 1.6,-4.3L41.6,9.8c-0.1,-2.2 -0.9,-3.5 -2.1,-4.3z"
|
||||
android:fillColor="#187DC1"/>
|
||||
</vector>
|
7
app/src/main/res/drawable/thumb_uber.xml
Normal file
7
app/src/main/res/drawable/thumb_uber.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<vector android:height="44dp" android:viewportHeight="321.777"
|
||||
android:viewportWidth="926.906" android:width="128dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#010202" android:pathData="M53.328,229.809c3.917,10.395 9.34,19.283 16.27,26.664c6.93,7.382 15.14,13.031 24.63,16.948c9.491,3.917 19.81,5.875 30.958,5.875c10.847,0 21.015,-2.034 30.506,-6.102s17.776,-9.792 24.856,-17.173c7.08,-7.382 12.579,-16.194 16.496,-26.438c3.917,-10.244 5.875,-21.692 5.875,-34.347V0h47.453v316.354h-47.001v-29.376c-10.545,11.147 -22.974,19.734 -37.285,25.761c-14.312,6.025 -29.752,9.038 -46.323,9.038c-16.873,0 -32.615,-2.938 -47.228,-8.813c-14.612,-5.875 -27.267,-14.235 -37.962,-25.082S15.441,264.006 9.265,248.79C3.088,233.575 0,216.628 0,197.947V0h47.453v195.236C47.453,207.891 49.411,219.414 53.328,229.809z"/>
|
||||
<path android:fillColor="#010202" android:pathData="M332.168,0v115.243c10.545,-10.545 22.748,-18.905 36.607,-25.082s28.924,-9.265 45.193,-9.265c16.873,0 32.689,3.163 47.453,9.49c14.763,6.327 27.567,14.914 38.414,25.761s19.434,23.651 25.761,38.414c6.327,14.764 9.49,30.431 9.49,47.002c0,16.57 -3.163,32.162 -9.49,46.774c-6.327,14.613 -14.914,27.343 -25.761,38.188c-10.847,10.847 -23.651,19.434 -38.414,25.761c-14.764,6.327 -30.581,9.49 -47.453,9.49c-16.27,0 -31.409,-3.088 -45.419,-9.265c-14.01,-6.176 -26.288,-14.537 -36.833,-25.082v28.924h-45.193V0H332.168zM337.365,232.746c4.067,9.642 9.717,18.078 16.948,25.309c7.231,7.231 15.667,12.956 25.308,17.174c9.642,4.218 20.036,6.327 31.184,6.327c10.847,0 21.09,-2.109 30.731,-6.327s18.001,-9.942 25.083,-17.174c7.08,-7.23 12.729,-15.667 16.947,-25.309c4.218,-9.641 6.327,-20.035 6.327,-31.183c0,-11.148 -2.109,-21.618 -6.327,-31.41s-9.867,-18.303 -16.947,-25.534c-7.081,-7.23 -15.441,-12.88 -25.083,-16.947s-19.885,-6.102 -30.731,-6.102c-10.846,0 -21.09,2.034 -30.731,6.102s-18.077,9.717 -25.309,16.947c-7.23,7.231 -12.955,15.742 -17.173,25.534c-4.218,9.792 -6.327,20.262 -6.327,31.41C331.264,212.711 333.298,223.105 337.365,232.746z"/>
|
||||
<path android:fillColor="#010202" android:pathData="M560.842,155.014c6.025,-14.462 14.312,-27.191 24.856,-38.188s23.049,-19.659 37.511,-25.986s30.129,-9.49 47.001,-9.49c16.571,0 31.937,3.013 46.098,9.038c14.16,6.026 26.362,14.387 36.606,25.083c10.244,10.695 18.229,23.35 23.952,37.962c5.725,14.613 8.587,30.506 8.587,47.68v14.914H597.901c1.507,9.34 4.52,18.002 9.039,25.985c4.52,7.984 10.168,14.914 16.947,20.789c6.779,5.876 14.462,10.471 23.049,13.784c8.587,3.314 17.7,4.972 27.342,4.972c27.418,0 49.563,-11.299 66.435,-33.896l32.991,24.404c-11.449,15.366 -25.609,27.418 -42.481,36.155c-16.873,8.737 -35.854,13.106 -56.944,13.106c-17.174,0 -33.217,-3.014 -48.131,-9.039s-27.869,-14.462 -38.866,-25.309s-19.659,-23.576 -25.986,-38.188s-9.491,-30.506 -9.491,-47.679C551.803,184.842 554.817,169.476 560.842,155.014zM624.339,137.162c-12.805,10.696 -21.316,24.932 -25.534,42.708h140.552c-3.917,-17.776 -12.278,-32.012 -25.083,-42.708c-12.805,-10.695 -27.794,-16.043 -44.967,-16.043C652.133,121.119 637.144,126.467 624.339,137.162z"/>
|
||||
<path android:fillColor="#010202" android:pathData="M870.866,142.359c-9.641,10.545 -14.462,24.856 -14.462,42.934v131.062h-45.646V85.868h45.193v28.472c5.725,-9.34 13.182,-16.722 22.371,-22.145c9.189,-5.424 20.111,-8.136 32.766,-8.136h15.817v42.482h-18.981C892.86,126.542 880.507,131.814 870.866,142.359z"/>
|
||||
</vector>
|
4
app/src/main/res/drawable/thumb_wasabi.xml
Normal file
4
app/src/main/res/drawable/thumb_wasabi.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<vector android:height="128dp" android:viewportHeight="136"
|
||||
android:viewportWidth="137" android:width="128dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#03C736" android:fillType="evenOdd" android:pathData="M100.776,113.335L100.776,95.753L110.469,104.541C107.595,107.835 104.342,110.79 100.776,113.335L100.776,113.335ZM60.157,123.032L88.597,96.148L88.597,119.911C82.365,122.33 75.594,123.66 68.518,123.66C65.676,123.66 62.885,123.445 60.157,123.032L60.157,123.032ZM13.163,73.84L43.045,100.637L73.087,72.425L88.597,57.764L88.597,79.389L46.549,119.137C28.457,111.335 15.297,94.206 13.163,73.84L13.163,73.84ZM36.788,22.296L36.807,39.968L26.9,31.084C29.834,27.78 33.153,24.828 36.788,22.296L36.788,22.296ZM36.848,78.721L13.756,58.014C14.855,51.978 16.931,46.279 19.812,41.086L36.824,56.342L36.848,78.721ZM77.021,12.989L64.457,24.865L48.985,39.539L48.961,15.89C55.048,13.598 61.638,12.34 68.518,12.34C71.408,12.34 74.248,12.562 77.021,12.989L77.021,12.989ZM123.314,77.801C122.256,83.729 120.257,89.334 117.478,94.457L100.776,79.314L100.776,57.368L123.314,77.801ZM123.835,61.835L94.6,35.33L64.735,63.561L49.026,78.313L49.003,56.308L72.831,33.709L90.6,16.912C108.537,24.695 121.601,41.655 123.835,61.835L123.835,61.835ZM116.487,20.03C103.674,7.217 86.638,0.161 68.518,0.161C50.397,0.161 33.361,7.217 20.548,20.03C7.735,32.843 0.679,49.879 0.679,68C0.679,86.121 7.735,103.157 20.548,115.97C33.361,128.783 50.397,135.839 68.518,135.839C86.638,135.839 103.674,128.783 116.487,115.97C129.3,103.157 136.357,86.121 136.357,68C136.357,49.879 129.3,32.843 116.487,20.03L116.487,20.03Z"/>
|
||||
</vector>
|
|
@ -129,6 +129,28 @@
|
|||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/button_restore_crypt_old"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="@dimen/activity_margin"
|
||||
android:background="?android:attr/selectableItemBackground" >
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceListItem"
|
||||
android:text="@string/backup_title_import_crypt_old" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:text="@string/backup_desc_import_crypt_old"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
|
|
@ -69,6 +69,6 @@
|
|||
<b>Any entries that are added will get lost.</b>\n\nTo still be able to use andOTP you can go
|
||||
to the <b>Settings</b> and switch the <b>Database encryption</b> to <b>Password / PIN</b>.</string>
|
||||
<!-- Shortcuts -->
|
||||
<string name="shortcut_name_scan_qr">Scan QR-Code</string>
|
||||
<string name="shortcut_name_scan_qr">Escaneja un codi QR</string>
|
||||
<string name="shortcut_name_enter_details">Enter details</string>
|
||||
</resources>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<!-- Buttons -->
|
||||
<string name="button_cancel">Annuler</string>
|
||||
<string name="button_enter_details">Ajouter les détails</string>
|
||||
<string name="button_scan_qr">Scanner un QR-Code</string>
|
||||
<string name="button_scan_qr">Scanner un code QR</string>
|
||||
<string name="button_save">Enregistrer</string>
|
||||
<string name="button_new_tag">Nouveau tag</string>
|
||||
<string name="button_settings">Paramètres</string>
|
||||
|
@ -47,7 +47,7 @@
|
|||
<string name="toast_auth_failed_fatal">Échec d\'authentification, fermeture d\'andOTP !</string>
|
||||
<string name="toast_copied_to_clipboard">Copié dans le presse-papier</string>
|
||||
<string name="toast_entry_exists">Cette entrée existe déjà</string>
|
||||
<string name="toast_invalid_qr_code">QR-Code invalide</string>
|
||||
<string name="toast_invalid_qr_code">Code QR invalide</string>
|
||||
<string name="toast_encryption_key_empty">Clé de chiffrement non chargée</string>
|
||||
<!-- Dialogs -->
|
||||
<string name="dialog_title_auth">Identifiez-vous</string>
|
||||
|
@ -66,6 +66,6 @@
|
|||
<string name="dialog_msg_keystore_error">Échec du chargement de la clé de chiffrement à partir de l\'armoire à clés.
|
||||
<b>Toute entrée ajoutée sera perdue.</b>\n\nPour continuer à utiliser andOTP, vous pouvez aller dans les <b>paramètres</b> pour passer de <b>Chiffrement de la base de données</b> à <b>Mot de passe / Code PIN</b>.</string>
|
||||
<!-- Shortcuts -->
|
||||
<string name="shortcut_name_scan_qr">Scanner le QR-code</string>
|
||||
<string name="shortcut_name_scan_qr">Scanner le code QR</string>
|
||||
<string name="shortcut_name_enter_details">Ajouter les détails</string>
|
||||
</resources>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<!-- Buttons -->
|
||||
<string name="button_cancel">Annulla</string>
|
||||
<string name="button_enter_details">Aggiungi dettagli</string>
|
||||
<string name="button_scan_qr">Scansiona il QR Code</string>
|
||||
<string name="button_scan_qr">Scansiona il codice QR</string>
|
||||
<string name="button_save">Salva</string>
|
||||
<string name="button_new_tag">Nuovo tag</string>
|
||||
<string name="button_settings">Impostazioni</string>
|
||||
|
@ -47,7 +47,7 @@
|
|||
<string name="toast_auth_failed_fatal">Autenticazione non riuscita, andOTP verrà chiuso!</string>
|
||||
<string name="toast_copied_to_clipboard">Copiato negli appunti</string>
|
||||
<string name="toast_entry_exists">Questa voce esiste già</string>
|
||||
<string name="toast_invalid_qr_code">QR code non valido</string>
|
||||
<string name="toast_invalid_qr_code">Codice QR non valido</string>
|
||||
<string name="toast_encryption_key_empty">Chiave di crittografia non caricata</string>
|
||||
<!-- Dialogs -->
|
||||
<string name="dialog_title_auth">Autenticazione</string>
|
||||
|
@ -69,6 +69,6 @@
|
|||
<b>Qualsiasi voce aggiunta verrà persa</b>\n\nPer continuare ad utilizzare andOTP, vai nelle
|
||||
<b>Impostazioni</b> e imposta la <b>Crittografia del database</b> su <b>Password / PIN</b>.</string>
|
||||
<!-- Shortcuts -->
|
||||
<string name="shortcut_name_scan_qr">Scansione QR-Code</string>
|
||||
<string name="shortcut_name_scan_qr">Scansione codice QR</string>
|
||||
<string name="shortcut_name_enter_details">Inserisci dettagli</string>
|
||||
</resources>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<!-- Buttons -->
|
||||
<string name="button_cancel">取消</string>
|
||||
<string name="button_enter_details">鍵入詳細資訊</string>
|
||||
<string name="button_scan_qr">掃描 QR-Code</string>
|
||||
<string name="button_scan_qr">掃描 QR code</string>
|
||||
<string name="button_save">儲存</string>
|
||||
<string name="button_new_tag">新標籤</string>
|
||||
<string name="button_settings">設定</string>
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
<string name="backup_title_export_openpgp">Backup (OpenPGP)</string>
|
||||
<string name="backup_title_import_plain">Restore (plain-text)</string>
|
||||
<string name="backup_title_import_crypt">Restore (encrypted)</string>
|
||||
<string name="backup_title_import_crypt_old">Restore (encrypted, old encryption)</string>
|
||||
<string name="backup_title_import_openpgp">Restore (OpenPGP)</string>
|
||||
|
||||
<string name="backup_title_replace">Replace existing entries</string>
|
||||
|
@ -20,6 +21,7 @@
|
|||
<string name="backup_desc_export_openpgp">Backup all accounts in an OpenPGP-encrypted JSON file</string>
|
||||
<string name="backup_desc_import_plain">Restore accounts from a plain-text JSON file</string>
|
||||
<string name="backup_desc_import_crypt">Restore accounts from a password-protected JSON file</string>
|
||||
<string name="backup_desc_import_crypt_old">Restore accounts from a password-protected JSON file using the old, insecure encryption</string>
|
||||
<string name="backup_desc_import_openpgp">Restore accounts from an OpenPGP-encrypted JSON file</string>
|
||||
|
||||
<string name="backup_desc_crypt_setup">Failed to load the backup password from the <b>Settings</b>,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<!-- Buttons -->
|
||||
<string name="button_cancel">Cancel</string>
|
||||
<string name="button_enter_details">Enter details</string>
|
||||
<string name="button_scan_qr">Scan QR-Code</string>
|
||||
<string name="button_scan_qr">Scan QR code</string>
|
||||
<string name="button_save">Save</string>
|
||||
<string name="button_new_tag">New tag</string>
|
||||
<string name="button_settings">Settings</string>
|
||||
|
@ -86,6 +86,6 @@
|
|||
to the <b>Settings</b> and switch the <b>Database encryption</b> to <b>Password / PIN</b>.</string>
|
||||
|
||||
<!-- Shortcuts -->
|
||||
<string name="shortcut_name_scan_qr">Scan QR-Code</string>
|
||||
<string name="shortcut_name_scan_qr">Scan QR code</string>
|
||||
<string name="shortcut_name_enter_details">Enter details</string>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in a new issue