├── .github └── workflows │ ├── build │ └── action.yml │ └── gerrit.yml ├── .gitignore ├── LICENSE ├── bash_completion ├── git.bash └── repo.bash ├── charger ├── Android.bp ├── animation.txt ├── hdpi │ ├── battery_fail.png │ ├── battery_scale.png │ └── percent_font.png ├── mdpi │ ├── battery_fail.png │ ├── battery_scale.png │ └── percent_font.png ├── regenerate.sh ├── svg │ ├── battery_fail.svg │ ├── battery_scale_00.svg │ ├── battery_scale_01.svg │ ├── battery_scale_02.svg │ ├── battery_scale_03.svg │ ├── battery_scale_04.svg │ ├── battery_scale_05.svg │ ├── battery_scale_06.svg │ ├── battery_scale_07.svg │ ├── battery_scale_08.svg │ ├── battery_scale_09.svg │ ├── battery_scale_10.svg │ ├── battery_scale_11.svg │ ├── battery_scale_12.svg │ ├── battery_scale_13.svg │ ├── battery_scale_14.svg │ ├── battery_scale_15.svg │ ├── battery_scale_16.svg │ ├── battery_scale_17.svg │ ├── battery_scale_18.svg │ ├── battery_scale_19.svg │ ├── battery_scale_20.svg │ └── battery_scale_21.svg ├── xhdpi │ ├── battery_fail.png │ ├── battery_scale.png │ └── percent_font.png ├── xxhdpi │ ├── battery_fail.png │ ├── battery_scale.png │ └── percent_font.png └── xxxhdpi │ ├── battery_fail.png │ ├── battery_scale.png │ └── percent_font.png ├── config ├── BoardConfigBliss.mk ├── BoardConfigKernel.mk ├── BoardConfigReservedSize.mk ├── BoardConfigSoong.mk ├── aosp_audio.mk ├── bliss.mk ├── bliss_audio.mk ├── bootanimation.mk ├── common.mk ├── common_car.mk ├── common_full_foldable_book_telephony.mk ├── common_full_go_phone.mk ├── common_full_phone.mk ├── common_full_tablet.mk ├── common_full_tablet_wifionly.mk ├── common_full_tv.mk ├── common_mini_go_phone.mk ├── common_mini_phone.mk ├── common_mini_tablet.mk ├── common_mini_tablet_wifionly.mk ├── common_mini_tv.mk ├── common_mobile.mk ├── common_mobile_full.mk ├── common_mobile_mini.mk ├── common_tv.mk ├── data_only.mk ├── device_framework_matrix.xml ├── lineage_sdk_common.mk ├── partner_gms.mk ├── permissions │ ├── bliss-sysconfig.xml │ ├── org.lineageos.android.xml │ ├── org.lineageos.globalactions.xml │ ├── org.lineageos.hardware.xml │ ├── org.lineageos.health.xml │ ├── org.lineageos.livedisplay.xml │ ├── org.lineageos.profiles.xml │ ├── org.lineageos.settings.xml │ └── org.lineageos.trust.xml ├── tablet.mk ├── telephony.mk ├── version.mk └── wifionly.mk ├── overlay ├── common │ ├── external │ │ └── setupdesign │ │ │ └── main │ │ │ └── res │ │ │ └── values │ │ │ └── colors.xml │ ├── frameworks │ │ ├── base │ │ │ ├── core │ │ │ │ └── res │ │ │ │ │ └── res │ │ │ │ │ ├── color │ │ │ │ │ └── config_progress_background_tint.xml │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── default_wallpaper.png │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── default_wallpaper.png │ │ │ │ │ ├── drawable-sw600dp-nodpi │ │ │ │ │ └── default_wallpaper.png │ │ │ │ │ ├── drawable-sw720dp-nodpi │ │ │ │ │ └── default_wallpaper.png │ │ │ │ │ ├── drawable-television │ │ │ │ │ └── default_wallpaper.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── default_wallpaper.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── default_wallpaper.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ └── default_wallpaper.png │ │ │ │ │ ├── values-mcc460 │ │ │ │ │ └── config.xml │ │ │ │ │ ├── values-sw600dp │ │ │ │ │ └── config.xml │ │ │ │ │ ├── values │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── vendor_required_apps_managed_device.xml │ │ │ │ │ ├── vendor_required_apps_managed_profile.xml │ │ │ │ │ └── vendor_required_apps_managed_user.xml │ │ │ │ │ └── xml │ │ │ │ │ └── config_webview_packages.xml │ │ │ └── packages │ │ │ │ ├── SettingsLib │ │ │ │ └── res │ │ │ │ │ ├── drawable-mcc310-mnc160 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc200 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc210 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc220 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc230 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc240 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc250 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc26 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc260 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc270 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc300 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc310 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc490 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc530 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc590 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc640 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc660 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── drawable-mcc310-mnc800 │ │ │ │ │ └── ic_5g_plus_mobiledata.xml │ │ │ │ │ ├── values-mcc310-mnc160 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc200 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc210 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc220 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc230 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc240 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc250 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc26 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc260 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc270 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc300 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc310 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc490 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc530 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc590 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc640 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc660 │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-mcc310-mnc800 │ │ │ │ │ └── strings.xml │ │ │ │ │ └── values │ │ │ │ │ └── config.xml │ │ │ │ ├── SettingsProvider │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── defaults.xml │ │ │ │ └── SystemUI │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── config.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── flags.xml │ │ └── libs │ │ │ ├── WindowManager │ │ │ └── Shell │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── config.xml │ │ │ └── systemui │ │ │ └── iconloaderlib │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── lineage-sdk │ │ └── packages │ │ │ └── LineageSettingsProvider │ │ │ └── res │ │ │ └── values │ │ │ └── defaults.xml │ └── packages │ │ ├── apps │ │ ├── Dialer │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── voicemail │ │ │ │ └── impl │ │ │ │ └── res │ │ │ │ └── xml │ │ │ │ └── vvm_config.xml │ │ ├── Launcher3 │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── _1010_klooni.xml │ │ │ │ ├── _10_minute_school.xml │ │ │ │ ├── _1111.xml │ │ │ │ ├── _12123.xml │ │ │ │ ├── _123_cloud_drive.xml │ │ │ │ ├── _12_club.xml │ │ │ │ ├── _150x_duplicate_file_remover_pro.xml │ │ │ │ ├── _17track.xml │ │ │ │ ├── _1_2_3_4_player_games.xml │ │ │ │ ├── _1_edge.xml │ │ │ │ ├── _1dm.xml │ │ │ │ ├── _1dm_plus.xml │ │ │ │ ├── _1gallery.xml │ │ │ │ ├── _1list.xml │ │ │ │ ├── _1more_music.xml │ │ │ │ ├── _1password.xml │ │ │ │ ├── _1tap_cleaner.xml │ │ │ │ ├── _1weather.xml │ │ │ │ ├── _2048.xml │ │ │ │ ├── _20_minutes.xml │ │ │ │ ├── _23andme.xml │ │ │ │ ├── _24pay.xml │ │ │ │ ├── _2_3_4_player_mini_games.xml │ │ │ │ ├── _2_player_games_the_challenge.xml │ │ │ │ ├── _2accounts.xml │ │ │ │ ├── _2fas_auth.xml │ │ │ │ ├── _2gis.xml │ │ │ │ ├── _311.xml │ │ │ │ ├── _360.xml │ │ │ │ ├── _360_reality_audio_live.xml │ │ │ │ ├── _365scores.xml │ │ │ │ ├── _3d_scanner_for_arcore.xml │ │ │ │ ├── _3dmark.xml │ │ │ │ ├── _433.xml │ │ │ │ ├── _4eburnet_vpn.xml │ │ │ │ ├── _4k_video_downloader.xml │ │ │ │ ├── _4k_wallpapers.xml │ │ │ │ ├── _4pda.xml │ │ │ │ ├── _500px.xml │ │ │ │ ├── _56_secure.xml │ │ │ │ ├── _5_minute_journal.xml │ │ │ │ ├── _5ber_esim.xml │ │ │ │ ├── _5g_only.xml │ │ │ │ ├── _5g_tile.xml │ │ │ │ ├── _70mai.xml │ │ │ │ ├── _7_eleven.xml │ │ │ │ ├── _7plus.xml │ │ │ │ ├── _7sleep.xml │ │ │ │ ├── _7zipper.xml │ │ │ │ ├── _8_ball_pool.xml │ │ │ │ ├── _8bit_photo_lab.xml │ │ │ │ ├── _90_day_challenge.xml │ │ │ │ ├── _9292.xml │ │ │ │ ├── _99.xml │ │ │ │ ├── _9gag.xml │ │ │ │ ├── _k.xml │ │ │ │ ├── a101.xml │ │ │ │ ├── a101_plus.xml │ │ │ │ ├── a12_extensions.xml │ │ │ │ ├── a_gallery.xml │ │ │ │ ├── a_la_mano.xml │ │ │ │ ├── aard_2.xml │ │ │ │ ├── aarogya_setu.xml │ │ │ │ ├── aawireless.xml │ │ │ │ ├── aba_english.xml │ │ │ │ ├── abattery.xml │ │ │ │ ├── abema.xml │ │ │ │ ├── abiplaner.xml │ │ │ │ ├── abn_amro.xml │ │ │ │ ├── about_you.xml │ │ │ │ ├── abp_for_samsung_internet.xml │ │ │ │ ├── absher.xml │ │ │ │ ├── abstracto.xml │ │ │ │ ├── abstruct.xml │ │ │ │ ├── abv_mail.xml │ │ │ │ ├── accessibility_scanner.xml │ │ │ │ ├── accubattery.xml │ │ │ │ ├── accurate_compass.xml │ │ │ │ ├── accuweather.xml │ │ │ │ ├── ace_racer.xml │ │ │ │ ├── acko_insurance.xml │ │ │ │ ├── acode.xml │ │ │ │ ├── acronis_true_image.xml │ │ │ │ ├── act_fibernet.xml │ │ │ │ ├── action.xml │ │ │ │ ├── action_blocks.xml │ │ │ │ ├── action_launcher.xml │ │ │ │ ├── action_notch.xml │ │ │ │ ├── actionbound.xml │ │ │ │ ├── actiondash.xml │ │ │ │ ├── activity_launcher.xml │ │ │ │ ├── activity_manager.xml │ │ │ │ ├── activobank.xml │ │ │ │ ├── actuflow.xml │ │ │ │ ├── adaptive_you_icons.xml │ │ │ │ ├── adaway.xml │ │ │ │ ├── adblock.xml │ │ │ │ ├── adblock_browser.xml │ │ │ │ ├── add_text.xml │ │ │ │ ├── adda247.xml │ │ │ │ ├── addons_maker_mcpe_creator_mods.xml │ │ │ │ ├── addyio.xml │ │ │ │ ├── adguard.xml │ │ │ │ ├── adguard_home_manager.xml │ │ │ │ ├── adguard_vpn.xml │ │ │ │ ├── adidas.xml │ │ │ │ ├── adidas_running.xml │ │ │ │ ├── adlock.xml │ │ │ │ ├── admobile.xml │ │ │ │ ├── adn_animation_digital_network.xml │ │ │ │ ├── adobe.xml │ │ │ │ ├── adobe_account_access.xml │ │ │ │ ├── adobe_analytics.xml │ │ │ │ ├── adobe_capture.xml │ │ │ │ ├── adobe_connect.xml │ │ │ │ ├── adobe_creative_cloud.xml │ │ │ │ ├── adobe_express.xml │ │ │ │ ├── adobe_fill_sign.xml │ │ │ │ ├── adobe_photoshop_fix.xml │ │ │ │ ├── adobe_photoshop_mix.xml │ │ │ │ ├── adobe_photoshop_touch.xml │ │ │ │ ├── adobe_premiere_rush.xml │ │ │ │ ├── adobe_scan.xml │ │ │ │ ├── adobe_sign.xml │ │ │ │ ├── adobe_xd.xml │ │ │ │ ├── adt_control.xml │ │ │ │ ├── adv_screen_recorder.xml │ │ │ │ ├── advanced_charging_controller.xml │ │ │ │ ├── advanced_download_manager.xml │ │ │ │ ├── adventure_capitalist.xml │ │ │ │ ├── adventure_lab.xml │ │ │ │ ├── aegis_authenticator.xml │ │ │ │ ├── aeroinsta.xml │ │ │ │ ├── aethersx2.xml │ │ │ │ ├── affirm.xml │ │ │ │ ├── afk_arena.xml │ │ │ │ ├── aftership.xml │ │ │ │ ├── afwall_plus.xml │ │ │ │ ├── agario.xml │ │ │ │ ├── agc_toolkit.xml │ │ │ │ ├── agen_pulsa_termurah.xml │ │ │ │ ├── agoda.xml │ │ │ │ ├── agoradesk.xml │ │ │ │ ├── agricultural_bank_of_china.xml │ │ │ │ ├── aha.xml │ │ │ │ ├── aha_games.xml │ │ │ │ ├── ai_assistant.xml │ │ │ │ ├── ai_chat.xml │ │ │ │ ├── ai_chat_ask_assistant.xml │ │ │ │ ├── ai_wallpapers.xml │ │ │ │ ├── aida64.xml │ │ │ │ ├── aids.xml │ │ │ │ ├── aidungeon.xml │ │ │ │ ├── aijiasu.xml │ │ │ │ ├── ailiber.xml │ │ │ │ ├── aim_lab.xml │ │ │ │ ├── aimp.xml │ │ │ │ ├── air_alarm.xml │ │ │ │ ├── air_france.xml │ │ │ │ ├── air_selangor.xml │ │ │ │ ├── air_transat.xml │ │ │ │ ├── airalo.xml │ │ │ │ ├── airasia.xml │ │ │ │ ├── airbnb.xml │ │ │ │ ├── airbrush.xml │ │ │ │ ├── aircade.xml │ │ │ │ ├── airconsole.xml │ │ │ │ ├── airdroid.xml │ │ │ │ ├── airfrozen.xml │ │ │ │ ├── airguard.xml │ │ │ │ ├── airmessage.xml │ │ │ │ ├── airmusic.xml │ │ │ │ ├── airnav_radar.xml │ │ │ │ ├── airportal.xml │ │ │ │ ├── airtable.xml │ │ │ │ ├── airvpn.xml │ │ │ │ ├── ajio.xml │ │ │ │ ├── akakce.xml │ │ │ │ ├── akbank.xml │ │ │ │ ├── akbarsbank.xml │ │ │ │ ├── akebi.xml │ │ │ │ ├── akulaku.xml │ │ │ │ ├── al_chan.xml │ │ │ │ ├── al_dawaa.xml │ │ │ │ ├── al_maani_arabic_indonesian_dictionary.xml │ │ │ │ ├── al_romansiah.xml │ │ │ │ ├── alarm_clock_for_heavy_sleepers.xml │ │ │ │ ├── alarmio.xml │ │ │ │ ├── alarmy.xml │ │ │ │ ├── alaska.xml │ │ │ │ ├── albaraka.xml │ │ │ │ ├── albert_heijn.xml │ │ │ │ ├── alcatel_contacts.xml │ │ │ │ ├── alcodroid.xml │ │ │ │ ├── aldi_talk.xml │ │ │ │ ├── alert_swiss.xml │ │ │ │ ├── alerta_sismica_mexico.xml │ │ │ │ ├── alfa_bank.xml │ │ │ │ ├── alfagift.xml │ │ │ │ ├── alfred_home_security_camera.xml │ │ │ │ ├── alga.xml │ │ │ │ ├── algida.xml │ │ │ │ ├── algorithms_and_data_structures.xml │ │ │ │ ├── alibaba_1688.xml │ │ │ │ ├── alibabacom.xml │ │ │ │ ├── alibi.xml │ │ │ │ ├── aliexpress.xml │ │ │ │ ├── alif_mobi.xml │ │ │ │ ├── alight_motion.xml │ │ │ │ ├── alinma.xml │ │ │ │ ├── alinmapay.xml │ │ │ │ ├── alior.xml │ │ │ │ ├── alipay.xml │ │ │ │ ├── aliucord_installer.xml │ │ │ │ ├── alive_app.xml │ │ │ │ ├── aliyundrive.xml │ │ │ │ ├── alkahraba.xml │ │ │ │ ├── all_in_one_calculator.xml │ │ │ │ ├── all_in_one_pdf.xml │ │ │ │ ├── all_video_downloader.xml │ │ │ │ ├── allegro.xml │ │ │ │ ├── allen.xml │ │ │ │ ├── allen_digital.xml │ │ │ │ ├── alliance_shield.xml │ │ │ │ ├── alliant.xml │ │ │ │ ├── allocine.xml │ │ │ │ ├── allsaints_music.xml │ │ │ │ ├── alltrails.xml │ │ │ │ ├── ally.xml │ │ │ │ ├── almanea.xml │ │ │ │ ├── aloha_browser.xml │ │ │ │ ├── alook_browser.xml │ │ │ │ ├── alpha_backup_pro.xml │ │ │ │ ├── alphabackup.xml │ │ │ │ ├── alphapolis.xml │ │ │ │ ├── alpi_maps.xml │ │ │ │ ├── alquimia.xml │ │ │ │ ├── alrajhi_bank.xml │ │ │ │ ├── alt.xml │ │ │ │ ├── altos_adventure.xml │ │ │ │ ├── altos_odyssey.xml │ │ │ │ ├── altt.xml │ │ │ │ ├── always_on_edge_music_lighting.xml │ │ │ │ ├── alza.xml │ │ │ │ ├── amap.xml │ │ │ │ ├── amarok.xml │ │ │ │ ├── amaze_file_manager.xml │ │ │ │ ├── amaze_utilities.xml │ │ │ │ ├── amazfaces.xml │ │ │ │ ├── amazon_alexa.xml │ │ │ │ ├── amazon_appstore.xml │ │ │ │ ├── amazon_kindle.xml │ │ │ │ ├── amazon_photos.xml │ │ │ │ ├── amazon_prime_video.xml │ │ │ │ ├── amazon_seller.xml │ │ │ │ ├── amazon_shopping.xml │ │ │ │ ├── ambient_music_mod.xml │ │ │ │ ├── ambito_dollar.xml │ │ │ │ ├── american_express.xml │ │ │ │ ├── americanas.xml │ │ │ │ ├── amil.xml │ │ │ │ ├── amino.xml │ │ │ │ ├── amnezia.xml │ │ │ │ ├── amoled_in.xml │ │ │ │ ├── amoledpix.xml │ │ │ │ ├── among_us.xml │ │ │ │ ├── amons_icons.xml │ │ │ │ ├── ampere.xml │ │ │ │ ├── ampereflow.xml │ │ │ │ ├── amuse.xml │ │ │ │ ├── anacity_in.xml │ │ │ │ ├── analiti.xml │ │ │ │ ├── anatel_consumidor.xml │ │ │ │ ├── anb.xml │ │ │ │ ├── anb_telemoney.xml │ │ │ │ ├── ancestry.xml │ │ │ │ ├── and_pods.xml │ │ │ │ ├── anddrop.xml │ │ │ │ ├── andftp.xml │ │ │ │ ├── andotp.xml │ │ │ │ ├── android_12_launcher.xml │ │ │ │ ├── android_auto.xml │ │ │ │ ├── android_device_policy.xml │ │ │ │ ├── android_ids.xml │ │ │ │ ├── android_samba_client.xml │ │ │ │ ├── android_system_webview.xml │ │ │ │ ├── android_tv_remote_service.xml │ │ │ │ ├── android_widget_pack.xml │ │ │ │ ├── android_widgets.xml │ │ │ │ ├── androidide.xml │ │ │ │ ├── andronix.xml │ │ │ │ ├── andropods.xml │ │ │ │ ├── androtainer.xml │ │ │ │ ├── anghami.xml │ │ │ │ ├── angkas.xml │ │ │ │ ├── angry_birds_2.xml │ │ │ │ ├── angry_birds_journey.xml │ │ │ │ ├── anhui_palm_10000.xml │ │ │ │ ├── anidroid.xml │ │ │ │ ├── anihyou.xml │ │ │ │ ├── anilab.xml │ │ │ │ ├── anilabx.xml │ │ │ │ ├── anilib.xml │ │ │ │ ├── animal_crossing.xml │ │ │ │ ├── animated_sticker_maker.xml │ │ │ │ ├── animation_crazy.xml │ │ │ │ ├── anime.xml │ │ │ │ ├── anime_scrap.xml │ │ │ │ ├── anime_slayer.xml │ │ │ │ ├── anime_x_stream.xml │ │ │ │ ├── animeindo.xml │ │ │ │ ├── animelovers.xml │ │ │ │ ├── animiru.xml │ │ │ │ ├── aniplay.xml │ │ │ │ ├── anitrend.xml │ │ │ │ ├── anixart.xml │ │ │ │ ├── aniyomi.xml │ │ │ │ ├── ankidroid.xml │ │ │ │ ├── anlinux.xml │ │ │ │ ├── anm_online.xml │ │ │ │ ├── anonytun.xml │ │ │ │ ├── another_life.xml │ │ │ │ ├── another_notes_app.xml │ │ │ │ ├── another_widget.xml │ │ │ │ ├── anova_culinary.xml │ │ │ │ ├── ant_plus_plugins_service.xml │ │ │ │ ├── ant_radio_service.xml │ │ │ │ ├── antar.xml │ │ │ │ ├── antenaplay.xml │ │ │ │ ├── antennapod.xml │ │ │ │ ├── antimine.xml │ │ │ │ ├── antistress.xml │ │ │ │ ├── antiyoy_online.xml │ │ │ │ ├── antutu_benchmark.xml │ │ │ │ ├── any_do.xml │ │ │ │ ├── anyboost.xml │ │ │ │ ├── anyconnect.xml │ │ │ │ ├── anydesk.xml │ │ │ │ ├── anysoftkeyboard.xml │ │ │ │ ├── anything_to_pip.xml │ │ │ │ ├── anytracker.xml │ │ │ │ ├── anytype.xml │ │ │ │ ├── anytype_legacy.xml │ │ │ │ ├── anywhere.xml │ │ │ │ ├── aosp_clock.xml │ │ │ │ ├── aov.xml │ │ │ │ ├── apatch.xml │ │ │ │ ├── aperitif.xml │ │ │ │ ├── apex_legends.xml │ │ │ │ ├── apex_music.xml │ │ │ │ ├── apimater.xml │ │ │ │ ├── apk_analyzer.xml │ │ │ │ ├── apk_editor.xml │ │ │ │ ├── apk_extractor.xml │ │ │ │ ├── apk_info.xml │ │ │ │ ├── apk_installer.xml │ │ │ │ ├── apk_repacker.xml │ │ │ │ ├── apkmirror.xml │ │ │ │ ├── apkmirror_installer.xml │ │ │ │ ├── apkpure.xml │ │ │ │ ├── apktool_m.xml │ │ │ │ ├── apkupdater.xml │ │ │ │ ├── aplayer.xml │ │ │ │ ├── apni_kaksha.xml │ │ │ │ ├── apollo_247.xml │ │ │ │ ├── apowermirror.xml │ │ │ │ ├── app_apk_extractor.xml │ │ │ │ ├── app_backup_pro.xml │ │ │ │ ├── app_box.xml │ │ │ │ ├── app_cloner.xml │ │ │ │ ├── app_cloner_plus_plus.xml │ │ │ │ ├── app_inspector.xml │ │ │ │ ├── app_launcher.xml │ │ │ │ ├── app_list_detector.xml │ │ │ │ ├── app_locker_master.xml │ │ │ │ ├── app_lounge.xml │ │ │ │ ├── app_manager.xml │ │ │ │ ├── app_manager_debug.xml │ │ │ │ ├── app_ops.xml │ │ │ │ ├── app_usage.xml │ │ │ │ ├── app_vault.xml │ │ │ │ ├── appbar.xml │ │ │ │ ├── appblock.xml │ │ │ │ ├── appchecker.xml │ │ │ │ ├── appdrop.xml │ │ │ │ ├── appkb_twint.xml │ │ │ │ ├── apple_flinger.xml │ │ │ │ ├── apple_music.xml │ │ │ │ ├── application_inspector.xml │ │ │ │ ├── applications_info.xml │ │ │ │ ├── applock_pro.xml │ │ │ │ ├── appmgr_iii.xml │ │ │ │ ├── appmgr_pro_3.xml │ │ │ │ ├── appnotifier.xml │ │ │ │ ├── appsales.xml │ │ │ │ ├── appsend.xml │ │ │ │ ├── appsfree.xml │ │ │ │ ├── appshare.xml │ │ │ │ ├── appsheet.xml │ │ │ │ ├── appuly.xml │ │ │ │ ├── appvalencia.xml │ │ │ │ ├── appverifier.xml │ │ │ │ ├── appy_weather.xml │ │ │ │ ├── apteka_april.xml │ │ │ │ ├── aptoide.xml │ │ │ │ ├── apus_launcher.xml │ │ │ │ ├── apx.xml │ │ │ │ ├── aqua_mail.xml │ │ │ │ ├── aquadroid.xml │ │ │ │ ├── aquavias.xml │ │ │ │ ├── ar_art_projector.xml │ │ │ │ ├── ar_canvas.xml │ │ │ │ ├── aramex.xml │ │ │ │ ├── aranet_home.xml │ │ │ │ ├── araz_supermarket.xml │ │ │ │ ├── arbys.xml │ │ │ │ ├── arc.xml │ │ │ │ ├── arc_search.xml │ │ │ │ ├── arcaea.xml │ │ │ │ ├── archlinux_forums.xml │ │ │ │ ├── arcore_depth_lab.xml │ │ │ │ ├── arcticons_line_icons.xml │ │ │ │ ├── arcticons_material_you_icons.xml │ │ │ │ ├── ard_mediathek.xml │ │ │ │ ├── arena_breakout.xml │ │ │ │ ├── arena_kuota.xml │ │ │ │ ├── argos.xml │ │ │ │ ├── argovpn.xml │ │ │ │ ├── aria2app.xml │ │ │ │ ├── arigatobank.xml │ │ │ │ ├── aritycalc.xml │ │ │ │ ├── arknights.xml │ │ │ │ ├── arp.xml │ │ │ │ ├── artifact.xml │ │ │ │ ├── artstation.xml │ │ │ │ ├── aruba.xml │ │ │ │ ├── asana.xml │ │ │ │ ├── asda_rewards.xml │ │ │ │ ├── ashell.xml │ │ │ │ ├── askfm.xml │ │ │ │ ├── asos.xml │ │ │ │ ├── aspect_pro.xml │ │ │ │ ├── asphalt_8_airborne.xml │ │ │ │ ├── asphalt_legends_unite.xml │ │ │ │ ├── asr_voice_recorder.xml │ │ │ │ ├── assistant_for_stardew_valley.xml │ │ │ │ ├── assistive_touch.xml │ │ │ │ ├── astracrypt.xml │ │ │ │ ├── astro_file_manager.xml │ │ │ │ ├── astrodx.xml │ │ │ │ ├── astropay.xml │ │ │ │ ├── asus_file_manager.xml │ │ │ │ ├── asus_gallery.xml │ │ │ │ ├── asus_phone_clone.xml │ │ │ │ ├── asus_router.xml │ │ │ │ ├── asus_sound_recorder.xml │ │ │ │ ├── asus_tips.xml │ │ │ │ ├── asus_weather.xml │ │ │ │ ├── at_mobile.xml │ │ │ │ ├── atb360.xml │ │ │ │ ├── ath_movil.xml │ │ │ │ ├── athan.xml │ │ │ │ ├── athena_dark_icons.xml │ │ │ │ ├── ather.xml │ │ │ │ ├── atlas_obscura.xml │ │ │ │ ├── atlas_vpn.xml │ │ │ │ ├── ato.xml │ │ │ │ ├── atomas.xml │ │ │ │ ├── atome.xml │ │ │ │ ├── atomic.xml │ │ │ │ ├── atomic_icons.xml │ │ │ │ ├── attapoll.xml │ │ │ │ ├── au.xml │ │ │ │ ├── au_data_storage.xml │ │ │ │ ├── au_mail.xml │ │ │ │ ├── au_plus_messages.xml │ │ │ │ ├── au_short.xml │ │ │ │ ├── au_virus_security.xml │ │ │ │ ├── audible.xml │ │ │ │ ├── audile.xml │ │ │ │ ├── audio_converter.xml │ │ │ │ ├── audio_recorder.xml │ │ │ │ ├── audio_share.xml │ │ │ │ ├── audio_spectrum_analyzer.xml │ │ │ │ ├── audio_widget_pack.xml │ │ │ │ ├── audiofx.xml │ │ │ │ ├── audiolab.xml │ │ │ │ ├── audiomack.xml │ │ │ │ ├── audiorelay.xml │ │ │ │ ├── audire.xml │ │ │ │ ├── audubon_bird_guide.xml │ │ │ │ ├── aura_icons.xml │ │ │ │ ├── aurora_droid.xml │ │ │ │ ├── aurora_store.xml │ │ │ │ ├── aurora_store_nightly.xml │ │ │ │ ├── australia_post.xml │ │ │ │ ├── ausweisapp.xml │ │ │ │ ├── autenticacao_gov.xml │ │ │ │ ├── authenticator_pro.xml │ │ │ │ ├── auto_brightness_tile.xml │ │ │ │ ├── auto_change_wallpaper.xml │ │ │ │ ├── auto_clicker.xml │ │ │ │ ├── auto_clicker_click_assistant.xml │ │ │ │ ├── auto_cursor.xml │ │ │ │ ├── auto_off_bluetooth.xml │ │ │ │ ├── auto_optimizer.xml │ │ │ │ ├── auto_ru.xml │ │ │ │ ├── auto_text.xml │ │ │ │ ├── auto_web.xml │ │ │ │ ├── autoapps.xml │ │ │ │ ├── autobusu_bilietai.xml │ │ │ │ ├── autodeal.xml │ │ │ │ ├── autodoc.xml │ │ │ │ ├── autohz.xml │ │ │ │ ├── autoinput.xml │ │ │ │ ├── automate.xml │ │ │ │ ├── automatic_call_recorder.xml │ │ │ │ ├── automatic_tag_editor.xml │ │ │ │ ├── automation.xml │ │ │ │ ├── automatoys.xml │ │ │ │ ├── autonotification.xml │ │ │ │ ├── autoshare.xml │ │ │ │ ├── autosync.xml │ │ │ │ ├── autosync_file_sync.xml │ │ │ │ ├── autotagger.xml │ │ │ │ ├── autotools.xml │ │ │ │ ├── autotrader.xml │ │ │ │ ├── autovoice.xml │ │ │ │ ├── autozen.xml │ │ │ │ ├── auxio.xml │ │ │ │ ├── avanza.xml │ │ │ │ ├── avast_antivirus.xml │ │ │ │ ├── avast_cleanup.xml │ │ │ │ ├── avast_secureline.xml │ │ │ │ ├── avee_music_player.xml │ │ │ │ ├── aves_gallery.xml │ │ │ │ ├── avg_antivirus.xml │ │ │ │ ├── aviasales.xml │ │ │ │ ├── aviata.xml │ │ │ │ ├── avira_phantom_vpn.xml │ │ │ │ ├── avito.xml │ │ │ │ ├── avnc.xml │ │ │ │ ├── avocation.xml │ │ │ │ ├── aw.xml │ │ │ │ ├── awaker.xml │ │ │ │ ├── aware.xml │ │ │ │ ├── aworld.xml │ │ │ │ ├── axet_audio_recorder.xml │ │ │ │ ├── axio.xml │ │ │ │ ├── axis_bank.xml │ │ │ │ ├── axisnet.xml │ │ │ │ ├── ayah.xml │ │ │ │ ├── ayugram.xml │ │ │ │ ├── az_screen_recorder.xml │ │ │ │ ├── azcecll.xml │ │ │ │ ├── azerisiq.xml │ │ │ │ ├── b612.xml │ │ │ │ ├── b_discover.xml │ │ │ │ ├── babbel.xml │ │ │ │ ├── back_market.xml │ │ │ │ ├── backdrops.xml │ │ │ │ ├── background_eraser.xml │ │ │ │ ├── background_eraser_remove_bg.xml │ │ │ │ ├── backgrounds.xml │ │ │ │ ├── bacon.xml │ │ │ │ ├── bad_game.xml │ │ │ │ ├── badoo.xml │ │ │ │ ├── bahnbonus.xml │ │ │ │ ├── baidu_ime.xml │ │ │ │ ├── baidu_maps.xml │ │ │ │ ├── baidu_netdisk.xml │ │ │ │ ├── baidu_tieba.xml │ │ │ │ ├── baikoh.xml │ │ │ │ ├── baimiao.xml │ │ │ │ ├── bajaj_finserv.xml │ │ │ │ ├── balance.xml │ │ │ │ ├── bale.xml │ │ │ │ ├── balls.xml │ │ │ │ ├── ballz_ketchapp.xml │ │ │ │ ├── bam.xml │ │ │ │ ├── bamboohr.xml │ │ │ │ ├── bambu_handy.xml │ │ │ │ ├── banabikurye.xml │ │ │ │ ├── banco_azteca.xml │ │ │ │ ├── banco_do_brasil.xml │ │ │ │ ├── banco_falabella.xml │ │ │ │ ├── banco_pan.xml │ │ │ │ ├── banco_sabadell.xml │ │ │ │ ├── bancoestado.xml │ │ │ │ ├── bancolombia_personas.xml │ │ │ │ ├── bancoposta.xml │ │ │ │ ├── bancoppel.xml │ │ │ │ ├── band.xml │ │ │ │ ├── bandbond.xml │ │ │ │ ├── bandcamp.xml │ │ │ │ ├── bandido.xml │ │ │ │ ├── bandlab.xml │ │ │ │ ├── bandsintown.xml │ │ │ │ ├── banggood.xml │ │ │ │ ├── banglalink.xml │ │ │ │ ├── bank_hapoalim.xml │ │ │ │ ├── bank_jago.xml │ │ │ │ ├── bank_mehr.xml │ │ │ │ ├── bank_norwegian.xml │ │ │ │ ├── bank_of_america.xml │ │ │ │ ├── bank_of_beijing.xml │ │ │ │ ├── bank_of_china.xml │ │ │ │ ├── bankid.xml │ │ │ │ ├── bankkart.xml │ │ │ │ ├── banque_pop.xml │ │ │ │ ├── banxo.xml │ │ │ │ ├── bar_and_bench.xml │ │ │ │ ├── barclays_bank.xml │ │ │ │ ├── bardi_smart_home.xml │ │ │ │ ├── barinsta.xml │ │ │ │ ├── barq.xml │ │ │ │ ├── barquode.xml │ │ │ │ ├── basecamp.xml │ │ │ │ ├── baseus.xml │ │ │ │ ├── basic_call_recorder.xml │ │ │ │ ├── basit_icons.xml │ │ │ │ ├── batt.xml │ │ │ │ ├── battery_calibration.xml │ │ │ │ ├── battery_charge_limit.xml │ │ │ │ ├── battery_guru.xml │ │ │ │ ├── battery_notification.xml │ │ │ │ ├── battery_tool.xml │ │ │ │ ├── battery_widget.xml │ │ │ │ ├── batteryone.xml │ │ │ │ ├── battle_net.xml │ │ │ │ ├── battle_net_authenticator.xml │ │ │ │ ├── battle_prime.xml │ │ │ │ ├── battlegrounds_india.xml │ │ │ │ ├── bayernapp.xml │ │ │ │ ├── baz.xml │ │ │ │ ├── bbc_bitesize.xml │ │ │ │ ├── bbc_iplayer.xml │ │ │ │ ├── bbc_news.xml │ │ │ │ ├── bbc_sounds.xml │ │ │ │ ├── bbc_sport.xml │ │ │ │ ├── bbc_weather.xml │ │ │ │ ├── bbdaily.xml │ │ │ │ ├── bbll.xml │ │ │ │ ├── bbva.xml │ │ │ │ ├── bc_services_card.xml │ │ │ │ ├── bc_vaccine_card_verifier.xml │ │ │ │ ├── bc_wildfire_service.xml │ │ │ │ ├── bca.xml │ │ │ │ ├── bcare.xml │ │ │ │ ├── bcf_twint.xml │ │ │ │ ├── bcge_twint.xml │ │ │ │ ├── bcj_twint.xml │ │ │ │ ├── bcn_twint.xml │ │ │ │ ├── bcr.xml │ │ │ │ ├── bcr_gui.xml │ │ │ │ ├── bcv.xml │ │ │ │ ├── bcv_twint.xml │ │ │ │ ├── bcvs_twint.xml │ │ │ │ ├── bdv.xml │ │ │ │ ├── be.xml │ │ │ │ ├── be_funny_now.xml │ │ │ │ ├── be_u.xml │ │ │ │ ├── beacon_game_launcher.xml │ │ │ │ ├── beaker.xml │ │ │ │ ├── beanconqueror.xml │ │ │ │ ├── beanstack.xml │ │ │ │ ├── beastvpn.xml │ │ │ │ ├── beats.xml │ │ │ │ ├── beatstars.xml │ │ │ │ ├── beatx.xml │ │ │ │ ├── beautycam.xml │ │ │ │ ├── beautyplus.xml │ │ │ │ ├── beautyxt.xml │ │ │ │ ├── beeline.xml │ │ │ │ ├── been.xml │ │ │ │ ├── beep_sade.xml │ │ │ │ ├── beeper.xml │ │ │ │ ├── beeper_cloud.xml │ │ │ │ ├── behance.xml │ │ │ │ ├── beijing_card.xml │ │ │ │ ├── bejeweled_classic.xml │ │ │ │ ├── belanjawanku.xml │ │ │ │ ├── belarus_bank.xml │ │ │ │ ├── belfius.xml │ │ │ │ ├── bell_wifi.xml │ │ │ │ ├── bellis.xml │ │ │ │ ├── benny_co.xml │ │ │ │ ├── bereal.xml │ │ │ │ ├── bergfex.xml │ │ │ │ ├── berichtenbox.xml │ │ │ │ ├── berrini.xml │ │ │ │ ├── best_buy.xml │ │ │ │ ├── best_knots.xml │ │ │ │ ├── beta_maniac.xml │ │ │ │ ├── better.xml │ │ │ │ ├── better_internet_tiles.xml │ │ │ │ ├── better_open_with.xml │ │ │ │ ├── better_untis.xml │ │ │ │ ├── betterbatterystats.xml │ │ │ │ ├── bettercounter.xml │ │ │ │ ├── betterme.xml │ │ │ │ ├── betternet.xml │ │ │ │ ├── bewakoof.xml │ │ │ │ ├── bflix.xml │ │ │ │ ├── bgram.xml │ │ │ │ ├── bhagavad_gita.xml │ │ │ │ ├── bhim.xml │ │ │ │ ├── bhim_sbi_pay.xml │ │ │ │ ├── bibit.xml │ │ │ │ ├── bible.xml │ │ │ │ ├── bible_study.xml │ │ │ │ ├── bic_camera.xml │ │ │ │ ├── biedronka.xml │ │ │ │ ├── bigbasket.xml │ │ │ │ ├── biglybt.xml │ │ │ │ ├── bigpay.xml │ │ │ │ ├── bikroy.xml │ │ │ │ ├── bilal.xml │ │ │ │ ├── bilibili.xml │ │ │ │ ├── bilibili_helper.xml │ │ │ │ ├── biliyou.xml │ │ │ │ ├── bill_payment_organizer.xml │ │ │ │ ├── bilt_rewards.xml │ │ │ │ ├── bima_plus.xml │ │ │ │ ├── bin_reminder.xml │ │ │ │ ├── binance.xml │ │ │ │ ├── binary_eye.xml │ │ │ │ ├── binaural_beats_generator.xml │ │ │ │ ├── bing.xml │ │ │ │ ├── bingx.xml │ │ │ │ ├── biopassport.xml │ │ │ │ ├── bip.xml │ │ │ │ ├── bipa.xml │ │ │ │ ├── birbank.xml │ │ │ │ ├── bird.xml │ │ │ │ ├── birday.xml │ │ │ │ ├── birdnet.xml │ │ │ │ ├── bitchute.xml │ │ │ │ ├── bitdefender_antivirus.xml │ │ │ │ ├── bitdefender_central.xml │ │ │ │ ├── bitdefender_security.xml │ │ │ │ ├── bitexen_global.xml │ │ │ │ ├── bitget_wallet.xml │ │ │ │ ├── bitlife.xml │ │ │ │ ├── bitlit.xml │ │ │ │ ├── bitly.xml │ │ │ │ ├── bitmask.xml │ │ │ │ ├── bitmoji.xml │ │ │ │ ├── bitrix24.xml │ │ │ │ ├── bittorrent.xml │ │ │ │ ├── bitvavo.xml │ │ │ │ ├── bitwarden.xml │ │ │ │ ├── bitwarden_authenticator.xml │ │ │ │ ├── bitwarden_beta.xml │ │ │ │ ├── bixby_voice.xml │ │ │ │ ├── bjetc.xml │ │ │ │ ├── bkash.xml │ │ │ │ ├── blabber_im.xml │ │ │ │ ├── blablacar.xml │ │ │ │ ├── black_house.xml │ │ │ │ ├── black_light_icons.xml │ │ │ │ ├── black_screen.xml │ │ │ │ ├── blackberry_hub_plus_inbox.xml │ │ │ │ ├── blackberry_uem.xml │ │ │ │ ├── blackberry_work.xml │ │ │ │ ├── blackboard_learn.xml │ │ │ │ ├── blackhole.xml │ │ │ │ ├── blackmagic_camera.xml │ │ │ │ ├── blacknote.xml │ │ │ │ ├── blackplayer.xml │ │ │ │ ├── blade_player.xml │ │ │ │ ├── ble_radar.xml │ │ │ │ ├── ble_scanner.xml │ │ │ │ ├── blended_kwgt.xml │ │ │ │ ├── blibli_belanja.xml │ │ │ │ ├── blim.xml │ │ │ │ ├── blindmate.xml │ │ │ │ ├── blink.xml │ │ │ │ ├── blink_eye.xml │ │ │ │ ├── blink_home_monitor.xml │ │ │ │ ├── blinkist.xml │ │ │ │ ├── blinkit.xml │ │ │ │ ├── block_blast.xml │ │ │ │ ├── blockchain.xml │ │ │ │ ├── blocker.xml │ │ │ │ ├── blockerx.xml │ │ │ │ ├── blocket.xml │ │ │ │ ├── blockinger.xml │ │ │ │ ├── blockit.xml │ │ │ │ ├── blockudoku.xml │ │ │ │ ├── blocto.xml │ │ │ │ ├── blogger.xml │ │ │ │ ├── blokada.xml │ │ │ │ ├── blood_strike.xml │ │ │ │ ├── bloom_icons.xml │ │ │ │ ├── bloomberg.xml │ │ │ │ ├── bloons_td_6.xml │ │ │ │ ├── bloons_td_battles_2.xml │ │ │ │ ├── blue.xml │ │ │ │ ├── blue_archive.xml │ │ │ │ ├── blue_shield.xml │ │ │ │ ├── bluebubbles.xml │ │ │ │ ├── bluecoins.xml │ │ │ │ ├── bluemail.xml │ │ │ │ ├── bluesky.xml │ │ │ │ ├── bluetooth.xml │ │ │ │ ├── bluetooth_control.xml │ │ │ │ ├── bluetooth_keyboard_and_mouse.xml │ │ │ │ ├── bluetooth_le_spam.xml │ │ │ │ ├── bluk.xml │ │ │ │ ├── bluric.xml │ │ │ │ ├── blurrr.xml │ │ │ │ ├── blusmart.xml │ │ │ │ ├── blutv.xml │ │ │ │ ├── blynk.xml │ │ │ │ ├── bmap.xml │ │ │ │ ├── bmi_calculator.xml │ │ │ │ ├── bmo_bank.xml │ │ │ │ ├── bni_mobile.xml │ │ │ │ ├── boat_crest.xml │ │ │ │ ├── boat_hearables.xml │ │ │ │ ├── bob_world.xml │ │ │ │ ├── bobek_metronome.xml │ │ │ │ ├── bodega_aurrera.xml │ │ │ │ ├── boi.xml │ │ │ │ ├── boitoi.xml │ │ │ │ ├── bolt.xml │ │ │ │ ├── bolt_courier.xml │ │ │ │ ├── bolt_driver.xml │ │ │ │ ├── bolt_food.xml │ │ │ │ ├── bolt_restaurant.xml │ │ │ │ ├── bom_weather.xml │ │ │ │ ├── bombsquad.xml │ │ │ │ ├── bombsquad_remote.xml │ │ │ │ ├── bonjour_ratp.xml │ │ │ │ ├── bonza_word_puzzle.xml │ │ │ │ ├── boo.xml │ │ │ │ ├── book_reader.xml │ │ │ │ ├── booking.xml │ │ │ │ ├── bookmate.xml │ │ │ │ ├── bookmory.xml │ │ │ │ ├── bookmyshow.xml │ │ │ │ ├── booksy.xml │ │ │ │ ├── boom_beach.xml │ │ │ │ ├── booruhub.xml │ │ │ │ ├── boorusphere.xml │ │ │ │ ├── boost.xml │ │ │ │ ├── boost_for_reddit.xml │ │ │ │ ├── boost_mobile.xml │ │ │ │ ├── boost_visual_voicemail.xml │ │ │ │ ├── boosted.xml │ │ │ │ ├── boosty.xml │ │ │ │ ├── bootboi.xml │ │ │ │ ├── borealis_icons.xml │ │ │ │ ├── borno.xml │ │ │ │ ├── borrowbox.xml │ │ │ │ ├── bose.xml │ │ │ │ ├── bose_connect.xml │ │ │ │ ├── bot_designer.xml │ │ │ │ ├── botim.xml │ │ │ │ ├── bouki.xml │ │ │ │ ├── bouncer.xml │ │ │ │ ├── bounty.xml │ │ │ │ ├── boursobank.xml │ │ │ │ ├── bouygues_telecom.xml │ │ │ │ ├── box.xml │ │ │ │ ├── boxter.xml │ │ │ │ ├── boyner.xml │ │ │ │ ├── bper_banca.xml │ │ │ │ ├── br24.xml │ │ │ │ ├── brac_bank_astha.xml │ │ │ │ ├── bradesco.xml │ │ │ │ ├── brain_code.xml │ │ │ │ ├── brain_it_on.xml │ │ │ │ ├── brain_out.xml │ │ │ │ ├── brain_test.xml │ │ │ │ ├── brain_test_2.xml │ │ │ │ ├── brain_test_3.xml │ │ │ │ ├── brain_test_4.xml │ │ │ │ ├── brain_test_tricky_words.xml │ │ │ │ ├── brainly.xml │ │ │ │ ├── brakar_billett.xml │ │ │ │ ├── brave_beta_browser.xml │ │ │ │ ├── brave_browser.xml │ │ │ │ ├── brave_nightly_browser.xml │ │ │ │ ├── brawl_stars.xml │ │ │ │ ├── brawlhalla.xml │ │ │ │ ├── breathly.xml │ │ │ │ ├── breeno.xml │ │ │ │ ├── breeno_shortcuts.xml │ │ │ │ ├── breezy_weather.xml │ │ │ │ ├── brethap.xml │ │ │ │ ├── brevent.xml │ │ │ │ ├── bri_mobile.xml │ │ │ │ ├── briar.xml │ │ │ │ ├── bricky_boy.xml │ │ │ │ ├── bridgefy.xml │ │ │ │ ├── brightspace_pulse.xml │ │ │ │ ├── brilliant.xml │ │ │ │ ├── brilliant_connect.xml │ │ │ │ ├── bring.xml │ │ │ │ ├── bromite.xml │ │ │ │ ├── brotato.xml │ │ │ │ ├── brother_print_service_plugin.xml │ │ │ │ ├── browsec.xml │ │ │ │ ├── browser.xml │ │ │ │ ├── brubank.xml │ │ │ │ ├── brush_teeth_reminder.xml │ │ │ │ ├── bsd_brawl.xml │ │ │ │ ├── bsi_mobile.xml │ │ │ │ ├── bsnl_ftth_usage.xml │ │ │ │ ├── bsnl_selfcare.xml │ │ │ │ ├── bubble.xml │ │ │ │ ├── bubble_level.xml │ │ │ │ ├── bubble_upnp.xml │ │ │ │ ├── buckwheat.xml │ │ │ │ ├── budapestgo.xml │ │ │ │ ├── buff.xml │ │ │ │ ├── bugjaeger.xml │ │ │ │ ├── buienalarm.xml │ │ │ │ ├── buienradar.xml │ │ │ │ ├── building_mods_for_minecraft.xml │ │ │ │ ├── bukalapak.xml │ │ │ │ ├── bulk_rename_and_group.xml │ │ │ │ ├── bully.xml │ │ │ │ ├── bumble.xml │ │ │ │ ├── bundle.xml │ │ │ │ ├── bundled_notes.xml │ │ │ │ ├── bunny_manager.xml │ │ │ │ ├── bunq.xml │ │ │ │ ├── bupa_arabia.xml │ │ │ │ ├── bura.xml │ │ │ │ ├── burger_king.xml │ │ │ │ ├── bus_nearby.xml │ │ │ │ ├── business_calendar.xml │ │ │ │ ├── business_db_navigator.xml │ │ │ │ ├── busnavi.xml │ │ │ │ ├── busuu.xml │ │ │ │ ├── busybox.xml │ │ │ │ ├── button_mapper.xml │ │ │ │ ├── buy_me_a_coffee.xml │ │ │ │ ├── buz.xml │ │ │ │ ├── buzzkill.xml │ │ │ │ ├── bvnc.xml │ │ │ │ ├── bweather.xml │ │ │ │ ├── bxactions.xml │ │ │ │ ├── by_u.xml │ │ │ │ ├── bybit.xml │ │ │ │ ├── byyoung.xml │ │ │ │ ├── bz_reminder.xml │ │ │ │ ├── bz_reminder_pro.xml │ │ │ │ ├── c24.xml │ │ │ │ ├── c6_bank.xml │ │ │ │ ├── c_sharp_shell_dot_net_ide.xml │ │ │ │ ├── cache_cleaner.xml │ │ │ │ ├── caelus.xml │ │ │ │ ├── caffeine.xml │ │ │ │ ├── cainiao.xml │ │ │ │ ├── caixa.xml │ │ │ │ ├── caixa_tem.xml │ │ │ │ ├── caixadirecta.xml │ │ │ │ ├── cake_learn.xml │ │ │ │ ├── cake_wallet.xml │ │ │ │ ├── cakeresume.xml │ │ │ │ ├── calculator.xml │ │ │ │ ├── calculator_n_plus.xml │ │ │ │ ├── calculator_plus.xml │ │ │ │ ├── calculator_plusplus.xml │ │ │ │ ├── calculator_you.xml │ │ │ │ ├── calendar.xml │ │ │ │ ├── calentile.xml │ │ │ │ ├── call_a_bike.xml │ │ │ │ ├── call_bridge.xml │ │ │ │ ├── call_filter.xml │ │ │ │ ├── call_of_duty_warzone.xml │ │ │ │ ├── calm.xml │ │ │ │ ├── calmaria.xml │ │ │ │ ├── calorie_carb_and_fat_counter.xml │ │ │ │ ├── calorie_counter.xml │ │ │ │ ├── calyx_vpn.xml │ │ │ │ ├── calyxos_music.xml │ │ │ │ ├── camera.xml │ │ │ │ ├── camera2.xml │ │ │ │ ├── camera360.xml │ │ │ │ ├── camera_assistant.xml │ │ │ │ ├── camera_date_folders.xml │ │ │ │ ├── camera_fv_5.xml │ │ │ │ ├── camera_pro.xml │ │ │ │ ├── camera_roll.xml │ │ │ │ ├── camera_zoom_fx.xml │ │ │ │ ├── camo.xml │ │ │ │ ├── campus_student.xml │ │ │ │ ├── camsam.xml │ │ │ │ ├── camscanner.xml │ │ │ │ ├── camuzzi_gas.xml │ │ │ │ ├── canada_post.xml │ │ │ │ ├── canal_plus.xml │ │ │ │ ├── canara_ai1.xml │ │ │ │ ├── candy_crush_saga.xml │ │ │ │ ├── candycamera.xml │ │ │ │ ├── candycons.xml │ │ │ │ ├── cannondale.xml │ │ │ │ ├── canon_camera_connect.xml │ │ │ │ ├── canta.xml │ │ │ │ ├── canva.xml │ │ │ │ ├── canvas_student.xml │ │ │ │ ├── capcut.xml │ │ │ │ ├── capital_one.xml │ │ │ │ ├── capod.xml │ │ │ │ ├── captions.xml │ │ │ │ ├── captivemgr.xml │ │ │ │ ├── capturesposed.xml │ │ │ │ ├── car_parking_multiplayer.xml │ │ │ │ ├── car_report.xml │ │ │ │ ├── car_scanner_elm_obd2.xml │ │ │ │ ├── cara.xml │ │ │ │ ├── cardboard.xml │ │ │ │ ├── careem.xml │ │ │ │ ├── careerwill.xml │ │ │ │ ├── carinfo.xml │ │ │ │ ├── carlcare.xml │ │ │ │ ├── carnet.xml │ │ │ │ ├── carousell.xml │ │ │ │ ├── carrier_services.xml │ │ │ │ ├── carrion.xml │ │ │ │ ├── carrot.xml │ │ │ │ ├── carsales.xml │ │ │ │ ├── cartao_continente.xml │ │ │ │ ├── carteira_de_trabalho_digital.xml │ │ │ │ ├── carteira_digital_de_transito.xml │ │ │ │ ├── carx_street.xml │ │ │ │ ├── casa_do_saber_plus.xml │ │ │ │ ├── casas_bahia.xml │ │ │ │ ├── cash_app.xml │ │ │ │ ├── cashbook.xml │ │ │ │ ├── cashew.xml │ │ │ │ ├── cashify.xml │ │ │ │ ├── cashkaro.xml │ │ │ │ ├── cast_to_tv.xml │ │ │ │ ├── castbox.xml │ │ │ │ ├── castle.xml │ │ │ │ ├── castro.xml │ │ │ │ ├── castro_premium.xml │ │ │ │ ├── cat_and_soup.xml │ │ │ │ ├── catalyst.xml │ │ │ │ ├── catawiki.xml │ │ │ │ ├── catima.xml │ │ │ │ ├── catogram.xml │ │ │ │ ├── cats_are_liquid_alits.xml │ │ │ │ ├── cats_are_liquid_apb.xml │ │ │ │ ├── cats_crash_arena_turbo_stars.xml │ │ │ │ ├── caustic.xml │ │ │ │ ├── caves_roguelike.xml │ │ │ │ ├── cbq.xml │ │ │ │ ├── cbs.xml │ │ │ │ ├── ccc_aio.xml │ │ │ │ ├── ccleaner.xml │ │ │ │ ├── cda.xml │ │ │ │ ├── cdek.xml │ │ │ │ ├── cebu_pacific.xml │ │ │ │ ├── celestia.xml │ │ │ │ ├── cell_to_singularity_evolution.xml │ │ │ │ ├── cellmapper.xml │ │ │ │ ├── ceno.xml │ │ │ │ ├── cent.xml │ │ │ │ ├── central_power.xml │ │ │ │ ├── cepat.xml │ │ │ │ ├── cepteteb.xml │ │ │ │ ├── cfe.xml │ │ │ │ ├── cfr_calatori.xml │ │ │ │ ├── cgeo.xml │ │ │ │ ├── chai.xml │ │ │ │ ├── chalo.xml │ │ │ │ ├── champions_league.xml │ │ │ │ ├── change_my_mac.xml │ │ │ │ ├── chaoxing.xml │ │ │ │ ├── character_ai.xml │ │ │ │ ├── character_pad.xml │ │ │ │ ├── charge_control_root.xml │ │ │ │ ├── charge_meter.xml │ │ │ │ ├── charge_monitor.xml │ │ │ │ ├── chargelab.xml │ │ │ │ ├── chargemap.xml │ │ │ │ ├── charging_fun.xml │ │ │ │ ├── chase.xml │ │ │ │ ├── chat_ai.xml │ │ │ │ ├── chatbot_ai_4o.xml │ │ │ │ ├── chatgpt.xml │ │ │ │ ├── chatlaunch_for_whatsapp.xml │ │ │ │ ├── chaton.xml │ │ │ │ ├── chatrandom.xml │ │ │ │ ├── chatsen.xml │ │ │ │ ├── cheapflights.xml │ │ │ │ ├── check24.xml │ │ │ │ ├── checkfirm.xml │ │ │ │ ├── chefkoch.xml │ │ │ │ ├── chegg_study.xml │ │ │ │ ├── cheogram.xml │ │ │ │ ├── cheq.xml │ │ │ │ ├── cherrygram.xml │ │ │ │ ├── chess.xml │ │ │ │ ├── chess_aifactory.xml │ │ │ │ ├── chess_clock.xml │ │ │ │ ├── chessis.xml │ │ │ │ ├── chewy.xml │ │ │ │ ├── children_space.xml │ │ │ │ ├── chime.xml │ │ │ │ ├── china_construction_bank.xml │ │ │ │ ├── china_merchants_bank.xml │ │ │ │ ├── china_mobile.xml │ │ │ │ ├── china_telecom.xml │ │ │ │ ├── china_unicom.xml │ │ │ │ ├── chip_defense.xml │ │ │ │ ├── chipolo.xml │ │ │ │ ├── chmate.xml │ │ │ │ ├── chooser.xml │ │ │ │ ├── chordify.xml │ │ │ │ ├── chroma_lab.xml │ │ │ │ ├── chrome_remote_desktop.xml │ │ │ │ ├── chrono.xml │ │ │ │ ├── chrono_artm.xml │ │ │ │ ├── chronos.xml │ │ │ │ ├── chsi.xml │ │ │ │ ├── church_tools.xml │ │ │ │ ├── churchsuite.xml │ │ │ │ ├── chwazi.xml │ │ │ │ ├── cibc.xml │ │ │ │ ├── cic.xml │ │ │ │ ├── ciceksepeti.xml │ │ │ │ ├── cieid.xml │ │ │ │ ├── cifra_bank.xml │ │ │ │ ├── cifra_club_academy.xml │ │ │ │ ├── cifra_club_metronome.xml │ │ │ │ ├── cifra_club_tuner.xml │ │ │ │ ├── cimb_bank_ph.xml │ │ │ │ ├── cinegato.xml │ │ │ │ ├── cinemark.xml │ │ │ │ ├── cinemas_nos.xml │ │ │ │ ├── cineplex.xml │ │ │ │ ├── cinepolis.xml │ │ │ │ ├── cinexplore.xml │ │ │ │ ├── circle_cutter.xml │ │ │ │ ├── circle_k.xml │ │ │ │ ├── circles.xml │ │ │ │ ├── circlys.xml │ │ │ │ ├── citibank.xml │ │ │ │ ├── citra.xml │ │ │ │ ├── cittamobi.xml │ │ │ │ ├── citymapper.xml │ │ │ │ ├── claro.xml │ │ │ │ ├── clash_base_pedia.xml │ │ │ │ ├── clash_for_android.xml │ │ │ │ ├── clash_meta.xml │ │ │ │ ├── clash_mini.xml │ │ │ │ ├── clash_of_clans.xml │ │ │ │ ├── clash_quest.xml │ │ │ │ ├── clash_royale.xml │ │ │ │ ├── classin.xml │ │ │ │ ├── classwiz_calc.xml │ │ │ │ ├── classyshark3xodus.xml │ │ │ │ ├── claude_by_anthropic.xml │ │ │ │ ├── claw.xml │ │ │ │ ├── clean_email.xml │ │ │ │ ├── clear.xml │ │ │ │ ├── clearpay.xml │ │ │ │ ├── clearscanner.xml │ │ │ │ ├── clearscore.xml │ │ │ │ ├── cleartrip.xml │ │ │ │ ├── cleer_plus.xml │ │ │ │ ├── clefs.xml │ │ │ │ ├── clevnote.xml │ │ │ │ ├── clicflyer.xml │ │ │ │ ├── click_to_chat.xml │ │ │ │ ├── click_up.xml │ │ │ │ ├── clickclickdrive.xml │ │ │ │ ├── clickup.xml │ │ │ │ ├── clickview.xml │ │ │ │ ├── clima.xml │ │ │ │ ├── clinometer.xml │ │ │ │ ├── clip_stack.xml │ │ │ │ ├── clip_studio_paint.xml │ │ │ │ ├── clipboard_cleaner.xml │ │ │ │ ├── clipeus.xml │ │ │ │ ├── clipious.xml │ │ │ │ ├── clipt.xml │ │ │ │ ├── clipto.xml │ │ │ │ ├── clock.xml │ │ │ │ ├── clock_widget.xml │ │ │ │ ├── clockify.xml │ │ │ │ ├── clone_app.xml │ │ │ │ ├── clone_phone.xml │ │ │ │ ├── closer.xml │ │ │ │ ├── cloud_mail_ru.xml │ │ │ │ ├── cloudedge.xml │ │ │ │ ├── cloudlibrary.xml │ │ │ │ ├── cloudstream.xml │ │ │ │ ├── clubhouse.xml │ │ │ │ ├── clue.xml │ │ │ │ ├── cmf_watch.xml │ │ │ │ ├── cobone.xml │ │ │ │ ├── cobs_bread.xml │ │ │ │ ├── coca_cola.xml │ │ │ │ ├── cod.xml │ │ │ │ ├── cod_mobile.xml │ │ │ │ ├── code_editor.xml │ │ │ │ ├── code_studio.xml │ │ │ │ ├── codec_info.xml │ │ │ │ ├── codecademy_go.xml │ │ │ │ ├── codesnack_ide.xml │ │ │ │ ├── coding_c_plus_plus.xml │ │ │ │ ├── codora.xml │ │ │ │ ├── coffee.xml │ │ │ │ ├── coffeecam.xml │ │ │ │ ├── cofi.xml │ │ │ │ ├── coinbase.xml │ │ │ │ ├── coinbase_wallet.xml │ │ │ │ ├── coincalc.xml │ │ │ │ ├── coinex.xml │ │ │ │ ├── coinmarketcap.xml │ │ │ │ ├── coins.xml │ │ │ │ ├── coinsnap.xml │ │ │ │ ├── coinswitch.xml │ │ │ │ ├── coinvero.xml │ │ │ │ ├── coke_on.xml │ │ │ │ ├── colectivos_bahia_blanca.xml │ │ │ │ ├── collabora_office.xml │ │ │ │ ├── collage_maker.xml │ │ │ │ ├── college_search.xml │ │ │ │ ├── color_changing_camera.xml │ │ │ │ ├── color_grab.xml │ │ │ │ ├── color_picker.xml │ │ │ │ ├── color_puzzle.xml │ │ │ │ ├── color_switch.xml │ │ │ │ ├── color_widgets.xml │ │ │ │ ├── colorblendr.xml │ │ │ │ ├── colornote.xml │ │ │ │ ├── colorwaver.xml │ │ │ │ ├── comatose.xml │ │ │ │ ├── combined.xml │ │ │ │ ├── comdirect.xml │ │ │ │ ├── comdirect_phototan.xml │ │ │ │ ├── comeco_teo.xml │ │ │ │ ├── cometin.xml │ │ │ │ ├── comicscreen.xml │ │ │ │ ├── commbank.xml │ │ │ │ ├── companion_for_gltools.xml │ │ │ │ ├── companion_for_new_world.xml │ │ │ │ ├── compass.xml │ │ │ │ ├── compass_by_bobek.xml │ │ │ │ ├── compass_school_manager.xml │ │ │ │ ├── compass_synapsetech.xml │ │ │ │ ├── compendium.xml │ │ │ │ ├── complete_music_reading_trainer.xml │ │ │ │ ├── compress_image_size.xml │ │ │ │ ├── concepts.xml │ │ │ │ ├── confirmtkt.xml │ │ │ │ ├── congstar.xml │ │ │ │ ├── connect_for_lemmy.xml │ │ │ │ ├── connect_iq.xml │ │ │ │ ├── connect_you.xml │ │ │ │ ├── connectbot.xml │ │ │ │ ├── connectlife.xml │ │ │ │ ├── consorsbank_secureplus.xml │ │ │ │ ├── consumidor_gov_br.xml │ │ │ │ ├── conta_digital_ifood.xml │ │ │ │ ├── contacts.xml │ │ │ │ ├── contacts_sync.xml │ │ │ │ ├── continente_siga.xml │ │ │ │ ├── control_center_ios.xml │ │ │ │ ├── control_d.xml │ │ │ │ ├── control_screen_rotation.xml │ │ │ │ ├── conversations.xml │ │ │ │ ├── converter_now.xml │ │ │ │ ├── cookie_clicker.xml │ │ │ │ ├── cookierun.xml │ │ │ │ ├── coolapk.xml │ │ │ │ ├── coolblue.xml │ │ │ │ ├── coolors.xml │ │ │ │ ├── coop.xml │ │ │ │ ├── copilote.xml │ │ │ │ ├── copy.xml │ │ │ │ ├── copy_sms_code.xml │ │ │ │ ├── core.xml │ │ │ │ ├── corona_tracing.xml │ │ │ │ ├── corona_warn.xml │ │ │ │ ├── coronacheck.xml │ │ │ │ ├── correios.xml │ │ │ │ ├── corridor.xml │ │ │ │ ├── costco_wholesale.xml │ │ │ │ ├── countdown_to_anything.xml │ │ │ │ ├── countdown_widget.xml │ │ │ │ ├── course_hero.xml │ │ │ │ ├── coursera.xml │ │ │ │ ├── coverscreen_os.xml │ │ │ │ ├── covid_certificate.xml │ │ │ │ ├── covpass.xml │ │ │ │ ├── cpu_float.xml │ │ │ │ ├── cpu_info.xml │ │ │ │ ├── cpu_l.xml │ │ │ │ ├── cpu_monitor.xml │ │ │ │ ├── cpu_throttling_test.xml │ │ │ │ ├── cpu_z.xml │ │ │ │ ├── craigslist.xml │ │ │ │ ├── crave.xml │ │ │ │ ├── crayon_adaptive_icons.xml │ │ │ │ ├── crayon_icons.xml │ │ │ │ ├── crazy_taxi_classic.xml │ │ │ │ ├── creativeapp.xml │ │ │ │ ├── cred.xml │ │ │ │ ├── credit_agricole.xml │ │ │ │ ├── credit_mutuel.xml │ │ │ │ ├── credit_suisse_twint.xml │ │ │ │ ├── cricbuzz.xml │ │ │ │ ├── cricket_australia_live.xml │ │ │ │ ├── criptext_secure_email.xml │ │ │ │ ├── cromite.xml │ │ │ │ ├── crontosign_swiss.xml │ │ │ │ ├── crookcatcher.xml │ │ │ │ ├── crop_trim_video.xml │ │ │ │ ├── crosshair_hero.xml │ │ │ │ ├── crosswords.xml │ │ │ │ ├── crossy_road.xml │ │ │ │ ├── crowdsource.xml │ │ │ │ ├── crunchyroll.xml │ │ │ │ ├── crypto.xml │ │ │ │ ├── crypto_bubbles.xml │ │ │ │ ├── crypto_com.xml │ │ │ │ ├── crypto_prices.xml │ │ │ │ ├── cryptomator.xml │ │ │ │ ├── ctrip.xml │ │ │ │ ├── cube_escape_collection.xml │ │ │ │ ├── cube_solver.xml │ │ │ │ ├── cuberite.xml │ │ │ │ ├── cuenta_dni.xml │ │ │ │ ├── cult_fit.xml │ │ │ │ ├── curiosity_stream.xml │ │ │ │ ├── currencies.xml │ │ │ │ ├── curve.xml │ │ │ │ ├── cuscon.xml │ │ │ │ ├── custom_uploader.xml │ │ │ │ ├── cut_the_rope.xml │ │ │ │ ├── cuto_wallpaper.xml │ │ │ │ ├── cvs_pharmacy.xml │ │ │ │ ├── cvv.xml │ │ │ │ ├── cx_file_explorer.xml │ │ │ │ ├── cxxdroid.xml │ │ │ │ ├── cyberalerty.xml │ │ │ │ ├── cyberghost.xml │ │ │ │ ├── cyclers.xml │ │ │ │ ├── cymera.xml │ │ │ │ ├── cync.xml │ │ │ │ ├── cytoid.xml │ │ │ │ ├── cytus2.xml │ │ │ │ ├── d_point_club.xml │ │ │ │ ├── da_fit.xml │ │ │ │ ├── daff_moon_phase.xml │ │ │ │ ├── daijisho.xml │ │ │ │ ├── daikin_mobile_controller.xml │ │ │ │ ├── daily_dev.xml │ │ │ │ ├── daily_diary.xml │ │ │ │ ├── daily_wallpaper_from_bing.xml │ │ │ │ ├── daily_you.xml │ │ │ │ ├── dailyhunt.xml │ │ │ │ ├── dailymotion.xml │ │ │ │ ├── dailyobjects.xml │ │ │ │ ├── dailypic.xml │ │ │ │ ├── daiso_app.xml │ │ │ │ ├── dana.xml │ │ │ │ ├── dankchat.xml │ │ │ │ ├── danske_id.xml │ │ │ │ ├── dante.xml │ │ │ │ ├── dantotsu.xml │ │ │ │ ├── daraz.xml │ │ │ │ ├── daremote.xml │ │ │ │ ├── dark_mode_live_wallpaper.xml │ │ │ │ ├── darker.xml │ │ │ │ ├── darq.xml │ │ │ │ ├── das_e_rezept.xml │ │ │ │ ├── dashlane.xml │ │ │ │ ├── dashlane_authenticator.xml │ │ │ │ ├── data_defense.xml │ │ │ │ ├── data_eraser.xml │ │ │ │ ├── data_monitor.xml │ │ │ │ ├── data_wing.xml │ │ │ │ ├── databackup.xml │ │ │ │ ├── datadex.xml │ │ │ │ ├── datally.xml │ │ │ │ ├── datapax.xml │ │ │ │ ├── datura_firewall.xml │ │ │ │ ├── davinci.xml │ │ │ │ ├── daviplata.xml │ │ │ │ ├── davx5.xml │ │ │ │ ├── dawn_ai.xml │ │ │ │ ├── dawn_for_reddit.xml │ │ │ │ ├── day_one_journal.xml │ │ │ │ ├── daybridge.xml │ │ │ │ ├── dayforce.xml │ │ │ │ ├── daylio.xml │ │ │ │ ├── dazn.xml │ │ │ │ ├── db_ausflug.xml │ │ │ │ ├── db_bahnhof_live.xml │ │ │ │ ├── db_bauarbeiten.xml │ │ │ │ ├── db_navigator.xml │ │ │ │ ├── db_rad_plus.xml │ │ │ │ ├── dbna.xml │ │ │ │ ├── dcard.xml │ │ │ │ ├── dcoder.xml │ │ │ │ ├── dcu.xml │ │ │ │ ├── de_bloater.xml │ │ │ │ ├── dead_by_daylight.xml │ │ │ │ ├── dead_cells.xml │ │ │ │ ├── deadhash.xml │ │ │ │ ├── dealabs.xml │ │ │ │ ├── debitum.xml │ │ │ │ ├── decathlon.xml │ │ │ │ ├── deck_shop.xml │ │ │ │ ├── deckboard_pro.xml │ │ │ │ ├── deco_pic.xml │ │ │ │ ├── deen.xml │ │ │ │ ├── deep_tv_pro.xml │ │ │ │ ├── deepl.xml │ │ │ │ ├── deepsleep.xml │ │ │ │ ├── deepstash.xml │ │ │ │ ├── deezer.xml │ │ │ │ ├── defi_wallet.xml │ │ │ │ ├── defit.xml │ │ │ │ ├── degiro.xml │ │ │ │ ├── degoo.xml │ │ │ │ ├── delhivery.xml │ │ │ │ ├── deliveries.xml │ │ │ │ ├── deliveroo.xml │ │ │ │ ├── delivery_club.xml │ │ │ │ ├── delta_chat.xml │ │ │ │ ├── delta_icons.xml │ │ │ │ ├── denizbank.xml │ │ │ │ ├── dennik_n.xml │ │ │ │ ├── denon_avr.xml │ │ │ │ ├── deploygate.xml │ │ │ │ ├── depop.xml │ │ │ │ ├── der_spiegel.xml │ │ │ │ ├── desaturate_icons.xml │ │ │ │ ├── designer_tools.xml │ │ │ │ ├── desjardins.xml │ │ │ │ ├── desk_clock.xml │ │ │ │ ├── deskdock.xml │ │ │ │ ├── desmos.xml │ │ │ │ ├── desmos_scientific_calculator.xml │ │ │ │ ├── destiny_item_manager.xml │ │ │ │ ├── destiny_two_companion.xml │ │ │ │ ├── detectify.xml │ │ │ │ ├── detoxdroid.xml │ │ │ │ ├── deutsche_bank.xml │ │ │ │ ├── deutschlandcard.xml │ │ │ │ ├── deutschlandticket_de.xml │ │ │ │ ├── dev_assistant.xml │ │ │ │ ├── dev_info_overlay.xml │ │ │ │ ├── dev_tools.xml │ │ │ │ ├── devcheck.xml │ │ │ │ ├── devialet.xml │ │ │ │ ├── devialet_gemini.xml │ │ │ │ ├── deviantart.xml │ │ │ │ ├── device_care.xml │ │ │ │ ├── device_clone.xml │ │ │ │ ├── device_help.xml │ │ │ │ ├── device_info.xml │ │ │ │ ├── device_info_hw.xml │ │ │ │ ├── device_info_liuzho.xml │ │ │ │ ├── device_unlock.xml │ │ │ │ ├── device_utility.xml │ │ │ │ ├── devolo_home_network.xml │ │ │ │ ├── dexcom_g6.xml │ │ │ │ ├── dextools.xml │ │ │ │ ├── dexway.xml │ │ │ │ ├── dfndr_enterprise.xml │ │ │ │ ├── dfndr_performance.xml │ │ │ │ ├── dfndr_security.xml │ │ │ │ ├── dfndr_vault.xml │ │ │ │ ├── dfndr_vpn.xml │ │ │ │ ├── dh.xml │ │ │ │ ├── dhan.xml │ │ │ │ ├── dhikr_and_dua.xml │ │ │ │ ├── dhl.xml │ │ │ │ ├── diablo_immortal.xml │ │ │ │ ├── dialer.xml │ │ │ │ ├── dianping.xml │ │ │ │ ├── diarium.xml │ │ │ │ ├── diaro.xml │ │ │ │ ├── dice.xml │ │ │ │ ├── dice_fm.xml │ │ │ │ ├── dicio_assistant.xml │ │ │ │ ├── dict_cc.xml │ │ │ │ ├── dictionary_com.xml │ │ │ │ ├── dictionary_for_samsung.xml │ │ │ │ ├── dida_taxi.xml │ │ │ │ ├── didi.xml │ │ │ │ ├── didi_food.xml │ │ │ │ ├── didup.xml │ │ │ │ ├── diffuse.xml │ │ │ │ ├── digi_clock_widget.xml │ │ │ │ ├── digi_yatra.xml │ │ │ │ ├── digid.xml │ │ │ │ ├── digikala.xml │ │ │ │ ├── digilocker.xml │ │ │ │ ├── digiposte.xml │ │ │ │ ├── digital_detox.xml │ │ │ │ ├── digital_wellbeing.xml │ │ │ │ ├── digitalent.xml │ │ │ │ ├── digitales_amt.xml │ │ │ │ ├── dimmer.xml │ │ │ │ ├── dimo_essential.xml │ │ │ │ ├── dineout.xml │ │ │ │ ├── dingtalk.xml │ │ │ │ ├── diohub.xml │ │ │ │ ├── disable_notification_popups.xml │ │ │ │ ├── disabler.xml │ │ │ │ ├── disco_zoo.xml │ │ │ │ ├── discogs.xml │ │ │ │ ├── disconnect.xml │ │ │ │ ├── discord.xml │ │ │ │ ├── discord_themer.xml │ │ │ │ ├── discover.xml │ │ │ │ ├── discover_from_facebook.xml │ │ │ │ ├── discoveryplus.xml │ │ │ │ ├── discreet_launcher.xml │ │ │ │ ├── disk_usage.xml │ │ │ │ ├── diskdigger.xml │ │ │ │ ├── diskinfo.xml │ │ │ │ ├── disky.xml │ │ │ │ ├── dislyte.xml │ │ │ │ ├── disney_star_plus.xml │ │ │ │ ├── disneyplus.xml │ │ │ │ ├── ditmm.xml │ │ │ │ ├── dito.xml │ │ │ │ ├── divisionresurgence.xml │ │ │ │ ├── divvydiary.xml │ │ │ │ ├── diya.xml │ │ │ │ ├── dji.xml │ │ │ │ ├── dkb.xml │ │ │ │ ├── dkb_tan2go.xml │ │ │ │ ├── dmrc_momentum.xml │ │ │ │ ├── dmss.xml │ │ │ │ ├── dna_android.xml │ │ │ │ ├── dns.xml │ │ │ │ ├── doable.xml │ │ │ │ ├── dobroservice.xml │ │ │ │ ├── doccle.xml │ │ │ │ ├── doctolib.xml │ │ │ │ ├── doctoralia.xml │ │ │ │ ├── document_scanner.xml │ │ │ │ ├── docusign.xml │ │ │ │ ├── docvault.xml │ │ │ │ ├── dodo_pizza.xml │ │ │ │ ├── doglife.xml │ │ │ │ ├── dogo.xml │ │ │ │ ├── doku.xml │ │ │ │ ├── dolap.xml │ │ │ │ ├── dolby.xml │ │ │ │ ├── dolby_atmos.xml │ │ │ │ ├── dolby_atmos_moto.xml │ │ │ │ ├── dolphin_emulator.xml │ │ │ │ ├── dom_ru.xml │ │ │ │ ├── domestika.xml │ │ │ │ ├── dominos_pizza.xml │ │ │ │ ├── dont_touch_the_spikes.xml │ │ │ │ ├── dontkillmyapp.xml │ │ │ │ ├── doodle.xml │ │ │ │ ├── doodle_jump.xml │ │ │ │ ├── doodle_jump_2.xml │ │ │ │ ├── doordash.xml │ │ │ │ ├── dooz.xml │ │ │ │ ├── doppelreim.xml │ │ │ │ ├── dott.xml │ │ │ │ ├── douban.xml │ │ │ │ ├── dove_icons.xml │ │ │ │ ├── doviz.xml │ │ │ │ ├── downdetector.xml │ │ │ │ ├── download.xml │ │ │ │ ├── download_navi.xml │ │ │ │ ├── download_progress_plusplus.xml │ │ │ │ ├── download_twitter_videos.xml │ │ │ │ ├── download_video_no_watermark.xml │ │ │ │ ├── downloader_video_and_image.xml │ │ │ │ ├── dr_mohammad_alfagih_hospital.xml │ │ │ │ ├── dr_web.xml │ │ │ │ ├── dragon_ball_legends.xml │ │ │ │ ├── dragon_ball_z_dokkan_battle.xml │ │ │ │ ├── dragon_read.xml │ │ │ │ ├── drastic.xml │ │ │ │ ├── drawnote.xml │ │ │ │ ├── dream.xml │ │ │ │ ├── dream11.xml │ │ │ │ ├── dream_league_soccer.xml │ │ │ │ ├── dreamdroid.xml │ │ │ │ ├── dreamlab.xml │ │ │ │ ├── driefcase_abha.xml │ │ │ │ ├── drink_water_reminder.xml │ │ │ │ ├── drinkable.xml │ │ │ │ ├── drip.xml │ │ │ │ ├── drive_on.xml │ │ │ │ ├── drivedroid.xml │ │ │ │ ├── driving_school_control.xml │ │ │ │ ├── drm_info.xml │ │ │ │ ├── droid_hardware.xml │ │ │ │ ├── droidcam.xml │ │ │ │ ├── droidcam_obs.xml │ │ │ │ ├── droidcamx.xml │ │ │ │ ├── droidfish.xml │ │ │ │ ├── droidfs.xml │ │ │ │ ├── droidhole.xml │ │ │ │ ├── droidify.xml │ │ │ │ ├── droidrec.xml │ │ │ │ ├── droidvnc_ng.xml │ │ │ │ ├── drom.xml │ │ │ │ ├── drone_deploy.xml │ │ │ │ ├── dropbox.xml │ │ │ │ ├── dropout.xml │ │ │ │ ├── drops.xml │ │ │ │ ├── drops_icons.xml │ │ │ │ ├── drops_learn_british_english.xml │ │ │ │ ├── drtv.xml │ │ │ │ ├── drug_vokrug.xml │ │ │ │ ├── ds_file.xml │ │ │ │ ├── ds_finder.xml │ │ │ │ ├── ds_note.xml │ │ │ │ ├── dsb.xml │ │ │ │ ├── dso.xml │ │ │ │ ├── dsu_sideloader.xml │ │ │ │ ├── du.xml │ │ │ │ ├── dual.xml │ │ │ │ ├── dual_wallpaper.xml │ │ │ │ ├── dubizzle.xml │ │ │ │ ├── duckduckgo.xml │ │ │ │ ├── duckstation.xml │ │ │ │ ├── duelyst.xml │ │ │ │ ├── dumb_ways_to_die_2.xml │ │ │ │ ├── dunk_shot_ketchapp.xml │ │ │ │ ├── dunkin.xml │ │ │ │ ├── dunzo.xml │ │ │ │ ├── duo.xml │ │ │ │ ├── duokan.xml │ │ │ │ ├── duolingo.xml │ │ │ │ ├── durak_online.xml │ │ │ │ ├── dvd.xml │ │ │ │ ├── dvget.xml │ │ │ │ ├── dw.xml │ │ │ │ ├── dwg_fastview.xml │ │ │ │ ├── dynamic_material_you_icons.xml │ │ │ │ ├── dynamic_spot.xml │ │ │ │ ├── dynasty_legends_2.xml │ │ │ │ ├── dzienniczek_vulcan.xml │ │ │ │ ├── e1547.xml │ │ │ │ ├── e_cny.xml │ │ │ │ ├── e_devlet.xml │ │ │ │ ├── e_mobile.xml │ │ │ │ ├── e_titulo.xml │ │ │ │ ├── ea_sports_fc.xml │ │ │ │ ├── eand.xml │ │ │ │ ├── eapteka.xml │ │ │ │ ├── earfun.xml │ │ │ │ ├── earthquake_network.xml │ │ │ │ ├── easer.xml │ │ │ │ ├── easter_eggs.xml │ │ │ │ ├── easy_dpi_changer.xml │ │ │ │ ├── easy_fast.xml │ │ │ │ ├── easy_notes.xml │ │ │ │ ├── easy_repost.xml │ │ │ │ ├── easy_voice_recorder.xml │ │ │ │ ├── easy_wallet.xml │ │ │ │ ├── easy_watermark.xml │ │ │ │ ├── easy_xkcd.xml │ │ │ │ ├── easybrain.xml │ │ │ │ ├── easycash.xml │ │ │ │ ├── easyjet.xml │ │ │ │ ├── easypaisa.xml │ │ │ │ ├── easypark.xml │ │ │ │ ├── easyshare.xml │ │ │ │ ├── eatclub.xml │ │ │ │ ├── eatsure.xml │ │ │ │ ├── eazydiner.xml │ │ │ │ ├── ebay.xml │ │ │ │ ├── ebook_converter.xml │ │ │ │ ├── ebookdroid.xml │ │ │ │ ├── eboox.xml │ │ │ │ ├── ecloud.xml │ │ │ │ ├── ecobee.xml │ │ │ │ ├── ecosia.xml │ │ │ │ ├── ecourts_services.xml │ │ │ │ ├── ecovacs_home.xml │ │ │ │ ├── edadeal.xml │ │ │ │ ├── edeka.xml │ │ │ │ ├── edenred.xml │ │ │ │ ├── edge.xml │ │ │ │ ├── edge_gestures.xml │ │ │ │ ├── edison_mail.xml │ │ │ │ ├── editor_by_billthefarmer.xml │ │ │ │ ├── edponline.xml │ │ │ │ ├── educacao_financeira_by_mobills.xml │ │ │ │ ├── edupage.xml │ │ │ │ ├── eduvulcan.xml │ │ │ │ ├── edx.xml │ │ │ │ ├── efood.xml │ │ │ │ ├── efootball.xml │ │ │ │ ├── egg_inc.xml │ │ │ │ ├── egov.xml │ │ │ │ ├── egovph.xml │ │ │ │ ├── ehviewer.xml │ │ │ │ ├── eid_me.xml │ │ │ │ ├── eight.xml │ │ │ │ ├── ekatalog.xml │ │ │ │ ├── eksi_sozluk.xml │ │ │ │ ├── eksicep.xml │ │ │ │ ├── ele_me.xml │ │ │ │ ├── electric_circuit.xml │ │ │ │ ├── electron.xml │ │ │ │ ├── electron_cash.xml │ │ │ │ ├── electronicscomp.xml │ │ │ │ ├── electrum.xml │ │ │ │ ├── elegant_teleprompter.xml │ │ │ │ ├── element.xml │ │ │ │ ├── element_x.xml │ │ │ │ ├── eletmento.xml │ │ │ │ ├── elfeed.xml │ │ │ │ ├── elite_hospital.xml │ │ │ │ ├── eljur_student.xml │ │ │ │ ├── ella.xml │ │ │ │ ├── emag.xml │ │ │ │ ├── email.xml │ │ │ │ ├── emanat.xml │ │ │ │ ├── emby.xml │ │ │ │ ├── emerald_launcher.xml │ │ │ │ ├── emergency_plus.xml │ │ │ │ ├── emeritus.xml │ │ │ │ ├── emias_info.xml │ │ │ │ ├── emoticon_dictionary.xml │ │ │ │ ├── empty.xml │ │ │ │ ├── empty_folder_cleaner.xml │ │ │ │ ├── enabiz.xml │ │ │ │ ├── endel.xml │ │ │ │ ├── endless_quiz.xml │ │ │ │ ├── enel.xml │ │ │ │ ├── energize.xml │ │ │ │ ├── energy.xml │ │ │ │ ├── english_dictionary.xml │ │ │ │ ├── english_grammar_test.xml │ │ │ │ ├── english_malayalam_dictionary.xml │ │ │ │ ├── english_score.xml │ │ │ │ ├── enix.xml │ │ │ │ ├── enki.xml │ │ │ │ ├── enpara.xml │ │ │ │ ├── enpass.xml │ │ │ │ ├── ente_auth.xml │ │ │ │ ├── ente_photos.xml │ │ │ │ ├── entel.xml │ │ │ │ ├── entrust_identity.xml │ │ │ │ ├── entur.xml │ │ │ │ ├── enya_music.xml │ │ │ │ ├── epic_freebie_games_radar.xml │ │ │ │ ├── epic_games.xml │ │ │ │ ├── epik.xml │ │ │ │ ├── epson_print_enabler.xml │ │ │ │ ├── epson_smart_panel.xml │ │ │ │ ├── eq_bank.xml │ │ │ │ ├── equatemobile.xml │ │ │ │ ├── erste_hilfe.xml │ │ │ │ ├── erudite.xml │ │ │ │ ├── es_file_explorer.xml │ │ │ │ ├── escapepod.xml │ │ │ │ ├── eset_mobile_security_antivirus.xml │ │ │ │ ├── esewa.xml │ │ │ │ ├── esfera.xml │ │ │ │ ├── esocial.xml │ │ │ │ ├── esp.xml │ │ │ │ ├── espn.xml │ │ │ │ ├── espncricinfo.xml │ │ │ │ ├── espresso_house.xml │ │ │ │ ├── esselunga.xml │ │ │ │ ├── etabib.xml │ │ │ │ ├── etchdroid.xml │ │ │ │ ├── eternity.xml │ │ │ │ ├── etesync.xml │ │ │ │ ├── eticket_klaipeda.xml │ │ │ │ ├── etoro.xml │ │ │ │ ├── etsy.xml │ │ │ │ ├── etsy_seller.xml │ │ │ │ ├── etutor.xml │ │ │ │ ├── euclidea.xml │ │ │ │ ├── eufy_clean.xml │ │ │ │ ├── eufy_security.xml │ │ │ │ ├── eufylife.xml │ │ │ │ ├── eurosport.xml │ │ │ │ ├── eurovision_song_contest.xml │ │ │ │ ├── eventbrite.xml │ │ │ │ ├── eventim.xml │ │ │ │ ├── everand.xml │ │ │ │ ├── everest.xml │ │ │ │ ├── evernote.xml │ │ │ │ ├── evertranslator.xml │ │ │ │ ├── every_proxy.xml │ │ │ │ ├── everycircuit.xml │ │ │ │ ├── everyday_rewards.xml │ │ │ │ ├── everystar.xml │ │ │ │ ├── evil_insult_generator.xml │ │ │ │ ├── evmap.xml │ │ │ │ ├── evo_icons.xml │ │ │ │ ├── evoland.xml │ │ │ │ ├── evoland2.xml │ │ │ │ ├── evpass.xml │ │ │ │ ├── ewelink.xml │ │ │ │ ├── ex_kernel_manager.xml │ │ │ │ ├── exif_eraser.xml │ │ │ │ ├── exnova.xml │ │ │ │ ├── exodus.xml │ │ │ │ ├── exodus_privacy.xml │ │ │ │ ├── expedia.xml │ │ │ │ ├── expense_manager.xml │ │ │ │ ├── expense_tracker.xml │ │ │ │ ├── expertoption.xml │ │ │ │ ├── explorer_amnh.xml │ │ │ │ ├── expo.xml │ │ │ │ ├── express_plus_medicare.xml │ │ │ │ ├── expressvpn.xml │ │ │ │ ├── exteragram.xml │ │ │ │ ├── exterax.xml │ │ │ │ ├── extirpater.xml │ │ │ │ ├── eyeem.xml │ │ │ │ ├── ezlink.xml │ │ │ │ ├── ezviz.xml │ │ │ │ ├── f1.xml │ │ │ │ ├── f1_mobile_racing.xml │ │ │ │ ├── f_dot_lux.xml │ │ │ │ ├── f_droid_basic.xml │ │ │ │ ├── f_droid_classic.xml │ │ │ │ ├── f_stop_gallery.xml │ │ │ │ ├── fabulous.xml │ │ │ │ ├── face_unlock.xml │ │ │ │ ├── faceapp.xml │ │ │ │ ├── facebook.xml │ │ │ │ ├── facebook_lcr.xml │ │ │ │ ├── facelapse.xml │ │ │ │ ├── facemoji.xml │ │ │ │ ├── facer.xml │ │ │ │ ├── faceshow.xml │ │ │ │ ├── facetune.xml │ │ │ │ ├── factory_escape.xml │ │ │ │ ├── fahrplaner.xml │ │ │ │ ├── fahrschul_campus.xml │ │ │ │ ├── fairemail.xml │ │ │ │ ├── fake_chat.xml │ │ │ │ ├── fake_gps.xml │ │ │ │ ├── fake_gps_byterev.xml │ │ │ │ ├── fake_location.xml │ │ │ │ ├── faketraveler.xml │ │ │ │ ├── fallout_shelter.xml │ │ │ │ ├── famapp.xml │ │ │ │ ├── family_safety.xml │ │ │ │ ├── family_space.xml │ │ │ │ ├── familyalbum.xml │ │ │ │ ├── familymart.xml │ │ │ │ ├── familypark.xml │ │ │ │ ├── familywall.xml │ │ │ │ ├── famipay.xml │ │ │ │ ├── fancade.xml │ │ │ │ ├── fandango.xml │ │ │ │ ├── fandom.xml │ │ │ │ ├── fanfiction_net.xml │ │ │ │ ├── fans.xml │ │ │ │ ├── farhan.xml │ │ │ │ ├── farlight_84.xml │ │ │ │ ├── farmacias.xml │ │ │ │ ├── fast.xml │ │ │ │ ├── fast_transfer_for_nearby_share.xml │ │ │ │ ├── fasthub.xml │ │ │ │ ├── fasthub_libre.xml │ │ │ │ ├── fasthub_re.xml │ │ │ │ ├── fasting.xml │ │ │ │ ├── fastmail.xml │ │ │ │ ├── fastvid.xml │ │ │ │ ├── fate_grand_order.xml │ │ │ │ ├── fave.xml │ │ │ │ ├── fcitx5_for_android.xml │ │ │ │ ├── fde_ai.xml │ │ │ │ ├── fdroid.xml │ │ │ │ ├── fe_file_explorer.xml │ │ │ │ ├── federal_bank.xml │ │ │ │ ├── fedex.xml │ │ │ │ ├── fedilab.xml │ │ │ │ ├── feedback.xml │ │ │ │ ├── feeder.xml │ │ │ │ ├── feedly.xml │ │ │ │ ├── feedme.xml │ │ │ │ ├── feeel.xml │ │ │ │ ├── feem.xml │ │ │ │ ├── feichangzhun.xml │ │ │ │ ├── feishu.xml │ │ │ │ ├── feit_electric.xml │ │ │ │ ├── fenbi.xml │ │ │ │ ├── feudal_tactics.xml │ │ │ │ ├── ff7fs.xml │ │ │ │ ├── ffmpeg_media_encoder.xml │ │ │ │ ├── ffreedom.xml │ │ │ │ ├── ffshare.xml │ │ │ │ ├── ffupdater.xml │ │ │ │ ├── fgames_radar.xml │ │ │ │ ├── fgts.xml │ │ │ │ ├── fi_money.xml │ │ │ │ ├── fibabanka.xml │ │ │ │ ├── fido_my_account.xml │ │ │ │ ├── fifa_plus.xml │ │ │ │ ├── fig.xml │ │ │ │ ├── figma.xml │ │ │ │ ├── fiio_control.xml │ │ │ │ ├── file_manager.xml │ │ │ │ ├── file_manager_plus.xml │ │ │ │ ├── file_navigator.xml │ │ │ │ ├── file_viewer_for_android.xml │ │ │ │ ├── filen.xml │ │ │ │ ├── files.xml │ │ │ │ ├── files_by_google.xml │ │ │ │ ├── film_maker_pro.xml │ │ │ │ ├── film_plus.xml │ │ │ │ ├── filmic_pro.xml │ │ │ │ ├── filmora.xml │ │ │ │ ├── filmstaden.xml │ │ │ │ ├── finamp.xml │ │ │ │ ├── finance_assist.xml │ │ │ │ ├── finance_manager.xml │ │ │ │ ├── financial_times.xml │ │ │ │ ├── finanzen.xml │ │ │ │ ├── finanzguru.xml │ │ │ │ ├── finch.xml │ │ │ │ ├── find_my_device.xml │ │ │ │ ├── find_my_device_fmd.xml │ │ │ │ ├── findroid.xml │ │ │ │ ├── fine_lock.xml │ │ │ │ ├── fineasy.xml │ │ │ │ ├── fineco.xml │ │ │ │ ├── fing.xml │ │ │ │ ├── fingerprint.xml │ │ │ │ ├── finshell_pay.xml │ │ │ │ ├── finshell_wallet.xml │ │ │ │ ├── fire_emblem_heroes.xml │ │ │ │ ├── fire_tv.xml │ │ │ │ ├── firebase_app_tester.xml │ │ │ │ ├── firefox.xml │ │ │ │ ├── firefox_beta.xml │ │ │ │ ├── firefox_focus.xml │ │ │ │ ├── firefox_klar.xml │ │ │ │ ├── firefox_lockwise.xml │ │ │ │ ├── firefox_nightly.xml │ │ │ │ ├── first_bus.xml │ │ │ │ ├── first_citizens_bank.xml │ │ │ │ ├── first_iraqi_bank.xml │ │ │ │ ├── firstcry.xml │ │ │ │ ├── fishbowl.xml │ │ │ │ ├── fiszkoteka.xml │ │ │ │ ├── fitbit.xml │ │ │ │ ├── fitdays.xml │ │ │ │ ├── fitnotes.xml │ │ │ │ ├── fiverr.xml │ │ │ │ ├── fixprice.xml │ │ │ │ ├── fizz.xml │ │ │ │ ├── flamingo.xml │ │ │ │ ├── flashcards_world.xml │ │ │ │ ├── flashdim.xml │ │ │ │ ├── flasher.xml │ │ │ │ ├── flashfood.xml │ │ │ │ ├── flashlight.xml │ │ │ │ ├── flashlight_led.xml │ │ │ │ ├── flashlight_tiramisu.xml │ │ │ │ ├── flashscore.xml │ │ │ │ ├── flashy.xml │ │ │ │ ├── flat_equalizer.xml │ │ │ │ ├── flat_style_colored_bars.xml │ │ │ │ ├── flexify.xml │ │ │ │ ├── flickr.xml │ │ │ │ ├── fliggy.xml │ │ │ │ ├── flightaware.xml │ │ │ │ ├── flightradar24.xml │ │ │ │ ├── flightstats.xml │ │ │ │ ├── flip.xml │ │ │ │ ├── flip_clock.xml │ │ │ │ ├── flip_id.xml │ │ │ │ ├── flipaclip.xml │ │ │ │ ├── flipboard.xml │ │ │ │ ├── flipkart.xml │ │ │ │ ├── flipkz.xml │ │ │ │ ├── flixbus.xml │ │ │ │ ├── flo.xml │ │ │ │ ├── flo_period.xml │ │ │ │ ├── floating_apps.xml │ │ │ │ ├── floating_timer.xml │ │ │ │ ├── floatplane.xml │ │ │ │ ├── floccus.xml │ │ │ │ ├── flora_incognita.xml │ │ │ │ ├── floral.xml │ │ │ │ ├── florisboard.xml │ │ │ │ ├── flossy_icons.xml │ │ │ │ ├── flow.xml │ │ │ │ ├── flow_equalizer.xml │ │ │ │ ├── flow_free.xml │ │ │ │ ├── flow_hexes.xml │ │ │ │ ├── flowit.xml │ │ │ │ ├── flowx.xml │ │ │ │ ├── flstudio.xml │ │ │ │ ├── flud.xml │ │ │ │ ├── fluent_reader.xml │ │ │ │ ├── fluffychat.xml │ │ │ │ ├── fluid_navigation_gestures.xml │ │ │ │ ├── flut_renamer.xml │ │ │ │ ├── flutter_gallery.xml │ │ │ │ ├── flux.xml │ │ │ │ ├── fluxo_icons.xml │ │ │ │ ├── fly_delta.xml │ │ │ │ ├── flybuys.xml │ │ │ │ ├── flycast.xml │ │ │ │ ├── flyy.xml │ │ │ │ ├── fm_radio.xml │ │ │ │ ├── fnb.xml │ │ │ │ ├── fnz_bank.xml │ │ │ │ ├── foca.xml │ │ │ │ ├── focus_go.xml │ │ │ │ ├── focus_todo.xml │ │ │ │ ├── focus_video.xml │ │ │ │ ├── focusmeter.xml │ │ │ │ ├── folax.xml │ │ │ │ ├── fold.xml │ │ │ │ ├── folder_widget.xml │ │ │ │ ├── foldersync_pro.xml │ │ │ │ ├── followers_unfollowers.xml │ │ │ │ ├── fondea.xml │ │ │ │ ├── fontviewer.xml │ │ │ │ ├── fontweight_adjustment.xml │ │ │ │ ├── foobar2000.xml │ │ │ │ ├── food_e.xml │ │ │ │ ├── foodie.xml │ │ │ │ ├── foodpanda.xml │ │ │ │ ├── footpath_route_planner.xml │ │ │ │ ├── fooview.xml │ │ │ │ ├── fora.xml │ │ │ │ ├── forcedoze.xml │ │ │ │ ├── forecastie.xml │ │ │ │ ├── forest.xml │ │ │ │ ├── forest_live_wallpaper.xml │ │ │ │ ├── forkyz.xml │ │ │ │ ├── forms.xml │ │ │ │ ├── formsapp.xml │ │ │ │ ├── formula_e.xml │ │ │ │ ├── formulia.xml │ │ │ │ ├── forpda.xml │ │ │ │ ├── forte_bank.xml │ │ │ │ ├── fortnite.xml │ │ │ │ ├── forzatune_pro.xml │ │ │ │ ├── foss_warn.xml │ │ │ │ ├── fossil.xml │ │ │ │ ├── fotmob.xml │ │ │ │ ├── fotonica.xml │ │ │ │ ├── fotor.xml │ │ │ │ ├── foursquare.xml │ │ │ │ ├── foursquare_swarm.xml │ │ │ │ ├── fox_mmm.xml │ │ │ │ ├── foxit.xml │ │ │ │ ├── foxy_droid.xml │ │ │ │ ├── fr_legends.xml │ │ │ │ ├── fraenk.xml │ │ │ │ ├── france_tv.xml │ │ │ │ ├── franco_agenda.xml │ │ │ │ ├── franco_kernel_manager.xml │ │ │ │ ├── franco_servicely.xml │ │ │ │ ├── fred_meyer.xml │ │ │ │ ├── free.xml │ │ │ │ ├── free_download_manager.xml │ │ │ │ ├── free_fire.xml │ │ │ │ ├── free_fire_max.xml │ │ │ │ ├── freebox_connect.xml │ │ │ │ ├── freecharge.xml │ │ │ │ ├── freecodecamp.xml │ │ │ │ ├── freedcam.xml │ │ │ │ ├── freedictionaryapp.xml │ │ │ │ ├── freelancer.xml │ │ │ │ ├── freelancer_upwork.xml │ │ │ │ ├── freeletics.xml │ │ │ │ ├── freenet.xml │ │ │ │ ├── freenet_funk.xml │ │ │ │ ├── freenet_mobilfunk.xml │ │ │ │ ├── freenow.xml │ │ │ │ ├── freeotp.xml │ │ │ │ ├── freeotp_authenticator.xml │ │ │ │ ├── freepik.xml │ │ │ │ ├── freetrade.xml │ │ │ │ ├── freetube.xml │ │ │ │ ├── frequaw.xml │ │ │ │ ├── frequency_generator.xml │ │ │ │ ├── freshwalls.xml │ │ │ │ ├── fritter.xml │ │ │ │ ├── fritzapp_fon.xml │ │ │ │ ├── fritzapp_smart_home.xml │ │ │ │ ├── fritzapp_tv.xml │ │ │ │ ├── fritzapp_wlan.xml │ │ │ │ ├── frolomuse.xml │ │ │ │ ├── fronius_solar_web.xml │ │ │ │ ├── frost.xml │ │ │ │ ├── frostwire.xml │ │ │ │ ├── frosty.xml │ │ │ │ ├── fruit_ninja.xml │ │ │ │ ├── fruti_icons.xml │ │ │ │ ├── ftx.xml │ │ │ │ ├── fuel_rewards.xml │ │ │ │ ├── fuelio.xml │ │ │ │ ├── fuhrerschein.xml │ │ │ │ ├── fujifilm_xapp.xml │ │ │ │ ├── fulguris.xml │ │ │ │ ├── fun_print.xml │ │ │ │ ├── funimation.xml │ │ │ │ ├── fusewalls.xml │ │ │ │ ├── futo_keyboard.xml │ │ │ │ ├── futo_voice_input.xml │ │ │ │ ├── fv_file_manager.xml │ │ │ │ ├── fwallet.xml │ │ │ │ ├── fx_file_explorer.xml │ │ │ │ ├── fxxxs_given.xml │ │ │ │ ├── g2a.xml │ │ │ │ ├── g_cpu.xml │ │ │ │ ├── gaana.xml │ │ │ │ ├── gadgetbridge.xml │ │ │ │ ├── gaia_gps.xml │ │ │ │ ├── galaxy_enhance_x.xml │ │ │ │ ├── galaxy_store.xml │ │ │ │ ├── galaxy_themes.xml │ │ │ │ ├── gallery.xml │ │ │ │ ├── gallery_go.xml │ │ │ │ ├── game_booster.xml │ │ │ │ ├── game_center.xml │ │ │ │ ├── game_dev_tycoon.xml │ │ │ │ ├── game_informer.xml │ │ │ │ ├── game_jolt.xml │ │ │ │ ├── game_space.xml │ │ │ │ ├── gameboy.xml │ │ │ │ ├── gamepad_tester.xml │ │ │ │ ├── gamescope.xml │ │ │ │ ├── gamestop.xml │ │ │ │ ├── gapo.xml │ │ │ │ ├── gappsmod.xml │ │ │ │ ├── garanti_bbva.xml │ │ │ │ ├── garena_aov.xml │ │ │ │ ├── garmin_connect.xml │ │ │ │ ├── garmin_drive.xml │ │ │ │ ├── garmin_explore.xml │ │ │ │ ├── garmin_messenger.xml │ │ │ │ ├── gartic.xml │ │ │ │ ├── gas_prices.xml │ │ │ │ ├── gasbuddy.xml │ │ │ │ ├── gate_io.xml │ │ │ │ ├── gator.xml │ │ │ │ ├── gauguin.xml │ │ │ │ ├── gauth.xml │ │ │ │ ├── gazprombank.xml │ │ │ │ ├── gba_emulator.xml │ │ │ │ ├── gboard.xml │ │ │ │ ├── gbox.xml │ │ │ │ ├── gcamator.xml │ │ │ │ ├── gcash.xml │ │ │ │ ├── gcmob.xml │ │ │ │ ├── geekbench.xml │ │ │ │ ├── geekbench_ml.xml │ │ │ │ ├── geeksforgeeks.xml │ │ │ │ ├── geizhals.xml │ │ │ │ ├── gemini.xml │ │ │ │ ├── gemini_wallpaper.xml │ │ │ │ ├── geminiman.xml │ │ │ │ ├── generic_bluetooth.xml │ │ │ │ ├── generic_book.xml │ │ │ │ ├── generic_downloader.xml │ │ │ │ ├── generic_earth.xml │ │ │ │ ├── generic_games.xml │ │ │ │ ├── generic_moon.xml │ │ │ │ ├── generic_pi.xml │ │ │ │ ├── generic_player.xml │ │ │ │ ├── generic_silverware.xml │ │ │ │ ├── genius.xml │ │ │ │ ├── genius_scan.xml │ │ │ │ ├── genshin_impact.xml │ │ │ │ ├── genshin_impact_cloud.xml │ │ │ │ ├── genshin_spirit.xml │ │ │ │ ├── gento_s_icons.xml │ │ │ │ ├── geocaching.xml │ │ │ │ ├── geode.xml │ │ │ │ ├── geogebra.xml │ │ │ │ ├── geogebra_3d_calculator.xml │ │ │ │ ├── geogebra_calculator_suite.xml │ │ │ │ ├── geogebra_graphing_calculator.xml │ │ │ │ ├── geoguessr.xml │ │ │ │ ├── geometric_weather.xml │ │ │ │ ├── geometry_dash.xml │ │ │ │ ├── geometry_dash_meltdown.xml │ │ │ │ ├── geometry_dash_subzero.xml │ │ │ │ ├── geometry_dash_world.xml │ │ │ │ ├── geopop.xml │ │ │ │ ├── george.xml │ │ │ │ ├── geph.xml │ │ │ │ ├── gesture_control.xml │ │ │ │ ├── get_current_wallpaper.xml │ │ │ │ ├── get_it_right.xml │ │ │ │ ├── getapps.xml │ │ │ │ ├── getaround.xml │ │ │ │ ├── getcontact.xml │ │ │ │ ├── geteduroam.xml │ │ │ │ ├── getflow.xml │ │ │ │ ├── getir.xml │ │ │ │ ├── gett.xml │ │ │ │ ├── gettr.xml │ │ │ │ ├── getyourguide.xml │ │ │ │ ├── gfx.xml │ │ │ │ ├── ghost_commander.xml │ │ │ │ ├── gif_helper.xml │ │ │ │ ├── gif_maker_editor.xml │ │ │ │ ├── gif_maker_gif_editor.xml │ │ │ │ ├── giffgaff.xml │ │ │ │ ├── gigo.xml │ │ │ │ ├── giphy.xml │ │ │ │ ├── gisetze_io.xml │ │ │ │ ├── github.xml │ │ │ │ ├── gitnex.xml │ │ │ │ ├── gittouch.xml │ │ │ │ ├── giveaway_of_the_day.xml │ │ │ │ ├── giveblood.xml │ │ │ │ ├── gizmo.xml │ │ │ │ ├── gkb_bank.xml │ │ │ │ ├── gkb_twint.xml │ │ │ │ ├── gkd.xml │ │ │ │ ├── glassdoor.xml │ │ │ │ ├── glasswire.xml │ │ │ │ ├── glider.xml │ │ │ │ ├── glidex.xml │ │ │ │ ├── glip_gg.xml │ │ │ │ ├── glitch_lab.xml │ │ │ │ ├── glmark2.xml │ │ │ │ ├── global_player.xml │ │ │ │ ├── global_search.xml │ │ │ │ ├── globe_suite.xml │ │ │ │ ├── globeone.xml │ │ │ │ ├── globoplay.xml │ │ │ │ ├── gloom.xml │ │ │ │ ├── glory_fit.xml │ │ │ │ ├── glovo.xml │ │ │ │ ├── gls_banking.xml │ │ │ │ ├── glyph_composer.xml │ │ │ │ ├── gmail.xml │ │ │ │ ├── gmaps_wv.xml │ │ │ │ ├── gms_flags.xml │ │ │ │ ├── go_bank_islam.xml │ │ │ │ ├── go_classes.xml │ │ │ │ ├── go_keyboard_lite.xml │ │ │ │ ├── go_launcher.xml │ │ │ │ ├── go_taxi.xml │ │ │ │ ├── goart.xml │ │ │ │ ├── gobiz.xml │ │ │ │ ├── goddess_of_victory_nikke.xml │ │ │ │ ├── godot_editor_4.xml │ │ │ │ ├── going_balls.xml │ │ │ │ ├── gojek.xml │ │ │ │ ├── golden_hour.xml │ │ │ │ ├── golden_screen_cinemas.xml │ │ │ │ ├── gomo_ph.xml │ │ │ │ ├── gongkao_leida.xml │ │ │ │ ├── good_pizza_great_pizza.xml │ │ │ │ ├── goodline.xml │ │ │ │ ├── goodmoney.xml │ │ │ │ ├── goodreads.xml │ │ │ │ ├── goodrx.xml │ │ │ │ ├── goodtime.xml │ │ │ │ ├── google.xml │ │ │ │ ├── google_ads.xml │ │ │ │ ├── google_analytics.xml │ │ │ │ ├── google_apps_device_policy.xml │ │ │ │ ├── google_arts_culture.xml │ │ │ │ ├── google_assistant.xml │ │ │ │ ├── google_assistant_go.xml │ │ │ │ ├── google_assistant_interpreter.xml │ │ │ │ ├── google_authenticator.xml │ │ │ │ ├── google_chat.xml │ │ │ │ ├── google_chrome.xml │ │ │ │ ├── google_chrome_beta.xml │ │ │ │ ├── google_chrome_canary.xml │ │ │ │ ├── google_chrome_dev.xml │ │ │ │ ├── google_classroom.xml │ │ │ │ ├── google_cloud.xml │ │ │ │ ├── google_contacts.xml │ │ │ │ ├── google_daydream.xml │ │ │ │ ├── google_docs.xml │ │ │ │ ├── google_drive.xml │ │ │ │ ├── google_earth.xml │ │ │ │ ├── google_family_link.xml │ │ │ │ ├── google_family_link_parental_controls.xml │ │ │ │ ├── google_fi.xml │ │ │ │ ├── google_fit.xml │ │ │ │ ├── google_gemini.xml │ │ │ │ ├── google_health_connect.xml │ │ │ │ ├── google_home.xml │ │ │ │ ├── google_keep.xml │ │ │ │ ├── google_kids_space.xml │ │ │ │ ├── google_lens.xml │ │ │ │ ├── google_meet.xml │ │ │ │ ├── google_messages.xml │ │ │ │ ├── google_news.xml │ │ │ │ ├── google_one.xml │ │ │ │ ├── google_opinion_rewards.xml │ │ │ │ ├── google_pay.xml │ │ │ │ ├── google_pay_for_business.xml │ │ │ │ ├── google_phone.xml │ │ │ │ ├── google_photos.xml │ │ │ │ ├── google_pixel_buds.xml │ │ │ │ ├── google_pixel_studio.xml │ │ │ │ ├── google_pixel_watch.xml │ │ │ │ ├── google_play_books.xml │ │ │ │ ├── google_play_console.xml │ │ │ │ ├── google_play_games.xml │ │ │ │ ├── google_play_store.xml │ │ │ │ ├── google_podcasts.xml │ │ │ │ ├── google_sheets.xml │ │ │ │ ├── google_shortcuts_launcher.xml │ │ │ │ ├── google_slides.xml │ │ │ │ ├── google_street_view.xml │ │ │ │ ├── google_task_mate.xml │ │ │ │ ├── google_tasks.xml │ │ │ │ ├── google_translate.xml │ │ │ │ ├── google_tv.xml │ │ │ │ ├── google_voice.xml │ │ │ │ ├── google_wallet.xml │ │ │ │ ├── gopay.xml │ │ │ │ ├── gopeed.xml │ │ │ │ ├── gopro_quik.xml │ │ │ │ ├── gosharpener.xml │ │ │ │ ├── gospel_library.xml │ │ │ │ ├── gosund.xml │ │ │ │ ├── gosusligi_culture.xml │ │ │ │ ├── gosuslugi.xml │ │ │ │ ├── gosuslugi2.xml │ │ │ │ ├── gosuslugi_auto.xml │ │ │ │ ├── gosuslugi_decide_together.xml │ │ │ │ ├── gotube.xml │ │ │ │ ├── gotyme_bank.xml │ │ │ │ ├── gov_br.xml │ │ │ │ ├── govee_home.xml │ │ │ │ ├── gps_emulator.xml │ │ │ │ ├── gps_fields_area_measure.xml │ │ │ │ ├── gps_logger.xml │ │ │ │ ├── gps_map_camera.xml │ │ │ │ ├── gps_status_and_toolbox.xml │ │ │ │ ├── gps_test.xml │ │ │ │ ├── gpslogger.xml │ │ │ │ ├── gpstest.xml │ │ │ │ ├── gptassist.xml │ │ │ │ ├── gpu_l.xml │ │ │ │ ├── grab.xml │ │ │ │ ├── graby_spin_ui_icons.xml │ │ │ │ ├── graby_ui_icons.xml │ │ │ │ ├── graded.xml │ │ │ │ ├── grammarly.xml │ │ │ │ ├── gramophone.xml │ │ │ │ ├── graph_messenger.xml │ │ │ │ ├── grapheneos_apps.xml │ │ │ │ ├── grapheneos_auditor.xml │ │ │ │ ├── grapheneos_info.xml │ │ │ │ ├── grapheneos_pdf.xml │ │ │ │ ├── graphie.xml │ │ │ │ ├── graphite_icons.xml │ │ │ │ ├── graspop_metal_meeting.xml │ │ │ │ ├── grasshopper.xml │ │ │ │ ├── grayjay.xml │ │ │ │ ├── great_alchemy.xml │ │ │ │ ├── green_bitcoin_wallet.xml │ │ │ │ ├── green_pass.xml │ │ │ │ ├── greenify.xml │ │ │ │ ├── greenlight_kids_and_teen_banking.xml │ │ │ │ ├── greenstash.xml │ │ │ │ ├── greentuber.xml │ │ │ │ ├── greggs.xml │ │ │ │ ├── grill_one.xml │ │ │ │ ├── grindr.xml │ │ │ │ ├── grocy.xml │ │ │ │ ├── groovepad.xml │ │ │ │ ├── groovifi.xml │ │ │ │ ├── ground_news.xml │ │ │ │ ├── group_alarm.xml │ │ │ │ ├── groupe_mutuel.xml │ │ │ │ ├── groupme.xml │ │ │ │ ├── groupon.xml │ │ │ │ ├── groww.xml │ │ │ │ ├── grundgesetz.xml │ │ │ │ ├── gsam_battery_monitor.xml │ │ │ │ ├── gsmarena.xml │ │ │ │ ├── gta_iii.xml │ │ │ │ ├── gta_lcs.xml │ │ │ │ ├── gta_san_andreas.xml │ │ │ │ ├── gta_vice_city.xml │ │ │ │ ├── gtc.xml │ │ │ │ ├── guarda.xml │ │ │ │ ├── guardian_tales.xml │ │ │ │ ├── guardians.xml │ │ │ │ ├── guerrilla_mail.xml │ │ │ │ ├── guessiron.xml │ │ │ │ ├── gugal.xml │ │ │ │ ├── guilded.xml │ │ │ │ ├── guitartuna.xml │ │ │ │ ├── gumslinger.xml │ │ │ │ ├── gumtree.xml │ │ │ │ ├── guotai_junan.xml │ │ │ │ ├── gyawun.xml │ │ │ │ ├── gymkeeper.xml │ │ │ │ ├── gymroutines.xml │ │ │ │ ├── haak.xml │ │ │ │ ├── habit_builder.xml │ │ │ │ ├── habitacao_caixa.xml │ │ │ │ ├── habitica.xml │ │ │ │ ├── habitnow.xml │ │ │ │ ├── habits.xml │ │ │ │ ├── habo.xml │ │ │ │ ├── hackers_keyboard.xml │ │ │ │ ├── hacki.xml │ │ │ │ ├── hago.xml │ │ │ │ ├── hail.xml │ │ │ │ ├── halfbrick_plus.xml │ │ │ │ ├── halifax.xml │ │ │ │ ├── halkbank.xml │ │ │ │ ├── hallow.xml │ │ │ │ ├── halma.xml │ │ │ │ ├── halodoc.xml │ │ │ │ ├── halyk.xml │ │ │ │ ├── hama_smart_home.xml │ │ │ │ ├── hamburger.xml │ │ │ │ ├── handshake.xml │ │ │ │ ├── hankou_bank.xml │ │ │ │ ├── haofenshu.xml │ │ │ │ ├── happn.xml │ │ │ │ ├── happymod.xml │ │ │ │ ├── haraj.xml │ │ │ │ ├── harmonic.xml │ │ │ │ ├── harmonoid.xml │ │ │ │ ├── harmony_music.xml │ │ │ │ ├── hash_checker.xml │ │ │ │ ├── hash_droid.xml │ │ │ │ ├── hatsune_miku_colorful_stage.xml │ │ │ │ ├── hay_day.xml │ │ │ │ ├── haylou_fun.xml │ │ │ │ ├── hbo_max.xml │ │ │ │ ├── hdfc.xml │ │ │ │ ├── hdfc_bank.xml │ │ │ │ ├── hdhomerun.xml │ │ │ │ ├── hdo_box.xml │ │ │ │ ├── headi.xml │ │ │ │ ├── headphone_battery.xml │ │ │ │ ├── headphones.xml │ │ │ │ ├── headspace.xml │ │ │ │ ├── headway.xml │ │ │ │ ├── healow.xml │ │ │ │ ├── health_sync.xml │ │ │ │ ├── healthify.xml │ │ │ │ ├── healthy_battery_charging.xml │ │ │ │ ├── hearo.xml │ │ │ │ ├── heart.xml │ │ │ │ ├── hearthstone.xml │ │ │ │ ├── height_increase_workout.xml │ │ │ │ ├── heliboard.xml │ │ │ │ ├── hello.xml │ │ │ │ ├── helsana_plus.xml │ │ │ │ ├── hepsiburada.xml │ │ │ │ ├── hera_dark_icons.xml │ │ │ │ ├── hera_icons.xml │ │ │ │ ├── here_wego.xml │ │ │ │ ├── here_wego_beta.xml │ │ │ │ ├── hereus.xml │ │ │ │ ├── hermit.xml │ │ │ │ ├── hero_fincorp.xml │ │ │ │ ├── hesab_az.xml │ │ │ │ ├── hevy.xml │ │ │ │ ├── hex_installer.xml │ │ │ │ ├── hey.xml │ │ │ │ ├── heyconad.xml │ │ │ │ ├── heylogin.xml │ │ │ │ ├── heymelody.xml │ │ │ │ ├── heytap_app_market.xml │ │ │ │ ├── heytap_cloud.xml │ │ │ │ ├── heytap_music.xml │ │ │ │ ├── hh.xml │ │ │ │ ├── hi_translate.xml │ │ │ │ ├── hiby_music.xml │ │ │ │ ├── hidden_settings.xml │ │ │ │ ├── hiddify.xml │ │ │ │ ├── hide_my_applist.xml │ │ │ │ ├── hide_navbar.xml │ │ │ │ ├── hidive.xml │ │ │ │ ├── hijri_calendar.xml │ │ │ │ ├── hik_connect.xml │ │ │ │ ├── hike_messenger.xml │ │ │ │ ├── hill_climb_racing.xml │ │ │ │ ├── hill_climb_racing_2.xml │ │ │ │ ├── hilo.xml │ │ │ │ ├── hindu_calendar.xml │ │ │ │ ├── hinge.xml │ │ │ │ ├── hios_launcher.xml │ │ │ │ ├── hiper_calc_pro.xml │ │ │ │ ├── hiper_scientific_calculator.xml │ │ │ │ ├── hishoot2i.xml │ │ │ │ ├── hit.xml │ │ │ │ ├── hive.xml │ │ │ │ ├── hive_social.xml │ │ │ │ ├── hiwatchpro.xml │ │ │ │ ├── hiyacar.xml │ │ │ │ ├── hktweaks.xml │ │ │ │ ├── hm.xml │ │ │ │ ├── hm_manager.xml │ │ │ │ ├── hmcl_pe.xml │ │ │ │ ├── ho.xml │ │ │ │ ├── hocus.xml │ │ │ │ ├── hola_browser.xml │ │ │ │ ├── holedown.xml │ │ │ │ ├── hollow_knight.xml │ │ │ │ ├── holoplus.xml │ │ │ │ ├── home_assistant.xml │ │ │ │ ├── home_centre.xml │ │ │ │ ├── home_connect.xml │ │ │ │ ├── home_credit.xml │ │ │ │ ├── home_with_alice.xml │ │ │ │ ├── home_workout.xml │ │ │ │ ├── homecredit.xml │ │ │ │ ├── homepass.xml │ │ │ │ ├── homework_help.xml │ │ │ │ ├── honey.xml │ │ │ │ ├── honeygain.xml │ │ │ │ ├── honista.xml │ │ │ │ ├── honkai_impact_3.xml │ │ │ │ ├── honkai_star_rail.xml │ │ │ │ ├── honkai_star_rail_cloud.xml │ │ │ │ ├── honor_ai_space.xml │ │ │ │ ├── honor_email.xml │ │ │ │ ├── honor_health.xml │ │ │ │ ├── honor_music_player.xml │ │ │ │ ├── honor_of_kings.xml │ │ │ │ ├── honor_ride_mode.xml │ │ │ │ ├── hop_fastpass.xml │ │ │ │ ├── hopi.xml │ │ │ │ ├── hostelworld.xml │ │ │ │ ├── hot_lap_league_racing_mania.xml │ │ │ │ ├── hotels_com.xml │ │ │ │ ├── hoteltonight.xml │ │ │ │ ├── hotlink.xml │ │ │ │ ├── hotspot_shield.xml │ │ │ │ ├── hotstar.xml │ │ │ │ ├── house.xml │ │ │ │ ├── housesigma.xml │ │ │ │ ├── howl.xml │ │ │ │ ├── hoyolab.xml │ │ │ │ ├── hp_print_service.xml │ │ │ │ ├── hsbc.xml │ │ │ │ ├── htc_boost_plus.xml │ │ │ │ ├── http_custom.xml │ │ │ │ ├── http_injector.xml │ │ │ │ ├── huawei_ai_life.xml │ │ │ │ ├── huawei_ai_voice.xml │ │ │ │ ├── huawei_appassistant.xml │ │ │ │ ├── huawei_appgallery.xml │ │ │ │ ├── huawei_books.xml │ │ │ │ ├── huawei_browser.xml │ │ │ │ ├── huawei_files.xml │ │ │ │ ├── huawei_fm_radio.xml │ │ │ │ ├── huawei_gamecenter.xml │ │ │ │ ├── huawei_health.xml │ │ │ │ ├── huawei_hilink.xml │ │ │ │ ├── huawei_meetime.xml │ │ │ │ ├── huawei_member_center.xml │ │ │ │ ├── huawei_mirror.xml │ │ │ │ ├── huawei_music.xml │ │ │ │ ├── huawei_notepad.xml │ │ │ │ ├── huawei_optimizer.xml │ │ │ │ ├── huawei_party_mode.xml │ │ │ │ ├── huawei_petal_search.xml │ │ │ │ ├── huawei_petal_speed.xml │ │ │ │ ├── huawei_software_update.xml │ │ │ │ ├── huawei_themes.xml │ │ │ │ ├── huawei_tips.xml │ │ │ │ ├── huawei_video.xml │ │ │ │ ├── huawei_wallet.xml │ │ │ │ ├── huawei_weather.xml │ │ │ │ ├── huazhuhui.xml │ │ │ │ ├── huda.xml │ │ │ │ ├── hue_essentials.xml │ │ │ │ ├── huebsch.xml │ │ │ │ ├── huji_cam.xml │ │ │ │ ├── hulu.xml │ │ │ │ ├── hungerbox_cafe.xml │ │ │ │ ├── hungerstation.xml │ │ │ │ ├── hurry_day.xml │ │ │ │ ├── hushed.xml │ │ │ │ ├── husky.xml │ │ │ │ ├── huxone_dark_icons.xml │ │ │ │ ├── hvv.xml │ │ │ │ ├── hydroqubec.xml │ │ │ │ ├── hypatia.xml │ │ │ │ ├── hype.xml │ │ │ │ ├── hypehype.xml │ │ │ │ ├── hyperion.xml │ │ │ │ ├── hyperos_calculator_go.xml │ │ │ │ ├── hyperos_downloader.xml │ │ │ │ ├── hyperos_feedback.xml │ │ │ │ ├── hypic.xml │ │ │ │ ├── hypocam.xml │ │ │ │ ├── hyundai_care.xml │ │ │ │ ├── i2p.xml │ │ │ │ ├── i2pd.xml │ │ │ │ ├── i_am_sober.xml │ │ │ │ ├── i_love_hue.xml │ │ │ │ ├── i_love_hue_too.xml │ │ │ │ ├── iaca_laboratorios.xml │ │ │ │ ├── iakaun.xml │ │ │ │ ├── ibetter.xml │ │ │ │ ├── ibis_paint.xml │ │ │ │ ├── ibkr.xml │ │ │ │ ├── ica.xml │ │ │ │ ├── icaller.xml │ │ │ │ ├── icbc.xml │ │ │ │ ├── ice_box.xml │ │ │ │ ├── icedrive.xml │ │ │ │ ├── iceraven.xml │ │ │ │ ├── ichan.xml │ │ │ │ ├── icoca.xml │ │ │ │ ├── icon_pack_creator.xml │ │ │ │ ├── icon_pack_studio.xml │ │ │ │ ├── icon_pusher.xml │ │ │ │ ├── icon_request.xml │ │ │ │ ├── iconeration.xml │ │ │ │ ├── iconify.xml │ │ │ │ ├── icsee.xml │ │ │ │ ├── icsx5.xml │ │ │ │ ├── id_gov_pt.xml │ │ │ │ ├── id_la_poste.xml │ │ │ │ ├── idagio.xml │ │ │ │ ├── idealo.xml │ │ │ │ ├── idfc.xml │ │ │ │ ├── idle_fish.xml │ │ │ │ ├── idle_miner_tycoon_gold_and_cash.xml │ │ │ │ ├── idle_power.xml │ │ │ │ ├── ifood.xml │ │ │ │ ├── ifttt.xml │ │ │ │ ├── iheart.xml │ │ │ │ ├── iherb.xml │ │ │ │ ├── iitc.xml │ │ │ │ ├── ikea.xml │ │ │ │ ├── ikea_home_smart.xml │ │ │ │ ├── ikk_classic.xml │ │ │ │ ├── iko.xml │ │ │ │ ├── iliad_visual_voicemail.xml │ │ │ │ ├── ilink.xml │ │ │ │ ├── ilovepdf.xml │ │ │ │ ├── image_compressor_resize_image.xml │ │ │ │ ├── image_toolbox.xml │ │ │ │ ├── imagepipe.xml │ │ │ │ ├── imagesearchman.xml │ │ │ │ ├── imagin.xml │ │ │ │ ├── imaging_edge_mobile.xml │ │ │ │ ├── imanager.xml │ │ │ │ ├── imdb.xml │ │ │ │ ├── ime.xml │ │ │ │ ├── imgur.xml │ │ │ │ ├── imgurviewer.xml │ │ │ │ ├── immich.xml │ │ │ │ ├── imms.xml │ │ │ │ ├── imo.xml │ │ │ │ ├── imo_lite.xml │ │ │ │ ├── imobile.xml │ │ │ │ ├── imobile_pay.xml │ │ │ │ ├── imod_pro.xml │ │ │ │ ├── imou_life.xml │ │ │ │ ├── impact.xml │ │ │ │ ├── imprint.xml │ │ │ │ ├── inaturalist.xml │ │ │ │ ├── incognito_browser.xml │ │ │ │ ├── incollage.xml │ │ │ │ ├── income_tax.xml │ │ │ │ ├── incredible_india.xml │ │ │ │ ├── indah_water.xml │ │ │ │ ├── indeed.xml │ │ │ │ ├── indianoil_one.xml │ │ │ │ ├── indmoney.xml │ │ │ │ ├── indoasis.xml │ │ │ │ ├── indodana.xml │ │ │ │ ├── indrive.xml │ │ │ │ ├── infinite_craft.xml │ │ │ │ ├── infinite_design.xml │ │ │ │ ├── infinite_japanese.xml │ │ │ │ ├── infinite_painter.xml │ │ │ │ ├── infinitode_2.xml │ │ │ │ ├── infinity_for_reddit.xml │ │ │ │ ├── infinity_loop.xml │ │ │ │ ├── inflection_pi.xml │ │ │ │ ├── info_transport_bucuresti.xml │ │ │ │ ├── infomaniak_kdrive.xml │ │ │ │ ├── infomaniak_ksync.xml │ │ │ │ ├── infomaniak_mail.xml │ │ │ │ ├── ing.xml │ │ │ │ ├── ingress_prime.xml │ │ │ │ ├── ininal.xml │ │ │ │ ├── innertune.xml │ │ │ │ ├── innertune_fork.xml │ │ │ │ ├── inoreader.xml │ │ │ │ ├── inpost.xml │ │ │ │ ├── insa_d_ticket.xml │ │ │ │ ├── insget.xml │ │ │ │ ├── inshare.xml │ │ │ │ ├── inshorts.xml │ │ │ │ ├── inshot.xml │ │ │ │ ├── insight_timer.xml │ │ │ │ ├── insquare.xml │ │ │ │ ├── instabox.xml │ │ │ │ ├── instabridge.xml │ │ │ │ ├── instacart.xml │ │ │ │ ├── instaddr.xml │ │ │ │ ├── instagram.xml │ │ │ │ ├── install_with_options.xml │ │ │ │ ├── installerx.xml │ │ │ │ ├── instander.xml │ │ │ │ ├── instant_gaming.xml │ │ │ │ ├── instapaper.xml │ │ │ │ ├── insular.xml │ │ │ │ ├── insync.xml │ │ │ │ ├── intel_unison.xml │ │ │ │ ├── inter.xml │ │ │ │ ├── interbank.xml │ │ │ │ ├── internet_browser.xml │ │ │ │ ├── internet_speed_meter.xml │ │ │ │ ├── interstellar.xml │ │ │ │ ├── intersvyaz.xml │ │ │ │ ├── interval_timer.xml │ │ │ │ ├── intesa_sanpaolo.xml │ │ │ │ ├── intra.xml │ │ │ │ ├── intuit_credit_karma.xml │ │ │ │ ├── intune_company_portal.xml │ │ │ │ ├── inure.xml │ │ │ │ ├── investing.xml │ │ │ │ ├── invizible_pro.xml │ │ │ │ ├── invoice_maker_and_estimate.xml │ │ │ │ ├── inware.xml │ │ │ │ ├── io.xml │ │ │ │ ├── ioma.xml │ │ │ │ ├── iosxpc_wallpapers.xml │ │ │ │ ├── ip_tools.xml │ │ │ │ ├── ip_webcam.xml │ │ │ │ ├── iplus.xml │ │ │ │ ├── ips_exporter.xml │ │ │ │ ├── iptv_extreme_pro.xml │ │ │ │ ├── iptv_stalker_player.xml │ │ │ │ ├── iqiyi.xml │ │ │ │ ├── ir_remote.xml │ │ │ │ ├── ir_remote_oneplus.xml │ │ │ │ ├── irctc.xml │ │ │ │ ├── ireal_pro.xml │ │ │ │ ├── iriun_webcam.xml │ │ │ │ ├── irobot.xml │ │ │ │ ├── ironfox.xml │ │ │ │ ├── iscep.xml │ │ │ │ ├── iscreen.xml │ │ │ │ ├── iserv.xml │ │ │ │ ├── ishredder.xml │ │ │ │ ├── islamqa.xml │ │ │ │ ├── island.xml │ │ │ │ ├── ismartviewpro.xml │ │ │ │ ├── istanbulkart.xml │ │ │ │ ├── isybank.xml │ │ │ │ ├── it2p.xml │ │ │ │ ├── itao_cartoes.xml │ │ │ │ ├── itau.xml │ │ │ │ ├── itax.xml │ │ │ │ ├── ithome.xml │ │ │ │ ├── iti.xml │ │ │ │ ├── itsme.xml │ │ │ │ ├── itutor.xml │ │ │ │ ├── ivcam.xml │ │ │ │ ├── ivi.xml │ │ │ │ ├── ivpn.xml │ │ │ │ ├── ivy_wallet.xml │ │ │ │ ├── iwall.xml │ │ │ │ ├── ixigo.xml │ │ │ │ ├── ixigo_trains.xml │ │ │ │ ├── iyox_wormhole.xml │ │ │ │ ├── iyps.xml │ │ │ │ ├── izly.xml │ │ │ │ ├── j2me_loader.xml │ │ │ │ ├── jabra_sound_plus.xml │ │ │ │ ├── jakdojade.xml │ │ │ │ ├── jaki.xml │ │ │ │ ├── jamboard.xml │ │ │ │ ├── jami.xml │ │ │ │ ├── japan_train_card_balance_check.xml │ │ │ │ ├── japan_vpn.xml │ │ │ │ ├── japanese_dictionary_takoboto.xml │ │ │ │ ├── japanese_kanji_study.xml │ │ │ │ ├── jarir.xml │ │ │ │ ├── jaybird.xml │ │ │ │ ├── jazzcash.xml │ │ │ │ ├── jbl_headphones.xml │ │ │ │ ├── jbl_partybox.xml │ │ │ │ ├── jbl_portable.xml │ │ │ │ ├── jbusdriver.xml │ │ │ │ ├── jd.xml │ │ │ │ ├── je_bois_local.xml │ │ │ │ ├── jellyfin.xml │ │ │ │ ├── jenius.xml │ │ │ │ ├── jerboa_for_lemmy.xml │ │ │ │ ├── jetpack.xml │ │ │ │ ├── jetpack_joyride.xml │ │ │ │ ├── jetstar.xml │ │ │ │ ├── jiji.xml │ │ │ │ ├── jins.xml │ │ │ │ ├── jiocall.xml │ │ │ │ ├── jiocinema.xml │ │ │ │ ├── jiocloud.xml │ │ │ │ ├── jiofinance.xml │ │ │ │ ├── jiogames.xml │ │ │ │ ├── jiohome.xml │ │ │ │ ├── jiomart.xml │ │ │ │ ├── jionews.xml │ │ │ │ ├── jiosaavn.xml │ │ │ │ ├── jiotv.xml │ │ │ │ ├── jira_cloud_by_altassian.xml │ │ │ │ ├── jitsi.xml │ │ │ │ ├── jmcomic2.xml │ │ │ │ ├── jmo.xml │ │ │ │ ├── joann.xml │ │ │ │ ├── jobstreet.xml │ │ │ │ ├── joey_reddit.xml │ │ │ │ ├── john_gbac.xml │ │ │ │ ├── join.xml │ │ │ │ ├── joom.xml │ │ │ │ ├── joox.xml │ │ │ │ ├── joplin.xml │ │ │ │ ├── journey.xml │ │ │ │ ├── journie_rewards.xml │ │ │ │ ├── jow.xml │ │ │ │ ├── joyfit.xml │ │ │ │ ├── joyn.xml │ │ │ │ ├── jr.xml │ │ │ │ ├── json_genie.xml │ │ │ │ ├── jtx_board.xml │ │ │ │ ├── juicessh.xml │ │ │ │ ├── jumia.xml │ │ │ │ ├── jump_rope_training.xml │ │ │ │ ├── jumptask.xml │ │ │ │ ├── junes_journey.xml │ │ │ │ ├── juno_icons.xml │ │ │ │ ├── jupiter.xml │ │ │ │ ├── jusan.xml │ │ │ │ ├── just_a_line.xml │ │ │ │ ├── just_another_workout_timer.xml │ │ │ │ ├── just_eat.xml │ │ │ │ ├── just_player.xml │ │ │ │ ├── just_the_recipe.xml │ │ │ │ ├── justalk.xml │ │ │ │ ├── justauthme.xml │ │ │ │ ├── justwatch.xml │ │ │ │ ├── justweather.xml │ │ │ │ ├── juventus.xml │ │ │ │ ├── jw_library.xml │ │ │ │ ├── k9_mail.xml │ │ │ │ ├── k_plus.xml │ │ │ │ ├── kaadas.xml │ │ │ │ ├── kafka.xml │ │ │ │ ├── kage.xml │ │ │ │ ├── kahoot.xml │ │ │ │ ├── kai_access.xml │ │ │ │ ├── kaidee.xml │ │ │ │ ├── kaiteki.xml │ │ │ │ ├── kakao_t.xml │ │ │ │ ├── kakaomap.xml │ │ │ │ ├── kakaotalk.xml │ │ │ │ ├── kalium.xml │ │ │ │ ├── kamus_besar_bahasa_indonesia.xml │ │ │ │ ├── kanade.xml │ │ │ │ ├── kanji_dojo.xml │ │ │ │ ├── kanopy.xml │ │ │ │ ├── kanton_internet.xml │ │ │ │ ├── kaorin_icons.xml │ │ │ │ ├── kapitalbank.xml │ │ │ │ ├── kapk.xml │ │ │ │ ├── kardiachain_wallet.xml │ │ │ │ ├── kartaview.xml │ │ │ │ ├── karwei.xml │ │ │ │ ├── karyakarsa.xml │ │ │ │ ├── kasa.xml │ │ │ │ ├── kaskus.xml │ │ │ │ ├── kaspersky.xml │ │ │ │ ├── kaspi_kz.xml │ │ │ │ ├── kate.xml │ │ │ │ ├── kate_mobile.xml │ │ │ │ ├── katwarn.xml │ │ │ │ ├── kaufland.xml │ │ │ │ ├── kayak.xml │ │ │ │ ├── kbc_mobile.xml │ │ │ │ ├── kde_connect.xml │ │ │ │ ├── kde_weather.xml │ │ │ │ ├── keenetic.xml │ │ │ │ ├── keep_me_out.xml │ │ │ │ ├── keep_screen_on.xml │ │ │ │ ├── keepa.xml │ │ │ │ ├── keepass2android.xml │ │ │ │ ├── keepassdx.xml │ │ │ │ ├── keepsafe.xml │ │ │ │ ├── keiromaker.xml │ │ │ │ ├── kentkart.xml │ │ │ │ ├── kernel_flasher.xml │ │ │ │ ├── kernel_su.xml │ │ │ │ ├── key_attestation.xml │ │ │ │ ├── key_driver.xml │ │ │ │ ├── key_mapper.xml │ │ │ │ ├── keyboard.xml │ │ │ │ ├── keyguard_for_bitwarden.xml │ │ │ │ ├── keylimba.xml │ │ │ │ ├── keyman.xml │ │ │ │ ├── keypass.xml │ │ │ │ ├── keys_to_success.xml │ │ │ │ ├── kfc.xml │ │ │ │ ├── kfz_kennzeichen.xml │ │ │ │ ├── khalti_digital_wallet.xml │ │ │ │ ├── khan_academy.xml │ │ │ │ ├── khatabook.xml │ │ │ │ ├── kia_connect.xml │ │ │ │ ├── kick.xml │ │ │ │ ├── kicker.xml │ │ │ │ ├── kickstarter.xml │ │ │ │ ├── kid3.xml │ │ │ │ ├── kijiji.xml │ │ │ │ ├── kik.xml │ │ │ │ ├── killapps.xml │ │ │ │ ├── kimcy_screen_recorder.xml │ │ │ │ ├── kimi.xml │ │ │ │ ├── kimovil.xml │ │ │ │ ├── kinemaster.xml │ │ │ │ ├── kinestop.xml │ │ │ │ ├── kingdraw.xml │ │ │ │ ├── kinnu.xml │ │ │ │ ├── kino_hd.xml │ │ │ │ ├── kinopoisk.xml │ │ │ │ ├── kiri_engine.xml │ │ │ │ ├── kiss_launcher.xml │ │ │ │ ├── kito.xml │ │ │ │ ├── kivra.xml │ │ │ │ ├── kiwi_browser.xml │ │ │ │ ├── kiwi_com.xml │ │ │ │ ├── kiwi_vpn.xml │ │ │ │ ├── kiwibank.xml │ │ │ │ ├── kizzy.xml │ │ │ │ ├── kkp.xml │ │ │ │ ├── klara_weather.xml │ │ │ │ ├── klarmobilde.xml │ │ │ │ ├── klarna.xml │ │ │ │ ├── klck.xml │ │ │ │ ├── kleinanzeigen.xml │ │ │ │ ├── klook.xml │ │ │ │ ├── klwp.xml │ │ │ │ ├── kmi_irm_weather.xml │ │ │ │ ├── kmplayer.xml │ │ │ │ ├── knife_hit.xml │ │ │ │ ├── knigi.xml │ │ │ │ ├── knip.xml │ │ │ │ ├── knowunity.xml │ │ │ │ ├── kobo_books.xml │ │ │ │ ├── koda_for_kustom.xml │ │ │ │ ├── kodi.xml │ │ │ │ ├── koho.xml │ │ │ │ ├── koki.xml │ │ │ │ ├── koleo.xml │ │ │ │ ├── kolesa.xml │ │ │ │ ├── koloro.xml │ │ │ │ ├── komiku.xml │ │ │ │ ├── komoot.xml │ │ │ │ ├── konele.xml │ │ │ │ ├── kook.xml │ │ │ │ ├── kookong_smart_remote_control.xml │ │ │ │ ├── kore.xml │ │ │ │ ├── koreader.xml │ │ │ │ ├── koronapay.xml │ │ │ │ ├── koshelek.xml │ │ │ │ ├── kotak811.xml │ │ │ │ ├── kotak_bank.xml │ │ │ │ ├── kotatsu.xml │ │ │ │ ├── kotobank.xml │ │ │ │ ├── koton.xml │ │ │ │ ├── kraken.xml │ │ │ │ ├── kraken_pro.xml │ │ │ │ ├── kredivo.xml │ │ │ │ ├── krisha.xml │ │ │ │ ├── krita.xml │ │ │ │ ├── krix_icons.xml │ │ │ │ ├── kroger.xml │ │ │ │ ├── kucoin.xml │ │ │ │ ├── kufar.xml │ │ │ │ ├── kuku_fm.xml │ │ │ │ ├── kumo_cloud.xml │ │ │ │ ├── kuper.xml │ │ │ │ ├── kupibilet.xml │ │ │ │ ├── kurasushi.xml │ │ │ │ ├── kuro_reader.xml │ │ │ │ ├── kuro_reader_pro.xml │ │ │ │ ├── kuroba_ex.xml │ │ │ │ ├── kustom_weather_plugin.xml │ │ │ │ ├── kuukiyomi.xml │ │ │ │ ├── kvaesitso.xml │ │ │ │ ├── kvaesitso_icons.xml │ │ │ │ ├── kvb.xml │ │ │ │ ├── kwai.xml │ │ │ │ ├── kwgt.xml │ │ │ │ ├── kwgt_pro.xml │ │ │ │ ├── kwork.xml │ │ │ │ ├── kyash.xml │ │ │ │ ├── kyiv_digital.xml │ │ │ │ ├── la_boutique_officielle.xml │ │ │ │ ├── la_metropole.xml │ │ │ │ ├── la_presse.xml │ │ │ │ ├── la_wallet.xml │ │ │ │ ├── laban_key.xml │ │ │ │ ├── labbit.xml │ │ │ │ ├── labcoat.xml │ │ │ │ ├── ladb.xml │ │ │ │ ├── lagrange.xml │ │ │ │ ├── lalafo.xml │ │ │ │ ├── lamoda.xml │ │ │ │ ├── landbank.xml │ │ │ │ ├── landrop.xml │ │ │ │ ├── langeasy.xml │ │ │ │ ├── lansforsakringar.xml │ │ │ │ ├── laposte_net_mail.xml │ │ │ │ ├── lapse_2_before_zero.xml │ │ │ │ ├── laptop_tycoon.xml │ │ │ │ ├── lark.xml │ │ │ │ ├── lark_player.xml │ │ │ │ ├── laser_logic_game.xml │ │ │ │ ├── last_fm.xml │ │ │ │ ├── lastpass.xml │ │ │ │ ├── launcher_ops.xml │ │ │ │ ├── launcher_os.xml │ │ │ │ ├── lavseeker.xml │ │ │ │ ├── lawnchair.xml │ │ │ │ ├── lawnicons.xml │ │ │ │ ├── layout_from_instagram.xml │ │ │ │ ├── lazada.xml │ │ │ │ ├── lazada_seller_center.xml │ │ │ │ ├── lazits.xml │ │ │ │ ├── lazypay.xml │ │ │ │ ├── lbalance.xml │ │ │ │ ├── lbry.xml │ │ │ │ ├── lc_waikiki.xml │ │ │ │ ├── ldcloud.xml │ │ │ │ ├── league.xml │ │ │ │ ├── league_of_comic_geeks.xml │ │ │ │ ├── league_of_legends_wild_rift.xml │ │ │ │ ├── leber.xml │ │ │ │ ├── leboncoin.xml │ │ │ │ ├── ledger_live.xml │ │ │ │ ├── legado.xml │ │ │ │ ├── legends_of_runeterra.xml │ │ │ │ ├── lego_builder.xml │ │ │ │ ├── lemmy_redirect.xml │ │ │ │ ├── lemon_cash.xml │ │ │ │ ├── lemuroid.xml │ │ │ │ ├── lena_adaptive_icons.xml │ │ │ │ ├── lena_dark_icons.xml │ │ │ │ ├── lenovo.xml │ │ │ │ ├── lenovo_freestyle.xml │ │ │ │ ├── lens_distortions.xml │ │ │ │ ├── lensa.xml │ │ │ │ ├── lenskart.xml │ │ │ │ ├── lenta.xml │ │ │ │ ├── leo.xml │ │ │ │ ├── leo_bank.xml │ │ │ │ ├── lequipe.xml │ │ │ │ ├── leroy_merlin.xml │ │ │ │ ├── lesspass.xml │ │ │ │ ├── letgo.xml │ │ │ │ ├── letterboxd.xml │ │ │ │ ├── letyshops.xml │ │ │ │ ├── lewdfi.xml │ │ │ │ ├── lex.xml │ │ │ │ ├── lexica.xml │ │ │ │ ├── lexis_audio_editor.xml │ │ │ │ ├── lexus.xml │ │ │ │ ├── lg_fm_radio.xml │ │ │ │ ├── lg_game_launcher.xml │ │ │ │ ├── lg_smartworld.xml │ │ │ │ ├── lg_thinq.xml │ │ │ │ ├── lg_tv_plus.xml │ │ │ │ ├── lhv.xml │ │ │ │ ├── li_tiaotiao.xml │ │ │ │ ├── libby.xml │ │ │ │ ├── libchecker.xml │ │ │ │ ├── libre_camera.xml │ │ │ │ ├── libreoffice_viewer.xml │ │ │ │ ├── librepass.xml │ │ │ │ ├── librera.xml │ │ │ │ ├── librespeed.xml │ │ │ │ ├── libresudoku.xml │ │ │ │ ├── libretorrent.xml │ │ │ │ ├── libretrack.xml │ │ │ │ ├── libretube.xml │ │ │ │ ├── librus.xml │ │ │ │ ├── lichess.xml │ │ │ │ ├── lidl_plus.xml │ │ │ │ ├── life360.xml │ │ │ │ ├── life_is_strange.xml │ │ │ │ ├── life_time.xml │ │ │ │ ├── lifepoints.xml │ │ │ │ ├── lifesum.xml │ │ │ │ ├── liftoff.xml │ │ │ │ ├── light_start.xml │ │ │ │ ├── lighthouse_power_management.xml │ │ │ │ ├── lightleap.xml │ │ │ │ ├── lightning.xml │ │ │ │ ├── lightroom.xml │ │ │ │ ├── lighttube.xml │ │ │ │ ├── lihkg.xml │ │ │ │ ├── likee.xml │ │ │ │ ├── liker_land.xml │ │ │ │ ├── likewise.xml │ │ │ │ ├── limbo.xml │ │ │ │ ├── lime.xml │ │ │ │ ├── line.xml │ │ │ │ ├── line_man.xml │ │ │ │ ├── line_music.xml │ │ │ │ ├── line_official_account.xml │ │ │ │ ├── lineageos_jelly_browser.xml │ │ │ │ ├── lineageos_music_11.xml │ │ │ │ ├── lineageos_music_12.xml │ │ │ │ ├── linebit_icons.xml │ │ │ │ ├── liner.xml │ │ │ │ ├── linex_black_icons.xml │ │ │ │ ├── linex_icons.xml │ │ │ │ ├── linex_white_icons.xml │ │ │ │ ├── lingnan_pass.xml │ │ │ │ ├── lingodeer.xml │ │ │ │ ├── lingotube.xml │ │ │ │ ├── lingvist.xml │ │ │ │ ├── link2sd.xml │ │ │ │ ├── link_to_myasus.xml │ │ │ │ ├── linkaja.xml │ │ │ │ ├── linkbox.xml │ │ │ │ ├── linkedin.xml │ │ │ │ ├── linkedin_learning.xml │ │ │ │ ├── linksheet.xml │ │ │ │ ├── linksys.xml │ │ │ │ ├── linktree.xml │ │ │ │ ├── linphone.xml │ │ │ │ ├── linux_command_library.xml │ │ │ │ ├── linwood_butterfly.xml │ │ │ │ ├── liputan6.xml │ │ │ │ ├── liquipedia.xml │ │ │ │ ├── listenmoe.xml │ │ │ │ ├── listonic.xml │ │ │ │ ├── listy.xml │ │ │ │ ├── liteapks.xml │ │ │ │ ├── literal_club.xml │ │ │ │ ├── literaly.xml │ │ │ │ ├── lithium.xml │ │ │ │ ├── lithium_pro.xml │ │ │ │ ├── litmatch.xml │ │ │ │ ├── litres_audio.xml │ │ │ │ ├── little_alchemy.xml │ │ │ │ ├── little_light_for_destiny.xml │ │ │ │ ├── little_nightmares.xml │ │ │ │ ├── live2dviewerex.xml │ │ │ │ ├── live2dviewerex_face_tracker.xml │ │ │ │ ├── live2dviewerex_floating_viewer.xml │ │ │ │ ├── live_mcq.xml │ │ │ │ ├── live_transcribe.xml │ │ │ │ ├── liveatc.xml │ │ │ │ ├── liveboot.xml │ │ │ │ ├── livechartme.xml │ │ │ │ ├── liveloop.xml │ │ │ │ ├── livescore.xml │ │ │ │ ├── liveuamap.xml │ │ │ │ ├── livin.xml │ │ │ │ ├── lixian_xunlei.xml │ │ │ │ ├── lizzie.xml │ │ │ │ ├── lloyds_bank.xml │ │ │ │ ├── lm_deluxe.xml │ │ │ │ ├── lmc_84.xml │ │ │ │ ├── lnreader.xml │ │ │ │ ├── localmonero.xml │ │ │ │ ├── localsend.xml │ │ │ │ ├── location_changer.xml │ │ │ │ ├── locket_widget.xml │ │ │ │ ├── lockmypix.xml │ │ │ │ ├── lockscreen_widgets.xml │ │ │ │ ├── locus.xml │ │ │ │ ├── lofter.xml │ │ │ │ ├── logcat_reader.xml │ │ │ │ ├── logcatextreme.xml │ │ │ │ ├── logfox.xml │ │ │ │ ├── logic_circuit_simulator_pro.xml │ │ │ │ ├── logos_bible_study.xml │ │ │ │ ├── logra.xml │ │ │ │ ├── logseq.xml │ │ │ │ ├── loli_snatcher.xml │ │ │ │ ├── look4sat.xml │ │ │ │ ├── lookout.xml │ │ │ │ ├── loop.xml │ │ │ │ ├── loopring_wallet.xml │ │ │ │ ├── lose_it.xml │ │ │ │ ├── lose_weight_app_for_men.xml │ │ │ │ ├── lotus_lantern.xml │ │ │ │ ├── loud_horns_and_sirens.xml │ │ │ │ ├── lounge_by_zalando.xml │ │ │ │ ├── lovebox.xml │ │ │ │ ├── lovense_remote.xml │ │ │ │ ├── lowes.xml │ │ │ │ ├── lpu_touch.xml │ │ │ │ ├── lrc_editor.xml │ │ │ │ ├── lspatch_lsposed.xml │ │ │ │ ├── lte_cleaner.xml │ │ │ │ ├── lucidchart.xml │ │ │ │ ├── luckin_coffe.xml │ │ │ │ ├── lucky_bill.xml │ │ │ │ ├── lucky_financial.xml │ │ │ │ ├── lucky_patcher.xml │ │ │ │ ├── luckypatcher.xml │ │ │ │ ├── ludo_king.xml │ │ │ │ ├── lukoil.xml │ │ │ │ ├── lulo.xml │ │ │ │ ├── luma_ai.xml │ │ │ │ ├── lumi_ai.xml │ │ │ │ ├── lumina_walls.xml │ │ │ │ ├── lumos_icons.xml │ │ │ │ ├── lunar_launcher.xml │ │ │ │ ├── lunasea.xml │ │ │ │ ├── luup.xml │ │ │ │ ├── lux_icons.xml │ │ │ │ ├── lwp_plus.xml │ │ │ │ ├── lyb_kernel_manager.xml │ │ │ │ ├── lyft.xml │ │ │ │ ├── m10.xml │ │ │ │ ├── m2.xml │ │ │ │ ├── m365_tools.xml │ │ │ │ ├── m3u.xml │ │ │ │ ├── m64plus_fz.xml │ │ │ │ ├── m_indicator.xml │ │ │ │ ├── m_pesa.xml │ │ │ │ ├── ma7fazty.xml │ │ │ │ ├── maadhaar.xml │ │ │ │ ├── mach.xml │ │ │ │ ├── mackolik.xml │ │ │ │ ├── macro_deck.xml │ │ │ │ ├── macrodroid.xml │ │ │ │ ├── macrodroid_helper.xml │ │ │ │ ├── macrofactor.xml │ │ │ │ ├── macsposed.xml │ │ │ │ ├── mada_pay.xml │ │ │ │ ├── mae.xml │ │ │ │ ├── maf_carrefour.xml │ │ │ │ ├── mafa.xml │ │ │ │ ├── magic_earth.xml │ │ │ │ ├── magic_iperf.xml │ │ │ │ ├── magic_magnet.xml │ │ │ │ ├── magic_poser.xml │ │ │ │ ├── magic_the_gathering_arena.xml │ │ │ │ ├── magic_the_gathering_companion.xml │ │ │ │ ├── magical_search.xml │ │ │ │ ├── magiconnect.xml │ │ │ │ ├── magicpin.xml │ │ │ │ ├── magicplan.xml │ │ │ │ ├── maginon_ipc_viewer.xml │ │ │ │ ├── magisk.xml │ │ │ │ ├── magisk_module_repo_loader.xml │ │ │ │ ├── magnifier.xml │ │ │ │ ├── magnit.xml │ │ │ │ ├── magroove.xml │ │ │ │ ├── mahavitaran.xml │ │ │ │ ├── mail_com.xml │ │ │ │ ├── mail_de.xml │ │ │ │ ├── mail_orange.xml │ │ │ │ ├── mail_ru.xml │ │ │ │ ├── mailim.xml │ │ │ │ ├── maimai_data.xml │ │ │ │ ├── makemytrip.xml │ │ │ │ ├── malaa.xml │ │ │ │ ├── malayalam_keyboard.xml │ │ │ │ ├── maldives.xml │ │ │ │ ├── malody.xml │ │ │ │ ├── malodyv.xml │ │ │ │ ├── malwarebytes.xml │ │ │ │ ├── manage_apps_shortcut.xml │ │ │ │ ├── managebac.xml │ │ │ │ ├── mandao.xml │ │ │ │ ├── manga_dogs.xml │ │ │ │ ├── manga_plus.xml │ │ │ │ ├── manga_slayer.xml │ │ │ │ ├── manipal_hospitals.xml │ │ │ │ ├── manual_camera.xml │ │ │ │ ├── manual_camera_compatibility.xml │ │ │ │ ├── mapgenie_elden_ring.xml │ │ │ │ ├── mapillary.xml │ │ │ │ ├── mappls.xml │ │ │ │ ├── maps.xml │ │ │ │ ├── maps_me.xml │ │ │ │ ├── mapswipe.xml │ │ │ │ ├── mapy.xml │ │ │ │ ├── marcus.xml │ │ │ │ ├── marindeck.xml │ │ │ │ ├── marinetraffic.xml │ │ │ │ ├── mario_kart_tour.xml │ │ │ │ ├── markdown_mathjax.xml │ │ │ │ ├── markor.xml │ │ │ │ ├── marks.xml │ │ │ │ ├── marktplaats.xml │ │ │ │ ├── marmiton.xml │ │ │ │ ├── marriott_bonvoy.xml │ │ │ │ ├── marrow.xml │ │ │ │ ├── mars.xml │ │ │ │ ├── marshall_multi_room.xml │ │ │ │ ├── marvel_snap.xml │ │ │ │ ├── mas_showcase.xml │ │ │ │ ├── massive.xml │ │ │ │ ├── mastodon.xml │ │ │ │ ├── matchi.xml │ │ │ │ ├── material_catalog.xml │ │ │ │ ├── material_islands.xml │ │ │ │ ├── material_notes.xml │ │ │ │ ├── material_photo_widget.xml │ │ │ │ ├── material_you_dynamic_icons.xml │ │ │ │ ├── material_you_light_dark_icons.xml │ │ │ │ ├── materialcleaner.xml │ │ │ │ ├── materialistik_icons.xml │ │ │ │ ├── materialpods.xml │ │ │ │ ├── mathway.xml │ │ │ │ ├── matlog.xml │ │ │ │ ├── matpriskollen.xml │ │ │ │ ├── mattermost.xml │ │ │ │ ├── mauth.xml │ │ │ │ ├── mavi.xml │ │ │ │ ├── max.xml │ │ │ │ ├── max_fashion.xml │ │ │ │ ├── max_stream_hbo.xml │ │ │ │ ├── maxim.xml │ │ │ │ ├── maxnote.xml │ │ │ │ ├── maya.xml │ │ │ │ ├── mb_bank.xml │ │ │ │ ├── mb_way.xml │ │ │ │ ├── mbank.xml │ │ │ │ ├── mbta_mticket.xml │ │ │ │ ├── mc_four.xml │ │ │ │ ├── mcafee_security.xml │ │ │ │ ├── mcdonalds.xml │ │ │ │ ├── mcdoplus.xml │ │ │ │ ├── mcfit.xml │ │ │ │ ├── mcpedl_for_minecraft.xml │ │ │ │ ├── mdgram.xml │ │ │ │ ├── mdgramyou.xml │ │ │ │ ├── mdscan_ocr.xml │ │ │ │ ├── me_plus_lifestyle_routine.xml │ │ │ │ ├── mead_mate.xml │ │ │ │ ├── mealient.xml │ │ │ │ ├── measure.xml │ │ │ │ ├── meb_e_okul_vbs.xml │ │ │ │ ├── medal_tv.xml │ │ │ │ ├── media_on.xml │ │ │ │ ├── media_station_x.xml │ │ │ │ ├── mediafire.xml │ │ │ │ ├── mediainfo.xml │ │ │ │ ├── mediaset_infinity.xml │ │ │ │ ├── medibang_paint.xml │ │ │ │ ├── medis.xml │ │ │ │ ├── medisafe.xml │ │ │ │ ├── meditation_assistant.xml │ │ │ │ ├── medito.xml │ │ │ │ ├── medium.xml │ │ │ │ ├── meduza.xml │ │ │ │ ├── meem_ksa.xml │ │ │ │ ├── meesho.xml │ │ │ │ ├── meetfrank.xml │ │ │ │ ├── meetup.xml │ │ │ │ ├── meeye_icons.xml │ │ │ │ ├── mega.xml │ │ │ │ ├── mega_man_x_dive.xml │ │ │ │ ├── megacable.xml │ │ │ │ ├── megalodon.xml │ │ │ │ ├── megamarket.xml │ │ │ │ ├── megasync.xml │ │ │ │ ├── meitu.xml │ │ │ │ ├── meituan.xml │ │ │ │ ├── meituan_takeaway.xml │ │ │ │ ├── meizu_music.xml │ │ │ │ ├── mekorama.xml │ │ │ │ ├── mellow_dark_icons.xml │ │ │ │ ├── melodifestivalen.xml │ │ │ │ ├── melonds.xml │ │ │ │ ├── meme_generator.xml │ │ │ │ ├── meme_generator_pro.xml │ │ │ │ ├── memoria_photo_gallery.xml │ │ │ │ ├── memory_guardian.xml │ │ │ │ ├── memorydetector.xml │ │ │ │ ├── memrise.xml │ │ │ │ ├── menetrendapp.xml │ │ │ │ ├── meo_remote.xml │ │ │ │ ├── mercado_libre.xml │ │ │ │ ├── mercado_pago.xml │ │ │ │ ├── mercari.xml │ │ │ │ ├── mercurygram.xml │ │ │ │ ├── mercusys.xml │ │ │ │ ├── merge_war.xml │ │ │ │ ├── meroshare.xml │ │ │ │ ├── meross.xml │ │ │ │ ├── merriam_webster_dictionary.xml │ │ │ │ ├── messages.xml │ │ │ │ ├── messenger.xml │ │ │ │ ├── messenger_pro.xml │ │ │ │ ├── meta_ads_manager.xml │ │ │ │ ├── meta_business_suite.xml │ │ │ │ ├── meta_horizon.xml │ │ │ │ ├── meta_workplace.xml │ │ │ │ ├── metadata_remover.xml │ │ │ │ ├── metamask.xml │ │ │ │ ├── meteo_swiss.xml │ │ │ │ ├── meteoblue.xml │ │ │ │ ├── meteoipma.xml │ │ │ │ ├── meteoroloji.xml │ │ │ │ ├── metro.xml │ │ │ │ ├── metro_flex.xml │ │ │ │ ├── metro_map_moscow.xml │ │ │ │ ├── metrobank.xml │ │ │ │ ├── metrolist.xml │ │ │ │ ├── metronome_beats.xml │ │ │ │ ├── meu_sus_digital.xml │ │ │ │ ├── mewe.xml │ │ │ │ ├── mexc.xml │ │ │ │ ├── mezo.xml │ │ │ │ ├── mflix.xml │ │ │ │ ├── mgit.xml │ │ │ │ ├── mhrs.xml │ │ │ │ ├── mi_afip.xml │ │ │ │ ├── mi_ai.xml │ │ │ │ ├── mi_argentina.xml │ │ │ │ ├── mi_banco.xml │ │ │ │ ├── mi_browser.xml │ │ │ │ ├── mi_buds_m8.xml │ │ │ │ ├── mi_carpeta_ciudadana.xml │ │ │ │ ├── mi_community.xml │ │ │ │ ├── mi_control_center.xml │ │ │ │ ├── mi_file_manager.xml │ │ │ │ ├── mi_fitness.xml │ │ │ │ ├── mi_freeform.xml │ │ │ │ ├── mi_health.xml │ │ │ │ ├── mi_home.xml │ │ │ │ ├── mi_mover.xml │ │ │ │ ├── mi_music.xml │ │ │ │ ├── mi_pay.xml │ │ │ │ ├── mi_personal_flow.xml │ │ │ │ ├── mi_remote.xml │ │ │ │ ├── mi_security.xml │ │ │ │ ├── mi_store.xml │ │ │ │ ├── mi_telcel.xml │ │ │ │ ├── mi_time.xml │ │ │ │ ├── mi_video.xml │ │ │ │ ├── mi_wifi.xml │ │ │ │ ├── miccheck.xml │ │ │ │ ├── micopacks.xml │ │ │ │ ├── microflux.xml │ │ │ │ ├── microg_settings.xml │ │ │ │ ├── microsoft_365_admin.xml │ │ │ │ ├── microsoft_365_copilot.xml │ │ │ │ ├── microsoft_authenticator.xml │ │ │ │ ├── microsoft_azure.xml │ │ │ │ ├── microsoft_copilot.xml │ │ │ │ ├── microsoft_defender.xml │ │ │ │ ├── microsoft_designer.xml │ │ │ │ ├── microsoft_edge.xml │ │ │ │ ├── microsoft_edge_canary.xml │ │ │ │ ├── microsoft_edge_dev.xml │ │ │ │ ├── microsoft_excel.xml │ │ │ │ ├── microsoft_launcher.xml │ │ │ │ ├── microsoft_lens.xml │ │ │ │ ├── microsoft_link.xml │ │ │ │ ├── microsoft_lists.xml │ │ │ │ ├── microsoft_loop.xml │ │ │ │ ├── microsoft_math_solver.xml │ │ │ │ ├── microsoft_onedrive.xml │ │ │ │ ├── microsoft_onenote.xml │ │ │ │ ├── microsoft_outlook.xml │ │ │ │ ├── microsoft_planner.xml │ │ │ │ ├── microsoft_power_bi.xml │ │ │ │ ├── microsoft_powerpoint.xml │ │ │ │ ├── microsoft_remote_desktop.xml │ │ │ │ ├── microsoft_sharepoint.xml │ │ │ │ ├── microsoft_solitaire.xml │ │ │ │ ├── microsoft_start.xml │ │ │ │ ├── microsoft_stream.xml │ │ │ │ ├── microsoft_swiftkey_keyboard.xml │ │ │ │ ├── microsoft_swiftkey_keyboard_beta.xml │ │ │ │ ├── microsoft_teams.xml │ │ │ │ ├── microsoft_todo.xml │ │ │ │ ├── microsoft_translator.xml │ │ │ │ ├── microsoft_whiteboard.xml │ │ │ │ ├── microsoft_word.xml │ │ │ │ ├── micts.xml │ │ │ │ ├── midi_player.xml │ │ │ │ ├── miele.xml │ │ │ │ ├── mifare_classic_tool.xml │ │ │ │ ├── mighty_doom.xml │ │ │ │ ├── migrate_ng.xml │ │ │ │ ├── migros.xml │ │ │ │ ├── migros_bank_twint.xml │ │ │ │ ├── migros_money.xml │ │ │ │ ├── migros_shop.xml │ │ │ │ ├── mihon.xml │ │ │ │ ├── mihoyo_community.xml │ │ │ │ ├── mijn_hr.xml │ │ │ │ ├── milanote.xml │ │ │ │ ├── milieu_surveys.xml │ │ │ │ ├── milkchoco.xml │ │ │ │ ├── milktea_for_misskey.xml │ │ │ │ ├── millenicom.xml │ │ │ │ ├── million_az.xml │ │ │ │ ├── mimo.xml │ │ │ │ ├── mind_tracker.xml │ │ │ │ ├── mindshift_cbt.xml │ │ │ │ ├── mindustry.xml │ │ │ │ ├── minecraft.xml │ │ │ │ ├── minesweeper.xml │ │ │ │ ├── minesweeper_the_clean_one.xml │ │ │ │ ├── minetest.xml │ │ │ │ ├── mingo.xml │ │ │ │ ├── mini_metro.xml │ │ │ │ ├── mini_mini_farm.xml │ │ │ │ ├── miniflutt.xml │ │ │ │ ├── minimal_o_icons.xml │ │ │ │ ├── minimale_icons.xml │ │ │ │ ├── minimalist_icons.xml │ │ │ │ ├── minimalist_phone.xml │ │ │ │ ├── minimus_icons.xml │ │ │ │ ├── minisweeper.xml │ │ │ │ ├── minma_icons.xml │ │ │ │ ├── minority.xml │ │ │ │ ├── mint.xml │ │ │ │ ├── mioto.xml │ │ │ │ ├── mir_pay.xml │ │ │ │ ├── mirai_plugin_for_parabox.xml │ │ │ │ ├── miro.xml │ │ │ │ ├── mirror.xml │ │ │ │ ├── mirror_lab.xml │ │ │ │ ├── mishka.xml │ │ │ │ ├── mitid.xml │ │ │ │ ├── miui_calculator.xml │ │ │ │ ├── miui_forum.xml │ │ │ │ ├── miui_hidden_settings.xml │ │ │ │ ├── miui_icons.xml │ │ │ │ ├── miui_services_feedback.xml │ │ │ │ ├── miupv.xml │ │ │ │ ├── mivo.xml │ │ │ │ ├── mix_monet_generator.xml │ │ │ │ ├── mixcloud.xml │ │ │ │ ├── mixplorer.xml │ │ │ │ ├── mixue_ice_city.xml │ │ │ │ ├── mj_pdf.xml │ │ │ │ ├── ml_manager.xml │ │ │ │ ├── ml_manager_pro.xml │ │ │ │ ├── mlauncher.xml │ │ │ │ ├── mobikwik.xml │ │ │ │ ├── mobile_data_consumption.xml │ │ │ │ ├── mobile_id.xml │ │ │ │ ├── mobile_jkn.xml │ │ │ │ ├── mobile_legends_bang_bang.xml │ │ │ │ ├── mobilede.xml │ │ │ │ ├── mobiles_bezahlen.xml │ │ │ │ ├── mobiletrans.xml │ │ │ │ ├── mobilism.xml │ │ │ │ ├── mobiljegy.xml │ │ │ │ ├── mobillet.xml │ │ │ │ ├── mobills.xml │ │ │ │ ├── mobily.xml │ │ │ │ ├── mobily_pay.xml │ │ │ │ ├── mobipdf.xml │ │ │ │ ├── mobitel_selfcare.xml │ │ │ │ ├── mobiuz.xml │ │ │ │ ├── mobvoi.xml │ │ │ │ ├── mobvoi_health.xml │ │ │ │ ├── mobywatel.xml │ │ │ │ ├── modern_strike_online.xml │ │ │ │ ├── modern_warships.xml │ │ │ │ ├── modo.xml │ │ │ │ ├── mods_maps_for_minecraft_pe.xml │ │ │ │ ├── moelist.xml │ │ │ │ ├── moey.xml │ │ │ │ ├── moises.xml │ │ │ │ ├── moj.xml │ │ │ │ ├── moj_orange.xml │ │ │ │ ├── mojedpo.xml │ │ │ │ ├── mojeikp.xml │ │ │ │ ├── mojietu.xml │ │ │ │ ├── mojo.xml │ │ │ │ ├── molly.xml │ │ │ │ ├── momo.xml │ │ │ │ ├── momo_test.xml │ │ │ │ ├── momox.xml │ │ │ │ ├── monclubsportif.xml │ │ │ │ ├── monday_com.xml │ │ │ │ ├── monero_com_by_cake_wallet.xml │ │ │ │ ├── monero_wallet.xml │ │ │ │ ├── monerujo.xml │ │ │ │ ├── money.xml │ │ │ │ ├── money_dashboard.xml │ │ │ │ ├── money_lover.xml │ │ │ │ ├── money_manager.xml │ │ │ │ ├── moneybox.xml │ │ │ │ ├── moneycontrol.xml │ │ │ │ ├── moneywallet.xml │ │ │ │ ├── monica_ai.xml │ │ │ │ ├── monitor_burz.xml │ │ │ │ ├── mono.xml │ │ │ │ ├── monobank.xml │ │ │ │ ├── monochrome_kwgt.xml │ │ │ │ ├── monocles_chat.xml │ │ │ │ ├── monocles_mail.xml │ │ │ │ ├── monocles_translator.xml │ │ │ │ ├── monopoly.xml │ │ │ │ ├── montbell.xml │ │ │ │ ├── month.xml │ │ │ │ ├── monument_valley.xml │ │ │ │ ├── monzo.xml │ │ │ │ ├── mooc.xml │ │ │ │ ├── moodle.xml │ │ │ │ ├── moon_reader.xml │ │ │ │ ├── moon_reader_pro.xml │ │ │ │ ├── moonee_valley_libraries.xml │ │ │ │ ├── moonlight.xml │ │ │ │ ├── moovit.xml │ │ │ │ ├── more.xml │ │ │ │ ├── moredays.xml │ │ │ │ ├── morelenet.xml │ │ │ │ ├── morse.xml │ │ │ │ ├── morse_code.xml │ │ │ │ ├── morse_mania.xml │ │ │ │ ├── moscow_metro.xml │ │ │ │ ├── moscow_wifi_autologin.xml │ │ │ │ ├── moshidon.xml │ │ │ │ ├── mostaza.xml │ │ │ │ ├── motionmate.xml │ │ │ │ ├── motivation.xml │ │ │ │ ├── moto.xml │ │ │ │ ├── moto_gametime.xml │ │ │ │ ├── moto_interactive_wallpaper.xml │ │ │ │ ├── moto_notifications.xml │ │ │ │ ├── moto_secure.xml │ │ │ │ ├── moto_unplugged.xml │ │ │ │ ├── moto_widget.xml │ │ │ │ ├── motohub.xml │ │ │ │ ├── motorola_audio_effects.xml │ │ │ │ ├── moveat.xml │ │ │ │ ├── moveinsync.xml │ │ │ │ ├── movie_lab.xml │ │ │ │ ├── moviebase.xml │ │ │ │ ├── movies_anywhere.xml │ │ │ │ ├── movistar.xml │ │ │ │ ├── mozilla_vpn.xml │ │ │ │ ├── mp3_audio_merger.xml │ │ │ │ ├── mp3quran.xml │ │ │ │ ├── mpaisa.xml │ │ │ │ ├── mpatcher.xml │ │ │ │ ├── mplayer.xml │ │ │ │ ├── mpv_android.xml │ │ │ │ ├── mr_gun.xml │ │ │ │ ├── mrepo.xml │ │ │ │ ├── mrsool.xml │ │ │ │ ├── mt_manager.xml │ │ │ │ ├── mt_manager_canary.xml │ │ │ │ ├── mtix.xml │ │ │ │ ├── mtn_momo.xml │ │ │ │ ├── mts.xml │ │ │ │ ├── muambator.xml │ │ │ │ ├── mubi.xml │ │ │ │ ├── mull.xml │ │ │ │ ├── muller.xml │ │ │ │ ├── mullvad_vpn.xml │ │ │ │ ├── multi_calculator.xml │ │ │ │ ├── multiple_accounts.xml │ │ │ │ ├── multivnc.xml │ │ │ │ ├── mumbai_one.xml │ │ │ │ ├── mumble_voip.xml │ │ │ │ ├── mundo_galp.xml │ │ │ │ ├── mupdf.xml │ │ │ │ ├── musclewiki.xml │ │ │ │ ├── musescore.xml │ │ │ │ ├── museums_of_turkiye.xml │ │ │ │ ├── music_audio_editor.xml │ │ │ │ ├── music_for_focus.xml │ │ │ │ ├── music_party.xml │ │ │ │ ├── music_player.xml │ │ │ │ ├── music_player_and_mp3_player.xml │ │ │ │ ├── music_player_go.xml │ │ │ │ ├── music_recognition.xml │ │ │ │ ├── music_speed_changer.xml │ │ │ │ ├── music_tag_editor.xml │ │ │ │ ├── music_widget_android.xml │ │ │ │ ├── musiccast.xml │ │ │ │ ├── musicmax.xml │ │ │ │ ├── musicolet_music_player.xml │ │ │ │ ├── musify.xml │ │ │ │ ├── musixmatch.xml │ │ │ │ ├── muslim_pro.xml │ │ │ │ ├── must.xml │ │ │ │ ├── muviz.xml │ │ │ │ ├── muzei.xml │ │ │ │ ├── mvgo.xml │ │ │ │ ├── mvvapp.xml │ │ │ │ ├── mwalls.xml │ │ │ │ ├── my48.xml │ │ │ │ ├── my_airtel.xml │ │ │ │ ├── my_android_tools.xml │ │ │ │ ├── my_app_list.xml │ │ │ │ ├── my_apps_time.xml │ │ │ │ ├── my_benefits.xml │ │ │ │ ├── my_bmw.xml │ │ │ │ ├── my_boy.xml │ │ │ │ ├── my_bpost.xml │ │ │ │ ├── my_bsnl_tunes.xml │ │ │ │ ├── my_but.xml │ │ │ │ ├── my_canada_life_at_work.xml │ │ │ │ ├── my_cuf.xml │ │ │ │ ├── my_dafi.xml │ │ │ │ ├── my_data_manager.xml │ │ │ │ ├── my_device_by_hmd.xml │ │ │ │ ├── my_excitel.xml │ │ │ │ ├── my_expenses.xml │ │ │ │ ├── my_fitness_pal.xml │ │ │ │ ├── my_fritz.xml │ │ │ │ ├── my_galaxy.xml │ │ │ │ ├── my_gesture_navigation.xml │ │ │ │ ├── my_health.xml │ │ │ │ ├── my_health_space.xml │ │ │ │ ├── my_honor.xml │ │ │ │ ├── my_huawei.xml │ │ │ │ ├── my_indihome.xml │ │ │ │ ├── my_kyivstar.xml │ │ │ │ ├── my_learning.xml │ │ │ │ ├── my_lifecell.xml │ │ │ │ ├── my_location.xml │ │ │ │ ├── my_megafon.xml │ │ │ │ ├── my_mitsubishi_connect.xml │ │ │ │ ├── my_moscow.xml │ │ │ │ ├── my_mts.xml │ │ │ │ ├── my_nintendo.xml │ │ │ │ ├── my_o2.xml │ │ │ │ ├── my_oldboy.xml │ │ │ │ ├── my_oneplus.xml │ │ │ │ ├── my_oppo.xml │ │ │ │ ├── my_orange.xml │ │ │ │ ├── my_q.xml │ │ │ │ ├── my_renault.xml │ │ │ │ ├── my_robi.xml │ │ │ │ ├── my_spectrum.xml │ │ │ │ ├── my_tim.xml │ │ │ │ ├── my_verizon.xml │ │ │ │ ├── my_viettel.xml │ │ │ │ ├── my_visual_voicemail.xml │ │ │ │ ├── my_vnpt.xml │ │ │ │ ├── my_vodafone.xml │ │ │ │ ├── my_workout_plan.xml │ │ │ │ ├── my_yamaha_motor.xml │ │ │ │ ├── my_zong.xml │ │ │ │ ├── myaakash.xml │ │ │ │ ├── myair.xml │ │ │ │ ├── myanimelist.xml │ │ │ │ ├── myasus.xml │ │ │ │ ├── mybank.xml │ │ │ │ ├── mybell.xml │ │ │ │ ├── mybook.xml │ │ │ │ ├── mybupa.xml │ │ │ │ ├── mycamu.xml │ │ │ │ ├── mycellfie.xml │ │ │ │ ├── mychart.xml │ │ │ │ ├── mydealz.xml │ │ │ │ ├── mydigi.xml │ │ │ │ ├── mydigicel.xml │ │ │ │ ├── mydramalist.xml │ │ │ │ ├── myemc.xml │ │ │ │ ├── mygate.xml │ │ │ │ ├── mygori.xml │ │ │ │ ├── mygov.xml │ │ │ │ ├── mygov_az.xml │ │ │ │ ├── mygov_code_generator.xml │ │ │ │ ├── mygovid.xml │ │ │ │ ├── myim3.xml │ │ │ │ ├── myjio.xml │ │ │ │ ├── myket.xml │ │ │ │ ├── mymail.xml │ │ │ │ ├── mymoney.xml │ │ │ │ ├── mynaportal.xml │ │ │ │ ├── myne.xml │ │ │ │ ├── mynoise.xml │ │ │ │ ├── myntra.xml │ │ │ │ ├── myoffice_documents.xml │ │ │ │ ├── mypay.xml │ │ │ │ ├── mypertamina.xml │ │ │ │ ├── myphoneexplorer.xml │ │ │ │ ├── mypldt_smart.xml │ │ │ │ ├── mypostcard.xml │ │ │ │ ├── myprotein.xml │ │ │ │ ├── myradar.xml │ │ │ │ ├── myradar_pro.xml │ │ │ │ ├── myrogers.xml │ │ │ │ ├── mysejahtera.xml │ │ │ │ ├── mysmartfren.xml │ │ │ │ ├── mysolaredge.xml │ │ │ │ ├── mysplash.xml │ │ │ │ ├── mystic_mansion.xml │ │ │ │ ├── mystory_today.xml │ │ │ │ ├── mytelkomsel.xml │ │ │ │ ├── mytherapy_pill_reminder.xml │ │ │ │ ├── mytnb.xml │ │ │ │ ├── myunifi.xml │ │ │ │ ├── myus.xml │ │ │ │ ├── myvrn.xml │ │ │ │ ├── mywellness.xml │ │ │ │ ├── myworldlink.xml │ │ │ │ ├── myxl.xml │ │ │ │ ├── n0va_desktop.xml │ │ │ │ ├── n11.xml │ │ │ │ ├── n26.xml │ │ │ │ ├── n_back_challenge.xml │ │ │ │ ├── n_dial.xml │ │ │ │ ├── n_kolay.xml │ │ │ │ ├── nacho_notch.xml │ │ │ │ ├── nadamillas.xml │ │ │ │ ├── nafath.xml │ │ │ │ ├── nagad.xml │ │ │ │ ├── nagram.xml │ │ │ │ ├── nahdi.xml │ │ │ │ ├── najm.xml │ │ │ │ ├── name_generator.xml │ │ │ │ ├── nameless_cat.xml │ │ │ │ ├── namida.xml │ │ │ │ ├── namma_yatri.xml │ │ │ │ ├── nanji_clock_widget.xml │ │ │ │ ├── nanoleaf.xml │ │ │ │ ├── naplarm.xml │ │ │ │ ├── naranja_x.xml │ │ │ │ ├── nasza_stokrotka.xml │ │ │ │ ├── nat_geo_tv.xml │ │ │ │ ├── national_bank_of_canada.xml │ │ │ │ ├── national_test_abhyas.xml │ │ │ │ ├── national_train_enquiry_system.xml │ │ │ │ ├── nationwide_bank.xml │ │ │ │ ├── native_alpha_plus.xml │ │ │ │ ├── natwest.xml │ │ │ │ ├── naukri.xml │ │ │ │ ├── nav_garmin_connect_iq.xml │ │ │ │ ├── naver.xml │ │ │ │ ├── naver_dictionary.xml │ │ │ │ ├── naver_map.xml │ │ │ │ ├── naver_papago.xml │ │ │ │ ├── navi.xml │ │ │ │ ├── navimaps.xml │ │ │ │ ├── navy_federal.xml │ │ │ │ ├── nawgati.xml │ │ │ │ ├── nayapay.xml │ │ │ │ ├── nays.xml │ │ │ │ ├── nc_passwords.xml │ │ │ │ ├── nclientv2.xml │ │ │ │ ├── nconnect.xml │ │ │ │ ├── nconnect_parent.xml │ │ │ │ ├── nearby_sharing.xml │ │ │ │ ├── nebo.xml │ │ │ │ ├── nebula.xml │ │ │ │ ├── nebula_horoscope.xml │ │ │ │ ├── nebula_icons.xml │ │ │ │ ├── nebulo.xml │ │ │ │ ├── nebulous_io.xml │ │ │ │ ├── nectar.xml │ │ │ │ ├── need_for_speed_no_limits.xml │ │ │ │ ├── neko_app.xml │ │ │ │ ├── nekobox.xml │ │ │ │ ├── nekogram.xml │ │ │ │ ├── nekome.xml │ │ │ │ ├── neo_backup.xml │ │ │ │ ├── neo_feed.xml │ │ │ │ ├── neo_launcher.xml │ │ │ │ ├── neo_store.xml │ │ │ │ ├── neobank.xml │ │ │ │ ├── neobt.xml │ │ │ │ ├── neon.xml │ │ │ │ ├── neon_bank.xml │ │ │ │ ├── neon_nothing_icons.xml │ │ │ │ ├── neostumbler.xml │ │ │ │ ├── nequi.xml │ │ │ │ ├── nes_emu.xml │ │ │ │ ├── neshan.xml │ │ │ │ ├── nespresso.xml │ │ │ │ ├── nest.xml │ │ │ │ ├── netatmo.xml │ │ │ │ ├── netease_music.xml │ │ │ │ ├── netflix.xml │ │ │ │ ├── netguard.xml │ │ │ │ ├── netmeds.xml │ │ │ │ ├── netmonster.xml │ │ │ │ ├── netschool.xml │ │ │ │ ├── netspeed_indicator.xml │ │ │ │ ├── netto.xml │ │ │ │ ├── network_analyzer.xml │ │ │ │ ├── network_speed.xml │ │ │ │ ├── network_speed_speed_meter.xml │ │ │ │ ├── netzclub.xml │ │ │ │ ├── neutrinote.xml │ │ │ │ ├── neutron_music_player.xml │ │ │ │ ├── newpass.xml │ │ │ │ ├── newpipe.xml │ │ │ │ ├── newradiosupporter.xml │ │ │ │ ├── news.xml │ │ │ │ ├── newsbreaks.xml │ │ │ │ ├── nexa_icons.xml │ │ │ │ ├── nexo.xml │ │ │ │ ├── next.xml │ │ │ │ ├── next_actualites_informatiques.xml │ │ │ │ ├── next_player.xml │ │ │ │ ├── next_transfer.xml │ │ │ │ ├── nextbike.xml │ │ │ │ ├── nextcloud.xml │ │ │ │ ├── nextcloud_cookbook.xml │ │ │ │ ├── nextcloud_deck.xml │ │ │ │ ├── nextcloud_news.xml │ │ │ │ ├── nextcloud_notes.xml │ │ │ │ ├── nextcloud_passwords.xml │ │ │ │ ├── nextcloud_photos.xml │ │ │ │ ├── nextcloud_talk.xml │ │ │ │ ├── nextdns.xml │ │ │ │ ├── nextdoor.xml │ │ │ │ ├── nextgen_mparivahan.xml │ │ │ │ ├── nextgp.xml │ │ │ │ ├── nextpush.xml │ │ │ │ ├── nfc_card_emulator_pro.xml │ │ │ │ ├── nfc_emulator.xml │ │ │ │ ├── nfc_tasks.xml │ │ │ │ ├── nfc_tools.xml │ │ │ │ ├── nfcgate.xml │ │ │ │ ├── nfg.xml │ │ │ │ ├── nfsee.xml │ │ │ │ ├── nfsinjector.xml │ │ │ │ ├── nfsmw.xml │ │ │ │ ├── nga.xml │ │ │ │ ├── ngl.xml │ │ │ │ ├── nhs.xml │ │ │ │ ├── niagara_launcher.xml │ │ │ │ ├── niantic_campfire.xml │ │ │ │ ├── niantic_wayfarer.xml │ │ │ │ ├── nicegram.xml │ │ │ │ ├── nicehash.xml │ │ │ │ ├── nicelock.xml │ │ │ │ ├── nicenote_notepad_notes.xml │ │ │ │ ├── niconico.xml │ │ │ │ ├── niconico_video.xml │ │ │ │ ├── night_mode.xml │ │ │ │ ├── nike.xml │ │ │ │ ├── nike_training_club.xml │ │ │ │ ├── nina.xml │ │ │ │ ├── nine.xml │ │ │ │ ├── nine_dash.xml │ │ │ │ ├── ning.xml │ │ │ │ ├── ninja.xml │ │ │ │ ├── nintendo_switch_online.xml │ │ │ │ ├── nintendo_switch_parental_control.xml │ │ │ │ ├── nitori.xml │ │ │ │ ├── nitter.xml │ │ │ │ ├── nix_on_droid.xml │ │ │ │ ├── nixplay.xml │ │ │ │ ├── niyo.xml │ │ │ │ ├── niyox.xml │ │ │ │ ├── nlweer.xml │ │ │ │ ├── nmm_file_manager.xml │ │ │ │ ├── no_thanks.xml │ │ │ │ ├── nobitex.xml │ │ │ │ ├── nobroker.xml │ │ │ │ ├── noc_for_fur_affinity.xml │ │ │ │ ├── node_video.xml │ │ │ │ ├── nofasel.xml │ │ │ │ ├── noice.xml │ │ │ │ ├── noisefit.xml │ │ │ │ ├── nokia_fm_radio.xml │ │ │ │ ├── nomad.xml │ │ │ │ ├── nomad_sculpt.xml │ │ │ │ ├── nomerogram.xml │ │ │ │ ├── nonograms_katana.xml │ │ │ │ ├── noon.xml │ │ │ │ ├── nophonespam.xml │ │ │ │ ├── nord_android.xml │ │ │ │ ├── norton360_antivirus.xml │ │ │ │ ├── norwegian_travel_assistant.xml │ │ │ │ ├── notally.xml │ │ │ │ ├── notan.xml │ │ │ │ ├── note.xml │ │ │ │ ├── notebloc.xml │ │ │ │ ├── noteit.xml │ │ │ │ ├── notenapp.xml │ │ │ │ ├── noterly.xml │ │ │ │ ├── notes.xml │ │ │ │ ├── notes_notepad.xml │ │ │ │ ├── notesnook.xml │ │ │ │ ├── notewise.xml │ │ │ │ ├── nothing_adaptive_blue_icons.xml │ │ │ │ ├── nothing_adaptive_icons.xml │ │ │ │ ├── nothing_camera.xml │ │ │ │ ├── nothing_gallery.xml │ │ │ │ ├── nothing_icons.xml │ │ │ │ ├── nothing_material_you_icons.xml │ │ │ │ ├── nothing_recorder.xml │ │ │ │ ├── nothing_to_say.xml │ │ │ │ ├── nothing_weather.xml │ │ │ │ ├── nothing_x.xml │ │ │ │ ├── nothingbutwallpapers.xml │ │ │ │ ├── nothink.xml │ │ │ │ ├── noti_progress_bar.xml │ │ │ │ ├── notification_dictionary.xml │ │ │ │ ├── notification_history.xml │ │ │ │ ├── notification_history_log.xml │ │ │ │ ├── notification_log.xml │ │ │ │ ├── notification_shortcuts.xml │ │ │ │ ├── notification_widget.xml │ │ │ │ ├── notification_widget_a12.xml │ │ │ │ ├── notificationlog.xml │ │ │ │ ├── notify_for_amazfit_zepp.xml │ │ │ │ ├── notify_for_mi_band.xml │ │ │ │ ├── notion.xml │ │ │ │ ├── notisave.xml │ │ │ │ ├── noto.xml │ │ │ │ ├── nova.xml │ │ │ │ ├── nova_google_companion.xml │ │ │ │ ├── nova_launcher.xml │ │ │ │ ├── nova_post.xml │ │ │ │ ├── nova_video_player.xml │ │ │ │ ├── novobanco.xml │ │ │ │ ├── now.xml │ │ │ │ ├── nowakelock.xml │ │ │ │ ├── np_manager.xml │ │ │ │ ├── npo_start.xml │ │ │ │ ├── nrf_connect.xml │ │ │ │ ├── ns.xml │ │ │ │ ├── ntfy.xml │ │ │ │ ├── ntv.xml │ │ │ │ ├── nu_nl.xml │ │ │ │ ├── nu_online.xml │ │ │ │ ├── nubank.xml │ │ │ │ ├── nuinvest.xml │ │ │ │ ├── nuki_smart_lock.xml │ │ │ │ ├── nullgram.xml │ │ │ │ ├── nulls_brawl.xml │ │ │ │ ├── numworks.xml │ │ │ │ ├── nunti.xml │ │ │ │ ├── nuvem.xml │ │ │ │ ├── nvidia_geforce_now.xml │ │ │ │ ├── nvidia_shield_tv.xml │ │ │ │ ├── nvplayer.xml │ │ │ │ ├── nykaa.xml │ │ │ │ ├── nykaa_fashion.xml │ │ │ │ ├── nykaa_man.xml │ │ │ │ ├── nymvpn.xml │ │ │ │ ├── nyt_games_word_games_and_sudoku.xml │ │ │ │ ├── nytimes.xml │ │ │ │ ├── nyx_music_player.xml │ │ │ │ ├── nz_ua.xml │ │ │ │ ├── nzb360.xml │ │ │ │ ├── o_relax.xml │ │ │ │ ├── oald.xml │ │ │ │ ├── obedience.xml │ │ │ │ ├── obilet.xml │ │ │ │ ├── obimy.xml │ │ │ │ ├── observador.xml │ │ │ │ ├── obsidian.xml │ │ │ │ ├── obtainium.xml │ │ │ │ ├── ocr.xml │ │ │ │ ├── octoapp.xml │ │ │ │ ├── octodroid.xml │ │ │ │ ├── octogram.xml │ │ │ │ ├── octohide_vpn.xml │ │ │ │ ├── octopus_electroverse.xml │ │ │ │ ├── octoremote.xml │ │ │ │ ├── odea.xml │ │ │ │ ├── odido.xml │ │ │ │ ├── odrabiamy_pl.xml │ │ │ │ ├── odysee.xml │ │ │ │ ├── oebb.xml │ │ │ │ ├── offerup.xml │ │ │ │ ├── offi_stations.xml │ │ │ │ ├── office_reader.xml │ │ │ │ ├── officesuite.xml │ │ │ │ ├── official_twrp_app.xml │ │ │ │ ├── offline_games.xml │ │ │ │ ├── offline_podcast_app.xml │ │ │ │ ├── ofox.xml │ │ │ │ ├── ohdio.xml │ │ │ │ ├── ohealth.xml │ │ │ │ ├── ohhi.xml │ │ │ │ ├── ohno.xml │ │ │ │ ├── oisafe.xml │ │ │ │ ├── ok.xml │ │ │ │ ├── okay.xml │ │ │ │ ├── okb_twint.xml │ │ │ │ ├── oken.xml │ │ │ │ ├── okey.xml │ │ │ │ ├── okko.xml │ │ │ │ ├── okta_verify.xml │ │ │ │ ├── okx.xml │ │ │ │ ├── ola.xml │ │ │ │ ├── ola_electric.xml │ │ │ │ ├── olam_malayalam_dictionary.xml │ │ │ │ ├── olauncher.xml │ │ │ │ ├── old_maps_walk.xml │ │ │ │ ├── oldroll.xml │ │ │ │ ├── oledbuddy.xml │ │ │ │ ├── olx.xml │ │ │ │ ├── olympics.xml │ │ │ │ ├── omi.xml │ │ │ │ ├── omio.xml │ │ │ │ ├── omlet_arcade.xml │ │ │ │ ├── omni.xml │ │ │ │ ├── omnivore.xml │ │ │ │ ├── ondago.xml │ │ │ │ ├── one4kwgt.xml │ │ │ │ ├── one4wall.xml │ │ │ │ ├── one_click_lock_screen.xml │ │ │ │ ├── one_for_wall.xml │ │ │ │ ├── one_hand_operation.xml │ │ │ │ ├── one_jotter.xml │ │ │ │ ├── one_tap_lock_screen.xml │ │ │ │ ├── one_time_password.xml │ │ │ │ ├── one_ui_circle_icons.xml │ │ │ │ ├── one_ui_icons.xml │ │ │ │ ├── one_zero.xml │ │ │ │ ├── onecard.xml │ │ │ │ ├── onefootball.xml │ │ │ │ ├── oneplus_care.xml │ │ │ │ ├── oneplus_clone_phone.xml │ │ │ │ ├── oneplus_community.xml │ │ │ │ ├── oneplus_documents.xml │ │ │ │ ├── oneplus_health.xml │ │ │ │ ├── oneplus_phone_manager.xml │ │ │ │ ├── oneplus_store.xml │ │ │ │ ├── onescore.xml │ │ │ │ ├── onestop.xml │ │ │ │ ├── onesync.xml │ │ │ │ ├── onet_poczta.xml │ │ │ │ ├── onionshare.xml │ │ │ │ ├── only_office.xml │ │ │ │ ├── only_one.xml │ │ │ │ ├── onoff.xml │ │ │ │ ├── onshape.xml │ │ │ │ ├── onstream.xml │ │ │ │ ├── onvista.xml │ │ │ │ ├── onx_hunt.xml │ │ │ │ ├── ooredoo.xml │ │ │ │ ├── op_auto_clicker.xml │ │ │ │ ├── op_gg.xml │ │ │ │ ├── op_mobiili.xml │ │ │ │ ├── opay.xml │ │ │ │ ├── open_food_facts.xml │ │ │ │ ├── open_link_with.xml │ │ │ │ ├── open_note.xml │ │ │ │ ├── open_radio.xml │ │ │ │ ├── open_video_editor.xml │ │ │ │ ├── openapk.xml │ │ │ │ ├── openbank.xml │ │ │ │ ├── openboard.xml │ │ │ │ ├── openbubbles.xml │ │ │ │ ├── opendocument_reader.xml │ │ │ │ ├── openhab.xml │ │ │ │ ├── openkeychain.xml │ │ │ │ ├── openlib.xml │ │ │ │ ├── openreads.xml │ │ │ │ ├── openrectv.xml │ │ │ │ ├── openscale.xml │ │ │ │ ├── openscan.xml │ │ │ │ ├── openstop.xml │ │ │ │ ├── opentable.xml │ │ │ │ ├── opentracks.xml │ │ │ │ ├── openvpn.xml │ │ │ │ ├── openvpn_for_android.xml │ │ │ │ ├── openweather.xml │ │ │ │ ├── opera.xml │ │ │ │ ├── opera_beta.xml │ │ │ │ ├── opera_gx.xml │ │ │ │ ├── opera_mini.xml │ │ │ │ ├── opera_mini_beta.xml │ │ │ │ ├── oppo_account.xml │ │ │ │ ├── oppo_game_space.xml │ │ │ │ ├── oppo_music.xml │ │ │ │ ├── oppo_store.xml │ │ │ │ ├── oracle_cloud_infrastructure.xml │ │ │ │ ├── oraimo_sound.xml │ │ │ │ ├── orange_bank.xml │ │ │ │ ├── orange_flex.xml │ │ │ │ ├── orange_money.xml │ │ │ │ ├── orange_phone.xml │ │ │ │ ├── orb_participant.xml │ │ │ │ ├── orbia.xml │ │ │ │ ├── orbot.xml │ │ │ │ ├── orderkuota.xml │ │ │ │ ├── organic_maps.xml │ │ │ │ ├── orgzly.xml │ │ │ │ ├── orgzly_revived.xml │ │ │ │ ├── orlen_vitay.xml │ │ │ │ ├── oroaming.xml │ │ │ │ ├── orthography.xml │ │ │ │ ├── os_monitor.xml │ │ │ │ ├── osaifu_keitai.xml │ │ │ │ ├── oscilloscope.xml │ │ │ │ ├── osm_dashboard.xml │ │ │ │ ├── osmand.xml │ │ │ │ ├── osmand_online_gps_tracker.xml │ │ │ │ ├── osmand_plus.xml │ │ │ │ ├── oss_card_wallet.xml │ │ │ │ ├── oss_document_scanner.xml │ │ │ │ ├── oss_weather.xml │ │ │ │ ├── osu.xml │ │ │ │ ├── oto_music.xml │ │ │ │ ├── otobusum_nerede.xml │ │ │ │ ├── otp_bank.xml │ │ │ │ ├── otp_szep_card.xml │ │ │ │ ├── otraku.xml │ │ │ │ ├── otter.xml │ │ │ │ ├── oujo.xml │ │ │ │ ├── outdooractive.xml │ │ │ │ ├── outertune.xml │ │ │ │ ├── outline.xml │ │ │ │ ├── outline_icons.xml │ │ │ │ ├── overdrop.xml │ │ │ │ ├── overload.xml │ │ │ │ ├── overmorrow_weather.xml │ │ │ │ ├── ovf_editor.xml │ │ │ │ ├── ovinfo.xml │ │ │ │ ├── ovo.xml │ │ │ │ ├── ovpnspider.xml │ │ │ │ ├── owlet.xml │ │ │ │ ├── owlgram.xml │ │ │ │ ├── owncloud.xml │ │ │ │ ├── owntracks.xml │ │ │ │ ├── oxigen_hd.xml │ │ │ │ ├── oxp_gaming_vpn.xml │ │ │ │ ├── oxygen_updater.xml │ │ │ │ ├── oyo.xml │ │ │ │ ├── oyomi.xml │ │ │ │ ├── ozon.xml │ │ │ │ ├── p_mobile_service.xml │ │ │ │ ├── package_manager.xml │ │ │ │ ├── package_name_viewer.xml │ │ │ │ ├── package_tracking.xml │ │ │ │ ├── package_viewer.xml │ │ │ │ ├── packmate.xml │ │ │ │ ├── padlet.xml │ │ │ │ ├── pagbank.xml │ │ │ │ ├── pagerduty.xml │ │ │ │ ├── pairvpn.xml │ │ │ │ ├── paisa.xml │ │ │ │ ├── pako_highway.xml │ │ │ │ ├── palette.xml │ │ │ │ ├── palm_store.xml │ │ │ │ ├── palmpay.xml │ │ │ │ ├── panda.xml │ │ │ │ ├── panda_video_compressor.xml │ │ │ │ ├── pandavpn.xml │ │ │ │ ├── pandora.xml │ │ │ │ ├── pandora_online.xml │ │ │ │ ├── panels.xml │ │ │ │ ├── panels_wallpapers.xml │ │ │ │ ├── pano_scrobbler.xml │ │ │ │ ├── papara.xml │ │ │ │ ├── papercopy.xml │ │ │ │ ├── paperless.xml │ │ │ │ ├── papers.xml │ │ │ │ ├── papers_ai_wallpapers.xml │ │ │ │ ├── papertag.xml │ │ │ │ ├── parabox.xml │ │ │ │ ├── paradigm_reboot.xml │ │ │ │ ├── parallel.xml │ │ │ │ ├── parallel_space.xml │ │ │ │ ├── param.xml │ │ │ │ ├── paramount_plus.xml │ │ │ │ ├── parcel_pending.xml │ │ │ │ ├── parcels.xml │ │ │ │ ├── park4night.xml │ │ │ │ ├── park_plus_rto.xml │ │ │ │ ├── parking_bahia.xml │ │ │ │ ├── parkmobile.xml │ │ │ │ ├── parkwhiz.xml │ │ │ │ ├── parlera.xml │ │ │ │ ├── parqet.xml │ │ │ │ ├── parrot_recorder.xml │ │ │ │ ├── parsec.xml │ │ │ │ ├── pascals_wager.xml │ │ │ │ ├── paseo.xml │ │ │ │ ├── pass2pay.xml │ │ │ │ ├── pass_culture.xml │ │ │ │ ├── passandroid.xml │ │ │ │ ├── passgenpro.xml │ │ │ │ ├── passport_parking.xml │ │ │ │ ├── passport_parking_canada.xml │ │ │ │ ├── passtable.xml │ │ │ │ ├── password_safe_manager.xml │ │ │ │ ├── password_store.xml │ │ │ │ ├── pastel_wallpapers.xml │ │ │ │ ├── pastelina_icons.xml │ │ │ │ ├── patchwork.xml │ │ │ │ ├── pathao.xml │ │ │ │ ├── patient_access.xml │ │ │ │ ├── patreon.xml │ │ │ │ ├── payback.xml │ │ │ │ ├── paybox.xml │ │ │ │ ├── paybyphone.xml │ │ │ │ ├── paycell.xml │ │ │ │ ├── payoneer.xml │ │ │ │ ├── paypal.xml │ │ │ │ ├── paypal_business.xml │ │ │ │ ├── paypay.xml │ │ │ │ ├── paysafecard.xml │ │ │ │ ├── paysphera.xml │ │ │ │ ├── paytm.xml │ │ │ │ ├── paytm_insider.xml │ │ │ │ ├── payzapp.xml │ │ │ │ ├── pc_builder.xml │ │ │ │ ├── pc_creator_2.xml │ │ │ │ ├── pc_remote.xml │ │ │ │ ├── pcapdroid.xml │ │ │ │ ├── pcloud.xml │ │ │ │ ├── pdf_converter.xml │ │ │ │ ├── pdf_doc_scan.xml │ │ │ │ ├── pdf_viewer.xml │ │ │ │ ├── pdf_viewer_plus.xml │ │ │ │ ├── peacock_tv.xml │ │ │ │ ├── pear_launcher.xml │ │ │ │ ├── pedidosya.xml │ │ │ │ ├── pedometer.xml │ │ │ │ ├── peloton.xml │ │ │ │ ├── pencil.xml │ │ │ │ ├── penta.xml │ │ │ │ ├── pentastic.xml │ │ │ │ ├── penup.xml │ │ │ │ ├── peopay.xml │ │ │ │ ├── pepper.xml │ │ │ │ ├── perekrestok.xml │ │ │ │ ├── perfect_ear.xml │ │ │ │ ├── perfect_icons.xml │ │ │ │ ├── period_calendar.xml │ │ │ │ ├── periodic.xml │ │ │ │ ├── periodic_table.xml │ │ │ │ ├── peripage.xml │ │ │ │ ├── peristyle.xml │ │ │ │ ├── permission_ruler.xml │ │ │ │ ├── perplexity.xml │ │ │ │ ├── persian_calendar.xml │ │ │ │ ├── personal_pay.xml │ │ │ │ ├── personal_safety.xml │ │ │ │ ├── personal_stickers_for_whatsapp.xml │ │ │ │ ├── personaldnsfilter.xml │ │ │ │ ├── petal.xml │ │ │ │ ├── petal_maps.xml │ │ │ │ ├── petal_speed.xml │ │ │ │ ├── petrolprices.xml │ │ │ │ ├── pexels.xml │ │ │ │ ├── ph_diver.xml │ │ │ │ ├── phantom.xml │ │ │ │ ├── phantom_dark_icons.xml │ │ │ │ ├── phantom_white_icons.xml │ │ │ │ ├── pharmeasy.xml │ │ │ │ ├── phase6_german_vocabulary.xml │ │ │ │ ├── phigros.xml │ │ │ │ ├── philips_smart_tv.xml │ │ │ │ ├── phillips_hue.xml │ │ │ │ ├── phoenix.xml │ │ │ │ ├── phone_battery_complication.xml │ │ │ │ ├── phone_clone.xml │ │ │ │ ├── phone_manager.xml │ │ │ │ ├── phone_master.xml │ │ │ │ ├── phonepe.xml │ │ │ │ ├── phonetrack.xml │ │ │ │ ├── phonewalls.xml │ │ │ │ ├── phonograph_music_player.xml │ │ │ │ ├── photo_compare.xml │ │ │ │ ├── photo_editor.xml │ │ │ │ ├── photo_editor_pro.xml │ │ │ │ ├── photo_id.xml │ │ │ │ ├── photo_picture_resizer.xml │ │ │ │ ├── photo_widget_easy.xml │ │ │ │ ├── photok.xml │ │ │ │ ├── photolayers.xml │ │ │ │ ├── photomath.xml │ │ │ │ ├── photon_camera.xml │ │ │ │ ├── photopills.xml │ │ │ │ ├── photoroom.xml │ │ │ │ ├── photoscan.xml │ │ │ │ ├── photoshop_camera.xml │ │ │ │ ├── photoshop_express.xml │ │ │ │ ├── photoshot.xml │ │ │ │ ├── phototune.xml │ │ │ │ ├── phub.xml │ │ │ │ ├── phyphox.xml │ │ │ │ ├── physics_wallah.xml │ │ │ │ ├── pi_browser.xml │ │ │ │ ├── pi_network.xml │ │ │ │ ├── piano.xml │ │ │ │ ├── piccollage.xml │ │ │ │ ├── pick.xml │ │ │ │ ├── pickme.xml │ │ │ │ ├── picpay.xml │ │ │ │ ├── picsart.xml │ │ │ │ ├── picsart_color.xml │ │ │ │ ├── picsay_pro.xml │ │ │ │ ├── picto.xml │ │ │ │ ├── picturethis.xml │ │ │ │ ├── picwish.xml │ │ │ │ ├── piecons_icons.xml │ │ │ │ ├── pigments.xml │ │ │ │ ├── pikabu.xml │ │ │ │ ├── pikashow.xml │ │ │ │ ├── pikmin_bloom.xml │ │ │ │ ├── pikpak.xml │ │ │ │ ├── piktures.xml │ │ │ │ ├── pilipala.xml │ │ │ │ ├── pillars.xml │ │ │ │ ├── pincredible.xml │ │ │ │ ├── pinduoduo.xml │ │ │ │ ├── pingid.xml │ │ │ │ ├── pingodoce.xml │ │ │ │ ├── pingtools_network_utilities.xml │ │ │ │ ├── pinned_shortcuts.xml │ │ │ │ ├── pinnit.xml │ │ │ │ ├── pinterest.xml │ │ │ │ ├── pinterest_lite.xml │ │ │ │ ├── pintu.xml │ │ │ │ ├── pionex.xml │ │ │ │ ├── pipepipe.xml │ │ │ │ ├── pix_material_icons.xml │ │ │ │ ├── pix_material_you_dark_and_light_icons.xml │ │ │ │ ├── pix_material_you_icons.xml │ │ │ │ ├── pix_parcelado_cartao_credito.xml │ │ │ │ ├── pix_pie_icons.xml │ │ │ │ ├── pix_you_dark_icons.xml │ │ │ │ ├── pixapencil.xml │ │ │ │ ├── pixel_brush.xml │ │ │ │ ├── pixel_clock_widgets.xml │ │ │ │ ├── pixel_gun_3d.xml │ │ │ │ ├── pixel_icons.xml │ │ │ │ ├── pixel_ims.xml │ │ │ │ ├── pixel_launcher.xml │ │ │ │ ├── pixel_mods.xml │ │ │ │ ├── pixel_screenshots.xml │ │ │ │ ├── pixel_search.xml │ │ │ │ ├── pixel_station.xml │ │ │ │ ├── pixel_studio.xml │ │ │ │ ├── pixel_thermometer.xml │ │ │ │ ├── pixel_tips.xml │ │ │ │ ├── pixel_tuner.xml │ │ │ │ ├── pixel_wallpapers.xml │ │ │ │ ├── pixel_wheels.xml │ │ │ │ ├── pixel_xpert.xml │ │ │ │ ├── pixelcut.xml │ │ │ │ ├── pixeldroid.xml │ │ │ │ ├── pixelfed.xml │ │ │ │ ├── pixelful_icons.xml │ │ │ │ ├── pixelify_gphotos.xml │ │ │ │ ├── pixellab.xml │ │ │ │ ├── pixels.xml │ │ │ │ ├── pixels_icons.xml │ │ │ │ ├── pixels_journaling.xml │ │ │ │ ├── pixez.xml │ │ │ │ ├── pixiv.xml │ │ │ │ ├── pixolor.xml │ │ │ │ ├── pixtica.xml │ │ │ │ ├── pizza_hut.xml │ │ │ │ ├── pkp_intercity.xml │ │ │ │ ├── pl_mods.xml │ │ │ │ ├── placetel_phone.xml │ │ │ │ ├── plague_inc.xml │ │ │ │ ├── plain_upnp.xml │ │ │ │ ├── plainapp.xml │ │ │ │ ├── plane_finder.xml │ │ │ │ ├── planet.xml │ │ │ │ ├── planet_vpn.xml │ │ │ │ ├── planity.xml │ │ │ │ ├── plantnet.xml │ │ │ │ ├── plants_vs_zombies.xml │ │ │ │ ├── plants_vs_zombies_2.xml │ │ │ │ ├── plato.xml │ │ │ │ ├── play24.xml │ │ │ │ ├── play_integrity_api_checker.xml │ │ │ │ ├── play_now.xml │ │ │ │ ├── playhub.xml │ │ │ │ ├── playit.xml │ │ │ │ ├── playstation.xml │ │ │ │ ├── playstation_remote_play.xml │ │ │ │ ├── playsuisse.xml │ │ │ │ ├── playtomic.xml │ │ │ │ ├── pleco.xml │ │ │ │ ├── plees_tracker.xml │ │ │ │ ├── plex.xml │ │ │ │ ├── plex_dash.xml │ │ │ │ ├── plexamp.xml │ │ │ │ ├── plexus.xml │ │ │ │ ├── pluang.xml │ │ │ │ ├── plugin_voicegpt.xml │ │ │ │ ├── plum.xml │ │ │ │ ├── pluma.xml │ │ │ │ ├── plume_labs.xml │ │ │ │ ├── plus_messenger.xml │ │ │ │ ├── pluspoints.xml │ │ │ │ ├── pluto_tv.xml │ │ │ │ ├── pluvia.xml │ │ │ │ ├── pluxee.xml │ │ │ │ ├── pnb_one.xml │ │ │ │ ├── pnc.xml │ │ │ │ ├── pocket.xml │ │ │ │ ├── pocket_casts.xml │ │ │ │ ├── pocket_city.xml │ │ │ │ ├── pocket_farm.xml │ │ │ │ ├── pocket_fm.xml │ │ │ │ ├── pocket_love.xml │ │ │ │ ├── pocket_mal.xml │ │ │ │ ├── pocket_mathematics.xml │ │ │ │ ├── pocket_operator_for_pixel.xml │ │ │ │ ├── pocket_paint.xml │ │ │ │ ├── pocket_planes.xml │ │ │ │ ├── pocketbook.xml │ │ │ │ ├── poco_launcher.xml │ │ │ │ ├── podcast_addict.xml │ │ │ │ ├── podcast_republic.xml │ │ │ │ ├── podsbattery.xml │ │ │ │ ├── podverse.xml │ │ │ │ ├── poe.xml │ │ │ │ ├── pojavlauncher.xml │ │ │ │ ├── poke_genie.xml │ │ │ │ ├── pokecardex.xml │ │ │ │ ├── pokekara.xml │ │ │ │ ├── pokemmo.xml │ │ │ │ ├── pokemon_go.xml │ │ │ │ ├── pokemon_home.xml │ │ │ │ ├── pokemon_tcg_live.xml │ │ │ │ ├── pokemon_tcg_pocket.xml │ │ │ │ ├── pokemon_unite.xml │ │ │ │ ├── pokerstars.xml │ │ │ │ ├── polaris.xml │ │ │ │ ├── polarr.xml │ │ │ │ ├── policybazaar.xml │ │ │ │ ├── polregio.xml │ │ │ │ ├── polybuzz.xml │ │ │ │ ├── polycam.xml │ │ │ │ ├── polytone.xml │ │ │ │ ├── pomodo.xml │ │ │ │ ├── pomodoro.xml │ │ │ │ ├── pons_translate.xml │ │ │ │ ├── popup_widget.xml │ │ │ │ ├── popwalls.xml │ │ │ │ ├── popwalls_new.xml │ │ │ │ ├── port_authority.xml │ │ │ │ ├── portal_pasazera.xml │ │ │ │ ├── portdroid.xml │ │ │ │ ├── porto.xml │ │ │ │ ├── poshmark.xml │ │ │ │ ├── postcard_creator.xml │ │ │ │ ├── poste_italiane.xml │ │ │ │ ├── posteid.xml │ │ │ │ ├── posten.xml │ │ │ │ ├── postepay.xml │ │ │ │ ├── postfinance_twint.xml │ │ │ │ ├── postnord.xml │ │ │ │ ├── postparty.xml │ │ │ │ ├── pou.xml │ │ │ │ ├── power.xml │ │ │ │ ├── power_apps.xml │ │ │ │ ├── power_automate.xml │ │ │ │ ├── power_marathon.xml │ │ │ │ ├── power_vpn.xml │ │ │ │ ├── poweramp_equalizer.xml │ │ │ │ ├── poweramp_full_unlocker.xml │ │ │ │ ├── powerdirector.xml │ │ │ │ ├── powerschool.xml │ │ │ │ ├── powertube.xml │ │ │ │ ├── powertunnel.xml │ │ │ │ ├── ppiicc.xml │ │ │ │ ├── ppsspp.xml │ │ │ │ ├── prayer_times.xml │ │ │ │ ├── precise_volume.xml │ │ │ │ ├── premier_league.xml │ │ │ │ ├── premiere.xml │ │ │ │ ├── premise.xml │ │ │ │ ├── prequel.xml │ │ │ │ ├── presets_for_lightroom.xml │ │ │ │ ├── price_history.xml │ │ │ │ ├── pricerunner.xml │ │ │ │ ├── pricespy.xml │ │ │ │ ├── primer.xml │ │ │ │ ├── princh.xml │ │ │ │ ├── printer.xml │ │ │ │ ├── printeron.xml │ │ │ │ ├── pripara.xml │ │ │ │ ├── prism_net_mobile_vivo.xml │ │ │ │ ├── prisma3d.xml │ │ │ │ ├── prison_empire_tycoon.xml │ │ │ │ ├── privacy_browser.xml │ │ │ │ ├── privacy_dashboard.xml │ │ │ │ ├── privacyblur.xml │ │ │ │ ├── privadovpn.xml │ │ │ │ ├── privat24.xml │ │ │ │ ├── private_dns_quick_toggle.xml │ │ │ │ ├── private_internet_access_vpn.xml │ │ │ │ ├── private_location.xml │ │ │ │ ├── privy.xml │ │ │ │ ├── procam_x.xml │ │ │ │ ├── procare.xml │ │ │ │ ├── proddy.xml │ │ │ │ ├── productive.xml │ │ │ │ ├── profi.xml │ │ │ │ ├── prognoza.xml │ │ │ │ ├── programming_hub.xml │ │ │ │ ├── progressbar95.xml │ │ │ │ ├── progressive.xml │ │ │ │ ├── project_themer.xml │ │ │ │ ├── pronote.xml │ │ │ │ ├── proshot.xml │ │ │ │ ├── proto.xml │ │ │ │ ├── proton_calendar.xml │ │ │ │ ├── proton_drive.xml │ │ │ │ ├── proton_mail.xml │ │ │ │ ├── proton_pass.xml │ │ │ │ ├── proton_vpn.xml │ │ │ │ ├── proton_wallet.xml │ │ │ │ ├── providers.xml │ │ │ │ ├── proxmox.xml │ │ │ │ ├── psiphon.xml │ │ │ │ ├── psono.xml │ │ │ │ ├── pttavm.xml │ │ │ │ ├── ptv.xml │ │ │ │ ├── pu.xml │ │ │ │ ├── pubg.xml │ │ │ │ ├── publix_delivery.xml │ │ │ │ ├── publix_pharmacy.xml │ │ │ │ ├── puhutv.xml │ │ │ │ ├── pulsar_music_player.xml │ │ │ │ ├── pulse.xml │ │ │ │ ├── pulse_music.xml │ │ │ │ ├── pulse_sms.xml │ │ │ │ ├── puma.xml │ │ │ │ ├── punto.xml │ │ │ │ ├── pupil.xml │ │ │ │ ├── purchased_apps.xml │ │ │ │ ├── pure_tuber.xml │ │ │ │ ├── pure_web_browser.xml │ │ │ │ ├── purelive.xml │ │ │ │ ├── purple_tv.xml │ │ │ │ ├── pushbullet.xml │ │ │ │ ├── pvr_cinemas.xml │ │ │ │ ├── pxpay.xml │ │ │ │ ├── pyaterochka.xml │ │ │ │ ├── pydroid.xml │ │ │ │ ├── pyypl.xml │ │ │ │ ├── qanda.xml │ │ │ │ ├── qantas.xml │ │ │ │ ├── qauxiliary.xml │ │ │ │ ├── qbitcontroller.xml │ │ │ │ ├── qbittorrent_manager.xml │ │ │ │ ├── qbittorrent_remote.xml │ │ │ │ ├── qcy.xml │ │ │ │ ├── qianji.xml │ │ │ │ ├── qibla_compass.xml │ │ │ │ ├── qingzhuo.xml │ │ │ │ ├── qiwi.xml │ │ │ │ ├── qksms.xml │ │ │ │ ├── qnb.xml │ │ │ │ ├── qobuz.xml │ │ │ │ ├── qooapp.xml │ │ │ │ ├── qoqa.xml │ │ │ │ ├── qq.xml │ │ │ │ ├── qqmail.xml │ │ │ │ ├── qqmusic.xml │ │ │ │ ├── qr_droid.xml │ │ │ │ ├── qr_reader.xml │ │ │ │ ├── qr_scanner.xml │ │ │ │ ├── qralarm.xml │ │ │ │ ├── qrky.xml │ │ │ │ ├── qrserv.xml │ │ │ │ ├── qua_tang_vip.xml │ │ │ │ ├── quacker.xml │ │ │ │ ├── quark.xml │ │ │ │ ├── qubo.xml │ │ │ │ ├── quebec_511.xml │ │ │ │ ├── quero_delivery.xml │ │ │ │ ├── question_ai.xml │ │ │ │ ├── questmobile.xml │ │ │ │ ├── quetta.xml │ │ │ │ ├── quick_calculation.xml │ │ │ │ ├── quick_cursor.xml │ │ │ │ ├── quick_measure.xml │ │ │ │ ├── quick_novel.xml │ │ │ │ ├── quick_settings.xml │ │ │ │ ├── quick_tiles.xml │ │ │ │ ├── quickedit.xml │ │ │ │ ├── quickpic.xml │ │ │ │ ├── quickshortcutmaker.xml │ │ │ │ ├── quickswitch.xml │ │ │ │ ├── quicktouch.xml │ │ │ │ ├── quickvpn.xml │ │ │ │ ├── quikr.xml │ │ │ │ ├── quikshort.xml │ │ │ │ ├── quillnote.xml │ │ │ │ ├── quillpad.xml │ │ │ │ ├── quinyx.xml │ │ │ │ ├── quitzilla.xml │ │ │ │ ├── quiz_house.xml │ │ │ │ ├── quizduel.xml │ │ │ │ ├── quizizz.xml │ │ │ │ ├── quizlet.xml │ │ │ │ ├── quora.xml │ │ │ │ ├── quote_unquote.xml │ │ │ │ ├── quotex.xml │ │ │ │ ├── quran.xml │ │ │ │ ├── quranly.xml │ │ │ │ ├── rabby_wallet.xml │ │ │ │ ├── rabo_wallet.xml │ │ │ │ ├── rabobank.xml │ │ │ │ ├── radarbot.xml │ │ │ │ ├── radio_bob.xml │ │ │ │ ├── radio_garden.xml │ │ │ │ ├── radiodroid.xml │ │ │ │ ├── radioplay.xml │ │ │ │ ├── radioplayer.xml │ │ │ │ ├── radiosnet.xml │ │ │ │ ├── rahat_market.xml │ │ │ │ ├── raiffeisen_bank.xml │ │ │ │ ├── raiffeisen_e_banking.xml │ │ │ │ ├── raiffeisen_phototan.xml │ │ │ │ ├── raiffeisen_twint.xml │ │ │ │ ├── railbound.xml │ │ │ │ ├── railcard.xml │ │ │ │ ├── railway_12306.xml │ │ │ │ ├── railways_train_simulator.xml │ │ │ │ ├── rain.xml │ │ │ │ ├── raindrop.xml │ │ │ │ ├── rainviewer.xml │ │ │ │ ├── raiplay.xml │ │ │ │ ├── ram_memory_monitor.xml │ │ │ │ ├── ramble.xml │ │ │ │ ├── random_dice_defense.xml │ │ │ │ ├── random_number_generator.xml │ │ │ │ ├── randomix.xml │ │ │ │ ├── rapido.xml │ │ │ │ ├── rappi.xml │ │ │ │ ├── rar.xml │ │ │ │ ├── ratio.xml │ │ │ │ ├── rave.xml │ │ │ │ ├── raven.xml │ │ │ │ ├── rays.xml │ │ │ │ ├── razer_audio.xml │ │ │ │ ├── rboard_patcher.xml │ │ │ │ ├── rboard_theme_creator.xml │ │ │ │ ├── rboard_theme_manager.xml │ │ │ │ ├── rcx.xml │ │ │ │ ├── read_chan.xml │ │ │ │ ├── read_era.xml │ │ │ │ ├── read_era_premium.xml │ │ │ │ ├── read_you.xml │ │ │ │ ├── reader.xml │ │ │ │ ├── readfriend_lite.xml │ │ │ │ ├── reading_mode.xml │ │ │ │ ├── readwise.xml │ │ │ │ ├── ready_for.xml │ │ │ │ ├── ready_for_reddit.xml │ │ │ │ ├── real_racing_3.xml │ │ │ │ ├── realcalc.xml │ │ │ │ ├── realityscan.xml │ │ │ │ ├── really_bad_chess.xml │ │ │ │ ├── realme_community.xml │ │ │ │ ├── realme_link.xml │ │ │ │ ├── realme_store.xml │ │ │ │ ├── realsr.xml │ │ │ │ ├── realvnc_viewer.xml │ │ │ │ ├── rebel_racing.xml │ │ │ │ ├── rec_room.xml │ │ │ │ ├── recharge_rc.xml │ │ │ │ ├── record_you.xml │ │ │ │ ├── recorder.xml │ │ │ │ ├── recorderro.xml │ │ │ │ ├── recurrence.xml │ │ │ │ ├── recurring_expense_tracker.xml │ │ │ │ ├── red_and_moi.xml │ │ │ │ ├── red_bus_tucuman.xml │ │ │ │ ├── red_moon.xml │ │ │ │ ├── redact.xml │ │ │ │ ├── redbox.xml │ │ │ │ ├── redbubble.xml │ │ │ │ ├── redbus.xml │ │ │ │ ├── reddit.xml │ │ │ │ ├── reddit_is_fun.xml │ │ │ │ ├── redface.xml │ │ │ │ ├── redmerah_notes.xml │ │ │ │ ├── redotpay.xml │ │ │ │ ├── redox_icons.xml │ │ │ │ ├── redreader.xml │ │ │ │ ├── redtulum.xml │ │ │ │ ├── reebee.xml │ │ │ │ ├── reev_chroma_icons.xml │ │ │ │ ├── reev_dark_icons.xml │ │ │ │ ├── reev_pro_icons.xml │ │ │ │ ├── refind.xml │ │ │ │ ├── regain.xml │ │ │ │ ├── regal.xml │ │ │ │ ├── regenradar.xml │ │ │ │ ├── regio_guide.xml │ │ │ │ ├── reigns.xml │ │ │ │ ├── rejseplanen.xml │ │ │ │ ├── rekado.xml │ │ │ │ ├── relay.xml │ │ │ │ ├── relive.xml │ │ │ │ ├── remind_school_communication.xml │ │ │ │ ├── reminder_pro.xml │ │ │ │ ├── remini.xml │ │ │ │ ├── remote.xml │ │ │ │ ├── remote_control_for_tv.xml │ │ │ │ ├── remote_desktop_manager.xml │ │ │ │ ├── remote_for_android_tv.xml │ │ │ │ ├── remote_link.xml │ │ │ │ ├── remote_mouse.xml │ │ │ │ ├── remove_bg.xml │ │ │ │ ├── renaissance_health.xml │ │ │ │ ├── renderz.xml │ │ │ │ ├── renoir.xml │ │ │ │ ├── renpho.xml │ │ │ │ ├── renpho_health.xml │ │ │ │ ├── renshuu.xml │ │ │ │ ├── rentbrella.xml │ │ │ │ ├── rentcafe_resident.xml │ │ │ │ ├── reolink.xml │ │ │ │ ├── repainter.xml │ │ │ │ ├── replika.xml │ │ │ │ ├── replit.xml │ │ │ │ ├── repont.xml │ │ │ │ ├── republik.xml │ │ │ │ ├── rescue_time.xml │ │ │ │ ├── resilio_sync.xml │ │ │ │ ├── resolution_changer.xml │ │ │ │ ├── resplash.xml │ │ │ │ ├── resso_music.xml │ │ │ │ ├── rest_icons.xml │ │ │ │ ├── rethink.xml │ │ │ │ ├── retrica.xml │ │ │ │ ├── retro_music.xml │ │ │ │ ├── retroarch.xml │ │ │ │ ├── revanced_extended.xml │ │ │ │ ├── revenge_manager.xml │ │ │ │ ├── reverse_1999.xml │ │ │ │ ├── reverse_image_search.xml │ │ │ │ ├── reverso_context.xml │ │ │ │ ├── revo_shine_icons.xml │ │ │ │ ├── revolt.xml │ │ │ │ ├── revolut.xml │ │ │ │ ├── revolut_under_18.xml │ │ │ │ ├── revolution_irc.xml │ │ │ │ ├── rewe.xml │ │ │ │ ├── rewind.xml │ │ │ │ ├── rhvoice.xml │ │ │ │ ├── rider_ketchapp.xml │ │ │ │ ├── ridmik_keyboard.xml │ │ │ │ ├── ridmik_news.xml │ │ │ │ ├── right_contacts.xml │ │ │ │ ├── right_gallery.xml │ │ │ │ ├── right_messages.xml │ │ │ │ ├── rightmove.xml │ │ │ │ ├── rightnow_media.xml │ │ │ │ ├── rimi.xml │ │ │ │ ├── rimusic.xml │ │ │ │ ├── ring.xml │ │ │ │ ├── ringtone_maker.xml │ │ │ │ ├── riot.xml │ │ │ │ ├── ripio.xml │ │ │ │ ├── ripple.xml │ │ │ │ ├── rise_of_kingdoms_lost_crusade.xml │ │ │ │ ├── rise_up_balloon_game.xml │ │ │ │ ├── riseupvpn.xml │ │ │ │ ├── rizline.xml │ │ │ │ ├── rizline_cn.xml │ │ │ │ ├── rmvgo.xml │ │ │ │ ├── rnv_start_info.xml │ │ │ │ ├── robinhood.xml │ │ │ │ ├── roblox.xml │ │ │ │ ├── roborock.xml │ │ │ │ ├── rock_am_ring.xml │ │ │ │ ├── rocket.xml │ │ │ │ ├── rocket_arena_car_extreme.xml │ │ │ │ ├── rocket_chat.xml │ │ │ │ ├── rocket_league.xml │ │ │ │ ├── rocket_star.xml │ │ │ │ ├── rocketbook.xml │ │ │ │ ├── rocketeng.xml │ │ │ │ ├── roku.xml │ │ │ │ ├── roll_twenty.xml │ │ │ │ ├── rome2rio.xml │ │ │ │ ├── ronin_wallet.xml │ │ │ │ ├── root_browser.xml │ │ │ │ ├── root_checker.xml │ │ │ │ ├── root_explorer.xml │ │ │ │ ├── rootactivitylauncher.xml │ │ │ │ ├── rootless_james_dsp.xml │ │ │ │ ├── rootuninstaller.xml │ │ │ │ ├── rostelecom.xml │ │ │ │ ├── rotaeno.xml │ │ │ │ ├── rotation.xml │ │ │ │ ├── rotation_control.xml │ │ │ │ ├── roto_force.xml │ │ │ │ ├── round_sync.xml │ │ │ │ ├── routine_tracker.xml │ │ │ │ ├── rovio_classics.xml │ │ │ │ ├── rozklad_pkp.xml │ │ │ │ ├── rrb_je.xml │ │ │ │ ├── rtl.xml │ │ │ │ ├── ruler.xml │ │ │ │ ├── ruler_app.xml │ │ │ │ ├── rumble.xml │ │ │ │ ├── ruppu.xml │ │ │ │ ├── rush.xml │ │ │ │ ├── rush_rally_3_demo.xml │ │ │ │ ├── rush_rally_origins_demo.xml │ │ │ │ ├── ruslin_notes.xml │ │ │ │ ├── russia_vpn.xml │ │ │ │ ├── russian_language_quiz.xml │ │ │ │ ├── russian_post.xml │ │ │ │ ├── russian_railways.xml │ │ │ │ ├── russian_spelling.xml │ │ │ │ ├── rustdesk.xml │ │ │ │ ├── rustore.xml │ │ │ │ ├── ruter.xml │ │ │ │ ├── ruthless_launcher.xml │ │ │ │ ├── rutube.xml │ │ │ │ ├── rvk.xml │ │ │ │ ├── rvx_manager.xml │ │ │ │ ├── rxlocal.xml │ │ │ │ ├── ryanair.xml │ │ │ │ ├── s_idcheck.xml │ │ │ │ ├── s_invest.xml │ │ │ │ ├── s_miles_installer.xml │ │ │ │ ├── s_pushtan.xml │ │ │ │ ├── s_safe.xml │ │ │ │ ├── s_secure.xml │ │ │ │ ├── saber.xml │ │ │ │ ├── sadapay.xml │ │ │ │ ├── safe_headphones.xml │ │ │ │ ├── safeboda.xml │ │ │ │ ├── safeincloud.xml │ │ │ │ ├── safetynet.xml │ │ │ │ ├── safeway.xml │ │ │ │ ├── sahibinden.xml │ │ │ │ ├── sahl.xml │ │ │ │ ├── sai.xml │ │ │ │ ├── saikou.xml │ │ │ │ ├── sainsburys.xml │ │ │ │ ├── salat.xml │ │ │ │ ├── salatuk.xml │ │ │ │ ├── salesforce.xml │ │ │ │ ├── salt_player.xml │ │ │ │ ├── sam_helper.xml │ │ │ │ ├── samokat.xml │ │ │ │ ├── sams_club.xml │ │ │ │ ├── samsung_ar_zone.xml │ │ │ │ ├── samsung_assistant.xml │ │ │ │ ├── samsung_battery_guardian.xml │ │ │ │ ├── samsung_bixby_vision.xml │ │ │ │ ├── samsung_blockchain_wallet.xml │ │ │ │ ├── samsung_cloud.xml │ │ │ │ ├── samsung_contacts.xml │ │ │ │ ├── samsung_digital_wellbeing.xml │ │ │ │ ├── samsung_dropship.xml │ │ │ │ ├── samsung_edgelighting.xml │ │ │ │ ├── samsung_edgetouch.xml │ │ │ │ ├── samsung_expert_raw.xml │ │ │ │ ├── samsung_find.xml │ │ │ │ ├── samsung_finder.xml │ │ │ │ ├── samsung_flow.xml │ │ │ │ ├── samsung_food.xml │ │ │ │ ├── samsung_game_launcher.xml │ │ │ │ ├── samsung_game_plugins.xml │ │ │ │ ├── samsung_global_goals.xml │ │ │ │ ├── samsung_good_guardians.xml │ │ │ │ ├── samsung_good_lock.xml │ │ │ │ ├── samsung_health.xml │ │ │ │ ├── samsung_health_monitor.xml │ │ │ │ ├── samsung_health_platform.xml │ │ │ │ ├── samsung_home_up.xml │ │ │ │ ├── samsung_internet_browser.xml │ │ │ │ ├── samsung_internet_browser_beta.xml │ │ │ │ ├── samsung_interpreter.xml │ │ │ │ ├── samsung_itau.xml │ │ │ │ ├── samsung_keys_cafe.xml │ │ │ │ ├── samsung_kids.xml │ │ │ │ ├── samsung_link_sharing.xml │ │ │ │ ├── samsung_max.xml │ │ │ │ ├── samsung_media_and_devices.xml │ │ │ │ ├── samsung_members.xml │ │ │ │ ├── samsung_music.xml │ │ │ │ ├── samsung_nice_catch.xml │ │ │ │ ├── samsung_notes.xml │ │ │ │ ├── samsung_notistar.xml │ │ │ │ ├── samsung_o.xml │ │ │ │ ├── samsung_pass.xml │ │ │ │ ├── samsung_pay_mini.xml │ │ │ │ ├── samsung_private_share.xml │ │ │ │ ├── samsung_quick_share.xml │ │ │ │ ├── samsung_reminder.xml │ │ │ │ ├── samsung_routines.xml │ │ │ │ ├── samsung_routines_plus.xml │ │ │ │ ├── samsung_secure_folder.xml │ │ │ │ ├── samsung_secure_wi_fi.xml │ │ │ │ ├── samsung_shop.xml │ │ │ │ ├── samsung_smart_switch.xml │ │ │ │ ├── samsung_sound_assistant.xml │ │ │ │ ├── samsung_studio.xml │ │ │ │ ├── samsung_theme_park.xml │ │ │ │ ├── samsung_tips.xml │ │ │ │ ├── samsung_tv_plus.xml │ │ │ │ ├── samsung_user_manual.xml │ │ │ │ ├── samsung_video_library.xml │ │ │ │ ├── samsung_video_player.xml │ │ │ │ ├── samsung_visual_voicemail.xml │ │ │ │ ├── samsung_wallet.xml │ │ │ │ ├── samsung_weather.xml │ │ │ │ ├── samsung_wonderland.xml │ │ │ │ ├── samulas.xml │ │ │ │ ├── sand_box.xml │ │ │ │ ├── sandwich.xml │ │ │ │ ├── santander.xml │ │ │ │ ├── saq.xml │ │ │ │ ├── satellite.xml │ │ │ │ ├── satispay.xml │ │ │ │ ├── satoshi.xml │ │ │ │ ├── satstat.xml │ │ │ │ ├── saturate_icons.xml │ │ │ │ ├── satusehat.xml │ │ │ │ ├── saucenao.xml │ │ │ │ ├── save_locally.xml │ │ │ │ ├── save_twitter_video.xml │ │ │ │ ├── savee.xml │ │ │ │ ├── savefrom_helper.xml │ │ │ │ ├── savertuner.xml │ │ │ │ ├── sayboard.xml │ │ │ │ ├── sbb.xml │ │ │ │ ├── sberbank.xml │ │ │ │ ├── sberinvestments.xml │ │ │ │ ├── sbi_card.xml │ │ │ │ ├── sbi_mutual_fund.xml │ │ │ │ ├── sbi_rewardz.xml │ │ │ │ ├── sc_india.xml │ │ │ │ ├── scalable_capital.xml │ │ │ │ ├── scamshield.xml │ │ │ │ ├── scan_mypeugeot.xml │ │ │ │ ├── scann3d.xml │ │ │ │ ├── scanner.xml │ │ │ │ ├── scanner_for_coronacheck.xml │ │ │ │ ├── scarlet.xml │ │ │ │ ├── scb_easy.xml │ │ │ │ ├── scene5.xml │ │ │ │ ├── scene_plus.xml │ │ │ │ ├── schildichat.xml │ │ │ │ ├── schoolfox.xml │ │ │ │ ├── schoology.xml │ │ │ │ ├── schoolplanner.xml │ │ │ │ ├── schoolsoft.xml │ │ │ │ ├── schulmanager.xml │ │ │ │ ├── schulplaner.xml │ │ │ │ ├── scientific_calculator_plus_991.xml │ │ │ │ ├── scoop.xml │ │ │ │ ├── scooterhacking_utility.xml │ │ │ │ ├── score_counter.xml │ │ │ │ ├── score_hero.xml │ │ │ │ ├── scotiabank.xml │ │ │ │ ├── scrambled_exif.xml │ │ │ │ ├── scrcpy.xml │ │ │ │ ├── screen_check.xml │ │ │ │ ├── screen_dimmer.xml │ │ │ │ ├── screen_orientation_control.xml │ │ │ │ ├── screen_recorder.xml │ │ │ │ ├── screen_recorder_naveensingh.xml │ │ │ │ ├── screen_recorder_video_recorder.xml │ │ │ │ ├── screen_time.xml │ │ │ │ ├── screen_time_stayfree.xml │ │ │ │ ├── screencam.xml │ │ │ │ ├── screener.xml │ │ │ │ ├── screenmaster.xml │ │ │ │ ├── screeno.xml │ │ │ │ ├── screenshot_flow.xml │ │ │ │ ├── screenshot_tile_noroot.xml │ │ │ │ ├── screenstream.xml │ │ │ │ ├── scruff.xml │ │ │ │ ├── scummvm.xml │ │ │ │ ├── sd_maid.xml │ │ │ │ ├── sd_maid_1_pro.xml │ │ │ │ ├── sd_maid_se.xml │ │ │ │ ├── sdui.xml │ │ │ │ ├── seabank.xml │ │ │ │ ├── seal.xml │ │ │ │ ├── search_widget_material_you.xml │ │ │ │ ├── secret_settings.xml │ │ │ │ ├── secscanqr.xml │ │ │ │ ├── sectograph.xml │ │ │ │ ├── secure_file_manager.xml │ │ │ │ ├── secure_folder.xml │ │ │ │ ├── secure_vpn.xml │ │ │ │ ├── securego_plus.xml │ │ │ │ ├── seedvault.xml │ │ │ │ ├── seek_by_inaturalist.xml │ │ │ │ ├── seeker.xml │ │ │ │ ├── seesaw.xml │ │ │ │ ├── seestar.xml │ │ │ │ ├── seguimientoescolar.xml │ │ │ │ ├── sehhaty.xml │ │ │ │ ├── self_attendance.xml │ │ │ │ ├── send_anywhere.xml │ │ │ │ ├── send_files_to_tv.xml │ │ │ │ ├── sendit.xml │ │ │ │ ├── sengled_home.xml │ │ │ │ ├── sennheiser_smart_control.xml │ │ │ │ ├── senreta.xml │ │ │ │ ├── sense.xml │ │ │ │ ├── sensibull.xml │ │ │ │ ├── sensor_box.xml │ │ │ │ ├── sensor_test.xml │ │ │ │ ├── seqta_learn.xml │ │ │ │ ├── serasa.xml │ │ │ │ ├── serializd.xml │ │ │ │ ├── seriesguide.xml │ │ │ │ ├── serverbox.xml │ │ │ │ ├── servicewa.xml │ │ │ │ ├── sesame.xml │ │ │ │ ├── session.xml │ │ │ │ ├── setanta_sports.xml │ │ │ │ ├── setedit.xml │ │ │ │ ├── setel.xml │ │ │ │ ├── seterra.xml │ │ │ │ ├── settings.xml │ │ │ │ ├── settle_up.xml │ │ │ │ ├── setupvpn.xml │ │ │ │ ├── seven.xml │ │ │ │ ├── sfacg.xml │ │ │ │ ├── sgk.xml │ │ │ │ ├── sgkb_twint.xml │ │ │ │ ├── shadow_fight_2.xml │ │ │ │ ├── shadow_fight_4_arena.xml │ │ │ │ ├── shadowsocks.xml │ │ │ │ ├── shahid.xml │ │ │ │ ├── share.xml │ │ │ │ ├── share_me.xml │ │ │ │ ├── share_now.xml │ │ │ │ ├── sharechat.xml │ │ │ │ ├── shareit.xml │ │ │ │ ├── shattered_pixel_dungeon.xml │ │ │ │ ├── shazam.xml │ │ │ │ ├── shein.xml │ │ │ │ ├── shelf.xml │ │ │ │ ├── shelly_cloud.xml │ │ │ │ ├── shelter.xml │ │ │ │ ├── shikimori.xml │ │ │ │ ├── shiori.xml │ │ │ │ ├── shizuku.xml │ │ │ │ ├── shm_mod.xml │ │ │ │ ├── shokz.xml │ │ │ │ ├── shopback.xml │ │ │ │ ├── shopee.xml │ │ │ │ ├── shopeepay.xml │ │ │ │ ├── shopify_shop.xml │ │ │ │ ├── shopping_list.xml │ │ │ │ ├── shopsy.xml │ │ │ │ ├── shortcut_creator.xml │ │ │ │ ├── shortcut_maker.xml │ │ │ │ ├── shortcuts_widget.xml │ │ │ │ ├── shosetsu.xml │ │ │ │ ├── show_youtube_dislikes.xml │ │ │ │ ├── showly.xml │ │ │ │ ├── shpock.xml │ │ │ │ ├── shuffles_by_pinterest.xml │ │ │ │ ├── siddhartha_banksmart_xp.xml │ │ │ │ ├── sidequest.xml │ │ │ │ ├── signal.xml │ │ │ │ ├── signal_detector.xml │ │ │ │ ├── signal_generator.xml │ │ │ │ ├── silence.xml │ │ │ │ ├── silence_sms.xml │ │ │ │ ├── sim_cell_info.xml │ │ │ │ ├── sim_toolkit.xml │ │ │ │ ├── simon_tathams_puzzles.xml │ │ │ │ ├── simons.xml │ │ │ │ ├── simosa.xml │ │ │ │ ├── simpl.xml │ │ │ │ ├── simple_calculator.xml │ │ │ │ ├── simple_calendar.xml │ │ │ │ ├── simple_clipboard_editor.xml │ │ │ │ ├── simple_gallery.xml │ │ │ │ ├── simple_keyboard.xml │ │ │ │ ├── simple_login.xml │ │ │ │ ├── simple_notes.xml │ │ │ │ ├── simple_photo_widget.xml │ │ │ │ ├── simple_radio.xml │ │ │ │ ├── simple_reboot.xml │ │ │ │ ├── simple_scan.xml │ │ │ │ ├── simple_social.xml │ │ │ │ ├── simple_time_tracker.xml │ │ │ │ ├── simple_view.xml │ │ │ │ ├── simple_weight_tracker.xml │ │ │ │ ├── simplenote.xml │ │ │ │ ├── simplereminder.xml │ │ │ │ ├── simplewear.xml │ │ │ │ ├── simplewear_settings.xml │ │ │ │ ├── simplex.xml │ │ │ │ ├── simplii.xml │ │ │ │ ├── simplisafe_home_security.xml │ │ │ │ ├── simply_bank.xml │ │ │ │ ├── simply_fi.xml │ │ │ │ ├── simply_wall_st.xml │ │ │ │ ├── simplytranslate.xml │ │ │ │ ├── simpmusic.xml │ │ │ │ ├── simsimi.xml │ │ │ │ ├── simyo.xml │ │ │ │ ├── sing_box.xml │ │ │ │ ├── singabus.xml │ │ │ │ ├── singpass.xml │ │ │ │ ├── sipnetic.xml │ │ │ │ ├── siriusxm.xml │ │ │ │ ├── sit_sync.xml │ │ │ │ ├── sits_intelligent_transport.xml │ │ │ │ ├── sked.xml │ │ │ │ ├── skedway.xml │ │ │ │ ├── sketchbook.xml │ │ │ │ ├── sketchbook_lite.xml │ │ │ │ ├── ski_tracks.xml │ │ │ │ ├── skiff_calendar.xml │ │ │ │ ├── skiff_drive.xml │ │ │ │ ├── skiff_mail.xml │ │ │ │ ├── skiff_pages.xml │ │ │ │ ├── skiline.xml │ │ │ │ ├── skillshare.xml │ │ │ │ ├── skip_ads.xml │ │ │ │ ├── skip_ads_youtube.xml │ │ │ │ ├── skiplagged.xml │ │ │ │ ├── skit.xml │ │ │ │ ├── skit_premium.xml │ │ │ │ ├── skred.xml │ │ │ │ ├── skroutz.xml │ │ │ │ ├── sky_children_of_the_light.xml │ │ │ │ ├── sky_map.xml │ │ │ │ ├── skycards.xml │ │ │ │ ├── skycash.xml │ │ │ │ ├── skyline.xml │ │ │ │ ├── skype.xml │ │ │ │ ├── skyscanner.xml │ │ │ │ ├── sl_google_bridge.xml │ │ │ │ ├── slack.xml │ │ │ │ ├── slay_the_spire.xml │ │ │ │ ├── sleep.xml │ │ │ │ ├── sleep_as_android.xml │ │ │ │ ├── sleep_cycle.xml │ │ │ │ ├── sleep_monitor.xml │ │ │ │ ├── sleep_routine.xml │ │ │ │ ├── sleep_time.xml │ │ │ │ ├── sleep_timer.xml │ │ │ │ ├── sleep_timer_turn_music_off.xml │ │ │ │ ├── sliceit.xml │ │ │ │ ├── slickdeals.xml │ │ │ │ ├── slide_reddit.xml │ │ │ │ ├── slidebox.xml │ │ │ │ ├── slideshow_wallpaper.xml │ │ │ │ ├── slitherio.xml │ │ │ │ ├── slowly.xml │ │ │ │ ├── small_cosmos.xml │ │ │ │ ├── small_monkey_search.xml │ │ │ │ ├── smallcase.xml │ │ │ │ ├── smart_audiobook_player.xml │ │ │ │ ├── smart_autoclicker.xml │ │ │ │ ├── smart_dom_ru.xml │ │ │ │ ├── smart_gigalife.xml │ │ │ │ ├── smart_home.xml │ │ │ │ ├── smart_home_manager.xml │ │ │ │ ├── smart_launcher.xml │ │ │ │ ├── smart_life.xml │ │ │ │ ├── smart_timetable.xml │ │ │ │ ├── smart_tutor.xml │ │ │ │ ├── smart_voice_recorder.xml │ │ │ │ ├── smartbank.xml │ │ │ │ ├── smartcaller.xml │ │ │ │ ├── smarthertz.xml │ │ │ │ ├── smartid.xml │ │ │ │ ├── smartpack_kernel_manager.xml │ │ │ │ ├── smartpack_package_manager.xml │ │ │ │ ├── smartspacer.xml │ │ │ │ ├── smartthings.xml │ │ │ │ ├── smarty.xml │ │ │ │ ├── smash.xml │ │ │ │ ├── smash_hit.xml │ │ │ │ ├── smashy_road_wanted_2.xml │ │ │ │ ├── smc.xml │ │ │ │ ├── sms_backup_and_restore.xml │ │ │ │ ├── sms_import_export.xml │ │ │ │ ├── sms_organizer.xml │ │ │ │ ├── smudgess.xml │ │ │ │ ├── smule.xml │ │ │ │ ├── snackvideo.xml │ │ │ │ ├── snake_vs_block.xml │ │ │ │ ├── snapchat.xml │ │ │ │ ├── snapdeal.xml │ │ │ │ ├── snapdrop.xml │ │ │ │ ├── snapedit.xml │ │ │ │ ├── snapenhance.xml │ │ │ │ ├── snapmod.xml │ │ │ │ ├── snapp.xml │ │ │ │ ├── snapseed.xml │ │ │ │ ├── snaptick.xml │ │ │ │ ├── snaptube.xml │ │ │ │ ├── snb_mobile.xml │ │ │ │ ├── sncf_connect.xml │ │ │ │ ├── snes9x_ex.xml │ │ │ │ ├── snipd.xml │ │ │ │ ├── sniper3d.xml │ │ │ │ ├── snitch.xml │ │ │ │ ├── snotz.xml │ │ │ │ ├── snow.xml │ │ │ │ ├── sns_24.xml │ │ │ │ ├── sobriety.xml │ │ │ │ ├── socl.xml │ │ │ │ ├── socmark.xml │ │ │ │ ├── socratic.xml │ │ │ │ ├── sofascore.xml │ │ │ │ ├── sofi.xml │ │ │ │ ├── softlist.xml │ │ │ │ ├── solar_smash.xml │ │ │ │ ├── solian.xml │ │ │ │ ├── soliclub.xml │ │ │ │ ├── solid_explorer.xml │ │ │ │ ├── solitaire.xml │ │ │ │ ├── solitaires.xml │ │ │ │ ├── solo_launcher.xml │ │ │ │ ├── sololearn.xml │ │ │ │ ├── songkick.xml │ │ │ │ ├── songpush.xml │ │ │ │ ├── songsterr.xml │ │ │ │ ├── songsync.xml │ │ │ │ ├── songtube.xml │ │ │ │ ├── sonic.xml │ │ │ │ ├── sonolus.xml │ │ │ │ ├── sonos.xml │ │ │ │ ├── sony_auto_play.xml │ │ │ │ ├── sony_bokeh.xml │ │ │ │ ├── sony_cinema_pro.xml │ │ │ │ ├── sony_email.xml │ │ │ │ ├── sony_game_enhancer.xml │ │ │ │ ├── sony_liv.xml │ │ │ │ ├── sony_music.xml │ │ │ │ ├── sony_music_center.xml │ │ │ │ ├── sony_music_pro.xml │ │ │ │ ├── sony_photography_pro.xml │ │ │ │ ├── sony_sketch.xml │ │ │ │ ├── sony_sound_connect.xml │ │ │ │ ├── sony_support.xml │ │ │ │ ├── sony_videography_pro.xml │ │ │ │ ├── sophos_intercept_x.xml │ │ │ │ ├── soul.xml │ │ │ │ ├── soul_knight.xml │ │ │ │ ├── sound_amplifier.xml │ │ │ │ ├── sound_meter.xml │ │ │ │ ├── sound_search.xml │ │ │ │ ├── sound_toggle.xml │ │ │ │ ├── soundbound.xml │ │ │ │ ├── soundcloud.xml │ │ │ │ ├── soundcore.xml │ │ │ │ ├── soundhound.xml │ │ │ │ ├── soundid.xml │ │ │ │ ├── soundpeats.xml │ │ │ │ ├── southwest_airlines.xml │ │ │ │ ├── sova_v_re.xml │ │ │ │ ├── spacedesk.xml │ │ │ │ ├── spaceflight_simulator.xml │ │ │ │ ├── spamblocker.xml │ │ │ │ ├── spanishdictionary.xml │ │ │ │ ├── spar.xml │ │ │ │ ├── spareroom.xml │ │ │ │ ├── spark_mail.xml │ │ │ │ ├── sparkasse.xml │ │ │ │ ├── spck_editor.xml │ │ │ │ ├── spectra.xml │ │ │ │ ├── spectroid.xml │ │ │ │ ├── speech_recognition_and_synthesis.xml │ │ │ │ ├── speed_test.xml │ │ │ │ ├── speedify.xml │ │ │ │ ├── speedtest_by_ookla.xml │ │ │ │ ├── spells_list_5e.xml │ │ │ │ ├── spic.xml │ │ │ │ ├── spike.xml │ │ │ │ ├── spin_the_wheel.xml │ │ │ │ ├── splayer.xml │ │ │ │ ├── splid.xml │ │ │ │ ├── split_screen.xml │ │ │ │ ├── splitwise.xml │ │ │ │ ├── spmp.xml │ │ │ │ ├── spooky.xml │ │ │ │ ├── sportmaster.xml │ │ │ │ ├── spotiflyer.xml │ │ │ │ ├── spotify.xml │ │ │ │ ├── spotify_artists.xml │ │ │ │ ├── spotify_podcasters.xml │ │ │ │ ├── spotube.xml │ │ │ │ ├── spowlo.xml │ │ │ │ ├── spring_airlines.xml │ │ │ │ ├── spydus.xml │ │ │ │ ├── squad_busters.xml │ │ │ │ ├── square.xml │ │ │ │ ├── square_home.xml │ │ │ │ ├── square_inpic.xml │ │ │ │ ├── squawker.xml │ │ │ │ ├── squeezeplayer.xml │ │ │ │ ├── squeezer.xml │ │ │ │ ├── squid.xml │ │ │ │ ├── squid_news.xml │ │ │ │ ├── squircle_ce.xml │ │ │ │ ├── sram_axs.xml │ │ │ │ ├── ssh_t_project_vpn.xml │ │ │ │ ├── sss.xml │ │ │ │ ├── stack.xml │ │ │ │ ├── stack_exchange.xml │ │ │ │ ├── stack_for_stack_overflow.xml │ │ │ │ ├── stack_overflow.xml │ │ │ │ ├── stack_pdf_scanner.xml │ │ │ │ ├── stadtradeln.xml │ │ │ │ ├── standard_notes.xml │ │ │ │ ├── standby_mode.xml │ │ │ │ ├── standoff_2.xml │ │ │ │ ├── standroid.xml │ │ │ │ ├── star_music_tag_editor.xml │ │ │ │ ├── star_walk_2.xml │ │ │ │ ├── starbucks.xml │ │ │ │ ├── stardew_valley.xml │ │ │ │ ├── starhub_app.xml │ │ │ │ ├── stario_launcher.xml │ │ │ │ ├── stark_hantel.xml │ │ │ │ ├── starling.xml │ │ │ │ ├── starlink.xml │ │ │ │ ├── starmaker.xml │ │ │ │ ├── starryai.xml │ │ │ │ ├── start.xml │ │ │ │ ├── starth.xml │ │ │ │ ├── starwalk.xml │ │ │ │ ├── starwarsheroes.xml │ │ │ │ ├── state_of_survival.xml │ │ │ │ ├── statista.xml │ │ │ │ ├── stats_fm.xml │ │ │ │ ├── status_download.xml │ │ │ │ ├── stay_awake.xml │ │ │ │ ├── stay_fit_gym.xml │ │ │ │ ├── stc_pay.xml │ │ │ │ ├── stealth.xml │ │ │ │ ├── stealth_audio_player.xml │ │ │ │ ├── steam.xml │ │ │ │ ├── steam_chat.xml │ │ │ │ ├── steam_link.xml │ │ │ │ ├── stellarium.xml │ │ │ │ ├── stellarium_plus.xml │ │ │ │ ├── stellio.xml │ │ │ │ ├── stemz.xml │ │ │ │ ├── stepik.xml │ │ │ │ ├── stepsapp.xml │ │ │ │ ├── stern_pinball_ic.xml │ │ │ │ ├── stick_with_it.xml │ │ │ │ ├── sticker_maker.xml │ │ │ │ ├── sticker_maker_for_whatsapp.xml │ │ │ │ ├── stickerly.xml │ │ │ │ ├── stickify.xml │ │ │ │ ├── stickman_hook.xml │ │ │ │ ├── stickman_party.xml │ │ │ │ ├── stimuler.xml │ │ │ │ ├── stitch.xml │ │ │ │ ├── stocard.xml │ │ │ │ ├── stock_market_learning.xml │ │ │ │ ├── stock_ticker.xml │ │ │ │ ├── stockx.xml │ │ │ │ ├── stokie.xml │ │ │ │ ├── stone.xml │ │ │ │ ├── storage_analyzer.xml │ │ │ │ ├── storage_isolation.xml │ │ │ │ ├── storage_saver.xml │ │ │ │ ├── storage_space.xml │ │ │ │ ├── storewards.xml │ │ │ │ ├── story_graph.xml │ │ │ │ ├── story_saver.xml │ │ │ │ ├── storyart.xml │ │ │ │ ├── storygo.xml │ │ │ │ ├── storytel.xml │ │ │ │ ├── strafe.xml │ │ │ │ ├── strava.xml │ │ │ │ ├── strawberry.xml │ │ │ │ ├── streamlabs.xml │ │ │ │ ├── street_fighter_iv_ce.xml │ │ │ │ ├── streetcomplete.xml │ │ │ │ ├── streetmeasure.xml │ │ │ │ ├── streets_of_rage_4.xml │ │ │ │ ├── stremio.xml │ │ │ │ ├── stripe.xml │ │ │ │ ├── strobe.xml │ │ │ │ ├── strong_workout_tracker.xml │ │ │ │ ├── structured.xml │ │ │ │ ├── student_beans.xml │ │ │ │ ├── studentsquare.xml │ │ │ │ ├── studentvue.xml │ │ │ │ ├── stuff.xml │ │ │ │ ├── stumble_guys.xml │ │ │ │ ├── stundenplan.xml │ │ │ │ ├── stundenplan_schedule.xml │ │ │ │ ├── styx_browser.xml │ │ │ │ ├── sube.xml │ │ │ │ ├── subito.xml │ │ │ │ ├── subscriptions.xml │ │ │ │ ├── substack.xml │ │ │ │ ├── substratum.xml │ │ │ │ ├── substratum_lite.xml │ │ │ │ ├── subwallet.xml │ │ │ │ ├── subway.xml │ │ │ │ ├── subway_surfers.xml │ │ │ │ ├── successfactors.xml │ │ │ │ ├── sudachi.xml │ │ │ │ ├── sudoku.xml │ │ │ │ ├── sudoku_number_match_game.xml │ │ │ │ ├── suica.xml │ │ │ │ ├── sumeria.xml │ │ │ │ ├── sumone.xml │ │ │ │ ├── sumup.xml │ │ │ │ ├── sun_nxt.xml │ │ │ │ ├── sunlogin.xml │ │ │ │ ├── sunrise_tv.xml │ │ │ │ ├── sunsmart.xml │ │ │ │ ├── suntimes.xml │ │ │ │ ├── suntimes_calendars.xml │ │ │ │ ├── super_arcade_racing.xml │ │ │ │ ├── super_auto_pets.xml │ │ │ │ ├── super_backup.xml │ │ │ │ ├── super_fowlst.xml │ │ │ │ ├── super_guida_tv.xml │ │ │ │ ├── super_icons.xml │ │ │ │ ├── super_mario_run.xml │ │ │ │ ├── super_money.xml │ │ │ │ ├── super_productivity.xml │ │ │ │ ├── super_quick_settings_pro.xml │ │ │ │ ├── super_retro_mega_wars.xml │ │ │ │ ├── super_status_bar.xml │ │ │ │ ├── super_vpn.xml │ │ │ │ ├── superbank.xml │ │ │ │ ├── superbeam.xml │ │ │ │ ├── superfreezz.xml │ │ │ │ ├── superimage.xml │ │ │ │ ├── superimage_pro.xml │ │ │ │ ├── superlist.xml │ │ │ │ ├── supernotes.xml │ │ │ │ ├── superpedestrian_link_scooters.xml │ │ │ │ ├── superset.xml │ │ │ │ ├── supershift_shift_work_calendar.xml │ │ │ │ ├── supertuxkart.xml │ │ │ │ ├── supervpn.xml │ │ │ │ ├── supreme_duelist.xml │ │ │ │ ├── surfboard.xml │ │ │ │ ├── surfshark.xml │ │ │ │ ├── surpreenda_by_mastercard.xml │ │ │ │ ├── surveyon.xml │ │ │ │ ├── survival_manual.xml │ │ │ │ ├── sushi.xml │ │ │ │ ├── suyu.xml │ │ │ │ ├── suzuki_connect.xml │ │ │ │ ├── svplayer.xml │ │ │ │ ├── swap.xml │ │ │ │ ├── swapper.xml │ │ │ │ ├── sweat_wallet.xml │ │ │ │ ├── sweatcoin.xml │ │ │ │ ├── sweech.xml │ │ │ │ ├── sweet_selfie.xml │ │ │ │ ├── swift_backup.xml │ │ │ │ ├── swiggy.xml │ │ │ │ ├── swipefy.xml │ │ │ │ ├── swish.xml │ │ │ │ ├── swiss.xml │ │ │ │ ├── swisscom_mycloud.xml │ │ │ │ ├── swissid.xml │ │ │ │ ├── swisstopo.xml │ │ │ │ ├── switchguide.xml │ │ │ │ ├── symfonium.xml │ │ │ │ ├── symphony.xml │ │ │ │ ├── sync.xml │ │ │ │ ├── sync_for_lemmy.xml │ │ │ │ ├── sync_for_reddit.xml │ │ │ │ ├── syncthing.xml │ │ │ │ ├── synology_drive.xml │ │ │ │ ├── synology_photos.xml │ │ │ │ ├── synology_secure_signin.xml │ │ │ │ ├── syphon.xml │ │ │ │ ├── sys_i.xml │ │ │ │ ├── system_app_remover.xml │ │ │ │ ├── system_manager.xml │ │ │ │ ├── system_monitor.xml │ │ │ │ ├── system_ui_tuner.xml │ │ │ │ ├── systemui_tuner.xml │ │ │ │ ├── sysuitunernoads.xml │ │ │ │ ├── sz.xml │ │ │ │ ├── szkolny.xml │ │ │ │ ├── t2.xml │ │ │ │ ├── t_mobile_device_unlock.xml │ │ │ │ ├── t_mobile_play.xml │ │ │ │ ├── t_mobile_scam_shield.xml │ │ │ │ ├── t_mobile_visual_voicemail.xml │ │ │ │ ├── tabby.xml │ │ │ │ ├── tabii.xml │ │ │ │ ├── table_habit.xml │ │ │ │ ├── tabletop_tools.xml │ │ │ │ ├── tachiyomi.xml │ │ │ │ ├── tack_metronome.xml │ │ │ │ ├── tado.xml │ │ │ │ ├── tagesschau.xml │ │ │ │ ├── taginfo.xml │ │ │ │ ├── tagmo.xml │ │ │ │ ├── tagwriter.xml │ │ │ │ ├── taichi.xml │ │ │ │ ├── tailscale.xml │ │ │ │ ├── takostats.xml │ │ │ │ ├── talabat.xml │ │ │ │ ├── talon.xml │ │ │ │ ├── tamara.xml │ │ │ │ ├── tamasha.xml │ │ │ │ ├── tameeni.xml │ │ │ │ ├── tamo_ismaniems.xml │ │ │ │ ├── tandem.xml │ │ │ │ ├── tangedco.xml │ │ │ │ ├── tangerine.xml │ │ │ │ ├── tango.xml │ │ │ │ ├── taobao.xml │ │ │ │ ├── taopiaopiao.xml │ │ │ │ ├── tap_az.xml │ │ │ │ ├── tap_scroll.xml │ │ │ │ ├── tap_tap.xml │ │ │ │ ├── tapatalk.xml │ │ │ │ ├── tapatalk_pro.xml │ │ │ │ ├── tapet.xml │ │ │ │ ├── taptap.xml │ │ │ │ ├── target.xml │ │ │ │ ├── targobank.xml │ │ │ │ ├── tarteel.xml │ │ │ │ ├── taskbar.xml │ │ │ │ ├── tasker.xml │ │ │ │ ├── tasker_settings.xml │ │ │ │ ├── taskito.xml │ │ │ │ ├── tasks.xml │ │ │ │ ├── tasky.xml │ │ │ │ ├── tasty.xml │ │ │ │ ├── tasty_period.xml │ │ │ │ ├── tata_1mg.xml │ │ │ │ ├── tata_cliq.xml │ │ │ │ ├── tata_neu.xml │ │ │ │ ├── tata_play.xml │ │ │ │ ├── tata_play_binge.xml │ │ │ │ ├── tawakkalna_emergency.xml │ │ │ │ ├── tawakkalna_services.xml │ │ │ │ ├── taxi_coop.xml │ │ │ │ ├── tazz.xml │ │ │ │ ├── tb_checker.xml │ │ │ │ ├── tcg_hub.xml │ │ │ │ ├── tcl_gallery.xml │ │ │ │ ├── td_bank.xml │ │ │ │ ├── team_pixel_wallpapers.xml │ │ │ │ ├── teamsnap.xml │ │ │ │ ├── teamspeak.xml │ │ │ │ ├── teamviewer.xml │ │ │ │ ├── techcombank.xml │ │ │ │ ├── technisat_connect.xml │ │ │ │ ├── tecno_spot.xml │ │ │ │ ├── ted.xml │ │ │ │ ├── tedit.xml │ │ │ │ ├── teknosa.xml │ │ │ │ ├── telda.xml │ │ │ │ ├── tele2.xml │ │ │ │ ├── tele2_play.xml │ │ │ │ ├── tele_quebec.xml │ │ │ │ ├── telebirr.xml │ │ │ │ ├── telebox.xml │ │ │ │ ├── telegram.xml │ │ │ │ ├── telegram_sms.xml │ │ │ │ ├── telegraphx.xml │ │ │ │ ├── telegraphx_pro.xml │ │ │ │ ├── telenet.xml │ │ │ │ ├── telenor.xml │ │ │ │ ├── teleparty.xml │ │ │ │ ├── telepass.xml │ │ │ │ ├── televizo.xml │ │ │ │ ├── telewebion.xml │ │ │ │ ├── telex.xml │ │ │ │ ├── telia_tv.xml │ │ │ │ ├── tellonym.xml │ │ │ │ ├── telmex.xml │ │ │ │ ├── telus_connect.xml │ │ │ │ ├── telus_health_mycare.xml │ │ │ │ ├── temp_mail.xml │ │ │ │ ├── tempest_weather.xml │ │ │ │ ├── temple_run.xml │ │ │ │ ├── temple_run_2.xml │ │ │ │ ├── tempo.xml │ │ │ │ ├── tempo_music.xml │ │ │ │ ├── temu.xml │ │ │ │ ├── ten_ten.xml │ │ │ │ ├── tencent_meeting.xml │ │ │ │ ├── tencent_video.xml │ │ │ │ ├── tenda_wifi.xml │ │ │ │ ├── tenpo.xml │ │ │ │ ├── teo.xml │ │ │ │ ├── terabox.xml │ │ │ │ ├── terminal.xml │ │ │ │ ├── terminal_emulator.xml │ │ │ │ ├── termius.xml │ │ │ │ ├── termone_plus.xml │ │ │ │ ├── termux.xml │ │ │ │ ├── termux_gui.xml │ │ │ │ ├── termux_x11.xml │ │ │ │ ├── terraria.xml │ │ │ │ ├── territorial_io.xml │ │ │ │ ├── tesco_grocery.xml │ │ │ │ ├── tesla.xml │ │ │ │ ├── test_dpc.xml │ │ │ │ ├── testbook.xml │ │ │ │ ├── testy.xml │ │ │ │ ├── tetherfi.xml │ │ │ │ ├── tetris.xml │ │ │ │ ├── teufel.xml │ │ │ │ ├── texpand.xml │ │ │ │ ├── text_converter.xml │ │ │ │ ├── text_editor.xml │ │ │ │ ├── text_to_speech.xml │ │ │ │ ├── textnow.xml │ │ │ │ ├── textra_sms.xml │ │ │ │ ├── textverse.xml │ │ │ │ ├── tfl_go.xml │ │ │ │ ├── tft___teamfight_tactics.xml │ │ │ │ ├── tgmonet_theme.xml │ │ │ │ ├── thanox.xml │ │ │ │ ├── the_battle_cats.xml │ │ │ │ ├── the_battle_of_polytopia.xml │ │ │ │ ├── the_couple.xml │ │ │ │ ├── the_economist.xml │ │ │ │ ├── the_guardian.xml │ │ │ │ ├── the_guardian_editions.xml │ │ │ │ ├── the_idolmaster_million_live_theater_days.xml │ │ │ │ ├── the_metronome_by_soundbrenner.xml │ │ │ │ ├── the_michelin_guide.xml │ │ │ │ ├── the_new_york_times.xml │ │ │ │ ├── the_race.xml │ │ │ │ ├── the_souled_store.xml │ │ │ │ ├── the_weather_channel.xml │ │ │ │ ├── the_wolfs_stash.xml │ │ │ │ ├── theathletic.xml │ │ │ │ ├── thefor.xml │ │ │ │ ├── thefork.xml │ │ │ │ ├── theme_store.xml │ │ │ │ ├── themed_icon_alarmio__0.xml │ │ │ │ ├── themed_icon_alarmio__1.xml │ │ │ │ ├── themed_icon_alarmio__2.xml │ │ │ │ ├── themed_icon_appmgr_pro_3__0.xml │ │ │ │ ├── themed_icon_appmgr_pro_3__1.xml │ │ │ │ ├── themed_icon_appmgr_pro_3__2.xml │ │ │ │ ├── themed_icon_aspect_pro__0.xml │ │ │ │ ├── themed_icon_aspect_pro__1.xml │ │ │ │ ├── themed_icon_azerisiq_1.xml │ │ │ │ ├── themed_icon_azerisiq_2.xml │ │ │ │ ├── themed_icon_azerisiq_3.xml │ │ │ │ ├── themed_icon_azerisiq_4.xml │ │ │ │ ├── themed_icon_azerisiq_5.xml │ │ │ │ ├── themed_icon_azerisiq_6.xml │ │ │ │ ├── themed_icon_azerisiq_7.xml │ │ │ │ ├── themed_icon_azerisiq_8.xml │ │ │ │ ├── themed_icon_calendar_1.xml │ │ │ │ ├── themed_icon_calendar_10.xml │ │ │ │ ├── themed_icon_calendar_11.xml │ │ │ │ ├── themed_icon_calendar_12.xml │ │ │ │ ├── themed_icon_calendar_13.xml │ │ │ │ ├── themed_icon_calendar_14.xml │ │ │ │ ├── themed_icon_calendar_15.xml │ │ │ │ ├── themed_icon_calendar_16.xml │ │ │ │ ├── themed_icon_calendar_17.xml │ │ │ │ ├── themed_icon_calendar_18.xml │ │ │ │ ├── themed_icon_calendar_19.xml │ │ │ │ ├── themed_icon_calendar_2.xml │ │ │ │ ├── themed_icon_calendar_20.xml │ │ │ │ ├── themed_icon_calendar_21.xml │ │ │ │ ├── themed_icon_calendar_22.xml │ │ │ │ ├── themed_icon_calendar_23.xml │ │ │ │ ├── themed_icon_calendar_24.xml │ │ │ │ ├── themed_icon_calendar_25.xml │ │ │ │ ├── themed_icon_calendar_26.xml │ │ │ │ ├── themed_icon_calendar_27.xml │ │ │ │ ├── themed_icon_calendar_28.xml │ │ │ │ ├── themed_icon_calendar_29.xml │ │ │ │ ├── themed_icon_calendar_3.xml │ │ │ │ ├── themed_icon_calendar_30.xml │ │ │ │ ├── themed_icon_calendar_31.xml │ │ │ │ ├── themed_icon_calendar_4.xml │ │ │ │ ├── themed_icon_calendar_5.xml │ │ │ │ ├── themed_icon_calendar_6.xml │ │ │ │ ├── themed_icon_calendar_7.xml │ │ │ │ ├── themed_icon_calendar_8.xml │ │ │ │ ├── themed_icon_calendar_9.xml │ │ │ │ ├── themed_icon_cifra_club_academy__0.xml │ │ │ │ ├── themed_icon_cifra_club_metronome__0.xml │ │ │ │ ├── themed_icon_cifra_club_tuner__0.xml │ │ │ │ ├── themed_icon_fabulous__0.xml │ │ │ │ ├── themed_icon_fabulous__1.xml │ │ │ │ ├── themed_icon_fabulous__2.xml │ │ │ │ ├── themed_icon_franco_agenda__0.xml │ │ │ │ ├── themed_icon_franco_agenda__1.xml │ │ │ │ ├── themed_icon_frolomuse__0.xml │ │ │ │ ├── themed_icon_glasswire__0.xml │ │ │ │ ├── themed_icon_habitnow__0.xml │ │ │ │ ├── themed_icon_here_wego_beta__0.xml │ │ │ │ ├── themed_icon_here_wego_beta__1.xml │ │ │ │ ├── themed_icon_mojo__0.xml │ │ │ │ ├── themed_icon_mojo__1.xml │ │ │ │ ├── themed_icon_mojo__2.xml │ │ │ │ ├── themed_icon_mojo__3.xml │ │ │ │ ├── themed_icon_nicegram__0.xml │ │ │ │ ├── themed_icon_nicegram__1.xml │ │ │ │ ├── themed_icons.xml │ │ │ │ ├── themer.xml │ │ │ │ ├── themes.xml │ │ │ │ ├── themes_by_vivo.xml │ │ │ │ ├── themex.xml │ │ │ │ ├── thenx.xml │ │ │ │ ├── thepay.xml │ │ │ │ ├── thing_counter.xml │ │ │ │ ├── tholotis.xml │ │ │ │ ├── threads.xml │ │ │ │ ├── threema.xml │ │ │ │ ├── threes.xml │ │ │ │ ├── thumb_key.xml │ │ │ │ ├── thumper.xml │ │ │ │ ├── thunder.xml │ │ │ │ ├── thunder_vpn.xml │ │ │ │ ├── tibber.xml │ │ │ │ ├── tice.xml │ │ │ │ ├── tickertape.xml │ │ │ │ ├── ticketmaster.xml │ │ │ │ ├── ticketswap.xml │ │ │ │ ├── ticktick.xml │ │ │ │ ├── tidal.xml │ │ │ │ ├── tidio.xml │ │ │ │ ├── tidypanel.xml │ │ │ │ ├── tieba_lite.xml │ │ │ │ ├── tier.xml │ │ │ │ ├── tiger_trade.xml │ │ │ │ ├── tigo.xml │ │ │ │ ├── tiimo.xml │ │ │ │ ├── tikla_gelsin.xml │ │ │ │ ├── tiktok.xml │ │ │ │ ├── tiktok_helper.xml │ │ │ │ ├── tiktok_now.xml │ │ │ │ ├── tiktok_plugin.xml │ │ │ │ ├── tiktokdownloader.xml │ │ │ │ ├── tile.xml │ │ │ │ ├── tile_shortcuts.xml │ │ │ │ ├── tiles.xml │ │ │ │ ├── tim.xml │ │ │ │ ├── tim_hortons.xml │ │ │ │ ├── time_table.xml │ │ │ │ ├── timeflik_watch_face.xml │ │ │ │ ├── timejot.xml │ │ │ │ ├── timelimit.xml │ │ │ │ ├── timeplanner.xml │ │ │ │ ├── times_of_india.xml │ │ │ │ ├── timestamp_camera.xml │ │ │ │ ├── timetable.xml │ │ │ │ ├── timetree.xml │ │ │ │ ├── timezone_fun.xml │ │ │ │ ├── tinder.xml │ │ │ │ ├── tinkoff.xml │ │ │ │ ├── tinkoff_accounting.xml │ │ │ │ ├── tinkoff_investments.xml │ │ │ │ ├── tinkoff_mobile.xml │ │ │ │ ├── tinkoff_work.xml │ │ │ │ ├── tiny_decisions.xml │ │ │ │ ├── tiny_music_player.xml │ │ │ │ ├── tiny_weather_forecast.xml │ │ │ │ ├── tipatch.xml │ │ │ │ ├── tipico.xml │ │ │ │ ├── tipster.xml │ │ │ │ ├── tiptop_vpn.xml │ │ │ │ ├── titanium_backup.xml │ │ │ │ ├── tix_id.xml │ │ │ │ ├── tk.xml │ │ │ │ ├── tkb_twint.xml │ │ │ │ ├── tmg.xml │ │ │ │ ├── tmobile.xml │ │ │ │ ├── to_dont.xml │ │ │ │ ├── todaii.xml │ │ │ │ ├── todark.xml │ │ │ │ ├── today_weather.xml │ │ │ │ ├── todesk.xml │ │ │ │ ├── todo_mate.xml │ │ │ │ ├── todoist.xml │ │ │ │ ├── todus.xml │ │ │ │ ├── toffee.xml │ │ │ │ ├── togetherprice.xml │ │ │ │ ├── toggl_track.xml │ │ │ │ ├── tokopedia.xml │ │ │ │ ├── tolino.xml │ │ │ │ ├── tomb_of_the_mask.xml │ │ │ │ ├── tomtom_amigo.xml │ │ │ │ ├── tomtom_go_navigation.xml │ │ │ │ ├── tongyi.xml │ │ │ │ ├── tonkeeper.xml │ │ │ │ ├── too_good_to_go.xml │ │ │ │ ├── toolbox_for_minecraft_pe.xml │ │ │ │ ├── tooly.xml │ │ │ │ ├── top.xml │ │ │ │ ├── top_hat.xml │ │ │ │ ├── topface.xml │ │ │ │ ├── tor_browser.xml │ │ │ │ ├── torguard.xml │ │ │ │ ├── torrent_search_engine.xml │ │ │ │ ├── torrse.xml │ │ │ │ ├── torrserve_matrix.xml │ │ │ │ ├── torservices.xml │ │ │ │ ├── tosla.xml │ │ │ │ ├── toss.xml │ │ │ │ ├── total_adblock.xml │ │ │ │ ├── total_commander.xml │ │ │ │ ├── totalplay.xml │ │ │ │ ├── touch_n_go_ewallet.xml │ │ │ │ ├── touch_the_notch.xml │ │ │ │ ├── touchretouch.xml │ │ │ │ ├── touchtomorrow.xml │ │ │ │ ├── toutv.xml │ │ │ │ ├── tower_collector.xml │ │ │ │ ├── toweroffantasy.xml │ │ │ │ ├── townwifi_bygmo.xml │ │ │ │ ├── toyota.xml │ │ │ │ ├── tp_link_deco.xml │ │ │ │ ├── tp_link_tapo.xml │ │ │ │ ├── tp_link_tether.xml │ │ │ │ ├── tpbank.xml │ │ │ │ ├── track24.xml │ │ │ │ ├── trackbook.xml │ │ │ │ ├── tracker_detect.xml │ │ │ │ ├── tracker_network.xml │ │ │ │ ├── trackercontrol.xml │ │ │ │ ├── tractive_gps.xml │ │ │ │ ├── traderepublic.xml │ │ │ │ ├── trading_212.xml │ │ │ │ ├── tradingview.xml │ │ │ │ ├── traewelldroid.xml │ │ │ │ ├── traffic_rider.xml │ │ │ │ ├── trafi.xml │ │ │ │ ├── trail_sense.xml │ │ │ │ ├── trailforks.xml │ │ │ │ ├── train_timetable_italy.xml │ │ │ │ ├── trainingpeaks.xml │ │ │ │ ├── trainline.xml │ │ │ │ ├── trains_argentina.xml │ │ │ │ ├── trakt.xml │ │ │ │ ├── transcriber_for_whatsapp.xml │ │ │ │ ├── transdroid.xml │ │ │ │ ├── transfermovil.xml │ │ │ │ ├── transistor_radio.xml │ │ │ │ ├── transit.xml │ │ │ │ ├── transitdb.xml │ │ │ │ ├── translate_you.xml │ │ │ │ ├── translink_ni.xml │ │ │ │ ├── transperth.xml │ │ │ │ ├── transportr.xml │ │ │ │ ├── trebedit.xml │ │ │ │ ├── treble_info.xml │ │ │ │ ├── trebleshot.xml │ │ │ │ ├── trello.xml │ │ │ │ ├── tremotesf.xml │ │ │ │ ├── trendyol.xml │ │ │ │ ├── trenit.xml │ │ │ │ ├── trenitalia.xml │ │ │ │ ├── trenord.xml │ │ │ │ ├── tresorit.xml │ │ │ │ ├── tricount.xml │ │ │ │ ├── trikky.xml │ │ │ │ ├── trime.xml │ │ │ │ ├── trip_com.xml │ │ │ │ ├── tripadvisor.xml │ │ │ │ ├── triple_j.xml │ │ │ │ ├── tripview.xml │ │ │ │ ├── trireme_for_deluge.xml │ │ │ │ ├── triunfo_seguros.xml │ │ │ │ ├── trivago.xml │ │ │ │ ├── trivia_crack.xml │ │ │ │ ├── trivia_you.xml │ │ │ │ ├── trivory.xml │ │ │ │ ├── tronlink_pro.xml │ │ │ │ ├── true_phone.xml │ │ │ │ ├── truemoney.xml │ │ │ │ ├── trueshot.xml │ │ │ │ ├── truist.xml │ │ │ │ ├── trust_wallet.xml │ │ │ │ ├── truth_social.xml │ │ │ │ ├── ts_news_plus.xml │ │ │ │ ├── tsavaari.xml │ │ │ │ ├── tsbattery.xml │ │ │ │ ├── ttoim.xml │ │ │ │ ├── tts_server.xml │ │ │ │ ├── tubelab.xml │ │ │ │ ├── tubemate.xml │ │ │ │ ├── tubi.xml │ │ │ │ ├── tubular.xml │ │ │ │ ├── tuenti_argentina.xml │ │ │ │ ├── tui.xml │ │ │ │ ├── tumblr.xml │ │ │ │ ├── tummoc.xml │ │ │ │ ├── tunein_radio.xml │ │ │ │ ├── tuner.xml │ │ │ │ ├── tuner_pitched.xml │ │ │ │ ├── tunerly.xml │ │ │ │ ├── tunnelbear.xml │ │ │ │ ├── turbo_az.xml │ │ │ │ ├── turbo_vpn.xml │ │ │ │ ├── turbotel.xml │ │ │ │ ├── tureng_dictionary.xml │ │ │ │ ├── turkcell.xml │ │ │ │ ├── turkcell_tv_plus.xml │ │ │ │ ├── turkish_airlines.xml │ │ │ │ ├── turnip.xml │ │ │ │ ├── turnip_boy_commits_tax_evasion.xml │ │ │ │ ├── turrit.xml │ │ │ │ ├── tusky.xml │ │ │ │ ├── tuszama.xml │ │ │ │ ├── tuta.xml │ │ │ │ ├── tutorials_point.xml │ │ │ │ ├── tuya_smart.xml │ │ │ │ ├── tv_2_play.xml │ │ │ │ ├── tv_time.xml │ │ │ │ ├── tva_plus.xml │ │ │ │ ├── tver.xml │ │ │ │ ├── twewy.xml │ │ │ │ ├── twidere.xml │ │ │ │ ├── twilight.xml │ │ │ │ ├── twilio_authy_authenticator.xml │ │ │ │ ├── twine.xml │ │ │ │ ├── twinkly.xml │ │ │ │ ├── twire.xml │ │ │ │ ├── twisty_timer.xml │ │ │ │ ├── twitcast.xml │ │ │ │ ├── twitch.xml │ │ │ │ ├── twitter_lite.xml │ │ │ │ ├── two_dots.xml │ │ │ │ ├── two_stroke_calculator.xml │ │ │ │ ├── two_zero_four_eight.xml │ │ │ │ ├── txd_tool.xml │ │ │ │ ├── txtpad.xml │ │ │ │ ├── type_keeper.xml │ │ │ │ ├── u_dictionary.xml │ │ │ │ ├── u_jing.xml │ │ │ │ ├── uala.xml │ │ │ │ ├── ubank.xml │ │ │ │ ├── uber.xml │ │ │ │ ├── uber_driver.xml │ │ │ │ ├── uber_eats.xml │ │ │ │ ├── uber_eats_manager.xml │ │ │ │ ├── uber_eats_orders.xml │ │ │ │ ├── uber_fleet.xml │ │ │ │ ├── uber_freight.xml │ │ │ │ ├── ubimaster.xml │ │ │ │ ├── ubiqc.xml │ │ │ │ ├── ubisoft_connect.xml │ │ │ │ ├── ubs_access_secure_login.xml │ │ │ │ ├── ubs_twint.xml │ │ │ │ ├── ubuy.xml │ │ │ │ ├── uc_browser.xml │ │ │ │ ├── udemy.xml │ │ │ │ ├── ue_boom.xml │ │ │ │ ├── uibench.xml │ │ │ │ ├── ukg_dimensions.xml │ │ │ │ ├── ukiku.xml │ │ │ │ ├── ulife.xml │ │ │ │ ├── ulike.xml │ │ │ │ ├── ultimate_facts.xml │ │ │ │ ├── ultimate_guitar.xml │ │ │ │ ├── ultrasonic.xml │ │ │ │ ├── ultrasurf.xml │ │ │ │ ├── umang.xml │ │ │ │ ├── umbrella.xml │ │ │ │ ├── umetrip.xml │ │ │ │ ├── umico.xml │ │ │ │ ├── umo_mobility.xml │ │ │ │ ├── unacademy.xml │ │ │ │ ├── unapp.xml │ │ │ │ ├── unbabel.xml │ │ │ │ ├── unblock.xml │ │ │ │ ├── unchained.xml │ │ │ │ ├── underlords.xml │ │ │ │ ├── underway.xml │ │ │ │ ├── undok.xml │ │ │ │ ├── unexpected_keyboard.xml │ │ │ │ ├── uniciv.xml │ │ │ │ ├── unico.xml │ │ │ │ ├── unidays.xml │ │ │ │ ├── unifi.xml │ │ │ │ ├── unifi_protect.xml │ │ │ │ ├── unified_remote.xml │ │ │ │ ├── unifilm_de.xml │ │ │ │ ├── unionbank.xml │ │ │ │ ├── unionpay.xml │ │ │ │ ├── unipatcher.xml │ │ │ │ ├── uniqlo.xml │ │ │ │ ├── unit_converter.xml │ │ │ │ ├── unit_converter_by_dronzer.xml │ │ │ │ ├── unit_converter_lab.xml │ │ │ │ ├── unit_converter_ultimate.xml │ │ │ │ ├── unitto.xml │ │ │ │ ├── universal_copy.xml │ │ │ │ ├── universal_remote_control.xml │ │ │ │ ├── uniwhere.xml │ │ │ │ ├── unlim_cloud.xml │ │ │ │ ├── unlockmaster.xml │ │ │ │ ├── uno.xml │ │ │ │ ├── unofficial_telegram_stickers.xml │ │ │ │ ├── unroll_me.xml │ │ │ │ ├── unsplash.xml │ │ │ │ ├── unstoppable_wallet.xml │ │ │ │ ├── untappd.xml │ │ │ │ ├── untare.xml │ │ │ │ ├── untis.xml │ │ │ │ ├── untitld.xml │ │ │ │ ├── untracker.xml │ │ │ │ ├── unu.xml │ │ │ │ ├── up_money.xml │ │ │ │ ├── up_tempo.xml │ │ │ │ ├── update_me.xml │ │ │ │ ├── upgrad.xml │ │ │ │ ├── upgradeall.xml │ │ │ │ ├── uphold.xml │ │ │ │ ├── upload_simulator_2.xml │ │ │ │ ├── upnote.xml │ │ │ │ ├── ups.xml │ │ │ │ ├── upside.xml │ │ │ │ ├── upstox.xml │ │ │ │ ├── upstox_pro.xml │ │ │ │ ├── uptimerobot.xml │ │ │ │ ├── uptodate.xml │ │ │ │ ├── uptodown_app_store.xml │ │ │ │ ├── upwork.xml │ │ │ │ ├── urban_company.xml │ │ │ │ ├── urban_vpn.xml │ │ │ │ ├── urbano_norte.xml │ │ │ │ ├── urent.xml │ │ │ │ ├── url_checker.xml │ │ │ │ ├── url_radio.xml │ │ │ │ ├── urpay.xml │ │ │ │ ├── usaa.xml │ │ │ │ ├── usagedirect.xml │ │ │ │ ├── usb_audio_player.xml │ │ │ │ ├── usbcamera.xml │ │ │ │ ├── userland.xml │ │ │ │ ├── usos.xml │ │ │ │ ├── utopiawalls.xml │ │ │ │ ├── utorrent.xml │ │ │ │ ├── uts.xml │ │ │ │ ├── uu_game_booster.xml │ │ │ │ ├── uuid_0xfd6f_scanner.xml │ │ │ │ ├── ux_led.xml │ │ │ │ ├── v2rayng.xml │ │ │ │ ├── v380_pro.xml │ │ │ │ ├── v_appstore.xml │ │ │ │ ├── v_downloader.xml │ │ │ │ ├── v_live.xml │ │ │ │ ├── v_moda.xml │ │ │ │ ├── va.xml │ │ │ │ ├── vacation_days.xml │ │ │ │ ├── vakif_katilim.xml │ │ │ │ ├── vakifbank.xml │ │ │ │ ├── valetudo.xml │ │ │ │ ├── valiant_twint.xml │ │ │ │ ├── valv.xml │ │ │ │ ├── vampire_survivors.xml │ │ │ │ ├── vanced_manager.xml │ │ │ │ ├── vanced_youtube_music.xml │ │ │ │ ├── vancity.xml │ │ │ │ ├── vanguard.xml │ │ │ │ ├── vanilla_music.xml │ │ │ │ ├── vanilla_music_player.xml │ │ │ │ ├── variable_font_test.xml │ │ │ │ ├── varsity.xml │ │ │ │ ├── vaulty.xml │ │ │ │ ├── vbb_bus_and_bahn.xml │ │ │ │ ├── vcb.xml │ │ │ │ ├── vector.xml │ │ │ │ ├── vector_asset_creator.xml │ │ │ │ ├── vector_camera.xml │ │ │ │ ├── vectorify_da_home.xml │ │ │ │ ├── vectras_vm.xml │ │ │ │ ├── velobank.xml │ │ │ │ ├── velociraptor.xml │ │ │ │ ├── vendetta_manager.xml │ │ │ │ ├── venmo.xml │ │ │ │ ├── ventra.xml │ │ │ │ ├── verifit.xml │ │ │ │ ├── verizon_call_filter.xml │ │ │ │ ├── verizon_cloud.xml │ │ │ │ ├── verizon_protect.xml │ │ │ │ ├── vernet.xml │ │ │ │ ├── vero.xml │ │ │ │ ├── versa.xml │ │ │ │ ├── vertical_abstract_wallpapers.xml │ │ │ │ ├── vertical_wallpapers.xml │ │ │ │ ├── veryfit.xml │ │ │ │ ├── vespucci.xml │ │ │ │ ├── vesync.xml │ │ │ │ ├── veworld.xml │ │ │ │ ├── vflat_scan.xml │ │ │ │ ├── vi.xml │ │ │ │ ├── vi_red.xml │ │ │ │ ├── vi_yellow.xml │ │ │ │ ├── via_browser.xml │ │ │ │ ├── viabus.xml │ │ │ │ ├── viaplay.xml │ │ │ │ ├── viaverde.xml │ │ │ │ ├── vibe_you.xml │ │ │ │ ├── vibemate.xml │ │ │ │ ├── viber.xml │ │ │ │ ├── vidalink.xml │ │ │ │ ├── viddit.xml │ │ │ │ ├── video_and_tv_sideview.xml │ │ │ │ ├── video_app_for_vk.xml │ │ │ │ ├── video_compressor.xml │ │ │ │ ├── video_converter_compressor.xml │ │ │ │ ├── video_converter_compressor_1.xml │ │ │ │ ├── video_downloader.xml │ │ │ │ ├── video_downloader_for_ig.xml │ │ │ │ ├── video_downloader_for_pinterest.xml │ │ │ │ ├── video_downloader_story_saver.xml │ │ │ │ ├── video_downloader_story_video.xml │ │ │ │ ├── video_editor_and_maker.xml │ │ │ │ ├── video_editor_video_maker.xml │ │ │ │ ├── video_fun.xml │ │ │ │ ├── video_live_wallpaper.xml │ │ │ │ ├── video_mp3_converter.xml │ │ │ │ ├── video_player_kmp.xml │ │ │ │ ├── video_summarizer.xml │ │ │ │ ├── video_to_mp3.xml │ │ │ │ ├── video_to_wallpaper.xml │ │ │ │ ├── video_transcoder.xml │ │ │ │ ├── videos.xml │ │ │ │ ├── vidio.xml │ │ │ │ ├── vietinbank_ipay.xml │ │ │ │ ├── viettel_money.xml │ │ │ │ ├── viettel_post.xml │ │ │ │ ├── viewpoints.xml │ │ │ │ ├── viewranger.xml │ │ │ │ ├── vigilante.xml │ │ │ │ ├── vimeo.xml │ │ │ │ ├── vimpay.xml │ │ │ │ ├── vimusic.xml │ │ │ │ ├── vinted.xml │ │ │ │ ├── vinty_icons.xml │ │ │ │ ├── vinyl_music_player.xml │ │ │ │ ├── viper4android.xml │ │ │ │ ├── vipps.xml │ │ │ │ ├── vipps_mobilepay.xml │ │ │ │ ├── virgin_plus.xml │ │ │ │ ├── virtual_master.xml │ │ │ │ ├── virustotal.xml │ │ │ │ ├── viseca_one.xml │ │ │ │ ├── visha_video_player.xml │ │ │ │ ├── vishal_mega_mart.xml │ │ │ │ ├── visible.xml │ │ │ │ ├── vision_plus.xml │ │ │ │ ├── visualization_video_maker.xml │ │ │ │ ├── vita.xml │ │ │ │ ├── vita3k.xml │ │ │ │ ├── vitune.xml │ │ │ │ ├── viu.xml │ │ │ │ ├── vivacut.xml │ │ │ │ ├── vivaldi.xml │ │ │ │ ├── vivavideo.xml │ │ │ │ ├── vivino.xml │ │ │ │ ├── vivo.xml │ │ │ │ ├── vivo_app_store.xml │ │ │ │ ├── vivo_browser.xml │ │ │ │ ├── vivo_cloud.xml │ │ │ │ ├── vivo_com.xml │ │ │ │ ├── vivo_console.xml │ │ │ │ ├── vivo_email.xml │ │ │ │ ├── vivo_feedback.xml │ │ │ │ ├── vivo_game_space.xml │ │ │ │ ├── vivo_health.xml │ │ │ │ ├── vivo_jovi_inlife.xml │ │ │ │ ├── vivo_jovi_voice.xml │ │ │ │ ├── vivo_kids_mode.xml │ │ │ │ ├── vivo_lock.xml │ │ │ │ ├── vivo_tips.xml │ │ │ │ ├── vivo_wallet.xml │ │ │ │ ├── vivo_weather.xml │ │ │ │ ├── vivocloud.xml │ │ │ │ ├── vk.xml │ │ │ │ ├── vk_calls.xml │ │ │ │ ├── vk_clips.xml │ │ │ │ ├── vk_direct.xml │ │ │ │ ├── vk_mail.xml │ │ │ │ ├── vk_messenger.xml │ │ │ │ ├── vk_music.xml │ │ │ │ ├── vk_video.xml │ │ │ │ ├── vkusvill.xml │ │ │ │ ├── vkx.xml │ │ │ │ ├── vlc.xml │ │ │ │ ├── vllo.xml │ │ │ │ ├── vmos.xml │ │ │ │ ├── vn.xml │ │ │ │ ├── vneid.xml │ │ │ │ ├── vnpt_money.xml │ │ │ │ ├── vocabulary.xml │ │ │ │ ├── vocabulary_trainer.xml │ │ │ │ ├── vodafone_tv.xml │ │ │ │ ├── voi.xml │ │ │ │ ├── voice.xml │ │ │ │ ├── voice_access.xml │ │ │ │ ├── voice_changer_with_effects.xml │ │ │ │ ├── voice_recorder.xml │ │ │ │ ├── voice_recorder_by_quality_apps.xml │ │ │ │ ├── voicegpt.xml │ │ │ │ ├── voll.xml │ │ │ │ ├── volume_booster_goodev.xml │ │ │ │ ├── volume_control.xml │ │ │ │ ├── volume_control_panel.xml │ │ │ │ ├── volume_plus.xml │ │ │ │ ├── volume_styles.xml │ │ │ │ ├── volumelockr.xml │ │ │ │ ├── vonatinfo.xml │ │ │ │ ├── voocvpn_pro.xml │ │ │ │ ├── voot.xml │ │ │ │ ├── voov_meeting.xml │ │ │ │ ├── vote_info.xml │ │ │ │ ├── voter_helpline.xml │ │ │ │ ├── voyager_for_lemmy.xml │ │ │ │ ├── vpn_area.xml │ │ │ │ ├── vpn_fast_proxy_secure.xml │ │ │ │ ├── vpn_gate_client.xml │ │ │ │ ├── vpn_govpn.xml │ │ │ │ ├── vpn_hotspot.xml │ │ │ │ ├── vpn_pro.xml │ │ │ │ ├── vpn_proxy_master.xml │ │ │ │ ├── vpn_super_unlimited_proxy.xml │ │ │ │ ├── vpnclientpro.xml │ │ │ │ ├── vpnhood.xml │ │ │ │ ├── vpnify.xml │ │ │ │ ├── vr_matkalla.xml │ │ │ │ ├── vr_media_player.xml │ │ │ │ ├── vr_securego.xml │ │ │ │ ├── vr_securego_plus.xml │ │ │ │ ├── vrchat.xml │ │ │ │ ├── vridge.xml │ │ │ │ ├── vrt_nws.xml │ │ │ │ ├── vsco.xml │ │ │ │ ├── vsmart.xml │ │ │ │ ├── vsmart_calculator.xml │ │ │ │ ├── vsmart_calendar.xml │ │ │ │ ├── vsmart_camera.xml │ │ │ │ ├── vsmart_contact.xml │ │ │ │ ├── vsmart_dual_apps.xml │ │ │ │ ├── vsmart_phone.xml │ │ │ │ ├── vsmart_sound_recorder.xml │ │ │ │ ├── vsmart_themes.xml │ │ │ │ ├── vssid.xml │ │ │ │ ├── vtb.xml │ │ │ │ ├── vtosters_lite.xml │ │ │ │ ├── vtube_studio.xml │ │ │ │ ├── vuetube.xml │ │ │ │ ├── vvex.xml │ │ │ │ ├── vyapar.xml │ │ │ │ ├── vyom.xml │ │ │ │ ├── vysor.xml │ │ │ │ ├── wa_enhancer.xml │ │ │ │ ├── wa_tweaker.xml │ │ │ │ ├── wacken.xml │ │ │ │ ├── wafeer.xml │ │ │ │ ├── wahed.xml │ │ │ │ ├── waifupx.xml │ │ │ │ ├── waistline.xml │ │ │ │ ├── wake_on_lan.xml │ │ │ │ ├── wakeonlan.xml │ │ │ │ ├── wakeup_schedule.xml │ │ │ │ ├── waking_up.xml │ │ │ │ ├── walgreens.xml │ │ │ │ ├── wall_x.xml │ │ │ │ ├── wall_you.xml │ │ │ │ ├── wallabag.xml │ │ │ │ ├── wallapop.xml │ │ │ │ ├── wallcandy.xml │ │ │ │ ├── wallcanic_walls.xml │ │ │ │ ├── wallcanic_walls_1.xml │ │ │ │ ├── wallcraft.xml │ │ │ │ ├── wallet.xml │ │ │ │ ├── wallet_of_satoshi.xml │ │ │ │ ├── wallfever.xml │ │ │ │ ├── wallflow.xml │ │ │ │ ├── wallflow_plus.xml │ │ │ │ ├── walli_4k.xml │ │ │ │ ├── wallipop_wallpapers.xml │ │ │ │ ├── wallique.xml │ │ │ │ ├── wallman.xml │ │ │ │ ├── wallme.xml │ │ │ │ ├── wallow.xml │ │ │ │ ├── wallpaper_changer.xml │ │ │ │ ├── wallpaper_engine.xml │ │ │ │ ├── wallpaperexport.xml │ │ │ │ ├── wallpapers.xml │ │ │ │ ├── wallpaperz.xml │ │ │ │ ├── wallsweets.xml │ │ │ │ ├── wallwow.xml │ │ │ │ ├── wallzen.xml │ │ │ │ ├── walmart.xml │ │ │ │ ├── walpy.xml │ │ │ │ ├── wamr.xml │ │ │ │ ├── wanderlog.xml │ │ │ │ ├── warden.xml │ │ │ │ ├── warframe_companion.xml │ │ │ │ ├── warnwetter.xml │ │ │ │ ├── warpinator.xml │ │ │ │ ├── warpshare.xml │ │ │ │ ├── warzone_loadout_codmunity.xml │ │ │ │ ├── warzone_meta_and_loadout.xml │ │ │ │ ├── washington_post.xml │ │ │ │ ├── wasted.xml │ │ │ │ ├── wastickers.xml │ │ │ │ ├── watchbuddy.xml │ │ │ │ ├── water_me.xml │ │ │ │ ├── waterfox.xml │ │ │ │ ├── wattpad.xml │ │ │ │ ├── wattz.xml │ │ │ │ ├── wave_lines_live_wallpaper.xml │ │ │ │ ├── wavelet.xml │ │ │ │ ├── wavy_wallpapers.xml │ │ │ │ ├── way_in.xml │ │ │ │ ├── wayback_machine.xml │ │ │ │ ├── wayfair.xml │ │ │ │ ├── waymo_one.xml │ │ │ │ ├── waze.xml │ │ │ │ ├── wazirx.xml │ │ │ │ ├── we.xml │ │ │ │ ├── wealthify.xml │ │ │ │ ├── wealthsimple.xml │ │ │ │ ├── wear.xml │ │ │ │ ├── wear_installer.xml │ │ │ │ ├── wear_installer_2.xml │ │ │ │ ├── wear_os.xml │ │ │ │ ├── weather.xml │ │ │ │ ├── weather_and_radar.xml │ │ │ │ ├── weather_demo_library.xml │ │ │ │ ├── weather_radar.xml │ │ │ │ ├── weather_today.xml │ │ │ │ ├── weatherbug.xml │ │ │ │ ├── weathercan.xml │ │ │ │ ├── weathermaster.xml │ │ │ │ ├── weatherwise.xml │ │ │ │ ├── weawow.xml │ │ │ │ ├── web_app.xml │ │ │ │ ├── web_de.xml │ │ │ │ ├── web_video_caster.xml │ │ │ │ ├── weback.xml │ │ │ │ ├── webex.xml │ │ │ │ ├── webmediashare.xml │ │ │ │ ├── webmoney.xml │ │ │ │ ├── webnovel.xml │ │ │ │ ├── webtoon.xml │ │ │ │ ├── webull.xml │ │ │ │ ├── wechat.xml │ │ │ │ ├── wecom.xml │ │ │ │ ├── weedmaps.xml │ │ │ │ ├── weheartit.xml │ │ │ │ ├── weibo.xml │ │ │ │ ├── welife.xml │ │ │ │ ├── wells_fargo.xml │ │ │ │ ├── wemoney.xml │ │ │ │ ├── weread.xml │ │ │ │ ├── werstreamt_es.xml │ │ │ │ ├── wetherspoon.xml │ │ │ │ ├── wetransfer.xml │ │ │ │ ├── wetter.xml │ │ │ │ ├── wetype.xml │ │ │ │ ├── weverse.xml │ │ │ │ ├── weverse_shop.xml │ │ │ │ ├── weward.xml │ │ │ │ ├── wezone.xml │ │ │ │ ├── wger.xml │ │ │ │ ├── what3words.xml │ │ │ │ ├── what_to_buy.xml │ │ │ │ ├── whatnot.xml │ │ │ │ ├── whats_up.xml │ │ │ │ ├── whatsaga.xml │ │ │ │ ├── whatsapp.xml │ │ │ │ ├── whatsapp_business.xml │ │ │ │ ├── whatsapp_web_to_go.xml │ │ │ │ ├── whatsauto.xml │ │ │ │ ├── whatsdeleted.xml │ │ │ │ ├── where_is_my_train.xml │ │ │ │ ├── whicons.xml │ │ │ │ ├── whisper.xml │ │ │ │ ├── white_border.xml │ │ │ │ ├── whobird.xml │ │ │ │ ├── whoo.xml │ │ │ │ ├── whoosh.xml │ │ │ │ ├── wi_fi_info.xml │ │ │ │ ├── wi_fi_toolkit.xml │ │ │ │ ├── wibuku.xml │ │ │ │ ├── wickr_me.xml │ │ │ │ ├── widepapers.xml │ │ │ │ ├── widgeet.xml │ │ │ │ ├── wienmobil.xml │ │ │ │ ├── wifi_analyzer.xml │ │ │ │ ├── wifi_analyzer_open_source.xml │ │ │ │ ├── wifi_ar.xml │ │ │ │ ├── wifi_map.xml │ │ │ │ ├── wifi_master.xml │ │ │ │ ├── wifi_moho.xml │ │ │ │ ├── wifi_pingce_dashi.xml │ │ │ │ ├── wifi_pro_ftp_server.xml │ │ │ │ ├── wifiman.xml │ │ │ │ ├── wikiloc.xml │ │ │ │ ├── wikipedia.xml │ │ │ │ ├── wikipedia_beta.xml │ │ │ │ ├── wildberries.xml │ │ │ │ ├── willhaben.xml │ │ │ │ ├── wim_hof_method.xml │ │ │ │ ├── windesheim.xml │ │ │ │ ├── windows.xml │ │ │ │ ├── windscribe.xml │ │ │ │ ├── windy.xml │ │ │ │ ├── wink.xml │ │ │ │ ├── wink_tv.xml │ │ │ │ ├── wink_video_enhancing.xml │ │ │ │ ├── winlator.xml │ │ │ │ ├── winner.xml │ │ │ │ ├── wins_10_simulator.xml │ │ │ │ ├── wire.xml │ │ │ │ ├── wireguard.xml │ │ │ │ ├── wireless_adb.xml │ │ │ │ ├── wise.xml │ │ │ │ ├── wish.xml │ │ │ │ ├── wish_explorer.xml │ │ │ │ ├── withings_health_mate.xml │ │ │ │ ├── wix_owner.xml │ │ │ │ ├── wiz.xml │ │ │ │ ├── wizink_bank.xml │ │ │ │ ├── wizz_air.xml │ │ │ │ ├── wled.xml │ │ │ │ ├── wo_mic.xml │ │ │ │ ├── wolframalpha.xml │ │ │ │ ├── wolframalpha_classic.xml │ │ │ │ ├── wolt.xml │ │ │ │ ├── wombo_dream.xml │ │ │ │ ├── wonderful.xml │ │ │ │ ├── woo.xml │ │ │ │ ├── woocer.xml │ │ │ │ ├── woocommerce.xml │ │ │ │ ├── wooden_letter.xml │ │ │ │ ├── woolworths.xml │ │ │ │ ├── word_sorting_machine.xml │ │ │ │ ├── wordament.xml │ │ │ │ ├── wordpress.xml │ │ │ │ ├── wordreference.xml │ │ │ │ ├── words_of_wonders.xml │ │ │ │ ├── wordscapes.xml │ │ │ │ ├── wordweb.xml │ │ │ │ ├── work_log.xml │ │ │ │ ├── work_shift_calendar.xml │ │ │ │ ├── workday.xml │ │ │ │ ├── workplace_chat_from_meta.xml │ │ │ │ ├── worktimer.xml │ │ │ │ ├── worktracker.xml │ │ │ │ ├── world_tv.xml │ │ │ │ ├── worldbox.xml │ │ │ │ ├── worldcoin_wallet.xml │ │ │ │ ├── wow_fm.xml │ │ │ │ ├── wps_office.xml │ │ │ │ ├── wps_office_lite.xml │ │ │ │ ├── wps_pdf.xml │ │ │ │ ├── wpsapp_pro.xml │ │ │ │ ├── wsdot.xml │ │ │ │ ├── wtmp.xml │ │ │ │ ├── wulkanowy_dzienniczek.xml │ │ │ │ ├── wunderfind.xml │ │ │ │ ├── wuthering_waves.xml │ │ │ │ ├── wynk_music.xml │ │ │ │ ├── wyze.xml │ │ │ │ ├── x.xml │ │ │ │ ├── x_icon_changer.xml │ │ │ │ ├── x_vpn.xml │ │ │ │ ├── xaman_wallet.xml │ │ │ │ ├── xanh_sm.xml │ │ │ │ ├── xapk_installer.xml │ │ │ │ ├── xapks_installer.xml │ │ │ │ ├── xarena.xml │ │ │ │ ├── xash3d_fwgs.xml │ │ │ │ ├── xb_bargains.xml │ │ │ │ ├── xbox.xml │ │ │ │ ├── xbox_game_pass.xml │ │ │ │ ├── xbox_game_pass_beta.xml │ │ │ │ ├── xbrowser.xml │ │ │ │ ├── xclub.xml │ │ │ │ ├── xda.xml │ │ │ │ ├── xda_one.xml │ │ │ │ ├── xdownloader.xml │ │ │ │ ├── xe.xml │ │ │ │ ├── xed_editor.xml │ │ │ │ ├── xender.xml │ │ │ │ ├── xenowerk.xml │ │ │ │ ├── xeonjia.xml │ │ │ │ ├── xfinity.xml │ │ │ │ ├── xfun_wallet.xml │ │ │ │ ├── xiaodash.xml │ │ │ │ ├── xiaoheihe.xml │ │ │ │ ├── xiaohongshu.xml │ │ │ │ ├── xiaomi_community.xml │ │ │ │ ├── xiaomi_earbuds.xml │ │ │ │ ├── xiaomi_game_center.xml │ │ │ │ ├── xiaomi_service_framework.xml │ │ │ │ ├── xiaomi_service_plus.xml │ │ │ │ ├── xiaomi_speaker.xml │ │ │ │ ├── ximiui.xml │ │ │ │ ├── xingtu.xml │ │ │ │ ├── xinshang.xml │ │ │ │ ├── xiqueer.xml │ │ │ │ ├── xkom.xml │ │ │ │ ├── xmanager.xml │ │ │ │ ├── xmeye.xml │ │ │ │ ├── xmind.xml │ │ │ │ ├── xodo_pdf.xml │ │ │ │ ├── xos_launcher.xml │ │ │ │ ├── xoss.xml │ │ │ │ ├── xplore_file_manager.xml │ │ │ │ ├── xprivacylua.xml │ │ │ │ ├── xprivacylua_pro.xml │ │ │ │ ├── xproguard_password_manager.xml │ │ │ │ ├── xproguard_photo_vault.xml │ │ │ │ ├── xrecorder.xml │ │ │ │ ├── xscamera.xml │ │ │ │ ├── xshare.xml │ │ │ │ ├── xstream.xml │ │ │ │ ├── xtra.xml │ │ │ │ ├── xuexi_qiangguo.xml │ │ │ │ ├── xuexiaoyi.xml │ │ │ │ ├── xvii.xml │ │ │ │ ├── xylem.xml │ │ │ │ ├── yadea.xml │ │ │ │ ├── yahoo_auctions.xml │ │ │ │ ├── yahoo_finance.xml │ │ │ │ ├── yahoo_japan.xml │ │ │ │ ├── yahoo_mail.xml │ │ │ │ ├── yahoo_news.xml │ │ │ │ ├── yahoo_weather.xml │ │ │ │ ├── yamareco.xml │ │ │ │ ├── yandex_browser.xml │ │ │ │ ├── yandex_disk.xml │ │ │ │ ├── yandex_food.xml │ │ │ │ ├── yandex_go.xml │ │ │ │ ├── yandex_key.xml │ │ │ │ ├── yandex_keyboard.xml │ │ │ │ ├── yandex_mail.xml │ │ │ │ ├── yandex_maps.xml │ │ │ │ ├── yandex_market.xml │ │ │ │ ├── yandex_metro.xml │ │ │ │ ├── yandex_music.xml │ │ │ │ ├── yandex_navigator.xml │ │ │ │ ├── yandex_pay.xml │ │ │ │ ├── yandex_start.xml │ │ │ │ ├── yandex_translate.xml │ │ │ │ ├── yandex_weather.xml │ │ │ │ ├── yandex_with_alice.xml │ │ │ │ ├── yango.xml │ │ │ │ ├── yanosik.xml │ │ │ │ ├── yappy.xml │ │ │ │ ├── yasan_launcher.xml │ │ │ │ ├── yasnac.xml │ │ │ │ ├── yatse.xml │ │ │ │ ├── yazio.xml │ │ │ │ ├── yearly_progress.xml │ │ │ │ ├── yeelight.xml │ │ │ │ ├── yelo_bank.xml │ │ │ │ ├── yelp.xml │ │ │ │ ├── yemeksepeti.xml │ │ │ │ ├── yet_another_call_blocker.xml │ │ │ │ ├── yetcalc.xml │ │ │ │ ├── yettel.xml │ │ │ │ ├── yi_iot.xml │ │ │ │ ├── ykb.xml │ │ │ │ ├── ymusic.xml │ │ │ │ ├── yodobashi.xml │ │ │ │ ├── yoga_go.xml │ │ │ │ ├── yolink.xml │ │ │ │ ├── yomira_freemium_icons.xml │ │ │ │ ├── yomira_premium_icons.xml │ │ │ │ ├── yono_lite_sbi.xml │ │ │ │ ├── yono_sbi.xml │ │ │ │ ├── yoo_money.xml │ │ │ │ ├── yoodo.xml │ │ │ │ ├── yota.xml │ │ │ │ ├── you_com.xml │ │ │ │ ├── you_have_mail.xml │ │ │ │ ├── you_icons.xml │ │ │ │ ├── you_tune.xml │ │ │ │ ├── you_tv.xml │ │ │ │ ├── youcut.xml │ │ │ │ ├── youku.xml │ │ │ │ ├── youla.xml │ │ │ │ ├── yousee_play.xml │ │ │ │ ├── yousician.xml │ │ │ │ ├── youth_tb.xml │ │ │ │ ├── youtube.xml │ │ │ │ ├── youtube_adaway.xml │ │ │ │ ├── youtube_create.xml │ │ │ │ ├── youtube_go.xml │ │ │ │ ├── youtube_kids.xml │ │ │ │ ├── youtube_music.xml │ │ │ │ ├── youtube_music_revanced.xml │ │ │ │ ├── youtube_revanced.xml │ │ │ │ ├── youtube_tv.xml │ │ │ │ ├── youtube_vanced.xml │ │ │ │ ├── youtube_vr.xml │ │ │ │ ├── yowindow.xml │ │ │ │ ├── ypt.xml │ │ │ │ ├── yr.xml │ │ │ │ ├── ytdlnis.xml │ │ │ │ ├── ytstudio.xml │ │ │ │ ├── yu_gi_oh_duel_links.xml │ │ │ │ ├── yubico_authenticator.xml │ │ │ │ ├── yuka.xml │ │ │ │ ├── yulu.xml │ │ │ │ ├── yummly.xml │ │ │ │ ├── yunrili.xml │ │ │ │ ├── yurtici_kargo.xml │ │ │ │ ├── yuzu.xml │ │ │ │ ├── z1.xml │ │ │ │ ├── zahnputz.xml │ │ │ │ ├── zalando.xml │ │ │ │ ├── zalo.xml │ │ │ │ ├── zalopay.xml │ │ │ │ ├── zangi_private_messenger.xml │ │ │ │ ├── zanichelli_guarda.xml │ │ │ │ ├── zank_remote.xml │ │ │ │ ├── zapp.xml │ │ │ │ ├── zappka.xml │ │ │ │ ├── zapya.xml │ │ │ │ ├── zara.xml │ │ │ │ ├── zarchiver.xml │ │ │ │ ├── zave_it.xml │ │ │ │ ├── zcalc.xml │ │ │ │ ├── zdfmediathek.xml │ │ │ │ ├── zdrowe_zakupy.xml │ │ │ │ ├── zedge.xml │ │ │ │ ├── zee5.xml │ │ │ │ ├── zelle.xml │ │ │ │ ├── zello.xml │ │ │ │ ├── zen_flip_clock.xml │ │ │ │ ├── zen_space.xml │ │ │ │ ├── zenless_zone_zero.xml │ │ │ │ ├── zenly.xml │ │ │ │ ├── zepp.xml │ │ │ │ ├── zepp_life.xml │ │ │ │ ├── zepto.xml │ │ │ │ ├── zero.xml │ │ │ │ ├── zerodha_coin.xml │ │ │ │ ├── zerodha_kite.xml │ │ │ │ ├── zeronet.xml │ │ │ │ ├── zerotier.xml │ │ │ │ ├── zeus.xml │ │ │ │ ├── zfont_3.xml │ │ │ │ ├── zfont_tool.xml │ │ │ │ ├── zhihu.xml │ │ │ │ ├── zhihui_xiaolian.xml │ │ │ │ ├── zillion.xml │ │ │ │ ├── zillow.xml │ │ │ │ ├── zing_mp3.xml │ │ │ │ ├── ziogas.xml │ │ │ │ ├── zip.xml │ │ │ │ ├── zipmex.xml │ │ │ │ ├── zipxtract_fd.xml │ │ │ │ ├── ziraat.xml │ │ │ │ ├── zkb_access.xml │ │ │ │ ├── zkb_banking.xml │ │ │ │ ├── zkb_twint.xml │ │ │ │ ├── zlib.xml │ │ │ │ ├── zoho_assist.xml │ │ │ │ ├── zoho_books.xml │ │ │ │ ├── zoho_campaigns.xml │ │ │ │ ├── zoho_cliq.xml │ │ │ │ ├── zoho_connect.xml │ │ │ │ ├── zoho_crm.xml │ │ │ │ ├── zoho_daybook.xml │ │ │ │ ├── zoho_desk.xml │ │ │ │ ├── zoho_mail.xml │ │ │ │ ├── zoho_notebook.xml │ │ │ │ ├── zoho_one.xml │ │ │ │ ├── zoho_oneauth.xml │ │ │ │ ├── zoho_projects.xml │ │ │ │ ├── zoho_salesiq.xml │ │ │ │ ├── zoho_sheet.xml │ │ │ │ ├── zoho_social.xml │ │ │ │ ├── zoho_survey.xml │ │ │ │ ├── zoho_todo.xml │ │ │ │ ├── zoho_writer.xml │ │ │ │ ├── zoiper.xml │ │ │ │ ├── zomato.xml │ │ │ │ ├── zona.xml │ │ │ │ ├── zoom.xml │ │ │ │ ├── zoom_earth.xml │ │ │ │ ├── zoopla.xml │ │ │ │ ├── zorin_connect.xml │ │ │ │ ├── zoysii.xml │ │ │ │ ├── zugate.xml │ │ │ │ ├── zugerkb_twint.xml │ │ │ │ ├── zulip.xml │ │ │ │ ├── zuoyebang.xml │ │ │ │ ├── zvuk.xml │ │ │ │ ├── zwart_icons.xml │ │ │ │ ├── zygisk_detach.xml │ │ │ │ └── zzzfun.xml │ │ │ │ ├── values │ │ │ │ ├── bliss_arrays.xml │ │ │ │ └── bliss_dimens.xml │ │ │ │ └── xml │ │ │ │ └── grayscale_icon_map.xml │ │ ├── Settings │ │ │ └── res │ │ │ │ ├── values-night │ │ │ │ └── colors.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── config.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── strings.xml │ │ └── SimpleDeviceConfig │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ │ └── inputmethods │ │ └── LatinIME │ │ └── java │ │ └── res │ │ └── values │ │ └── gesture-input.xml ├── dictionaries │ └── packages │ │ └── inputmethods │ │ └── LatinIME │ │ └── java │ │ └── res │ │ └── raw │ │ ├── main_bg.dict │ │ ├── main_cs.dict │ │ ├── main_da.dict │ │ ├── main_el.dict │ │ ├── main_en_au.dict │ │ ├── main_en_gb.dict │ │ ├── main_en_us.dict │ │ ├── main_fi.dict │ │ ├── main_hr.dict │ │ ├── main_hu.dict │ │ ├── main_iw.dict │ │ ├── main_ka.dict │ │ ├── main_lb.dict │ │ ├── main_lt.dict │ │ ├── main_lv.dict │ │ ├── main_nb.dict │ │ ├── main_nl.dict │ │ ├── main_pl.dict │ │ ├── main_pt_pt.dict │ │ ├── main_ro.dict │ │ ├── main_sl.dict │ │ ├── main_sr.dict │ │ ├── main_sv.dict │ │ ├── main_tr.dict │ │ └── main_uk.dict ├── foldable_book │ └── lineage-sdk │ │ └── lineage │ │ └── res │ │ └── res │ │ └── values │ │ └── config.xml ├── no-rro │ ├── frameworks │ │ └── base │ │ │ └── core │ │ │ └── res │ │ │ └── res │ │ │ └── values │ │ │ ├── config.xml │ │ │ └── dimens.xml │ └── packages │ │ └── apps │ │ └── Settings │ │ └── res │ │ ├── values-af │ │ └── config.xml │ │ ├── values-am │ │ └── config.xml │ │ ├── values-ar │ │ └── config.xml │ │ ├── values-as │ │ └── config.xml │ │ ├── values-az │ │ └── config.xml │ │ ├── values-b+sr+Latn │ │ └── config.xml │ │ ├── values-be │ │ └── config.xml │ │ ├── values-bg │ │ └── config.xml │ │ ├── values-bn │ │ └── config.xml │ │ ├── values-bs │ │ └── config.xml │ │ ├── values-ca │ │ └── config.xml │ │ ├── values-cs │ │ └── config.xml │ │ ├── values-da │ │ └── config.xml │ │ ├── values-de │ │ └── config.xml │ │ ├── values-el │ │ └── config.xml │ │ ├── values-en-rAU │ │ └── config.xml │ │ ├── values-en-rCA │ │ └── config.xml │ │ ├── values-en-rGB │ │ └── config.xml │ │ ├── values-en-rIN │ │ └── config.xml │ │ ├── values-en-rXC │ │ └── config.xml │ │ ├── values-es-rUS │ │ └── config.xml │ │ ├── values-es │ │ └── config.xml │ │ ├── values-et │ │ └── config.xml │ │ ├── values-eu │ │ └── config.xml │ │ ├── values-fa │ │ └── config.xml │ │ ├── values-fi │ │ └── config.xml │ │ ├── values-fr-rCA │ │ └── config.xml │ │ ├── values-fr │ │ └── config.xml │ │ ├── values-gl │ │ └── config.xml │ │ ├── values-gu │ │ └── config.xml │ │ ├── values-hi │ │ └── config.xml │ │ ├── values-hr │ │ └── config.xml │ │ ├── values-hu │ │ └── config.xml │ │ ├── values-hy │ │ └── config.xml │ │ ├── values-in │ │ └── config.xml │ │ ├── values-is │ │ └── config.xml │ │ ├── values-it │ │ └── config.xml │ │ ├── values-iw │ │ └── config.xml │ │ ├── values-ja │ │ └── config.xml │ │ ├── values-ka │ │ └── config.xml │ │ ├── values-kk │ │ └── config.xml │ │ ├── values-km │ │ └── config.xml │ │ ├── values-kn │ │ └── config.xml │ │ ├── values-ko │ │ └── config.xml │ │ ├── values-ky │ │ └── config.xml │ │ ├── values-lo │ │ └── config.xml │ │ ├── values-lt │ │ └── config.xml │ │ ├── values-lv │ │ └── config.xml │ │ ├── values-mk │ │ └── config.xml │ │ ├── values-ml │ │ └── config.xml │ │ ├── values-mn │ │ └── config.xml │ │ ├── values-mr │ │ └── config.xml │ │ ├── values-ms │ │ └── config.xml │ │ ├── values-my │ │ └── config.xml │ │ ├── values-nb │ │ └── config.xml │ │ ├── values-ne │ │ └── config.xml │ │ ├── values-nl │ │ └── config.xml │ │ ├── values-or │ │ └── config.xml │ │ ├── values-pa │ │ └── config.xml │ │ ├── values-pl │ │ └── config.xml │ │ ├── values-pt-rBR │ │ └── config.xml │ │ ├── values-pt-rPT │ │ └── config.xml │ │ ├── values-pt │ │ └── config.xml │ │ ├── values-ro │ │ └── config.xml │ │ ├── values-ru │ │ └── config.xml │ │ ├── values-si │ │ └── config.xml │ │ ├── values-sk │ │ └── config.xml │ │ ├── values-sl │ │ └── config.xml │ │ ├── values-sq │ │ └── config.xml │ │ ├── values-sr │ │ └── config.xml │ │ ├── values-sv │ │ └── config.xml │ │ ├── values-sw │ │ └── config.xml │ │ ├── values-ta │ │ └── config.xml │ │ ├── values-te │ │ └── config.xml │ │ ├── values-th │ │ └── config.xml │ │ ├── values-tl │ │ └── config.xml │ │ ├── values-tr │ │ └── config.xml │ │ ├── values-uk │ │ └── config.xml │ │ ├── values-ur │ │ └── config.xml │ │ ├── values-uz │ │ └── config.xml │ │ ├── values-vi │ │ └── config.xml │ │ ├── values-zh-rCN │ │ └── config.xml │ │ ├── values-zh-rHK │ │ └── config.xml │ │ ├── values-zh-rTW │ │ └── config.xml │ │ ├── values-zu │ │ └── config.xml │ │ └── values │ │ ├── config.xml │ │ └── lineage_config.xml ├── rro_packages │ ├── DocumentsUIOverlay │ │ ├── Android.bp │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── NcmTetheringOverlay │ │ ├── Android.bp │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── NetworkStackOverlay │ │ ├── Android.bp │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ └── PermissionControllerOverlay │ │ ├── Android.bp │ │ ├── AndroidManifest.xml │ │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── tablet │ └── frameworks │ │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ │ └── packages │ │ └── SystemUI │ │ └── res │ │ └── values │ │ └── config.xml ├── tv │ ├── frameworks │ │ └── base │ │ │ ├── core │ │ │ └── res │ │ │ │ └── res │ │ │ │ ├── values-television │ │ │ │ └── config.xml │ │ │ │ └── values │ │ │ │ └── config.xml │ │ │ └── packages │ │ │ ├── PackageInstaller │ │ │ └── res │ │ │ │ └── values-television-night │ │ │ │ └── themes.xml │ │ │ └── SettingsProvider │ │ │ └── res │ │ │ └── values │ │ │ └── lineage_defaults.xml │ └── lineage-sdk │ │ └── lineage │ │ └── res │ │ └── res │ │ └── values │ │ └── config.xml └── wifionly │ ├── frameworks │ └── base │ │ └── core │ │ └── res │ │ └── res │ │ └── values │ │ └── config.xml │ └── packages │ └── apps │ └── Settings │ └── res │ └── values │ └── config.xml ├── prebuilt └── common │ ├── Android.bp │ ├── bin │ ├── 50-bliss.sh │ ├── backuptool.functions │ ├── backuptool.sh │ ├── backuptool_ab.functions │ ├── backuptool_ab.sh │ ├── backuptool_postinstall.sh │ └── wipe-frp.sh │ ├── bootanimation │ ├── 1080.zip │ ├── 1200.zip │ ├── 1440.zip │ ├── 720.zip │ ├── 768.zip │ ├── 800.zip │ └── bootanimation.zip │ ├── etc │ ├── apns-conf.xml │ ├── bliss-component-overrides.xml │ ├── init │ │ ├── init.bliss-system_ext.rc │ │ ├── init.bliss-updater.rc │ │ └── init.openssh.rc │ ├── sensitive_pn.xml │ └── sysconfig │ │ └── preinstalled-packages-platform-bliss-product.xml │ └── media │ └── audio │ ├── alarms │ ├── Argon-old.ogg │ ├── Carbon-old.ogg │ ├── CyanAlarm.ogg │ ├── Krypton-old.ogg │ ├── Neon-old.ogg │ ├── NuclearLaunch.ogg │ ├── Osmium-old.ogg │ ├── Oxygen-old.ogg │ └── Platinum-old.ogg │ ├── notifications │ ├── CyanDoink.ogg │ ├── CyanMail.ogg │ ├── CyanMessage.ogg │ ├── Laser.ogg │ ├── Naughty.ogg │ ├── Pong.ogg │ ├── Rang.ogg │ └── Stone.ogg │ └── ringtones │ ├── Boxbeat.ogg │ ├── CyanTone.ogg │ ├── Highscore.ogg │ ├── Lyon.ogg │ ├── Rockin.ogg │ ├── Sheep.mp3 │ └── Yukaay.ogg ├── product └── nvidia.mk ├── release ├── aconfig │ └── bp1a │ │ ├── Android.bp │ │ ├── android.hardware.biometrics │ │ ├── Android.bp │ │ └── screen_off_unlock_udfps_flag_values.textproto │ │ ├── com.android.settings.flags │ │ ├── Android.bp │ │ └── homepage_revamp_flag_values.textproto │ │ └── com.android.window.flags │ │ ├── Android.bp │ │ ├── enable_desktop_windowing_mode_flag_values.textproto │ │ ├── enable_desktop_windowing_taskbar_running_apps_flag_values.textproto │ │ └── enable_minimize_button_flag_values.textproto ├── build_config │ ├── DEFAULT=proto │ └── bp1a.textproto ├── flag_declarations │ ├── Android.bp │ ├── RELEASE_PIXEL_AIDL_AUDIO_HAL.textproto │ ├── RELEASE_PIXEL_AIDL_AUDIO_HAL_ZUMA.textproto │ ├── RELEASE_PIXEL_AIDL_BATTERY_MITIGATION_HAL.textproto │ ├── RELEASE_SVN_CAIMAN.textproto │ ├── RELEASE_SVN_COMET.textproto │ ├── RELEASE_SVN_KOMODO.textproto │ └── RELEASE_SVN_TOKAY.textproto ├── flag_values │ └── bp1a │ │ ├── RELEASE_GOOGLE_AKITA_16K_DEVELOPER_OPTION.textproto │ │ ├── RELEASE_PIXEL_AIDL_AUDIO_HAL.textproto │ │ ├── RELEASE_PIXEL_AIDL_AUDIO_HAL_ZUMA.textproto │ │ ├── RELEASE_PIXEL_AIDL_BATTERY_MITIGATION_HAL.textproto │ │ ├── RELEASE_SVN_AKITA.textproto │ │ ├── RELEASE_SVN_BLUEJAY.textproto │ │ ├── RELEASE_SVN_CAIMAN.textproto │ │ ├── RELEASE_SVN_CHEETAH.textproto │ │ ├── RELEASE_SVN_COMET.textproto │ │ ├── RELEASE_SVN_FELIX.textproto │ │ ├── RELEASE_SVN_HUSKY.textproto │ │ ├── RELEASE_SVN_KOMODO.textproto │ │ ├── RELEASE_SVN_LYNX.textproto │ │ ├── RELEASE_SVN_ORIOLE.textproto │ │ ├── RELEASE_SVN_PANTHER.textproto │ │ ├── RELEASE_SVN_RAVEN.textproto │ │ ├── RELEASE_SVN_SHIBA.textproto │ │ └── RELEASE_SVN_TOKAY.textproto ├── release_config_map.mk ├── release_config_map.textproto └── release_configs │ └── bp1a.textproto ├── spn ├── Android.bp ├── SpnInfo.xsd └── schema │ ├── current.txt │ ├── last_current.txt │ ├── last_removed.txt │ └── removed.txt ├── tools ├── Android.bp ├── apns-conf.xsd └── clean_headers.sh └── vars ├── README.md ├── akita ├── aosp_target_release ├── barbet ├── bluejay ├── blueline ├── bonito ├── bramble ├── caiman ├── cheetah ├── comet ├── common ├── coral ├── crosshatch ├── devices ├── felix ├── flame ├── husky ├── kernel_repos ├── komodo ├── lynx ├── oriole ├── panther ├── pixels ├── qcom ├── raven ├── redbull ├── redfin ├── sargo ├── shiba ├── sunfish ├── taimen ├── tangorpro ├── tokay └── walleye /.github/workflows/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/.github/workflows/build/action.yml -------------------------------------------------------------------------------- /.github/workflows/gerrit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/.github/workflows/gerrit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/LICENSE -------------------------------------------------------------------------------- /bash_completion/git.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/bash_completion/git.bash -------------------------------------------------------------------------------- /bash_completion/repo.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/bash_completion/repo.bash -------------------------------------------------------------------------------- /charger/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/Android.bp -------------------------------------------------------------------------------- /charger/animation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/animation.txt -------------------------------------------------------------------------------- /charger/hdpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/hdpi/battery_fail.png -------------------------------------------------------------------------------- /charger/hdpi/battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/hdpi/battery_scale.png -------------------------------------------------------------------------------- /charger/hdpi/percent_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/hdpi/percent_font.png -------------------------------------------------------------------------------- /charger/mdpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/mdpi/battery_fail.png -------------------------------------------------------------------------------- /charger/mdpi/battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/mdpi/battery_scale.png -------------------------------------------------------------------------------- /charger/mdpi/percent_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/mdpi/percent_font.png -------------------------------------------------------------------------------- /charger/regenerate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/regenerate.sh -------------------------------------------------------------------------------- /charger/svg/battery_fail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_fail.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_00.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_00.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_01.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_02.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_03.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_04.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_05.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_06.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_07.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_08.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_09.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_10.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_11.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_12.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_13.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_14.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_15.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_16.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_17.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_18.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_19.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_20.svg -------------------------------------------------------------------------------- /charger/svg/battery_scale_21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/svg/battery_scale_21.svg -------------------------------------------------------------------------------- /charger/xhdpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/xhdpi/battery_fail.png -------------------------------------------------------------------------------- /charger/xhdpi/battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/xhdpi/battery_scale.png -------------------------------------------------------------------------------- /charger/xhdpi/percent_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/xhdpi/percent_font.png -------------------------------------------------------------------------------- /charger/xxhdpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/xxhdpi/battery_fail.png -------------------------------------------------------------------------------- /charger/xxhdpi/battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/xxhdpi/battery_scale.png -------------------------------------------------------------------------------- /charger/xxhdpi/percent_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/xxhdpi/percent_font.png -------------------------------------------------------------------------------- /charger/xxxhdpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/xxxhdpi/battery_fail.png -------------------------------------------------------------------------------- /charger/xxxhdpi/battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/xxxhdpi/battery_scale.png -------------------------------------------------------------------------------- /charger/xxxhdpi/percent_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/charger/xxxhdpi/percent_font.png -------------------------------------------------------------------------------- /config/BoardConfigBliss.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/BoardConfigBliss.mk -------------------------------------------------------------------------------- /config/BoardConfigKernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/BoardConfigKernel.mk -------------------------------------------------------------------------------- /config/BoardConfigReservedSize.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/BoardConfigReservedSize.mk -------------------------------------------------------------------------------- /config/BoardConfigSoong.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/BoardConfigSoong.mk -------------------------------------------------------------------------------- /config/aosp_audio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/aosp_audio.mk -------------------------------------------------------------------------------- /config/bliss.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/bliss.mk -------------------------------------------------------------------------------- /config/bliss_audio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/bliss_audio.mk -------------------------------------------------------------------------------- /config/bootanimation.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/bootanimation.mk -------------------------------------------------------------------------------- /config/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common.mk -------------------------------------------------------------------------------- /config/common_car.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_car.mk -------------------------------------------------------------------------------- /config/common_full_foldable_book_telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_full_foldable_book_telephony.mk -------------------------------------------------------------------------------- /config/common_full_go_phone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_full_go_phone.mk -------------------------------------------------------------------------------- /config/common_full_phone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_full_phone.mk -------------------------------------------------------------------------------- /config/common_full_tablet.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_full_tablet.mk -------------------------------------------------------------------------------- /config/common_full_tablet_wifionly.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_full_tablet_wifionly.mk -------------------------------------------------------------------------------- /config/common_full_tv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_full_tv.mk -------------------------------------------------------------------------------- /config/common_mini_go_phone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_mini_go_phone.mk -------------------------------------------------------------------------------- /config/common_mini_phone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_mini_phone.mk -------------------------------------------------------------------------------- /config/common_mini_tablet.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_mini_tablet.mk -------------------------------------------------------------------------------- /config/common_mini_tablet_wifionly.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_mini_tablet_wifionly.mk -------------------------------------------------------------------------------- /config/common_mini_tv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_mini_tv.mk -------------------------------------------------------------------------------- /config/common_mobile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_mobile.mk -------------------------------------------------------------------------------- /config/common_mobile_full.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_mobile_full.mk -------------------------------------------------------------------------------- /config/common_mobile_mini.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_mobile_mini.mk -------------------------------------------------------------------------------- /config/common_tv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/common_tv.mk -------------------------------------------------------------------------------- /config/data_only.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/data_only.mk -------------------------------------------------------------------------------- /config/device_framework_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/device_framework_matrix.xml -------------------------------------------------------------------------------- /config/lineage_sdk_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/lineage_sdk_common.mk -------------------------------------------------------------------------------- /config/partner_gms.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/partner_gms.mk -------------------------------------------------------------------------------- /config/permissions/bliss-sysconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/permissions/bliss-sysconfig.xml -------------------------------------------------------------------------------- /config/permissions/org.lineageos.android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/permissions/org.lineageos.android.xml -------------------------------------------------------------------------------- /config/permissions/org.lineageos.globalactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/permissions/org.lineageos.globalactions.xml -------------------------------------------------------------------------------- /config/permissions/org.lineageos.hardware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/permissions/org.lineageos.hardware.xml -------------------------------------------------------------------------------- /config/permissions/org.lineageos.health.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/permissions/org.lineageos.health.xml -------------------------------------------------------------------------------- /config/permissions/org.lineageos.livedisplay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/permissions/org.lineageos.livedisplay.xml -------------------------------------------------------------------------------- /config/permissions/org.lineageos.profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/permissions/org.lineageos.profiles.xml -------------------------------------------------------------------------------- /config/permissions/org.lineageos.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/permissions/org.lineageos.settings.xml -------------------------------------------------------------------------------- /config/permissions/org.lineageos.trust.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/permissions/org.lineageos.trust.xml -------------------------------------------------------------------------------- /config/tablet.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/tablet.mk -------------------------------------------------------------------------------- /config/telephony.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/telephony.mk -------------------------------------------------------------------------------- /config/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/version.mk -------------------------------------------------------------------------------- /config/wifionly.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/config/wifionly.mk -------------------------------------------------------------------------------- /overlay/common/external/setupdesign/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/external/setupdesign/main/res/values/colors.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/_1dm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/_1dm.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/_311.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/_311.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/_360.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/_360.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/_433.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/_433.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/_99.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/_99.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/_k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/_k.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/a101.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/a101.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/aha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/aha.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/aids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/aids.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/aimp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/aimp.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ajio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ajio.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/alga.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/alga.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ally.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ally.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/alt.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/altt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/altt.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/alza.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/alza.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/amap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/amap.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/amil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/amil.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/anb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/anb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/aov.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/aov.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/apx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/apx.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/arc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/arc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/arp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/arp.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/asos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/asos.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ato.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ato.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/au.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/au.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/avnc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/avnc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/aw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/aw.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/axio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/axio.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ayah.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ayah.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/b612.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/b612.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bale.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bam.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/band.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/band.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/barq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/barq.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/batt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/batt.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/baz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/baz.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bbll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bbll.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bbva.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bbva.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bca.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bcr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bcr.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bcv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bcv.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bdv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bdv.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/be.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/be.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/be_u.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/be_u.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/been.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/been.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bhim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bhim.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bing.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bip.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bipa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bipa.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bird.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bird.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/blim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/blim.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/blue.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bluk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bluk.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bmap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bmap.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/boi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/boi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bolt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bolt.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/boo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/boo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bose.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/box.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/br24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/br24.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/buff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/buff.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bunq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bunq.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bura.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bura.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/buz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/buz.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/bvnc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/bvnc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/by_u.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/by_u.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/c24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/c24.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/calm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/calm.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/camo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/camo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cara.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cara.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cbq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cbq.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cbs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cbs.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cda.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cda.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cdek.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cdek.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ceno.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ceno.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cent.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cfe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cfe.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cgeo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cgeo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/chai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/chai.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cheq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cheq.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/chsi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/chsi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cibc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cibc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cic.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/claw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/claw.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/clue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/clue.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cod.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cofi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cofi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/coop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/coop.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/copy.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/core.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cred.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cred.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cvv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cvv.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/cync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/cync.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dana.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dana.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/darq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/darq.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dazn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dazn.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dbna.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dbna.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dcu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dcu.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/deen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/deen.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dh.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dhan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dhan.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dhl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dhl.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dice.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/didi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/didi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dito.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dito.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/diya.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/diya.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dji.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dji.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dkb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dkb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dmss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dmss.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dns.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dogo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dogo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/doku.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/doku.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dooz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dooz.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dott.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dott.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/drip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/drip.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/drom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/drom.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/drtv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/drtv.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dsb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dsb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dso.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/du.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/du.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dual.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/duo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/duo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dvd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dvd.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/dw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/dw.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/eand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/eand.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ebay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ebay.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/edge.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/edx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/edx.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/egov.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/egov.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ella.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ella.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/emag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/emag.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/emby.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/emby.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/enel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/enel.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/enix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/enix.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/enki.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/enki.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/epik.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/epik.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/esp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/esp.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/espn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/espn.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/etsy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/etsy.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/expo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/expo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/f1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/f1.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/fans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/fans.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/fast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/fast.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/fave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/fave.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/feem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/feem.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/fgts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/fgts.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/fig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/fig.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/fing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/fing.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/fizz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/fizz.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/flip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/flip.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/flo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/flo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/flow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/flow.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/flud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/flud.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/flux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/flux.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/flyy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/flyy.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/fnb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/fnb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/foca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/foca.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/fold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/fold.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/fora.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/fora.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/free.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/free.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ftx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ftx.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/g2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/g2a.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/gapo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/gapo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/gbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/gbox.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/geph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/geph.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/gett.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/gett.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/gfx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/gfx.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/gigo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/gigo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/gkd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/gkd.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/grab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/grab.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/gtc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/gtc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/haak.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/haak.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/habo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/habo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hago.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hago.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hail.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hdfc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hdfc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hevy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hevy.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hey.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hh.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hilo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hilo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hit.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hive.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hm.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ho.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ho.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hopi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hopi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/howl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/howl.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hsbc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hsbc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/huda.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/huda.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hulu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hulu.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hvv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hvv.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/hype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/hype.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/i2p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/i2p.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/i2pd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/i2pd.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ibkr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ibkr.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ica.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ica.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/icbc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/icbc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/idfc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/idfc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/iitc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/iitc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ikea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ikea.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/iko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/iko.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/imdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/imdb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ime.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/imms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/imms.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/imo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/imo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ing.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/io.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/io.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ioma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ioma.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/it2p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/it2p.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/itau.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/itau.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/itax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/itax.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/iti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/iti.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ivi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ivi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ivpn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ivpn.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/iyps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/iyps.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/izly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/izly.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/jaki.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/jaki.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/jami.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/jami.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/jd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/jd.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/jiji.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/jiji.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/jins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/jins.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/jmo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/jmo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/join.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/join.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/joom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/joom.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/joox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/joox.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/jow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/jow.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/joyn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/joyn.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/jr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/jr.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kage.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kapk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kapk.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kasa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kasa.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kate.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kfc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kfc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kick.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kid3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kid3.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kik.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kik.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kimi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kimi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kito.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kito.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kkp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kkp.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/klck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/klck.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/klwp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/klwp.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/knip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/knip.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kodi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kodi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/koho.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/koho.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/koki.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/koki.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kook.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kore.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kvb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kvb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kwai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kwai.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/kwgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/kwgt.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ladb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ladb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/lark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/lark.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/lbry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/lbry.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/leo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/leo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/lex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/lex.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/lhv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/lhv.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/lime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/lime.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/line.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/loop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/loop.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/lulo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/lulo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/luup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/luup.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/lyft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/lyft.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/m10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/m10.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/m2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/m2.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/m3u.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/m3u.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mach.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mach.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mae.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mae.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mafa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mafa.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/maps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/maps.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mapy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mapy.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mars.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mavi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mavi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/max.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/max.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/maya.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/maya.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mega.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mega.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mewe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mewe.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mexc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mexc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mezo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mezo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mgit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mgit.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mhrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mhrs.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mimo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mimo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mint.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/miro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/miro.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mivo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mivo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/modo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/modo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/moey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/moey.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/moj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/moj.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mojo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mojo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/momo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/momo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mono.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mono.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mooc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mooc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/more.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/moto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/moto.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mtix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mtix.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mts.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mubi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mubi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mull.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mull.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/must.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/must.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/mvgo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/mvgo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/my48.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/my48.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/my_q.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/my_q.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/myne.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/myne.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/myus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/myus.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/myxl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/myxl.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/n11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/n11.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/n26.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/n26.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/najm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/najm.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/navi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/navi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nays.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nebo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nebo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/neon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/neon.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nest.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/news.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nexo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nexo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/next.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nfg.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nga.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nga.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ngl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ngl.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nhs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nhs.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nike.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nike.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nina.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nina.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nine.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ning.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/niyo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/niyo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/noon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/noon.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/note.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/noto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/noto.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/nova.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/nova.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/now.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/now.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ns.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ntfy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ntfy.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ntv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ntv.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/oald.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/oald.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ocr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ocr.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/odea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/odea.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/oebb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/oebb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ofox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ofox.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ohhi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ohhi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ohno.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ohno.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ok.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ok.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/okay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/okay.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/oken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/oken.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/okey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/okey.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/okko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/okko.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/okx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/okx.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ola.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ola.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/olx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/olx.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/omi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/omi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/omio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/omio.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/omni.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/omni.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/opay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/opay.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/osu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/osu.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/oujo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/oujo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ovo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ovo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/oyo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/oyo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ozon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ozon.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/phub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/phub.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/pick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/pick.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/plex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/plex.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/plum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/plum.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/pnc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/pnc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/poe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/poe.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/pou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/pou.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ptv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ptv.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/pu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/pu.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/pubg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/pubg.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/puma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/puma.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/qcy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/qcy.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/qiwi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/qiwi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/qnb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/qnb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/qoqa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/qoqa.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/qq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/qq.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/qrky.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/qrky.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/qubo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/qubo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/rain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/rain.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/rar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/rar.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/rave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/rave.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/rays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/rays.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/rcx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/rcx.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/rewe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/rewe.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/rimi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/rimi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ring.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/riot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/riot.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/roku.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/roku.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/rtl.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/rush.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/rush.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/rvk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/rvk.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sahl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sahl.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sai.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/saq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/saq.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sbb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sbb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sdui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sdui.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/seal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/seal.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sgk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sgk.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sked.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/skit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/skit.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/smc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/smc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/snow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/snow.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/socl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/socl.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sofi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sofi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/soul.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/soul.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/spar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/spar.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/spic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/spic.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/spmp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/spmp.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sss.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sube.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/suyu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/suyu.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/swap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/swap.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sync.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/sz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/sz.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/t2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/t2.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tado.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tado.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tazz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tazz.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ted.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/temu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/temu.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/teo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/teo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tice.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tier.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tigo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tigo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tile.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tim.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tk.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tmg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tmg.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/top.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/toss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/toss.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tubi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tubi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tui.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tuta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tuta.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/tver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/tver.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/uala.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/uala.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/uber.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/uber.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ubuy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ubuy.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/uno.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/uno.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/unu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/unu.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ups.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ups.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/usaa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/usaa.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/usos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/usos.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/uts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/uts.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/va.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/va.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/valv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/valv.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vcb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vcb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vero.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vero.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vita.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vita.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/viu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/viu.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vivo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vivo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vk.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vkx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vkx.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vlc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vlc.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vllo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vllo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vmos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vmos.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vn.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/voi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/voi.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/voll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/voll.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/voot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/voot.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vsco.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vsco.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vtb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vtb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vvex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vvex.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/vyom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/vyom.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wamr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wamr.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/waze.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/waze.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/we.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/we.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wear.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wger.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/whoo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/whoo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wink.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wire.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wire.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wise.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wise.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wish.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wiz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wiz.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wled.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wolt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wolt.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/woo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/woo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wtmp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wtmp.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/wyze.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/wyze.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/x.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/xbox.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/xda.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/xda.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/xe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/xe.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/xkom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/xkom.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/xoss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/xoss.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/xtra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/xtra.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/xvii.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/xvii.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/yelp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/yelp.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ykb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ykb.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/yota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/yota.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/ypt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/ypt.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/yr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/yr.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/yuka.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/yuka.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/yulu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/yulu.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/yuzu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/yuzu.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/z1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/z1.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zalo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zalo.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zapp.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zara.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zara.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zee5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zee5.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zepp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zepp.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zero.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zero.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zeus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zeus.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zip.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zlib.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zona.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zona.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zoom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zoom.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/drawable/zvuk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Launcher3/res/drawable/zvuk.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Settings/res/values/colors.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Settings/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/common/packages/apps/Settings/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/no-rro/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/no-rro/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/rro_packages/DocumentsUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/rro_packages/DocumentsUIOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/rro_packages/DocumentsUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/rro_packages/DocumentsUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/rro_packages/NcmTetheringOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/rro_packages/NcmTetheringOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/rro_packages/NcmTetheringOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/rro_packages/NcmTetheringOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/rro_packages/NetworkStackOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/rro_packages/NetworkStackOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/rro_packages/NetworkStackOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/rro_packages/NetworkStackOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/rro_packages/PermissionControllerOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/rro_packages/PermissionControllerOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/tv/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/tv/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/tv/lineage-sdk/lineage/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/overlay/tv/lineage-sdk/lineage/res/res/values/config.xml -------------------------------------------------------------------------------- /prebuilt/common/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/Android.bp -------------------------------------------------------------------------------- /prebuilt/common/bin/50-bliss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bin/50-bliss.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bin/backuptool.functions -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bin/backuptool.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool_ab.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bin/backuptool_ab.functions -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool_ab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bin/backuptool_ab.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool_postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bin/backuptool_postinstall.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/wipe-frp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bin/wipe-frp.sh -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/1080.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bootanimation/1080.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/1200.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bootanimation/1200.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/1440.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bootanimation/1440.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/720.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bootanimation/720.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/768.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bootanimation/768.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/800.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bootanimation/800.zip -------------------------------------------------------------------------------- /prebuilt/common/bootanimation/bootanimation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/bootanimation/bootanimation.zip -------------------------------------------------------------------------------- /prebuilt/common/etc/apns-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/etc/apns-conf.xml -------------------------------------------------------------------------------- /prebuilt/common/etc/bliss-component-overrides.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/etc/bliss-component-overrides.xml -------------------------------------------------------------------------------- /prebuilt/common/etc/init/init.bliss-system_ext.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/etc/init/init.bliss-system_ext.rc -------------------------------------------------------------------------------- /prebuilt/common/etc/init/init.bliss-updater.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/etc/init/init.bliss-updater.rc -------------------------------------------------------------------------------- /prebuilt/common/etc/init/init.openssh.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/etc/init/init.openssh.rc -------------------------------------------------------------------------------- /prebuilt/common/etc/sensitive_pn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/etc/sensitive_pn.xml -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/Argon-old.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/alarms/Argon-old.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/Carbon-old.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/alarms/Carbon-old.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/CyanAlarm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/alarms/CyanAlarm.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/Krypton-old.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/alarms/Krypton-old.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/Neon-old.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/alarms/Neon-old.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/NuclearLaunch.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/alarms/NuclearLaunch.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/Osmium-old.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/alarms/Osmium-old.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/Oxygen-old.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/alarms/Oxygen-old.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/alarms/Platinum-old.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/alarms/Platinum-old.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/CyanDoink.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/notifications/CyanDoink.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/CyanMail.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/notifications/CyanMail.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/CyanMessage.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/notifications/CyanMessage.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/Laser.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/notifications/Laser.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/Naughty.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/notifications/Naughty.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/Pong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/notifications/Pong.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/Rang.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/notifications/Rang.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/notifications/Stone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/notifications/Stone.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Boxbeat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/ringtones/Boxbeat.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/CyanTone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/ringtones/CyanTone.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Highscore.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/ringtones/Highscore.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Lyon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/ringtones/Lyon.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Rockin.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/ringtones/Rockin.ogg -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Sheep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/ringtones/Sheep.mp3 -------------------------------------------------------------------------------- /prebuilt/common/media/audio/ringtones/Yukaay.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/prebuilt/common/media/audio/ringtones/Yukaay.ogg -------------------------------------------------------------------------------- /product/nvidia.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/product/nvidia.mk -------------------------------------------------------------------------------- /release/aconfig/bp1a/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/aconfig/bp1a/Android.bp -------------------------------------------------------------------------------- /release/aconfig/bp1a/android.hardware.biometrics/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/aconfig/bp1a/android.hardware.biometrics/Android.bp -------------------------------------------------------------------------------- /release/aconfig/bp1a/com.android.settings.flags/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/aconfig/bp1a/com.android.settings.flags/Android.bp -------------------------------------------------------------------------------- /release/aconfig/bp1a/com.android.window.flags/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/aconfig/bp1a/com.android.window.flags/Android.bp -------------------------------------------------------------------------------- /release/build_config/DEFAULT=proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release/build_config/bp1a.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/build_config/bp1a.textproto -------------------------------------------------------------------------------- /release/flag_declarations/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_declarations/Android.bp -------------------------------------------------------------------------------- /release/flag_declarations/RELEASE_SVN_CAIMAN.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_declarations/RELEASE_SVN_CAIMAN.textproto -------------------------------------------------------------------------------- /release/flag_declarations/RELEASE_SVN_COMET.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_declarations/RELEASE_SVN_COMET.textproto -------------------------------------------------------------------------------- /release/flag_declarations/RELEASE_SVN_KOMODO.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_declarations/RELEASE_SVN_KOMODO.textproto -------------------------------------------------------------------------------- /release/flag_declarations/RELEASE_SVN_TOKAY.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_declarations/RELEASE_SVN_TOKAY.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_AKITA.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_AKITA.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_BLUEJAY.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_BLUEJAY.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_CAIMAN.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_CAIMAN.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_CHEETAH.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_CHEETAH.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_COMET.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_COMET.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_FELIX.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_FELIX.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_HUSKY.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_HUSKY.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_KOMODO.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_KOMODO.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_LYNX.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_LYNX.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_ORIOLE.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_ORIOLE.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_PANTHER.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_PANTHER.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_RAVEN.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_RAVEN.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_SHIBA.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_SHIBA.textproto -------------------------------------------------------------------------------- /release/flag_values/bp1a/RELEASE_SVN_TOKAY.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/flag_values/bp1a/RELEASE_SVN_TOKAY.textproto -------------------------------------------------------------------------------- /release/release_config_map.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/release_config_map.mk -------------------------------------------------------------------------------- /release/release_config_map.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/release_config_map.textproto -------------------------------------------------------------------------------- /release/release_configs/bp1a.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/release/release_configs/bp1a.textproto -------------------------------------------------------------------------------- /spn/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/spn/Android.bp -------------------------------------------------------------------------------- /spn/SpnInfo.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/spn/SpnInfo.xsd -------------------------------------------------------------------------------- /spn/schema/current.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/spn/schema/current.txt -------------------------------------------------------------------------------- /spn/schema/last_current.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spn/schema/last_removed.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spn/schema/removed.txt: -------------------------------------------------------------------------------- 1 | // Signature format: 2.0 2 | -------------------------------------------------------------------------------- /tools/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/tools/Android.bp -------------------------------------------------------------------------------- /tools/apns-conf.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/tools/apns-conf.xsd -------------------------------------------------------------------------------- /tools/clean_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/tools/clean_headers.sh -------------------------------------------------------------------------------- /vars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/README.md -------------------------------------------------------------------------------- /vars/akita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/akita -------------------------------------------------------------------------------- /vars/aosp_target_release: -------------------------------------------------------------------------------- 1 | # Updated manually 2 | aosp_target_release=bp1a 3 | -------------------------------------------------------------------------------- /vars/barbet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/barbet -------------------------------------------------------------------------------- /vars/bluejay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/bluejay -------------------------------------------------------------------------------- /vars/blueline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/blueline -------------------------------------------------------------------------------- /vars/bonito: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/bonito -------------------------------------------------------------------------------- /vars/bramble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/bramble -------------------------------------------------------------------------------- /vars/caiman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/caiman -------------------------------------------------------------------------------- /vars/cheetah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/cheetah -------------------------------------------------------------------------------- /vars/comet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/comet -------------------------------------------------------------------------------- /vars/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/common -------------------------------------------------------------------------------- /vars/coral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/coral -------------------------------------------------------------------------------- /vars/crosshatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/crosshatch -------------------------------------------------------------------------------- /vars/devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/devices -------------------------------------------------------------------------------- /vars/felix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/felix -------------------------------------------------------------------------------- /vars/flame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/flame -------------------------------------------------------------------------------- /vars/husky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/husky -------------------------------------------------------------------------------- /vars/kernel_repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/kernel_repos -------------------------------------------------------------------------------- /vars/komodo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/komodo -------------------------------------------------------------------------------- /vars/lynx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/lynx -------------------------------------------------------------------------------- /vars/oriole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/oriole -------------------------------------------------------------------------------- /vars/panther: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/panther -------------------------------------------------------------------------------- /vars/pixels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/pixels -------------------------------------------------------------------------------- /vars/qcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/qcom -------------------------------------------------------------------------------- /vars/raven: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/raven -------------------------------------------------------------------------------- /vars/redbull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/redbull -------------------------------------------------------------------------------- /vars/redfin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/redfin -------------------------------------------------------------------------------- /vars/sargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/sargo -------------------------------------------------------------------------------- /vars/shiba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/shiba -------------------------------------------------------------------------------- /vars/sunfish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/sunfish -------------------------------------------------------------------------------- /vars/taimen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/taimen -------------------------------------------------------------------------------- /vars/tangorpro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/tangorpro -------------------------------------------------------------------------------- /vars/tokay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/tokay -------------------------------------------------------------------------------- /vars/walleye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlissRoms/platform_vendor_bliss/HEAD/vars/walleye --------------------------------------------------------------------------------