├── .gitignore ├── Android.mk ├── CleanSpec.mk ├── NOTICE ├── README.md ├── adb_install.cpp ├── adb_install.h ├── adbbu ├── Android.mk ├── libtwadbbu.cpp ├── libtwadbbu.hpp ├── twadbstream.h ├── twrpback.cpp └── twrpback.hpp ├── applypatch ├── Android.mk ├── NOTICE ├── applypatch.cpp ├── applypatch.h ├── applypatch.sh ├── bsdiff.cpp ├── bspatch.cpp ├── freecache.cpp ├── imgdiff.cpp ├── imgdiff.h ├── imgdiff_test.sh ├── imgpatch.cpp ├── include │ └── applypatch │ │ └── imgpatch.h ├── main.cpp ├── testdata │ ├── new.file │ ├── old.file │ └── patch.bsdiff ├── utils.cpp └── utils.h ├── asn1_decoder.cpp ├── asn1_decoder.h ├── attr ├── Android.mk └── listxattr.c ├── bmlutils ├── Android.mk ├── bmlutils.c └── bmlutils.h ├── bootloader.h ├── bootloader_message ├── Android.mk ├── bootloader_message.cpp └── include │ └── bootloader_message │ └── bootloader_message.h ├── common.h ├── crypto ├── ext4crypt │ ├── Android.mk │ ├── Decrypt.cpp │ ├── Decrypt.h │ ├── Ext4Crypt.cpp │ ├── Ext4Crypt.h │ ├── HashPassword.cpp │ ├── HashPassword.h │ ├── KeyStorage.cpp │ ├── KeyStorage.h │ ├── Keymaster.cpp │ ├── Keymaster.h │ ├── ScryptParameters.cpp │ ├── ScryptParameters.h │ ├── Utils.cpp │ ├── Utils.h │ ├── e4policyget.cpp │ ├── ext4_crypt.cpp │ ├── ext4crypt_tar.h │ └── main.cpp ├── lollipop │ ├── Android.mk │ ├── cryptfs.c │ ├── cryptfs.h │ └── main.c ├── scrypt │ ├── Android.mk │ ├── MODULE_LICENSE_BSD_LIKE │ ├── NOTICE │ ├── Scrypt-config.mk │ ├── Scrypt.mk │ ├── android-config.mk │ ├── build-config.mk │ ├── config.h │ ├── import_scrypt.sh │ ├── lib │ │ ├── README │ │ ├── crypto │ │ │ ├── crypto_scrypt-neon-salsa208.h │ │ │ ├── crypto_scrypt-neon.c │ │ │ ├── crypto_scrypt-ref.c │ │ │ ├── crypto_scrypt-sse.c │ │ │ └── crypto_scrypt.h │ │ └── util │ │ │ └── sysendian.h │ ├── patches │ │ ├── README │ │ ├── arm-neon.patch │ │ └── use_openssl_pbkdf2.patch │ ├── scrypt.config │ ├── scrypt.version │ ├── scrypt_platform.h │ └── tests │ │ ├── Android.mk │ │ └── scrypt_test.cpp └── vold_decrypt │ ├── Android.mk │ ├── init.recovery.vold_decrypt.qseecomd.rc │ ├── init.recovery.vold_decrypt.rc │ ├── vold_decrypt.cpp │ └── vold_decrypt.h ├── data.cpp ├── data.hpp ├── default_device.cpp ├── device.cpp ├── device.h ├── dosfstools ├── Android.mk ├── COPYING ├── ChangeLog ├── Makefile ├── VERSION ├── bin │ └── Nindent ├── doc │ ├── ANNOUNCE.mkdosfs │ ├── ChangeLog.dosfsck │ ├── ChangeLog.dosfstools-2.x │ ├── ChangeLog.mkdosfs │ ├── README.dosfsck │ ├── README.dosfstools-2.x │ ├── README.mkdosfs │ └── TODO.dosfstools-2.x ├── manpages │ ├── Makefile │ ├── bin │ │ └── update-version.sh │ ├── de │ │ ├── fatlabel.de.8 │ │ ├── fsck.fat.de.8 │ │ └── mkfs.fat.de.8 │ ├── en │ │ ├── fatlabel.8 │ │ ├── fsck.fat.8 │ │ └── mkfs.fat.8 │ ├── po │ │ └── de │ │ │ ├── fatlabel.8.po │ │ │ ├── fsck.fat.8.po │ │ │ └── mkfs.fat.8.po │ ├── po4a.cfg │ └── pot │ │ ├── fatlabel.8.pot │ │ ├── fsck.fat.8.pot │ │ └── mkfs.fat.8.pot └── src │ ├── boot.c │ ├── boot.h │ ├── check.c │ ├── check.h │ ├── common.c │ ├── common.h │ ├── fat.c │ ├── fat.h │ ├── fatlabel.c │ ├── file.c │ ├── file.h │ ├── fsck.fat.c │ ├── fsck.fat.h │ ├── io.c │ ├── io.h │ ├── lfn.c │ ├── lfn.h │ ├── mkfs.fat.c │ ├── msdos_fs.h │ └── version.h ├── edify ├── Android.mk ├── README ├── expr.cpp ├── expr.h ├── lexer.ll ├── main.cpp ├── parser.yy └── yydefs.h ├── error_code.h ├── etc ├── Android.mk ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ └── update-script ├── init.rc ├── init.recovery.logd.rc ├── init.recovery.service21.rc ├── init.recovery.service22.rc └── init.recovery.usb.rc ├── exclude.cpp ├── exclude.hpp ├── exfat ├── COPYING ├── ChangeLog ├── README.md ├── dump │ ├── dumpexfat.8 │ └── main.c ├── fsck │ ├── Android.mk │ ├── exfatfsck.8 │ └── main.c ├── fuse │ ├── Android.mk │ ├── main.c │ └── mount.exfat-fuse.8 ├── label │ ├── exfatlabel.8 │ └── main.c ├── libexfat │ ├── Android.mk │ ├── android_config.h │ ├── byteorder.h │ ├── cluster.c │ ├── compiler.h │ ├── exfat.h │ ├── exfatfs.h │ ├── io.c │ ├── log.c │ ├── lookup.c │ ├── mount.c │ ├── node.c │ ├── platform.h │ ├── time.c │ ├── utf.c │ └── utils.c └── mkfs │ ├── Android.mk │ ├── cbm.c │ ├── cbm.h │ ├── fat.c │ ├── fat.h │ ├── main.c │ ├── mkexfat.c │ ├── mkexfat.h │ ├── mkexfatfs.8 │ ├── rootdir.c │ ├── rootdir.h │ ├── uct.c │ ├── uct.h │ ├── uctc.c │ ├── uctc.h │ ├── vbr.c │ └── vbr.h ├── fb2png ├── .gitignore ├── Android.mk ├── AndroidManifest.xml ├── COPYING ├── Makefile ├── adb_screenshoot.c ├── ascreenshooter.py ├── fb.c ├── fb.h ├── fb2png-jni.c ├── fb2png.c ├── fb2png.h ├── img_process.c ├── img_process.h ├── jni │ └── Application.mk ├── libpng │ ├── include │ │ ├── png.h │ │ ├── pngconf.h │ │ └── pnglibconf.h │ └── lib │ │ └── libpng.a ├── log.h ├── main.c ├── run.sh └── view888 ├── find_file.cpp ├── find_file.hpp ├── fixContexts.cpp ├── fixContexts.hpp ├── flashutils ├── Android.mk ├── dump_image.c ├── erase_image.c ├── flash_image.c ├── flashutils.c └── flashutils.h ├── fonts ├── 12x22.png ├── 18x32.png ├── OFL.txt └── README ├── fuse.h ├── fuse ├── AUTHORS ├── Android.mk ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── README ├── android │ ├── config.h │ ├── statvfs.c │ └── sys │ │ └── statvfs.h ├── buffer.c ├── cuse_lowlevel.c ├── fuse.c ├── fuse_i.h ├── fuse_kern_chan.c ├── fuse_loop.c ├── fuse_loop_mt.c ├── fuse_lowlevel.c ├── fuse_misc.h ├── fuse_mt.c ├── fuse_opt.c ├── fuse_session.c ├── fuse_signals.c ├── fuse_versionscript ├── helper.c ├── include │ ├── Makefile.am │ ├── cuse_lowlevel.h │ ├── fuse.h │ ├── fuse_common.h │ ├── fuse_common_compat.h │ ├── fuse_compat.h │ ├── fuse_kernel.h │ ├── fuse_lowlevel.h │ ├── fuse_lowlevel_compat.h │ ├── fuse_opt.h │ ├── old │ │ └── fuse.h │ └── ulockmgr.h ├── modules │ ├── iconv.c │ └── subdir.c ├── mount.c ├── mount_bsd.c ├── mount_util.c ├── mount_util.h └── ulockmgr.c ├── fuse_sdcard_provider.cpp ├── fuse_sdcard_provider.h ├── fuse_sideload.cpp ├── fuse_sideload.h ├── gpt ├── Android.mk ├── gpt.c ├── gpt.h ├── gptcrc32.c └── gptcrc32.h ├── gui ├── Android.mk ├── action.cpp ├── animation.cpp ├── blanktimer.cpp ├── blanktimer.hpp ├── button.cpp ├── checkbox.cpp ├── console.cpp ├── fileselector.cpp ├── fill.cpp ├── gui.cpp ├── gui.h ├── gui.hpp ├── hardwarekeyboard.cpp ├── image.cpp ├── input.cpp ├── keyboard.cpp ├── listbox.cpp ├── mousecursor.cpp ├── object.cpp ├── objects.hpp ├── pages.cpp ├── pages.h ├── pages.hpp ├── partitionlist.cpp ├── patternpassword.cpp ├── placement.h ├── progressbar.cpp ├── rapidxml.hpp ├── remaining.txt ├── resources.cpp ├── resources.hpp ├── scrolllist.cpp ├── slider.cpp ├── slidervalue.cpp ├── terminal.cpp ├── text.cpp ├── textbox.cpp ├── theme │ ├── common │ │ ├── fonts │ │ │ ├── DroidSansMono.ttf │ │ │ └── RobotoCondensed-Regular.ttf │ │ ├── images │ │ │ ├── progress_empty.png │ │ │ └── progress_fill.png │ │ ├── landscape.xml │ │ ├── languages │ │ │ ├── cz.xml │ │ │ ├── de.xml │ │ │ ├── el.xml │ │ │ ├── en.xml │ │ │ ├── es.xml │ │ │ ├── fr.xml │ │ │ ├── hu.xml │ │ │ ├── it.xml │ │ │ ├── nl.xml │ │ │ ├── pl.xml │ │ │ ├── pt_BR.xml │ │ │ ├── ru.xml │ │ │ ├── sk.xml │ │ │ ├── sl.xml │ │ │ ├── sv.xml │ │ │ ├── tr.xml │ │ │ └── uk.xml │ │ ├── portrait.xml │ │ ├── portrait_multirom.xml │ │ └── watch.xml │ ├── extra-languages │ │ ├── fonts │ │ │ ├── DroidSansFallback.ttf │ │ │ ├── NotoSansCJKjp-Regular.ttf │ │ │ └── OFL.txt │ │ └── languages │ │ │ ├── ja.xml │ │ │ ├── zh_CN.xml │ │ │ └── zh_TW.xml │ ├── landscape_hdpi │ │ ├── images │ │ │ ├── back.png │ │ │ ├── backspace.png │ │ │ ├── backspace_terminal.png │ │ │ ├── checkbox_false.png │ │ │ ├── checkbox_true.png │ │ │ ├── console.png │ │ │ ├── cursor.png │ │ │ ├── enter.png │ │ │ ├── enter_terminal.png │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── handle.png │ │ │ ├── home.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── indeterminate007.png │ │ │ ├── indeterminate008.png │ │ │ ├── indeterminate009.png │ │ │ ├── indeterminate010.png │ │ │ ├── indeterminate011.png │ │ │ ├── indeterminate012.png │ │ │ ├── kb_arrow_down.png │ │ │ ├── kb_arrow_left.png │ │ │ ├── kb_arrow_right.png │ │ │ ├── kb_arrow_up.png │ │ │ ├── kb_hide.png │ │ │ ├── kb_show.png │ │ │ ├── logo.png │ │ │ ├── main_button.png │ │ │ ├── main_button_half_width.png │ │ │ ├── main_button_half_width_low.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_false.png │ │ │ ├── radio_true.png │ │ │ ├── shift.png │ │ │ ├── shift_fill.png │ │ │ ├── shift_terminal.png │ │ │ ├── shift_terminal_fill.png │ │ │ ├── slider.png │ │ │ ├── slider_touch.png │ │ │ ├── slider_used.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_empty.png │ │ │ ├── space.png │ │ │ ├── space_terminal.png │ │ │ ├── splashlogo.png │ │ │ ├── splashteamwin.png │ │ │ ├── tab_3.png │ │ │ ├── tab_4.png │ │ │ └── unlock_icon.png │ │ ├── splash.xml │ │ └── ui.xml │ ├── landscape_mdpi │ │ ├── images │ │ │ ├── back.png │ │ │ ├── backspace.png │ │ │ ├── backspace_terminal.png │ │ │ ├── checkbox_false.png │ │ │ ├── checkbox_true.png │ │ │ ├── console.png │ │ │ ├── cursor.png │ │ │ ├── enter.png │ │ │ ├── enter_terminal.png │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── handle.png │ │ │ ├── home.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── indeterminate007.png │ │ │ ├── indeterminate008.png │ │ │ ├── indeterminate009.png │ │ │ ├── indeterminate010.png │ │ │ ├── indeterminate011.png │ │ │ ├── indeterminate012.png │ │ │ ├── kb_arrow_down.png │ │ │ ├── kb_arrow_left.png │ │ │ ├── kb_arrow_right.png │ │ │ ├── kb_arrow_up.png │ │ │ ├── kb_hide.png │ │ │ ├── kb_show.png │ │ │ ├── logo.png │ │ │ ├── main_button.png │ │ │ ├── main_button_half_width.png │ │ │ ├── main_button_half_width_low.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_false.png │ │ │ ├── radio_true.png │ │ │ ├── shift.png │ │ │ ├── shift_fill.png │ │ │ ├── shift_terminal.png │ │ │ ├── shift_terminal_fill.png │ │ │ ├── slider.png │ │ │ ├── slider_touch.png │ │ │ ├── slider_used.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_empty.png │ │ │ ├── space.png │ │ │ ├── space_terminal.png │ │ │ ├── splashlogo.png │ │ │ ├── splashteamwin.png │ │ │ ├── tab_3.png │ │ │ ├── tab_4.png │ │ │ └── unlock_icon.png │ │ ├── splash.xml │ │ └── ui.xml │ ├── portrait_hdpi │ │ ├── images │ │ │ ├── back.png │ │ │ ├── backspace.png │ │ │ ├── checkbox_false.png │ │ │ ├── checkbox_true.png │ │ │ ├── console.png │ │ │ ├── cursor.png │ │ │ ├── enter.png │ │ │ ├── fab_selectfolder.png │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── handle.png │ │ │ ├── home.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── indeterminate007.png │ │ │ ├── indeterminate008.png │ │ │ ├── indeterminate009.png │ │ │ ├── indeterminate010.png │ │ │ ├── indeterminate011.png │ │ │ ├── indeterminate012.png │ │ │ ├── kb_arrow_down.png │ │ │ ├── kb_arrow_left.png │ │ │ ├── kb_arrow_right.png │ │ │ ├── kb_arrow_up.png │ │ │ ├── kb_hide.png │ │ │ ├── kb_show.png │ │ │ ├── logo.png │ │ │ ├── logo_mr.png │ │ │ ├── main_button.png │ │ │ ├── main_button_half_height.png │ │ │ ├── main_button_half_height_full_width.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_false.png │ │ │ ├── radio_true.png │ │ │ ├── shift.png │ │ │ ├── shift_fill.png │ │ │ ├── slider.png │ │ │ ├── slider_touch.png │ │ │ ├── slider_used.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_empty.png │ │ │ ├── space.png │ │ │ ├── splashlogo.png │ │ │ ├── splashlogo_mr.png │ │ │ ├── splashteamwin.png │ │ │ ├── tab_3.png │ │ │ ├── tab_4.png │ │ │ ├── tab_display.png │ │ │ ├── tab_general.png │ │ │ ├── tab_language.png │ │ │ ├── tab_timezone.png │ │ │ ├── tab_vibration.png │ │ │ └── unlock_icon.png │ │ ├── splash.xml │ │ └── ui.xml │ ├── portrait_mdpi │ │ ├── images │ │ │ ├── back.png │ │ │ ├── backspace.png │ │ │ ├── checkbox_false.png │ │ │ ├── checkbox_true.png │ │ │ ├── console.png │ │ │ ├── cursor.png │ │ │ ├── enter.png │ │ │ ├── fab_selectfolder.png │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── handle.png │ │ │ ├── home.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── indeterminate007.png │ │ │ ├── indeterminate008.png │ │ │ ├── indeterminate009.png │ │ │ ├── indeterminate010.png │ │ │ ├── indeterminate011.png │ │ │ ├── indeterminate012.png │ │ │ ├── kb_arrow_down.png │ │ │ ├── kb_arrow_left.png │ │ │ ├── kb_arrow_right.png │ │ │ ├── kb_arrow_up.png │ │ │ ├── kb_hide.png │ │ │ ├── kb_show.png │ │ │ ├── logo.png │ │ │ ├── main_button.png │ │ │ ├── main_button_half_height.png │ │ │ ├── main_button_half_height_full_width.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_false.png │ │ │ ├── radio_true.png │ │ │ ├── shift.png │ │ │ ├── shift_fill.png │ │ │ ├── slider.png │ │ │ ├── slider_touch.png │ │ │ ├── slider_used.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_empty.png │ │ │ ├── space.png │ │ │ ├── splashlogo.png │ │ │ ├── splashteamwin.png │ │ │ ├── tab_3.png │ │ │ ├── tab_4.png │ │ │ ├── tab_display.png │ │ │ ├── tab_general.png │ │ │ ├── tab_language.png │ │ │ ├── tab_timezone.png │ │ │ ├── tab_vibration.png │ │ │ └── unlock_icon.png │ │ ├── splash.xml │ │ └── ui.xml │ └── watch_mdpi │ │ ├── images │ │ ├── back.png │ │ ├── backspace.png │ │ ├── checkbox_false.png │ │ ├── checkbox_false_small.png │ │ ├── checkbox_true.png │ │ ├── checkbox_true_small.png │ │ ├── close.png │ │ ├── console.png │ │ ├── enter.png │ │ ├── file.png │ │ ├── folder.png │ │ ├── grid_less.png │ │ ├── grid_more.png │ │ ├── handle.png │ │ ├── home.png │ │ ├── indeterminate001.png │ │ ├── indeterminate002.png │ │ ├── indeterminate003.png │ │ ├── indeterminate004.png │ │ ├── indeterminate005.png │ │ ├── indeterminate006.png │ │ ├── indeterminate007.png │ │ ├── indeterminate008.png │ │ ├── indeterminate009.png │ │ ├── indeterminate010.png │ │ ├── indeterminate011.png │ │ ├── indeterminate012.png │ │ ├── kb_arrow_down.png │ │ ├── kb_arrow_left.png │ │ ├── kb_arrow_right.png │ │ ├── kb_arrow_up.png │ │ ├── kb_hide.png │ │ ├── kb_show.png │ │ ├── main_button.png │ │ ├── main_button_full_width.png │ │ ├── main_button_half_height.png │ │ ├── main_button_quarter_width.png │ │ ├── progress_empty.png │ │ ├── progress_fill.png │ │ ├── q_btn_accept.png │ │ ├── q_btn_accept_transp.png │ │ ├── q_btn_addzip.png │ │ ├── q_btn_arrow_left.png │ │ ├── q_btn_arrow_right.png │ │ ├── q_btn_delete.png │ │ ├── q_btn_encryption_dis.png │ │ ├── q_btn_encryption_en.png │ │ ├── q_btn_folder.png │ │ ├── q_btn_refresh.png │ │ ├── q_btn_reset.png │ │ ├── q_btn_storage.png │ │ ├── radio_false.png │ │ ├── radio_true.png │ │ ├── shift.png │ │ ├── shift_fill.png │ │ ├── slider.png │ │ ├── slider_touch.png │ │ ├── slider_used.png │ │ ├── space.png │ │ ├── splashlogo.png │ │ ├── splashteamwin.png │ │ └── unlock_icon.png │ │ ├── splash.xml │ │ └── ui.xml ├── themes_multirom │ ├── 1200x1920 │ │ ├── fonts │ │ │ ├── DroidSansMono.ttf │ │ │ ├── RobotoMedium.ttf │ │ │ └── RobotoRegular.ttf │ │ ├── images │ │ │ ├── actionbar.png │ │ │ ├── actionbar_back.png │ │ │ ├── actionbar_back_hl.png │ │ │ ├── actionbar_close.png │ │ │ ├── actionbar_close_hl.png │ │ │ ├── actionbar_delete.png │ │ │ ├── actionbar_delete_hl.png │ │ │ ├── actionbar_edit.png │ │ │ ├── actionbar_edit_hl.png │ │ │ ├── actionbar_encr_dis.png │ │ │ ├── actionbar_encr_dis_hl.png │ │ │ ├── actionbar_encr_ena.png │ │ │ ├── actionbar_encr_ena_hl.png │ │ │ ├── actionbar_ex.png │ │ │ ├── actionbar_font_big.png │ │ │ ├── actionbar_font_big_hl.png │ │ │ ├── actionbar_font_small.png │ │ │ ├── actionbar_font_small_hl.png │ │ │ ├── actionbar_logo.png │ │ │ ├── actionbar_overflow.png │ │ │ ├── actionbar_overflow_hl.png │ │ │ ├── actionbar_pin.png │ │ │ ├── actionbar_pin_hl.png │ │ │ ├── actionbar_pinned.png │ │ │ ├── actionbar_pinned_hl.png │ │ │ ├── actionbar_refresh.png │ │ │ ├── actionbar_refresh_hl.png │ │ │ ├── actionbar_reset.png │ │ │ ├── actionbar_reset_hl.png │ │ │ ├── actionbar_settings.png │ │ │ ├── actionbar_settings_hl.png │ │ │ ├── actionbar_sort.png │ │ │ ├── actionbar_sort_hl.png │ │ │ ├── actionbar_tab.png │ │ │ ├── actionbar_theme.png │ │ │ ├── actionbar_theme_hl.png │ │ │ ├── back.png │ │ │ ├── back_hl.png │ │ │ ├── background.png │ │ │ ├── backspace.png │ │ │ ├── bc_about.png │ │ │ ├── bc_advanced.png │ │ │ ├── bc_backup.png │ │ │ ├── bc_confirmaction.png │ │ │ ├── bc_done.png │ │ │ ├── bc_dumlock.png │ │ │ ├── bc_filemanager.png │ │ │ ├── bc_install.png │ │ │ ├── bc_install_image.png │ │ │ ├── bc_install_image_m.png │ │ │ ├── bc_install_zip.png │ │ │ ├── bc_install_zip_m.png │ │ │ ├── bc_installsu.png │ │ │ ├── bc_mount.png │ │ │ ├── bc_multirom.png │ │ │ ├── bc_multiromsettings.png │ │ │ ├── bc_partsdcard.png │ │ │ ├── bc_restart.png │ │ │ ├── bc_restore.png │ │ │ ├── bc_settings.png │ │ │ ├── bc_settings_theme.png │ │ │ ├── bc_sideload.png │ │ │ ├── bc_terminal.png │ │ │ ├── bc_wipe.png │ │ │ ├── bc_working.png │ │ │ ├── bs_bg.png │ │ │ ├── bs_btn_chmod.png │ │ │ ├── bs_btn_chmod644.png │ │ │ ├── bs_btn_chmod755.png │ │ │ ├── bs_btn_copy.png │ │ │ ├── bs_btn_cut.png │ │ │ ├── bs_btn_delete.png │ │ │ ├── bs_btn_rename.png │ │ │ ├── bs_close.png │ │ │ ├── btn_appenddate.png │ │ │ ├── btn_flat_3.png │ │ │ ├── btn_flat_4.png │ │ │ ├── btn_flat_5.png │ │ │ ├── btn_flat_6.png │ │ │ ├── btn_flat_ext3.png │ │ │ ├── btn_flat_ext4.png │ │ │ ├── btn_flat_injectbootsector.png │ │ │ ├── btn_flat_installdumlock.png │ │ │ ├── btn_flat_less.png │ │ │ ├── btn_flat_more.png │ │ │ ├── btn_flat_reflashrecovery.png │ │ │ ├── btn_flat_restoreboot.png │ │ │ ├── btn_flat_rot0.png │ │ │ ├── btn_flat_rot180.png │ │ │ ├── btn_flat_rot270.png │ │ │ ├── btn_flat_rot90.png │ │ │ ├── btn_float_accept.png │ │ │ ├── btn_float_addtoqueue.png │ │ │ ├── btn_float_addtoqueue_hl.png │ │ │ ├── btn_float_flashifyinfo.png │ │ │ ├── btn_float_flashifyinfo_hl.png │ │ │ ├── btn_float_folder.png │ │ │ ├── btn_menu_date_a.png │ │ │ ├── btn_menu_date_a_sel.png │ │ │ ├── btn_menu_date_d.png │ │ │ ├── btn_menu_date_d_sel.png │ │ │ ├── btn_menu_img.png │ │ │ ├── btn_menu_img_sel.png │ │ │ ├── btn_menu_inject.png │ │ │ ├── btn_menu_name_a.png │ │ │ ├── btn_menu_name_a_sel.png │ │ │ ├── btn_menu_name_d.png │ │ │ ├── btn_menu_name_d_sel.png │ │ │ ├── btn_menu_settings.png │ │ │ ├── btn_menu_size_a.png │ │ │ ├── btn_menu_size_a_sel.png │ │ │ ├── btn_menu_size_d.png │ │ │ ├── btn_menu_size_d_sel.png │ │ │ ├── btn_menu_zip.png │ │ │ ├── btn_menu_zip_sel.png │ │ │ ├── btn_raised_advancedwipe.png │ │ │ ├── btn_raised_back.png │ │ │ ├── btn_raised_cancel.png │ │ │ ├── btn_raised_changecolor.png │ │ │ ├── btn_raised_changesplash.png │ │ │ ├── btn_raised_changetheme.png │ │ │ ├── btn_raised_clearqueue.png │ │ │ ├── btn_raised_decryptdata.png │ │ │ ├── btn_raised_disablemtp.png │ │ │ ├── btn_raised_disconnect.png │ │ │ ├── btn_raised_enablemtp.png │ │ │ ├── btn_raised_filesystem.png │ │ │ ├── btn_raised_formatdata.png │ │ │ ├── btn_raised_fschange.png │ │ │ ├── btn_raised_fsoptions.png │ │ │ ├── btn_raised_fsrepair.png │ │ │ ├── btn_raised_fsresize.png │ │ │ ├── btn_raised_installscript.png │ │ │ ├── btn_raised_keepreadonly.png │ │ │ ├── btn_raised_mr_addboot.png │ │ │ ├── btn_raised_mr_addfile.png │ │ │ ├── btn_raised_mr_addradio.png │ │ │ ├── btn_raised_mr_addrom.png │ │ │ ├── btn_raised_mr_backup.png │ │ │ ├── btn_raised_mr_delete.png │ │ │ ├── btn_raised_mr_flashzip.png │ │ │ ├── btn_raised_mr_next.png │ │ │ ├── btn_raised_mr_remboot.png │ │ │ ├── btn_raised_mr_remradio.png │ │ │ ├── btn_raised_mr_rename.png │ │ │ ├── btn_raised_mr_repatchinit.png │ │ │ ├── btn_raised_mr_restorecon.png │ │ │ ├── btn_raised_mr_selectimage.png │ │ │ ├── btn_raised_mr_sideload.png │ │ │ ├── btn_raised_mr_swaproms.png │ │ │ ├── btn_raised_mr_wipecache.png │ │ │ ├── btn_raised_mr_wipedalvik.png │ │ │ ├── btn_raised_mr_wipedata.png │ │ │ ├── btn_raised_mr_zipfile.png │ │ │ ├── btn_raised_noinstall.png │ │ │ ├── btn_raised_ok.png │ │ │ ├── btn_raised_rebootrecovery.png │ │ │ ├── btn_raised_rebootsystem.png │ │ │ ├── btn_raised_usbstorage.png │ │ │ ├── btn_raised_viewqueue.png │ │ │ ├── btn_raised_wipecaches.png │ │ │ ├── btn_raised_wipeencryption.png │ │ │ ├── checkbox_false.png │ │ │ ├── checkbox_false_d.png │ │ │ ├── checkbox_true.png │ │ │ ├── checkbox_true_d.png │ │ │ ├── cursor.png │ │ │ ├── db_cancel.png │ │ │ ├── db_cancel_hl.png │ │ │ ├── db_ok.png │ │ │ ├── db_ok_hl.png │ │ │ ├── db_refresh.png │ │ │ ├── dialog_bg.png │ │ │ ├── dialog_bg_bak.png │ │ │ ├── dialog_label_bookmark.png │ │ │ ├── dialog_label_color.png │ │ │ ├── dialog_label_decryption.png │ │ │ ├── dialog_label_encryption.png │ │ │ ├── dialog_label_offset.png │ │ │ ├── dialog_label_removetheme.png │ │ │ ├── dialog_label_restoresettings.png │ │ │ ├── dialog_label_settheme.png │ │ │ ├── dialog_label_storage.png │ │ │ ├── dialog_label_warning.png │ │ │ ├── divider.png │ │ │ ├── divider_list.png │ │ │ ├── divider_wide.png │ │ │ ├── enter.png │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── folder_mr.png │ │ │ ├── handle.png │ │ │ ├── handle_h.png │ │ │ ├── hider_ab_ex.png │ │ │ ├── home.png │ │ │ ├── home_hl.png │ │ │ ├── icon_cake.png │ │ │ ├── icon_color.png │ │ │ ├── icon_confirm.png │ │ │ ├── icon_info.png │ │ │ ├── icon_mail.png │ │ │ ├── icon_palette.png │ │ │ ├── icon_person.png │ │ │ ├── icon_warning.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── indeterminate007.png │ │ │ ├── indeterminate008.png │ │ │ ├── indeterminate009.png │ │ │ ├── indeterminate010.png │ │ │ ├── indeterminate011.png │ │ │ ├── indeterminate012.png │ │ │ ├── indeterminate013.png │ │ │ ├── indeterminate014.png │ │ │ ├── indeterminate015.png │ │ │ ├── indeterminate016.png │ │ │ ├── indeterminate017.png │ │ │ ├── indeterminate018.png │ │ │ ├── indeterminate019.png │ │ │ ├── indeterminate020.png │ │ │ ├── indeterminate021.png │ │ │ ├── indeterminate022.png │ │ │ ├── indeterminate023.png │ │ │ ├── indeterminate024.png │ │ │ ├── input_line.png │ │ │ ├── input_line_dialog.png │ │ │ ├── input_line_fail_backupname.png │ │ │ ├── input_line_fail_decr.png │ │ │ ├── input_line_fail_dialog_encr.png │ │ │ ├── input_line_fail_romname.png │ │ │ ├── kb_arrow_down.png │ │ │ ├── kb_arrow_left.png │ │ │ ├── kb_arrow_right.png │ │ │ ├── kb_arrow_up.png │ │ │ ├── keyboard_shadow.png │ │ │ ├── mb_adbsideload.png │ │ │ ├── mb_adbsideload_color.png │ │ │ ├── mb_advanced.png │ │ │ ├── mb_advanced_color.png │ │ │ ├── mb_backup.png │ │ │ ├── mb_backup_color.png │ │ │ ├── mb_bootloader.png │ │ │ ├── mb_bootloader_color.png │ │ │ ├── mb_download.png │ │ │ ├── mb_download_color.png │ │ │ ├── mb_dumlock.png │ │ │ ├── mb_dumlock_color.png │ │ │ ├── mb_empty.png │ │ │ ├── mb_empty_s.png │ │ │ ├── mb_filemanager.png │ │ │ ├── mb_filemanager_color.png │ │ │ ├── mb_fixpermissions.png │ │ │ ├── mb_fixpermissions_color.png │ │ │ ├── mb_install.png │ │ │ ├── mb_install_color.png │ │ │ ├── mb_logtosd.png │ │ │ ├── mb_logtosd_color.png │ │ │ ├── mb_mount.png │ │ │ ├── mb_mount_color.png │ │ │ ├── mb_multirom.png │ │ │ ├── mb_multirom_color.png │ │ │ ├── mb_partsdcard.png │ │ │ ├── mb_partsdcard_color.png │ │ │ ├── mb_poweroff.png │ │ │ ├── mb_poweroff_color.png │ │ │ ├── mb_recovery.png │ │ │ ├── mb_recovery_color.png │ │ │ ├── mb_reinjecttwrp.png │ │ │ ├── mb_reinjecttwrp_color.png │ │ │ ├── mb_restart.png │ │ │ ├── mb_restart_color.png │ │ │ ├── mb_restore.png │ │ │ ├── mb_restore_color.png │ │ │ ├── mb_system.png │ │ │ ├── mb_system_color.png │ │ │ ├── mb_terminalcommand.png │ │ │ ├── mb_terminalcommand_color.png │ │ │ ├── mb_theme.png │ │ │ ├── mb_theme_color.png │ │ │ ├── mb_wipe.png │ │ │ ├── mb_wipe_color.png │ │ │ ├── menu_install.png │ │ │ ├── menu_sort.png │ │ │ ├── navbar.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_false.png │ │ │ ├── radio_false_d.png │ │ │ ├── radio_true.png │ │ │ ├── radio_true_d.png │ │ │ ├── shift.png │ │ │ ├── shift_fill.png │ │ │ ├── slideout.png │ │ │ ├── slideout_hl.png │ │ │ ├── slider.png │ │ │ ├── slider_used.png │ │ │ ├── space.png │ │ │ ├── splashlogo.png │ │ │ ├── splashmiri.png │ │ │ ├── statusbar.png │ │ │ ├── tab_display.png │ │ │ ├── tab_display_a.png │ │ │ ├── tab_misc.png │ │ │ ├── tab_misc_a.png │ │ │ ├── tab_mr_autoboot.png │ │ │ ├── tab_mr_autoboot_a.png │ │ │ ├── tab_mr_bootmenu.png │ │ │ ├── tab_mr_bootmenu_a.png │ │ │ ├── tab_time.png │ │ │ ├── tab_time_a.png │ │ │ ├── tab_vibration.png │ │ │ ├── tab_vibration_a.png │ │ │ ├── unlock_icon.png │ │ │ └── usb.png │ │ ├── languages │ │ │ └── en.xml │ │ ├── light.xml │ │ ├── light_mr.xml │ │ ├── splash.xml │ │ └── ui.xml │ ├── 768x1280 │ │ ├── fonts │ │ │ ├── DroidSansMono.ttf │ │ │ ├── RobotoMedium.ttf │ │ │ └── RobotoRegular.ttf │ │ ├── images │ │ │ ├── actionbar.png │ │ │ ├── actionbar_back.png │ │ │ ├── actionbar_back_hl.png │ │ │ ├── actionbar_close.png │ │ │ ├── actionbar_close_hl.png │ │ │ ├── actionbar_delete.png │ │ │ ├── actionbar_delete_hl.png │ │ │ ├── actionbar_edit.png │ │ │ ├── actionbar_edit_hl.png │ │ │ ├── actionbar_encr_dis.png │ │ │ ├── actionbar_encr_dis_hl.png │ │ │ ├── actionbar_encr_ena.png │ │ │ ├── actionbar_encr_ena_hl.png │ │ │ ├── actionbar_ex.png │ │ │ ├── actionbar_font_big.png │ │ │ ├── actionbar_font_big_hl.png │ │ │ ├── actionbar_font_small.png │ │ │ ├── actionbar_font_small_hl.png │ │ │ ├── actionbar_logo.png │ │ │ ├── actionbar_overflow.png │ │ │ ├── actionbar_overflow_hl.png │ │ │ ├── actionbar_pin.png │ │ │ ├── actionbar_pin_hl.png │ │ │ ├── actionbar_pinned.png │ │ │ ├── actionbar_pinned_hl.png │ │ │ ├── actionbar_refresh.png │ │ │ ├── actionbar_refresh_hl.png │ │ │ ├── actionbar_reset.png │ │ │ ├── actionbar_reset_hl.png │ │ │ ├── actionbar_settings.png │ │ │ ├── actionbar_settings_hl.png │ │ │ ├── actionbar_sort.png │ │ │ ├── actionbar_sort_hl.png │ │ │ ├── actionbar_tab.png │ │ │ ├── actionbar_theme.png │ │ │ ├── actionbar_theme_hl.png │ │ │ ├── back.png │ │ │ ├── back_hl.png │ │ │ ├── background.png │ │ │ ├── backspace.png │ │ │ ├── bc_about.png │ │ │ ├── bc_advanced.png │ │ │ ├── bc_backup.png │ │ │ ├── bc_confirmaction.png │ │ │ ├── bc_done.png │ │ │ ├── bc_dumlock.png │ │ │ ├── bc_filemanager.png │ │ │ ├── bc_install.png │ │ │ ├── bc_install_image.png │ │ │ ├── bc_install_image_m.png │ │ │ ├── bc_install_zip.png │ │ │ ├── bc_install_zip_m.png │ │ │ ├── bc_installsu.png │ │ │ ├── bc_mount.png │ │ │ ├── bc_multirom.png │ │ │ ├── bc_multiromsettings.png │ │ │ ├── bc_partsdcard.png │ │ │ ├── bc_restart.png │ │ │ ├── bc_restore.png │ │ │ ├── bc_settings.png │ │ │ ├── bc_settings_theme.png │ │ │ ├── bc_sideload.png │ │ │ ├── bc_terminal.png │ │ │ ├── bc_wipe.png │ │ │ ├── bc_working.png │ │ │ ├── bs_bg.png │ │ │ ├── bs_btn_chmod.png │ │ │ ├── bs_btn_chmod644.png │ │ │ ├── bs_btn_chmod755.png │ │ │ ├── bs_btn_copy.png │ │ │ ├── bs_btn_cut.png │ │ │ ├── bs_btn_delete.png │ │ │ ├── bs_btn_rename.png │ │ │ ├── bs_close.png │ │ │ ├── btn_appenddate.png │ │ │ ├── btn_flat_3.png │ │ │ ├── btn_flat_4.png │ │ │ ├── btn_flat_5.png │ │ │ ├── btn_flat_6.png │ │ │ ├── btn_flat_ext3.png │ │ │ ├── btn_flat_ext4.png │ │ │ ├── btn_flat_injectbootsector.png │ │ │ ├── btn_flat_installdumlock.png │ │ │ ├── btn_flat_less.png │ │ │ ├── btn_flat_more.png │ │ │ ├── btn_flat_reflashrecovery.png │ │ │ ├── btn_flat_restoreboot.png │ │ │ ├── btn_flat_rot0.png │ │ │ ├── btn_flat_rot180.png │ │ │ ├── btn_flat_rot270.png │ │ │ ├── btn_flat_rot90.png │ │ │ ├── btn_float_accept.png │ │ │ ├── btn_float_addtoqueue.png │ │ │ ├── btn_float_addtoqueue_hl.png │ │ │ ├── btn_float_flashifyinfo.png │ │ │ ├── btn_float_flashifyinfo_hl.png │ │ │ ├── btn_float_folder.png │ │ │ ├── btn_menu_date_a.png │ │ │ ├── btn_menu_date_a_sel.png │ │ │ ├── btn_menu_date_d.png │ │ │ ├── btn_menu_date_d_sel.png │ │ │ ├── btn_menu_img.png │ │ │ ├── btn_menu_img_sel.png │ │ │ ├── btn_menu_inject.png │ │ │ ├── btn_menu_name_a.png │ │ │ ├── btn_menu_name_a_sel.png │ │ │ ├── btn_menu_name_d.png │ │ │ ├── btn_menu_name_d_sel.png │ │ │ ├── btn_menu_settings.png │ │ │ ├── btn_menu_size_a.png │ │ │ ├── btn_menu_size_a_sel.png │ │ │ ├── btn_menu_size_d.png │ │ │ ├── btn_menu_size_d_sel.png │ │ │ ├── btn_menu_zip.png │ │ │ ├── btn_menu_zip_sel.png │ │ │ ├── btn_raised_advancedwipe.png │ │ │ ├── btn_raised_back.png │ │ │ ├── btn_raised_cancel.png │ │ │ ├── btn_raised_changecolor.png │ │ │ ├── btn_raised_changesplash.png │ │ │ ├── btn_raised_changetheme.png │ │ │ ├── btn_raised_clearqueue.png │ │ │ ├── btn_raised_decryptdata.png │ │ │ ├── btn_raised_disablemtp.png │ │ │ ├── btn_raised_disconnect.png │ │ │ ├── btn_raised_enablemtp.png │ │ │ ├── btn_raised_filesystem.png │ │ │ ├── btn_raised_formatdata.png │ │ │ ├── btn_raised_fschange.png │ │ │ ├── btn_raised_fsoptions.png │ │ │ ├── btn_raised_fsrepair.png │ │ │ ├── btn_raised_fsresize.png │ │ │ ├── btn_raised_installscript.png │ │ │ ├── btn_raised_keepreadonly.png │ │ │ ├── btn_raised_mr_addboot.png │ │ │ ├── btn_raised_mr_addfile.png │ │ │ ├── btn_raised_mr_addradio.png │ │ │ ├── btn_raised_mr_addrom.png │ │ │ ├── btn_raised_mr_backup.png │ │ │ ├── btn_raised_mr_delete.png │ │ │ ├── btn_raised_mr_flashzip.png │ │ │ ├── btn_raised_mr_next.png │ │ │ ├── btn_raised_mr_remboot.png │ │ │ ├── btn_raised_mr_remradio.png │ │ │ ├── btn_raised_mr_rename.png │ │ │ ├── btn_raised_mr_repatchinit.png │ │ │ ├── btn_raised_mr_restorecon.png │ │ │ ├── btn_raised_mr_selectimage.png │ │ │ ├── btn_raised_mr_sideload.png │ │ │ ├── btn_raised_mr_swaproms.png │ │ │ ├── btn_raised_mr_wipecache.png │ │ │ ├── btn_raised_mr_wipedalvik.png │ │ │ ├── btn_raised_mr_wipedata.png │ │ │ ├── btn_raised_mr_zipfile.png │ │ │ ├── btn_raised_noinstall.png │ │ │ ├── btn_raised_ok.png │ │ │ ├── btn_raised_rebootrecovery.png │ │ │ ├── btn_raised_rebootsystem.png │ │ │ ├── btn_raised_usbstorage.png │ │ │ ├── btn_raised_viewqueue.png │ │ │ ├── btn_raised_wipecaches.png │ │ │ ├── btn_raised_wipeencryption.png │ │ │ ├── checkbox_false.png │ │ │ ├── checkbox_false_d.png │ │ │ ├── checkbox_true.png │ │ │ ├── checkbox_true_d.png │ │ │ ├── cursor.png │ │ │ ├── db_cancel.png │ │ │ ├── db_cancel_hl.png │ │ │ ├── db_ok.png │ │ │ ├── db_ok_hl.png │ │ │ ├── db_refresh.png │ │ │ ├── dialog_bg.png │ │ │ ├── dialog_bg_bak.png │ │ │ ├── dialog_label_bookmark.png │ │ │ ├── dialog_label_color.png │ │ │ ├── dialog_label_decryption.png │ │ │ ├── dialog_label_encryption.png │ │ │ ├── dialog_label_offset.png │ │ │ ├── dialog_label_removetheme.png │ │ │ ├── dialog_label_restoresettings.png │ │ │ ├── dialog_label_settheme.png │ │ │ ├── dialog_label_storage.png │ │ │ ├── dialog_label_warning.png │ │ │ ├── divider.png │ │ │ ├── divider_list.png │ │ │ ├── divider_wide.png │ │ │ ├── enter.png │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── folder_mr.png │ │ │ ├── handle.png │ │ │ ├── handle_h.png │ │ │ ├── hider_ab_ex.png │ │ │ ├── home.png │ │ │ ├── home_hl.png │ │ │ ├── icon_cake.png │ │ │ ├── icon_color.png │ │ │ ├── icon_confirm.png │ │ │ ├── icon_info.png │ │ │ ├── icon_mail.png │ │ │ ├── icon_palette.png │ │ │ ├── icon_person.png │ │ │ ├── icon_warning.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── indeterminate007.png │ │ │ ├── indeterminate008.png │ │ │ ├── indeterminate009.png │ │ │ ├── indeterminate010.png │ │ │ ├── indeterminate011.png │ │ │ ├── indeterminate012.png │ │ │ ├── indeterminate013.png │ │ │ ├── indeterminate014.png │ │ │ ├── indeterminate015.png │ │ │ ├── indeterminate016.png │ │ │ ├── indeterminate017.png │ │ │ ├── indeterminate018.png │ │ │ ├── indeterminate019.png │ │ │ ├── indeterminate020.png │ │ │ ├── indeterminate021.png │ │ │ ├── indeterminate022.png │ │ │ ├── indeterminate023.png │ │ │ ├── indeterminate024.png │ │ │ ├── input_line.png │ │ │ ├── input_line_dialog.png │ │ │ ├── input_line_fail_backupname.png │ │ │ ├── input_line_fail_decr.png │ │ │ ├── input_line_fail_dialog_encr.png │ │ │ ├── input_line_fail_romname.png │ │ │ ├── kb_arrow_down.png │ │ │ ├── kb_arrow_left.png │ │ │ ├── kb_arrow_right.png │ │ │ ├── kb_arrow_up.png │ │ │ ├── keyboard_shadow.png │ │ │ ├── mb_adbsideload.png │ │ │ ├── mb_adbsideload_color.png │ │ │ ├── mb_advanced.png │ │ │ ├── mb_advanced_color.png │ │ │ ├── mb_backup.png │ │ │ ├── mb_backup_color.png │ │ │ ├── mb_bootloader.png │ │ │ ├── mb_bootloader_color.png │ │ │ ├── mb_download.png │ │ │ ├── mb_download_color.png │ │ │ ├── mb_dumlock.png │ │ │ ├── mb_dumlock_color.png │ │ │ ├── mb_empty.png │ │ │ ├── mb_empty_s.png │ │ │ ├── mb_filemanager.png │ │ │ ├── mb_filemanager_color.png │ │ │ ├── mb_fixpermissions.png │ │ │ ├── mb_fixpermissions_color.png │ │ │ ├── mb_install.png │ │ │ ├── mb_install_color.png │ │ │ ├── mb_logtosd.png │ │ │ ├── mb_logtosd_color.png │ │ │ ├── mb_mount.png │ │ │ ├── mb_mount_color.png │ │ │ ├── mb_multirom.png │ │ │ ├── mb_multirom_color.png │ │ │ ├── mb_partsdcard.png │ │ │ ├── mb_partsdcard_color.png │ │ │ ├── mb_poweroff.png │ │ │ ├── mb_poweroff_color.png │ │ │ ├── mb_recovery.png │ │ │ ├── mb_recovery_color.png │ │ │ ├── mb_reinjecttwrp.png │ │ │ ├── mb_reinjecttwrp_color.png │ │ │ ├── mb_restart.png │ │ │ ├── mb_restart_color.png │ │ │ ├── mb_restore.png │ │ │ ├── mb_restore_color.png │ │ │ ├── mb_system.png │ │ │ ├── mb_system_color.png │ │ │ ├── mb_terminalcommand.png │ │ │ ├── mb_terminalcommand_color.png │ │ │ ├── mb_theme.png │ │ │ ├── mb_theme_color.png │ │ │ ├── mb_wipe.png │ │ │ ├── mb_wipe_color.png │ │ │ ├── menu_install.png │ │ │ ├── menu_sort.png │ │ │ ├── navbar.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_false.png │ │ │ ├── radio_false_d.png │ │ │ ├── radio_true.png │ │ │ ├── radio_true_d.png │ │ │ ├── shift.png │ │ │ ├── shift_fill.png │ │ │ ├── slideout.png │ │ │ ├── slideout_hl.png │ │ │ ├── slider.png │ │ │ ├── slider_used.png │ │ │ ├── space.png │ │ │ ├── splashlogo.png │ │ │ ├── splashmiri.png │ │ │ ├── statusbar.png │ │ │ ├── tab_display.png │ │ │ ├── tab_display_a.png │ │ │ ├── tab_misc.png │ │ │ ├── tab_misc_a.png │ │ │ ├── tab_mr_autoboot.png │ │ │ ├── tab_mr_autoboot_a.png │ │ │ ├── tab_mr_bootmenu.png │ │ │ ├── tab_mr_bootmenu_a.png │ │ │ ├── tab_time.png │ │ │ ├── tab_time_a.png │ │ │ ├── tab_vibration.png │ │ │ ├── tab_vibration_a.png │ │ │ ├── unlock_icon.png │ │ │ └── usb.png │ │ ├── languages │ │ │ └── en.xml │ │ ├── light.xml │ │ ├── light_mr.xml │ │ ├── splash.xml │ │ └── ui.xml │ └── 800x1280 │ │ ├── fonts │ │ ├── DroidSansMono.ttf │ │ ├── RobotoMedium.ttf │ │ └── RobotoRegular.ttf │ │ ├── images │ │ ├── actionbar.png │ │ ├── actionbar_back.png │ │ ├── actionbar_back_hl.png │ │ ├── actionbar_close.png │ │ ├── actionbar_close_hl.png │ │ ├── actionbar_delete.png │ │ ├── actionbar_delete_hl.png │ │ ├── actionbar_edit.png │ │ ├── actionbar_edit_hl.png │ │ ├── actionbar_encr_dis.png │ │ ├── actionbar_encr_dis_hl.png │ │ ├── actionbar_encr_ena.png │ │ ├── actionbar_encr_ena_hl.png │ │ ├── actionbar_ex.png │ │ ├── actionbar_font_big.png │ │ ├── actionbar_font_big_hl.png │ │ ├── actionbar_font_small.png │ │ ├── actionbar_font_small_hl.png │ │ ├── actionbar_logo.png │ │ ├── actionbar_overflow.png │ │ ├── actionbar_overflow_hl.png │ │ ├── actionbar_pin.png │ │ ├── actionbar_pin_hl.png │ │ ├── actionbar_pinned.png │ │ ├── actionbar_pinned_hl.png │ │ ├── actionbar_refresh.png │ │ ├── actionbar_refresh_hl.png │ │ ├── actionbar_reset.png │ │ ├── actionbar_reset_hl.png │ │ ├── actionbar_settings.png │ │ ├── actionbar_settings_hl.png │ │ ├── actionbar_sort.png │ │ ├── actionbar_sort_hl.png │ │ ├── actionbar_tab.png │ │ ├── actionbar_theme.png │ │ ├── actionbar_theme_hl.png │ │ ├── back.png │ │ ├── back_hl.png │ │ ├── background.png │ │ ├── backspace.png │ │ ├── bc_about.png │ │ ├── bc_advanced.png │ │ ├── bc_backup.png │ │ ├── bc_confirmaction.png │ │ ├── bc_done.png │ │ ├── bc_dumlock.png │ │ ├── bc_filemanager.png │ │ ├── bc_install.png │ │ ├── bc_install_image.png │ │ ├── bc_install_image_m.png │ │ ├── bc_install_zip.png │ │ ├── bc_install_zip_m.png │ │ ├── bc_installsu.png │ │ ├── bc_mount.png │ │ ├── bc_multirom.png │ │ ├── bc_multiromsettings.png │ │ ├── bc_partsdcard.png │ │ ├── bc_restart.png │ │ ├── bc_restore.png │ │ ├── bc_settings.png │ │ ├── bc_settings_theme.png │ │ ├── bc_sideload.png │ │ ├── bc_terminal.png │ │ ├── bc_wipe.png │ │ ├── bc_working.png │ │ ├── bs_bg.png │ │ ├── bs_btn_chmod.png │ │ ├── bs_btn_chmod644.png │ │ ├── bs_btn_chmod755.png │ │ ├── bs_btn_copy.png │ │ ├── bs_btn_cut.png │ │ ├── bs_btn_delete.png │ │ ├── bs_btn_rename.png │ │ ├── bs_close.png │ │ ├── btn_appenddate.png │ │ ├── btn_flat_3.png │ │ ├── btn_flat_4.png │ │ ├── btn_flat_5.png │ │ ├── btn_flat_6.png │ │ ├── btn_flat_ext3.png │ │ ├── btn_flat_ext4.png │ │ ├── btn_flat_injectbootsector.png │ │ ├── btn_flat_installdumlock.png │ │ ├── btn_flat_less.png │ │ ├── btn_flat_more.png │ │ ├── btn_flat_reflashrecovery.png │ │ ├── btn_flat_restoreboot.png │ │ ├── btn_flat_rot0.png │ │ ├── btn_flat_rot180.png │ │ ├── btn_flat_rot270.png │ │ ├── btn_flat_rot90.png │ │ ├── btn_float_accept.png │ │ ├── btn_float_addtoqueue.png │ │ ├── btn_float_addtoqueue_hl.png │ │ ├── btn_float_flashifyinfo.png │ │ ├── btn_float_flashifyinfo_hl.png │ │ ├── btn_float_folder.png │ │ ├── btn_menu_date_a.png │ │ ├── btn_menu_date_a_sel.png │ │ ├── btn_menu_date_d.png │ │ ├── btn_menu_date_d_sel.png │ │ ├── btn_menu_img.png │ │ ├── btn_menu_img_sel.png │ │ ├── btn_menu_inject.png │ │ ├── btn_menu_name_a.png │ │ ├── btn_menu_name_a_sel.png │ │ ├── btn_menu_name_d.png │ │ ├── btn_menu_name_d_sel.png │ │ ├── btn_menu_settings.png │ │ ├── btn_menu_size_a.png │ │ ├── btn_menu_size_a_sel.png │ │ ├── btn_menu_size_d.png │ │ ├── btn_menu_size_d_sel.png │ │ ├── btn_menu_zip.png │ │ ├── btn_menu_zip_sel.png │ │ ├── btn_raised_advancedwipe.png │ │ ├── btn_raised_back.png │ │ ├── btn_raised_cancel.png │ │ ├── btn_raised_changecolor.png │ │ ├── btn_raised_changesplash.png │ │ ├── btn_raised_changetheme.png │ │ ├── btn_raised_clearqueue.png │ │ ├── btn_raised_decryptdata.png │ │ ├── btn_raised_disablemtp.png │ │ ├── btn_raised_disconnect.png │ │ ├── btn_raised_enablemtp.png │ │ ├── btn_raised_filesystem.png │ │ ├── btn_raised_formatdata.png │ │ ├── btn_raised_fschange.png │ │ ├── btn_raised_fsoptions.png │ │ ├── btn_raised_fsrepair.png │ │ ├── btn_raised_fsresize.png │ │ ├── btn_raised_installscript.png │ │ ├── btn_raised_keepreadonly.png │ │ ├── btn_raised_mr_addboot.png │ │ ├── btn_raised_mr_addfile.png │ │ ├── btn_raised_mr_addradio.png │ │ ├── btn_raised_mr_addrom.png │ │ ├── btn_raised_mr_backup.png │ │ ├── btn_raised_mr_delete.png │ │ ├── btn_raised_mr_flashzip.png │ │ ├── btn_raised_mr_next.png │ │ ├── btn_raised_mr_remboot.png │ │ ├── btn_raised_mr_remradio.png │ │ ├── btn_raised_mr_rename.png │ │ ├── btn_raised_mr_repatchinit.png │ │ ├── btn_raised_mr_restorecon.png │ │ ├── btn_raised_mr_selectimage.png │ │ ├── btn_raised_mr_sideload.png │ │ ├── btn_raised_mr_swaproms.png │ │ ├── btn_raised_mr_wipecache.png │ │ ├── btn_raised_mr_wipedalvik.png │ │ ├── btn_raised_mr_wipedata.png │ │ ├── btn_raised_mr_zipfile.png │ │ ├── btn_raised_noinstall.png │ │ ├── btn_raised_ok.png │ │ ├── btn_raised_rebootrecovery.png │ │ ├── btn_raised_rebootsystem.png │ │ ├── btn_raised_usbstorage.png │ │ ├── btn_raised_viewqueue.png │ │ ├── btn_raised_wipecaches.png │ │ ├── btn_raised_wipeencryption.png │ │ ├── checkbox_false.png │ │ ├── checkbox_false_d.png │ │ ├── checkbox_true.png │ │ ├── checkbox_true_d.png │ │ ├── cursor.png │ │ ├── db_cancel.png │ │ ├── db_cancel_hl.png │ │ ├── db_ok.png │ │ ├── db_ok_hl.png │ │ ├── db_refresh.png │ │ ├── dialog_bg.png │ │ ├── dialog_bg_bak.png │ │ ├── dialog_label_bookmark.png │ │ ├── dialog_label_color.png │ │ ├── dialog_label_decryption.png │ │ ├── dialog_label_encryption.png │ │ ├── dialog_label_offset.png │ │ ├── dialog_label_removetheme.png │ │ ├── dialog_label_restoresettings.png │ │ ├── dialog_label_settheme.png │ │ ├── dialog_label_storage.png │ │ ├── dialog_label_warning.png │ │ ├── divider.png │ │ ├── divider_list.png │ │ ├── divider_wide.png │ │ ├── enter.png │ │ ├── file.png │ │ ├── folder.png │ │ ├── folder_mr.png │ │ ├── handle.png │ │ ├── handle_h.png │ │ ├── hider_ab_ex.png │ │ ├── home.png │ │ ├── home_hl.png │ │ ├── icon_cake.png │ │ ├── icon_color.png │ │ ├── icon_confirm.png │ │ ├── icon_info.png │ │ ├── icon_mail.png │ │ ├── icon_palette.png │ │ ├── icon_person.png │ │ ├── icon_warning.png │ │ ├── indeterminate001.png │ │ ├── indeterminate002.png │ │ ├── indeterminate003.png │ │ ├── indeterminate004.png │ │ ├── indeterminate005.png │ │ ├── indeterminate006.png │ │ ├── indeterminate007.png │ │ ├── indeterminate008.png │ │ ├── indeterminate009.png │ │ ├── indeterminate010.png │ │ ├── indeterminate011.png │ │ ├── indeterminate012.png │ │ ├── indeterminate013.png │ │ ├── indeterminate014.png │ │ ├── indeterminate015.png │ │ ├── indeterminate016.png │ │ ├── indeterminate017.png │ │ ├── indeterminate018.png │ │ ├── indeterminate019.png │ │ ├── indeterminate020.png │ │ ├── indeterminate021.png │ │ ├── indeterminate022.png │ │ ├── indeterminate023.png │ │ ├── indeterminate024.png │ │ ├── input_line.png │ │ ├── input_line_dialog.png │ │ ├── input_line_fail_backupname.png │ │ ├── input_line_fail_decr.png │ │ ├── input_line_fail_dialog_encr.png │ │ ├── input_line_fail_romname.png │ │ ├── kb_arrow_down.png │ │ ├── kb_arrow_left.png │ │ ├── kb_arrow_right.png │ │ ├── kb_arrow_up.png │ │ ├── keyboard_shadow.png │ │ ├── mb_adbsideload.png │ │ ├── mb_adbsideload_color.png │ │ ├── mb_advanced.png │ │ ├── mb_advanced_color.png │ │ ├── mb_backup.png │ │ ├── mb_backup_color.png │ │ ├── mb_bootloader.png │ │ ├── mb_bootloader_color.png │ │ ├── mb_download.png │ │ ├── mb_download_color.png │ │ ├── mb_dumlock.png │ │ ├── mb_dumlock_color.png │ │ ├── mb_empty.png │ │ ├── mb_empty_s.png │ │ ├── mb_filemanager.png │ │ ├── mb_filemanager_color.png │ │ ├── mb_fixpermissions.png │ │ ├── mb_fixpermissions_color.png │ │ ├── mb_install.png │ │ ├── mb_install_color.png │ │ ├── mb_logtosd.png │ │ ├── mb_logtosd_color.png │ │ ├── mb_mount.png │ │ ├── mb_mount_color.png │ │ ├── mb_multirom.png │ │ ├── mb_multirom_color.png │ │ ├── mb_partsdcard.png │ │ ├── mb_partsdcard_color.png │ │ ├── mb_poweroff.png │ │ ├── mb_poweroff_color.png │ │ ├── mb_recovery.png │ │ ├── mb_recovery_color.png │ │ ├── mb_reinjecttwrp.png │ │ ├── mb_reinjecttwrp_color.png │ │ ├── mb_restart.png │ │ ├── mb_restart_color.png │ │ ├── mb_restore.png │ │ ├── mb_restore_color.png │ │ ├── mb_system.png │ │ ├── mb_system_color.png │ │ ├── mb_terminalcommand.png │ │ ├── mb_terminalcommand_color.png │ │ ├── mb_theme.png │ │ ├── mb_theme_color.png │ │ ├── mb_wipe.png │ │ ├── mb_wipe_color.png │ │ ├── menu_install.png │ │ ├── menu_sort.png │ │ ├── navbar.png │ │ ├── progress_empty.png │ │ ├── progress_fill.png │ │ ├── radio_false.png │ │ ├── radio_false_d.png │ │ ├── radio_true.png │ │ ├── radio_true_d.png │ │ ├── shift.png │ │ ├── shift_fill.png │ │ ├── slideout.png │ │ ├── slideout_hl.png │ │ ├── slider.png │ │ ├── slider_used.png │ │ ├── space.png │ │ ├── splashlogo.png │ │ ├── splashmiri.png │ │ ├── statusbar.png │ │ ├── tab_display.png │ │ ├── tab_display_a.png │ │ ├── tab_misc.png │ │ ├── tab_misc_a.png │ │ ├── tab_mr_autoboot.png │ │ ├── tab_mr_autoboot_a.png │ │ ├── tab_mr_bootmenu.png │ │ ├── tab_mr_bootmenu_a.png │ │ ├── tab_time.png │ │ ├── tab_time_a.png │ │ ├── tab_vibration.png │ │ ├── tab_vibration_a.png │ │ ├── unlock_icon.png │ │ └── usb.png │ │ ├── languages │ │ └── en.xml │ │ ├── light.xml │ │ ├── light_mr.xml │ │ ├── splash.xml │ │ └── ui.xml ├── twmsg.cpp ├── twmsg.h └── twrp ├── htcdumlock ├── Android.mk └── htcdumlock.c ├── infomanager.cpp ├── infomanager.hpp ├── injecttwrp ├── Android.mk └── injecttwrp.c ├── install.cpp ├── install.h ├── installcommand.cpp ├── installcommand.h ├── interlace-frames.py ├── legacy_properties.h ├── legacy_property_service.cpp ├── legacy_property_service.h ├── libblkid ├── Android.mk ├── COPYING ├── Makemodule.am ├── blkid.pc.in ├── docs │ ├── .gitignore │ ├── Makefile.am │ ├── libblkid-config.xml │ ├── libblkid-docs.xml │ ├── libblkid-sections.txt │ └── version.xml.in ├── include │ ├── Makemodule.am │ ├── all-io.h │ ├── at.h │ ├── bitops.h │ ├── blkdev.h │ ├── blkid.h │ ├── canonicalize.h │ ├── carefulputc.h │ ├── closestream.h │ ├── colors.h │ ├── config.h │ ├── cpuset.h │ ├── crc32.h │ ├── crc64.h │ ├── debug.h │ ├── env.h │ ├── exec_shell.h │ ├── exitcodes.h │ ├── fileutils.h │ ├── ismounted.h │ ├── linux_reboot.h │ ├── linux_version.h │ ├── list.h │ ├── loopdev.h │ ├── mangle.h │ ├── match.h │ ├── mbsalign.h │ ├── md5.h │ ├── minix.h │ ├── monotonic.h │ ├── namespace.h │ ├── nls.h │ ├── optutils.h │ ├── pager.h │ ├── pamfail.h │ ├── path.h │ ├── pathnames.h │ ├── procutils.h │ ├── pt-bsd.h │ ├── pt-mbr-partnames.h │ ├── pt-mbr.h │ ├── pt-sgi.h │ ├── pt-sun.h │ ├── randutils.h │ ├── readutmp.h │ ├── rpmatch.h │ ├── setproctitle.h │ ├── statfs_magic.h │ ├── strutils.h │ ├── swapheader.h │ ├── swapprober.h │ ├── sysfs.h │ ├── timer.h │ ├── timeutils.h │ ├── ttyutils.h │ ├── widechar.h │ └── xalloc.h ├── lib │ ├── Makemodule.am │ ├── at.c │ ├── blkdev.c │ ├── canonicalize.c │ ├── colors.c │ ├── cpuset.c │ ├── crc32.c │ ├── crc64.c │ ├── env.c │ ├── exec_shell.c │ ├── fileutils.c │ ├── ismounted.c │ ├── langinfo.c │ ├── linux_version.c │ ├── loopdev.c │ ├── mangle.c │ ├── match.c │ ├── mbsalign.c │ ├── md5.c │ ├── monotonic.c │ ├── pager.c │ ├── path.c │ ├── procutils.c │ ├── randutils.c │ ├── readutmp.c │ ├── setproctitle.c │ ├── strutils.c │ ├── swapprober.c │ ├── sysfs.c │ ├── terminal-colors.d.5 │ ├── timeutils.c │ └── ttyutils.c ├── libblkid.3 ├── libfdisk │ ├── COPYING │ ├── Makemodule.am │ ├── docs │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── libfdisk-docs.xml │ │ ├── libfdisk-sections.txt │ │ └── version.xml.in │ ├── fdisk.pc.in │ └── src │ │ ├── .gitignore │ │ ├── Makemodule.am │ │ ├── alignment.c │ │ ├── ask.c │ │ ├── bsd.c │ │ ├── context.c │ │ ├── dos.c │ │ ├── fdiskP.h │ │ ├── gpt.c │ │ ├── init.c │ │ ├── iter.c │ │ ├── label.c │ │ ├── libfdisk.h │ │ ├── libfdisk.h.in │ │ ├── libfdisk.sym │ │ ├── partition.c │ │ ├── parttype.c │ │ ├── script.c │ │ ├── sgi.c │ │ ├── sun.c │ │ ├── table.c │ │ ├── test.c │ │ └── utils.c ├── libuuid │ ├── COPYING │ ├── Makemodule.am │ ├── man │ │ ├── .gitignore │ │ ├── Makemodule.am │ │ ├── uuid.3 │ │ ├── uuid_clear.3 │ │ ├── uuid_compare.3 │ │ ├── uuid_copy.3 │ │ ├── uuid_generate.3 │ │ ├── uuid_is_null.3 │ │ ├── uuid_parse.3 │ │ ├── uuid_time.3 │ │ └── uuid_unparse.3 │ ├── src │ │ ├── Makemodule.am │ │ ├── clear.c │ │ ├── compare.c │ │ ├── copy.c │ │ ├── gen_uuid.c │ │ ├── isnull.c │ │ ├── libuuid.sym │ │ ├── pack.c │ │ ├── parse.c │ │ ├── test_uuid.c │ │ ├── unpack.c │ │ ├── unparse.c │ │ ├── uuid.h │ │ ├── uuidP.h │ │ ├── uuid_time.c │ │ └── uuidd.h │ └── uuid.pc.in ├── samples │ ├── .gitignore │ ├── Makemodule.am │ ├── mkfs.c │ ├── partitions.c │ ├── superblocks.c │ └── topology.c └── src │ ├── .gitignore │ ├── bitops.h │ ├── blkdev.h │ ├── blkid.h.in │ ├── blkidP.h │ ├── c.h │ ├── cache.c │ ├── canonicalize.h │ ├── closestream.h │ ├── colors.h │ ├── config.c │ ├── crc32.h │ ├── debug.h │ ├── dev.c │ ├── devname.c │ ├── devno.c │ ├── encode.c │ ├── env.h │ ├── evaluate.c │ ├── exec_shell.h │ ├── fileutils.h │ ├── getsize.c │ ├── init.c │ ├── ismounted.h │ ├── libblkid.sym │ ├── linux_version.h │ ├── list.h │ ├── llseek.c │ ├── loopdev.h │ ├── mangle.h │ ├── match.h │ ├── mbsalign.h │ ├── md5.h │ ├── nls.h │ ├── partitions │ ├── aix.c │ ├── aix.h │ ├── bsd.c │ ├── dos.c │ ├── gpt.c │ ├── mac.c │ ├── minix.c │ ├── partitions.c │ ├── partitions.h │ ├── sgi.c │ ├── solaris_x86.c │ ├── sun.c │ ├── ultrix.c │ └── unixware.c │ ├── pathnames.h │ ├── probe.c │ ├── pt-bsd.h │ ├── pt-mbr.h │ ├── read.c │ ├── resolve.c │ ├── save.c │ ├── strutils.h │ ├── superblocks │ ├── adaptec_raid.c │ ├── bcache.c │ ├── befs.c │ ├── bfs.c │ ├── btrfs.c │ ├── cramfs.c │ ├── ddf_raid.c │ ├── drbd.c │ ├── drbdproxy_datalog.c │ ├── exfat.c │ ├── ext.c │ ├── f2fs.c │ ├── gfs.c │ ├── hfs.c │ ├── highpoint_raid.c │ ├── hpfs.c │ ├── iso9660.c │ ├── iso9660.h │ ├── isw_raid.c │ ├── jfs.c │ ├── jmicron_raid.c │ ├── linux_raid.c │ ├── lsi_raid.c │ ├── luks.c │ ├── lvm.c │ ├── minix.c │ ├── netware.c │ ├── nilfs.c │ ├── ntfs.c │ ├── nvidia_raid.c │ ├── ocfs.c │ ├── promise_raid.c │ ├── refs.c │ ├── reiserfs.c │ ├── romfs.c │ ├── silicon_raid.c │ ├── squashfs.c │ ├── superblocks.c │ ├── superblocks.h │ ├── swap.c │ ├── sysv.c │ ├── ubifs.c │ ├── udf.c │ ├── ufs.c │ ├── vfat.c │ ├── via_raid.c │ ├── vmfs.c │ ├── vxfs.c │ ├── xfs.c │ └── zfs.c │ ├── sysfs.h │ ├── tag.c │ ├── topology │ ├── dm.c │ ├── evms.c │ ├── ioctl.c │ ├── lvm.c │ ├── md.c │ ├── sysfs.c │ ├── topology.c │ └── topology.h │ ├── verify.c │ ├── version.c │ ├── widechar.h │ └── xalloc.h ├── libcrecovery ├── Android.mk ├── common.h ├── defines.h ├── popen.c └── system.c ├── libmincrypt ├── Android.mk ├── NOTICE ├── dsa_sig.c ├── includes │ └── mincrypt │ │ ├── dsa_sig.h │ │ ├── hash-internal.h │ │ ├── p256.h │ │ ├── p256_ecdsa.h │ │ ├── rsa.h │ │ ├── sha.h │ │ └── sha256.h ├── p256.c ├── p256_ec.c ├── p256_ecdsa.c ├── rsa.c ├── sha.c └── sha256.c ├── libpixelflinger └── Android.mk ├── libtar ├── Android.mk ├── COPYRIGHT ├── ChangeLog ├── ChangeLog-1.0.x ├── INSTALL ├── README ├── TODO ├── android_utils.c ├── android_utils.h ├── append.c ├── basename.c ├── block.c ├── compat.h ├── config.h ├── decode.c ├── dirname.c ├── encode.c ├── extract.c ├── fnmatch.c ├── gethostbyname_r.c ├── gethostname.c ├── getservbyname_r.c ├── glob.c ├── handle.c ├── inet_aton.c ├── internal.h ├── libtar.h ├── libtar_hash.c ├── libtar_list.c ├── libtar_listhash.h ├── output.c ├── snprintf.c ├── strdup.c ├── strlcat.c ├── strlcpy.c ├── strmode.c ├── strrstr.c ├── strsep.c ├── tar.h ├── util.c └── wrapper.c ├── minadbd ├── Android.mk ├── README.txt ├── adb_main.cpp ├── fuse_adb_provider.cpp ├── fuse_adb_provider.h ├── fuse_adb_provider_test.cpp └── services.cpp ├── minadbd21 ├── Android.mk ├── README.txt ├── adb.c ├── adb.h ├── fdevent.c ├── fdevent.h ├── fuse_adb_provider.c ├── fuse_adb_provider.h ├── mutex_list.h ├── services.c ├── sockets.c ├── sysdeps.h ├── transport.c ├── transport.h ├── transport_usb.c ├── usb_linux_client.c ├── utils.c └── utils.h ├── minui ├── Android.mk ├── events.cpp ├── font_10x18.h ├── graphics.cpp ├── graphics.h ├── graphics_adf.cpp ├── graphics_drm.cpp ├── graphics_fbdev.cpp ├── graphics_overlay.cpp ├── main.cpp ├── minui.h ├── mkfont.c ├── resources.cpp ├── roboto_10x18.h ├── roboto_15x24.h └── roboto_23x41.h ├── minui21 ├── Android.mk ├── events.c ├── font_10x18.h ├── font_7x16.h ├── graphics.c ├── graphics_overlay.c ├── include │ └── linux │ │ ├── msm_ion.h │ │ └── msm_mdp.h ├── minui.h ├── mkfont.c ├── resources.c ├── roboto_10x18.h ├── roboto_15x24.h └── roboto_23x41.h ├── minuitwrp ├── Android.mk ├── events.cpp ├── graphics.cpp ├── graphics.h ├── graphics_adf.cpp ├── graphics_drm.cpp ├── graphics_fbdev.cpp ├── graphics_overlay.cpp ├── graphics_utils.cpp ├── include │ └── linux │ │ ├── msm_ion.h │ │ └── msm_mdp.h ├── minui.h ├── resources.cpp └── truetype.cpp ├── minzip ├── Android.mk ├── Bits.h ├── DirUtil.c ├── DirUtil.h ├── Hash.c ├── Hash.h ├── Inlines.c ├── Log.h ├── SysUtil.c ├── SysUtil.h ├── Zip.c ├── Zip.h └── inline_magic.h ├── mmcutils ├── Android.mk ├── mmcutils.c └── mmcutils.h ├── mounts.c ├── mounts.h ├── mtdutils ├── Android.mk ├── bml_over_mtd.c ├── flash_image.c ├── mounts.c ├── mounts.h ├── mtdutils.c ├── mtdutils.h ├── rk3xhack.c └── rk3xhack.h ├── mtp ├── Android.mk ├── MtpDataPacket.cpp ├── MtpDataPacket.h ├── MtpDatabase.h ├── MtpDebug.cpp ├── MtpDebug.h ├── MtpDevice.cpp ├── MtpDevice.h ├── MtpDeviceInfo.cpp ├── MtpDeviceInfo.h ├── MtpEventPacket.cpp ├── MtpEventPacket.h ├── MtpMessage.hpp ├── MtpObjectInfo.cpp ├── MtpObjectInfo.h ├── MtpPacket.cpp ├── MtpPacket.h ├── MtpProperty.cpp ├── MtpProperty.h ├── MtpRequestPacket.cpp ├── MtpRequestPacket.h ├── MtpResponsePacket.cpp ├── MtpResponsePacket.h ├── MtpServer.cpp ├── MtpServer.h ├── MtpStorage.cpp ├── MtpStorage.h ├── MtpStorageInfo.cpp ├── MtpStorageInfo.h ├── MtpStringBuffer.cpp ├── MtpStringBuffer.h ├── MtpTypes.h ├── MtpUtils.cpp ├── MtpUtils.h ├── btree.cpp ├── btree.hpp ├── mtp.h ├── mtp_MtpDatabase.cpp ├── mtp_MtpDatabase.hpp ├── mtp_MtpServer.cpp ├── mtp_MtpServer.hpp ├── node.cpp ├── twrpMtp.cpp └── twrpMtp.hpp ├── multirom ├── CHANGES ├── Process.cpp ├── Process.h ├── cp_xattrs │ ├── Android.mk │ ├── cp_xattrs.cpp │ ├── libcp_xattrs.cpp │ ├── libcp_xattrs.h │ ├── ls_xattrs.cpp │ └── teamwin_mrom ├── mrominstaller.cpp ├── mrominstaller.h ├── multirom.cpp ├── multirom.h ├── multirom_Zip.c ├── multirom_Zip.h ├── multirom_hooks.h ├── multiromedify.cpp ├── multiromedify.h ├── phablet │ ├── Android.mk │ ├── archive-master-kubuntu.tar.xz │ ├── archive-master-kubuntu.tar.xz.asc │ ├── archive-master-tasemnice.tar.xz │ ├── archive-master-tasemnice.tar.xz.asc │ ├── archive-master-ubports.tar.xz │ ├── archive-master-ubports.tar.xz.asc │ ├── archive-master.tar.xz │ ├── archive-master.tar.xz.asc │ ├── gpg │ └── system-image-upgrader └── prebuilt │ ├── Android.mk │ ├── gnutar │ ├── lz4 │ ├── mount_shim.sh │ ├── ntfs-3g │ ├── umount_shim.sh │ └── zip ├── openaes ├── Android.mk ├── CHANGELOG ├── CMakeLists.txt ├── LICENSE ├── README ├── VERSION ├── inc │ ├── oaes_config.h │ └── oaes_lib.h ├── src │ ├── ftime.c │ ├── ftime.h │ ├── isaac │ │ ├── rand.c │ │ ├── rand.h │ │ └── standard.h │ ├── oaes.c │ └── oaes_lib.c └── test │ ├── test_encrypt.c │ ├── test_keys.c │ ├── test_performance.c │ └── vt_aes.c ├── openrecoveryscript.cpp ├── openrecoveryscript.hpp ├── orscmd ├── Android.mk ├── orscmd.cpp └── orscmd.h ├── otafault ├── Android.mk ├── config.cpp ├── config.h ├── ota_io.cpp ├── ota_io.h └── test.cpp ├── partition.cpp ├── partitionmanager.cpp ├── partitions.hpp ├── pigz ├── Android.mk ├── Makefile ├── README ├── pigz.1 ├── pigz.c ├── pigz.pdf ├── pigz.spec ├── yarn.c └── yarn.h ├── prebuilt ├── 99SuperSUDaemon ├── Android.mk ├── HTCDumlock.apk ├── Superuser.apk ├── chattr ├── chattr.pie ├── dump_imagesys ├── fix_permissions.sh ├── flash_imagesys ├── htcdumlock ├── htcdumlocksys ├── install-recovery.sh ├── install-supersu.sh ├── libbmlutils.so ├── libflashutils.so ├── libmmcutils.so ├── libmtdutils.so ├── libsupol.so ├── libsupol.soarm64 ├── me.twrp.twrpapp.apk ├── mke2fs.conf ├── parted ├── permissive.sh ├── relink.sh ├── sgdisk_static ├── suarm ├── suarm64 ├── supolicy ├── supolicyarm64 ├── teamwin └── twrp_fonts.py ├── print_sha1.h ├── progresstracking.cpp ├── progresstracking.hpp ├── recovery-persist.cpp ├── recovery-persist.rc ├── recovery-refresh.cpp ├── recovery-refresh.rc ├── recovery.cpp ├── recovery_ui.h ├── res-560dpi ├── res-hdpi └── images │ └── dummyfile ├── res-mdpi └── images │ └── dummyfile ├── res-xhdpi └── images │ └── dummyfile ├── res-xxhdpi └── images │ └── dummyfile ├── res-xxxhdpi └── images │ └── dummyfile ├── res ├── dummyfileforgit └── images │ └── dummyfile2 ├── roots.cpp ├── roots.h ├── screen_ui.cpp ├── screen_ui.h ├── scripts ├── README ├── compare_xml.py ├── language_helper.py └── relink-binaries.sh ├── sepolicy └── twrp.te ├── set_metadata.cpp ├── set_metadata.h ├── simg2img └── Android.mk ├── tarWrite.c ├── tarWrite.h ├── tests ├── Android.mk ├── common │ └── test_constants.h ├── component │ ├── applypatch_test.cpp │ └── verifier_test.cpp ├── testdata │ ├── alter-footer.zip │ ├── alter-metadata.zip │ ├── fake-eocd.zip │ ├── jarsigned.zip │ ├── new.file │ ├── old.file │ ├── otasigned.zip │ ├── otasigned_ecdsa_sha256.zip │ ├── otasigned_f4.zip │ ├── otasigned_f4_sha256.zip │ ├── otasigned_sha256.zip │ ├── patch.bsdiff │ ├── random.zip │ ├── test_f4.pk8 │ ├── test_f4.x509.pem │ ├── test_f4_sha256.x509.pem │ ├── test_key_e3.txt │ ├── test_key_ec.txt │ ├── test_key_f4.txt │ ├── testkey.pk8 │ ├── testkey.x509.pem │ ├── testkey_ecdsa.pk8 │ ├── testkey_ecdsa.x509.pem │ ├── testkey_sha256.x509.pem │ └── unsigned.zip └── unit │ ├── asn1_decoder_test.cpp │ ├── locale_test.cpp │ └── recovery_test.cpp ├── toolbox ├── Android.mk ├── dynarray.h ├── getprop.c ├── ls.c ├── setprop.c ├── start.c └── stop.c ├── tools ├── Android.mk ├── ota │ ├── Android.mk │ ├── add-property-tag.c │ ├── check-lost+found.c │ └── convert-to-bmp.py └── recovery_l10n │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── res │ ├── layout │ │ └── main.xml │ ├── values-af │ │ └── strings.xml │ ├── values-am │ │ └── strings.xml │ ├── values-ar │ │ └── strings.xml │ ├── values-az-rAZ │ │ └── strings.xml │ ├── values-b+sr+Latn │ │ └── strings.xml │ ├── values-be-rBY │ │ └── strings.xml │ ├── values-bg │ │ └── strings.xml │ ├── values-bn-rBD │ │ └── strings.xml │ ├── values-bs-rBA │ │ └── strings.xml │ ├── values-ca │ │ └── strings.xml │ ├── values-cs │ │ └── strings.xml │ ├── values-da │ │ └── strings.xml │ ├── values-de │ │ └── strings.xml │ ├── values-el │ │ └── strings.xml │ ├── values-en-rAU │ │ └── strings.xml │ ├── values-en-rGB │ │ └── strings.xml │ ├── values-en-rIN │ │ └── strings.xml │ ├── values-es-rUS │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-et-rEE │ │ └── strings.xml │ ├── values-eu-rES │ │ └── strings.xml │ ├── values-fa │ │ └── strings.xml │ ├── values-fi │ │ └── strings.xml │ ├── values-fr-rCA │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-gl-rES │ │ └── strings.xml │ ├── values-gu-rIN │ │ └── strings.xml │ ├── values-hi │ │ └── strings.xml │ ├── values-hr │ │ └── strings.xml │ ├── values-hu │ │ └── strings.xml │ ├── values-hy-rAM │ │ └── strings.xml │ ├── values-in │ │ └── strings.xml │ ├── values-is-rIS │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-iw │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-ka-rGE │ │ └── strings.xml │ ├── values-kk-rKZ │ │ └── strings.xml │ ├── values-km-rKH │ │ └── strings.xml │ ├── values-kn-rIN │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-ky-rKG │ │ └── strings.xml │ ├── values-lo-rLA │ │ └── strings.xml │ ├── values-lt │ │ └── strings.xml │ ├── values-lv │ │ └── strings.xml │ ├── values-mk-rMK │ │ └── strings.xml │ ├── values-ml-rIN │ │ └── strings.xml │ ├── values-mn-rMN │ │ └── strings.xml │ ├── values-mr-rIN │ │ └── strings.xml │ ├── values-ms-rMY │ │ └── strings.xml │ ├── values-my-rMM │ │ └── strings.xml │ ├── values-nb │ │ └── strings.xml │ ├── values-ne-rNP │ │ └── strings.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-pa-rIN │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-pt-rBR │ │ └── strings.xml │ ├── values-pt-rPT │ │ └── strings.xml │ ├── values-pt │ │ └── strings.xml │ ├── values-ro │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-si-rLK │ │ └── strings.xml │ ├── values-sk │ │ └── strings.xml │ ├── values-sl │ │ └── strings.xml │ ├── values-sq-rAL │ │ └── strings.xml │ ├── values-sr │ │ └── strings.xml │ ├── values-sv │ │ └── strings.xml │ ├── values-sw │ │ └── strings.xml │ ├── values-ta-rIN │ │ └── strings.xml │ ├── values-te-rIN │ │ └── strings.xml │ ├── values-th │ │ └── strings.xml │ ├── values-tl │ │ └── strings.xml │ ├── values-tr │ │ └── strings.xml │ ├── values-uk │ │ └── strings.xml │ ├── values-ur-rPK │ │ └── strings.xml │ ├── values-uz-rUZ │ │ └── strings.xml │ ├── values-vi │ │ └── strings.xml │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values-zh-rHK │ │ └── strings.xml │ ├── values-zh-rTW │ │ └── strings.xml │ ├── values-zu │ │ └── strings.xml │ └── values │ │ └── strings.xml │ └── src │ └── com │ └── android │ └── recovery_l10n │ └── Main.java ├── toybox └── Android.mk ├── tw_atomic.cpp ├── tw_atomic.hpp ├── twcommon.h ├── twinstall.cpp ├── twinstall.h ├── twrp-functions.cpp ├── twrp-functions.hpp ├── twrp.cpp ├── twrpDigest ├── Android.mk ├── digest │ └── md5 │ │ ├── md5.c │ │ └── md5.h ├── twrpDigest.cpp ├── twrpDigest.hpp ├── twrpMD5.cpp ├── twrpMD5.hpp ├── twrpSHA.cpp └── twrpSHA.hpp ├── twrpDigestDriver.cpp ├── twrpDigestDriver.hpp ├── twrpTar.cpp ├── twrpTar.h ├── twrpTar.hpp ├── twrpTarMain ├── Android.mk └── twrpTarMain.cpp ├── ui.cpp ├── ui.h ├── uncrypt ├── Android.mk ├── uncrypt.cpp └── uncrypt.rc ├── unique_fd.h ├── update_verifier ├── Android.mk └── update_verifier.cpp ├── updater ├── Android.mk ├── blockimg.cpp ├── blockimg.h ├── install.cpp ├── install.h ├── updater.cpp └── updater.h ├── variables.h ├── verifier.cpp ├── verifier.h ├── verifier24 ├── README ├── verifier.cpp └── verifier.h ├── wear_touch.cpp ├── wear_touch.h ├── wear_ui.cpp └── wear_ui.h /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | *~ 3 | tags 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **Team Win Recovery Project (TWRP)** 2 | 3 | You can find a compiling guide [here](http://forum.xda-developers.com/showthread.php?t=1943625 "Guide"). 4 | 5 | -------------------------------------------------------------------------------- /applypatch/testdata/new.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/applypatch/testdata/new.file -------------------------------------------------------------------------------- /applypatch/testdata/old.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/applypatch/testdata/old.file -------------------------------------------------------------------------------- /applypatch/testdata/patch.bsdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/applypatch/testdata/patch.bsdiff -------------------------------------------------------------------------------- /crypto/scrypt/MODULE_LICENSE_BSD_LIKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/crypto/scrypt/MODULE_LICENSE_BSD_LIKE -------------------------------------------------------------------------------- /crypto/scrypt/build-config.mk: -------------------------------------------------------------------------------- 1 | # Auto-generated - DO NOT EDIT! 2 | # To regenerate, edit scrypt.config, then run: 3 | # ./import_scrypt.sh import /path/to/scrypt-1.1.6.tar.gz 4 | # 5 | scrypt_cflags := \ 6 | 7 | -------------------------------------------------------------------------------- /crypto/scrypt/scrypt.version: -------------------------------------------------------------------------------- 1 | SCRYPT_VERSION=1.1.6 2 | -------------------------------------------------------------------------------- /dosfstools/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.28 2 | -------------------------------------------------------------------------------- /etc/init.recovery.service21.rc: -------------------------------------------------------------------------------- 1 | on boot 2 | 3 | # For starting recovery on 4.4 and older 4 | service recovery /sbin/recovery 5 | -------------------------------------------------------------------------------- /etc/init.recovery.service22.rc: -------------------------------------------------------------------------------- 1 | on boot 2 | 3 | # For starting recovery on 5.0 and newer 4 | service recovery /sbin/recovery 5 | seclabel u:r:recovery:s0 6 | -------------------------------------------------------------------------------- /fb2png/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | fb2png 3 | adb_screenshoot 4 | libs 5 | obj 6 | -------------------------------------------------------------------------------- /fb2png/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/fb2png/AndroidManifest.xml -------------------------------------------------------------------------------- /fb2png/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_BUILD_SCRIPT := $(call my-dir)/../Android.mk 2 | -------------------------------------------------------------------------------- /fb2png/libpng/lib/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/fb2png/libpng/lib/libpng.a -------------------------------------------------------------------------------- /fonts/12x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/fonts/12x22.png -------------------------------------------------------------------------------- /fonts/18x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/fonts/18x32.png -------------------------------------------------------------------------------- /fuse/AUTHORS: -------------------------------------------------------------------------------- 1 | FUSE 2 | ---- 3 | 4 | Miklos Szeredi 5 | 6 | CUSE 7 | ---- 8 | 9 | Tejun Heo 10 | -------------------------------------------------------------------------------- /gui/pages.h: -------------------------------------------------------------------------------- 1 | #ifndef _PAGES_HEADER 2 | #define _PAGES_HEADER 3 | 4 | void gui_notifyVarChange(const char *name, const char* value); 5 | 6 | #endif // _PAGES_HEADER 7 | 8 | -------------------------------------------------------------------------------- /gui/remaining.txt: -------------------------------------------------------------------------------- 1 | * Confirmation of action 2 | * Multi-String Variables 3 | * String Box 4 | 5 | -------------------------------------------------------------------------------- /gui/theme/common/fonts/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/common/fonts/DroidSansMono.ttf -------------------------------------------------------------------------------- /gui/theme/common/fonts/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/common/fonts/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /gui/theme/common/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/common/images/progress_empty.png -------------------------------------------------------------------------------- /gui/theme/common/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/common/images/progress_fill.png -------------------------------------------------------------------------------- /gui/theme/extra-languages/fonts/DroidSansFallback.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/extra-languages/fonts/DroidSansFallback.ttf -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/back.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/backspace.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/backspace_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/backspace_terminal.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/checkbox_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/checkbox_false.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/checkbox_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/checkbox_true.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/console.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/cursor.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/enter.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/enter_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/enter_terminal.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/file.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/folder.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/handle.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/home.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate007.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate008.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate009.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate010.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate011.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/indeterminate012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/indeterminate012.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/kb_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/kb_arrow_down.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/kb_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/kb_arrow_left.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/kb_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/kb_arrow_right.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/kb_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/kb_arrow_up.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/kb_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/kb_hide.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/kb_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/kb_show.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/logo.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/main_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/main_button.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/progress_empty.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/progress_fill.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/radio_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/radio_false.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/radio_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/radio_true.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/shift.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/shift_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/shift_fill.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/shift_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/shift_terminal.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/slider.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/slider_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/slider_touch.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/slider_used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/slider_used.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/sort_asc.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/sort_desc.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/sort_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/sort_empty.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/space.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/space_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/space_terminal.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/splashlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/splashlogo.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/splashteamwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/splashteamwin.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/tab_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/tab_3.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/tab_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/tab_4.png -------------------------------------------------------------------------------- /gui/theme/landscape_hdpi/images/unlock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_hdpi/images/unlock_icon.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/back.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/backspace.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/backspace_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/backspace_terminal.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/checkbox_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/checkbox_false.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/checkbox_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/checkbox_true.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/console.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/cursor.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/enter.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/enter_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/enter_terminal.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/file.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/folder.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/handle.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/home.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate007.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate008.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate009.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate010.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate011.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/indeterminate012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/indeterminate012.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/kb_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/kb_arrow_down.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/kb_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/kb_arrow_left.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/kb_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/kb_arrow_right.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/kb_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/kb_arrow_up.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/kb_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/kb_hide.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/kb_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/kb_show.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/logo.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/main_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/main_button.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/progress_empty.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/progress_fill.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/radio_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/radio_false.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/radio_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/radio_true.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/shift.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/shift_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/shift_fill.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/shift_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/shift_terminal.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/slider.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/slider_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/slider_touch.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/slider_used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/slider_used.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/sort_asc.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/sort_desc.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/sort_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/sort_empty.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/space.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/space_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/space_terminal.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/splashlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/splashlogo.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/splashteamwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/splashteamwin.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/tab_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/tab_3.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/tab_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/tab_4.png -------------------------------------------------------------------------------- /gui/theme/landscape_mdpi/images/unlock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/landscape_mdpi/images/unlock_icon.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/back.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/backspace.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/checkbox_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/checkbox_false.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/checkbox_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/checkbox_true.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/console.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/cursor.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/enter.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/fab_selectfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/fab_selectfolder.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/file.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/folder.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/handle.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/home.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate007.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate008.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate009.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate010.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate011.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/indeterminate012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/indeterminate012.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/kb_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/kb_arrow_down.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/kb_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/kb_arrow_left.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/kb_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/kb_arrow_right.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/kb_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/kb_arrow_up.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/kb_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/kb_hide.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/kb_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/kb_show.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/logo.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/logo_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/logo_mr.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/main_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/main_button.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/progress_empty.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/progress_fill.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/radio_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/radio_false.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/radio_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/radio_true.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/shift.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/shift_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/shift_fill.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/slider.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/slider_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/slider_touch.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/slider_used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/slider_used.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/sort_asc.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/sort_desc.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/sort_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/sort_empty.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/space.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/splashlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/splashlogo.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/splashlogo_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/splashlogo_mr.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/splashteamwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/splashteamwin.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/tab_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/tab_3.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/tab_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/tab_4.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/tab_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/tab_display.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/tab_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/tab_general.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/tab_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/tab_language.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/tab_timezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/tab_timezone.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/tab_vibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/tab_vibration.png -------------------------------------------------------------------------------- /gui/theme/portrait_hdpi/images/unlock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_hdpi/images/unlock_icon.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/back.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/backspace.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/checkbox_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/checkbox_false.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/checkbox_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/checkbox_true.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/console.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/cursor.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/enter.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/fab_selectfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/fab_selectfolder.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/file.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/folder.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/handle.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/home.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate007.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate008.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate009.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate010.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate011.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/indeterminate012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/indeterminate012.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/kb_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/kb_arrow_down.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/kb_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/kb_arrow_left.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/kb_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/kb_arrow_right.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/kb_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/kb_arrow_up.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/kb_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/kb_hide.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/kb_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/kb_show.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/logo.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/main_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/main_button.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/progress_empty.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/progress_fill.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/radio_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/radio_false.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/radio_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/radio_true.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/shift.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/shift_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/shift_fill.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/slider.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/slider_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/slider_touch.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/slider_used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/slider_used.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/sort_asc.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/sort_desc.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/sort_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/sort_empty.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/space.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/splashlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/splashlogo.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/splashteamwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/splashteamwin.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/tab_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/tab_3.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/tab_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/tab_4.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/tab_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/tab_display.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/tab_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/tab_general.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/tab_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/tab_language.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/tab_timezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/tab_timezone.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/tab_vibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/tab_vibration.png -------------------------------------------------------------------------------- /gui/theme/portrait_mdpi/images/unlock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/portrait_mdpi/images/unlock_icon.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/back.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/backspace.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/checkbox_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/checkbox_false.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/checkbox_false_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/checkbox_false_small.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/checkbox_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/checkbox_true.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/checkbox_true_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/checkbox_true_small.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/close.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/console.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/enter.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/file.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/folder.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/grid_less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/grid_less.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/grid_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/grid_more.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/handle.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/home.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate007.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate008.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate009.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate010.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate011.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/indeterminate012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/indeterminate012.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/kb_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/kb_arrow_down.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/kb_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/kb_arrow_left.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/kb_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/kb_arrow_right.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/kb_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/kb_arrow_up.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/kb_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/kb_hide.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/kb_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/kb_show.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/main_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/main_button.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/main_button_full_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/main_button_full_width.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/progress_empty.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/progress_fill.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_accept.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_accept_transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_accept_transp.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_addzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_addzip.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_arrow_left.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_arrow_right.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_delete.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_encryption_dis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_encryption_dis.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_encryption_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_encryption_en.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_folder.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_refresh.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_reset.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/q_btn_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/q_btn_storage.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/radio_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/radio_false.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/radio_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/radio_true.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/shift.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/shift_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/shift_fill.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/slider.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/slider_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/slider_touch.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/slider_used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/slider_used.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/space.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/splashlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/splashlogo.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/splashteamwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/splashteamwin.png -------------------------------------------------------------------------------- /gui/theme/watch_mdpi/images/unlock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/theme/watch_mdpi/images/unlock_icon.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/fonts/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/fonts/DroidSansMono.ttf -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/fonts/RobotoMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/fonts/RobotoMedium.ttf -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/fonts/RobotoRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/fonts/RobotoRegular.ttf -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/actionbar.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/actionbar_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/actionbar_ex.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/actionbar_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/actionbar_pin.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/actionbar_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/actionbar_tab.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/back.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/back_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/back_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/background.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/backspace.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_about.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_advanced.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_backup.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_done.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_dumlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_dumlock.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_install.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_installsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_installsu.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_mount.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_multirom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_multirom.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_partsdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_partsdcard.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_restart.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_restore.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_settings.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_sideload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_sideload.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_terminal.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_wipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_wipe.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bc_working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bc_working.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bs_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bs_bg.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bs_btn_chmod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bs_btn_chmod.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bs_btn_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bs_btn_copy.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bs_btn_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bs_btn_cut.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bs_btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bs_btn_delete.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bs_btn_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bs_btn_rename.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/bs_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/bs_close.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_flat_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_flat_3.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_flat_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_flat_4.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_flat_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_flat_5.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_flat_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_flat_6.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_flat_ext3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_flat_ext3.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_flat_ext4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_flat_ext4.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_flat_less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_flat_less.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_flat_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_flat_more.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_flat_rot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_flat_rot0.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_menu_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_menu_img.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_menu_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_menu_zip.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/btn_raised_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/btn_raised_ok.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/checkbox_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/checkbox_true.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/cursor.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/db_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/db_cancel.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/db_cancel_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/db_cancel_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/db_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/db_ok.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/db_ok_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/db_ok_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/db_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/db_refresh.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/dialog_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/dialog_bg.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/dialog_bg_bak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/dialog_bg_bak.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/divider.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/divider_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/divider_list.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/divider_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/divider_wide.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/enter.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/file.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/folder.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/folder_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/folder_mr.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/handle.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/handle_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/handle_h.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/hider_ab_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/hider_ab_ex.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/home.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/home_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/home_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/icon_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/icon_cake.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/icon_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/icon_color.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/icon_confirm.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/icon_info.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/icon_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/icon_mail.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/icon_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/icon_palette.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/icon_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/icon_person.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/icon_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/icon_warning.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/input_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/input_line.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/kb_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/kb_arrow_down.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/kb_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/kb_arrow_left.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/kb_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/kb_arrow_up.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_advanced.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_backup.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_bootloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_bootloader.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_download.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_dumlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_dumlock.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_empty.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_empty_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_empty_s.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_install.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_logtosd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_logtosd.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_mount.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_multirom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_multirom.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_partsdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_partsdcard.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_poweroff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_poweroff.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_recovery.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_restart.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_restore.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_system.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_theme.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_wipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_wipe.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/mb_wipe_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/mb_wipe_color.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/menu_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/menu_sort.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/navbar.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/radio_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/radio_true.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/shift.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/shift_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/shift_fill.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/slideout.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/slider.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/space.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/splashlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/splashlogo.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/splashmiri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/splashmiri.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/statusbar.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/tab_misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/tab_misc.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/tab_misc_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/tab_misc_a.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/tab_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/tab_time.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/tab_time_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/tab_time_a.png -------------------------------------------------------------------------------- /gui/themes_multirom/1200x1920/images/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/1200x1920/images/usb.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/fonts/RobotoMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/fonts/RobotoMedium.ttf -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/actionbar.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/back.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/back_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/back_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/background.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/backspace.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_about.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_advanced.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_backup.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_done.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_dumlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_dumlock.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_install.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_mount.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_multirom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_multirom.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_restart.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_restore.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_settings.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_sideload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_sideload.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_terminal.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_wipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_wipe.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bc_working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bc_working.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bs_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bs_bg.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bs_btn_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bs_btn_copy.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bs_btn_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bs_btn_cut.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/bs_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/bs_close.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/btn_flat_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/btn_flat_3.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/btn_flat_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/btn_flat_4.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/btn_flat_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/btn_flat_5.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/btn_flat_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/btn_flat_6.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/cursor.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/db_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/db_cancel.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/db_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/db_ok.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/db_ok_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/db_ok_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/db_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/db_refresh.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/dialog_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/dialog_bg.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/divider.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/enter.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/file.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/folder.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/folder_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/folder_mr.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/handle.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/handle_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/handle_h.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/hider_ab_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/hider_ab_ex.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/home.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/home_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/home_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/icon_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/icon_cake.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/icon_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/icon_color.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/icon_info.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/icon_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/icon_mail.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/icon_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/icon_person.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/input_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/input_line.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/kb_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/kb_arrow_up.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_advanced.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_backup.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_download.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_dumlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_dumlock.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_empty.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_empty_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_empty_s.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_install.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_logtosd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_logtosd.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_mount.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_multirom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_multirom.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_poweroff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_poweroff.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_recovery.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_restart.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_restore.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_system.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_theme.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/mb_wipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/mb_wipe.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/menu_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/menu_sort.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/navbar.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/radio_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/radio_false.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/radio_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/radio_true.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/shift.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/shift_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/shift_fill.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/slideout.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/slideout_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/slideout_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/slider.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/slider_used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/slider_used.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/space.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/splashlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/splashlogo.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/splashmiri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/splashmiri.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/statusbar.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/tab_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/tab_display.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/tab_misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/tab_misc.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/tab_misc_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/tab_misc_a.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/tab_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/tab_time.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/tab_time_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/tab_time_a.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/unlock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/unlock_icon.png -------------------------------------------------------------------------------- /gui/themes_multirom/768x1280/images/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/768x1280/images/usb.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/fonts/RobotoMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/fonts/RobotoMedium.ttf -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/actionbar.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/back.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/back_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/back_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/background.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/backspace.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_about.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_advanced.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_backup.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_done.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_dumlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_dumlock.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_install.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_mount.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_multirom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_multirom.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_restart.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_restore.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_settings.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_sideload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_sideload.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_terminal.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_wipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_wipe.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bc_working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bc_working.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bs_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bs_bg.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bs_btn_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bs_btn_copy.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bs_btn_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bs_btn_cut.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/bs_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/bs_close.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/btn_flat_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/btn_flat_3.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/btn_flat_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/btn_flat_4.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/btn_flat_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/btn_flat_5.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/btn_flat_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/btn_flat_6.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/cursor.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/db_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/db_cancel.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/db_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/db_ok.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/db_ok_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/db_ok_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/db_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/db_refresh.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/dialog_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/dialog_bg.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/divider.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/enter.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/file.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/folder.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/folder_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/folder_mr.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/handle.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/handle_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/handle_h.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/hider_ab_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/hider_ab_ex.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/home.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/home_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/home_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/icon_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/icon_cake.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/icon_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/icon_color.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/icon_info.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/icon_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/icon_mail.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/icon_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/icon_person.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/input_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/input_line.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/kb_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/kb_arrow_up.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_advanced.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_backup.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_download.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_dumlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_dumlock.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_empty.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_empty_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_empty_s.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_install.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_logtosd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_logtosd.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_mount.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_multirom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_multirom.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_poweroff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_poweroff.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_recovery.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_restart.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_restore.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_system.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_theme.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/mb_wipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/mb_wipe.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/menu_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/menu_sort.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/navbar.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/radio_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/radio_false.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/radio_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/radio_true.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/shift.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/shift_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/shift_fill.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/slideout.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/slideout_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/slideout_hl.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/slider.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/slider_used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/slider_used.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/space.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/splashlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/splashlogo.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/splashmiri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/splashmiri.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/statusbar.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/tab_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/tab_display.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/tab_misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/tab_misc.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/tab_misc_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/tab_misc_a.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/tab_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/tab_time.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/tab_time_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/tab_time_a.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/unlock_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/unlock_icon.png -------------------------------------------------------------------------------- /gui/themes_multirom/800x1280/images/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/themes_multirom/800x1280/images/usb.png -------------------------------------------------------------------------------- /gui/twrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/gui/twrp -------------------------------------------------------------------------------- /libblkid/docs/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ 2 | -------------------------------------------------------------------------------- /libblkid/include/exec_shell.h: -------------------------------------------------------------------------------- 1 | extern void __attribute__((__noreturn__)) exec_shell(void); 2 | -------------------------------------------------------------------------------- /libblkid/include/pager.h: -------------------------------------------------------------------------------- 1 | #ifndef UTIL_LINUX_PAGER 2 | #define UTIL_LINUX_PAGER 3 | 4 | void setup_pager(void); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /libblkid/libfdisk/docs/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ 2 | -------------------------------------------------------------------------------- /libblkid/libfdisk/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/libblkid/libfdisk/src/.gitignore -------------------------------------------------------------------------------- /libblkid/libuuid/man/.gitignore: -------------------------------------------------------------------------------- 1 | uuid_generate_random.3 2 | uuid_generate_time.3 3 | uuid_generate_time_safe.3 4 | -------------------------------------------------------------------------------- /libblkid/samples/.gitignore: -------------------------------------------------------------------------------- 1 | mkfs 2 | partitions 3 | superblocks 4 | topology 5 | -------------------------------------------------------------------------------- /libblkid/src/.gitignore: -------------------------------------------------------------------------------- 1 | blkid.h 2 | -------------------------------------------------------------------------------- /libblkid/src/exec_shell.h: -------------------------------------------------------------------------------- 1 | extern void __attribute__((__noreturn__)) exec_shell(void); 2 | -------------------------------------------------------------------------------- /libcrecovery/defines.h: -------------------------------------------------------------------------------- 1 | #undef _PATH_BSHELL 2 | #define _PATH_BSHELL "/sbin/sh" 3 | -------------------------------------------------------------------------------- /multirom/cp_xattrs/teamwin_mrom: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /multirom/phablet/archive-master-kubuntu.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/multirom/phablet/archive-master-kubuntu.tar.xz -------------------------------------------------------------------------------- /multirom/phablet/archive-master-tasemnice.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/multirom/phablet/archive-master-tasemnice.tar.xz -------------------------------------------------------------------------------- /multirom/phablet/archive-master-ubports.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/multirom/phablet/archive-master-ubports.tar.xz -------------------------------------------------------------------------------- /multirom/phablet/archive-master.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/multirom/phablet/archive-master.tar.xz -------------------------------------------------------------------------------- /multirom/phablet/gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/multirom/phablet/gpg -------------------------------------------------------------------------------- /multirom/prebuilt/gnutar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/multirom/prebuilt/gnutar -------------------------------------------------------------------------------- /multirom/prebuilt/lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/multirom/prebuilt/lz4 -------------------------------------------------------------------------------- /multirom/prebuilt/ntfs-3g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/multirom/prebuilt/ntfs-3g -------------------------------------------------------------------------------- /multirom/prebuilt/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/multirom/prebuilt/zip -------------------------------------------------------------------------------- /openaes/VERSION: -------------------------------------------------------------------------------- 1 | OpenAES-0.7.0 -------------------------------------------------------------------------------- /pigz/pigz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/pigz/pigz.pdf -------------------------------------------------------------------------------- /prebuilt/99SuperSUDaemon: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | /system/xbin/daemonsu --auto-daemon & 3 | -------------------------------------------------------------------------------- /prebuilt/HTCDumlock.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/HTCDumlock.apk -------------------------------------------------------------------------------- /prebuilt/Superuser.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/Superuser.apk -------------------------------------------------------------------------------- /prebuilt/chattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/chattr -------------------------------------------------------------------------------- /prebuilt/chattr.pie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/chattr.pie -------------------------------------------------------------------------------- /prebuilt/dump_imagesys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/dump_imagesys -------------------------------------------------------------------------------- /prebuilt/flash_imagesys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/flash_imagesys -------------------------------------------------------------------------------- /prebuilt/htcdumlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/htcdumlock -------------------------------------------------------------------------------- /prebuilt/htcdumlocksys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/htcdumlocksys -------------------------------------------------------------------------------- /prebuilt/libbmlutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/libbmlutils.so -------------------------------------------------------------------------------- /prebuilt/libflashutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/libflashutils.so -------------------------------------------------------------------------------- /prebuilt/libmmcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/libmmcutils.so -------------------------------------------------------------------------------- /prebuilt/libmtdutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/libmtdutils.so -------------------------------------------------------------------------------- /prebuilt/libsupol.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/libsupol.so -------------------------------------------------------------------------------- /prebuilt/libsupol.soarm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/libsupol.soarm64 -------------------------------------------------------------------------------- /prebuilt/me.twrp.twrpapp.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/me.twrp.twrpapp.apk -------------------------------------------------------------------------------- /prebuilt/parted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/parted -------------------------------------------------------------------------------- /prebuilt/sgdisk_static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/sgdisk_static -------------------------------------------------------------------------------- /prebuilt/suarm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/suarm -------------------------------------------------------------------------------- /prebuilt/suarm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/suarm64 -------------------------------------------------------------------------------- /prebuilt/supolicy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/supolicy -------------------------------------------------------------------------------- /prebuilt/supolicyarm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/prebuilt/supolicyarm64 -------------------------------------------------------------------------------- /prebuilt/teamwin: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /recovery-persist.rc: -------------------------------------------------------------------------------- 1 | on post-fs-data 2 | mkdir /data/misc/recovery 0770 system log 3 | exec - system log -- /system/bin/recovery-persist 4 | -------------------------------------------------------------------------------- /recovery-refresh.rc: -------------------------------------------------------------------------------- 1 | on post-fs 2 | exec - system log -- /system/bin/recovery-refresh 3 | -------------------------------------------------------------------------------- /res-560dpi: -------------------------------------------------------------------------------- 1 | res-xxxhdpi -------------------------------------------------------------------------------- /res-hdpi/images/dummyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/res-hdpi/images/dummyfile -------------------------------------------------------------------------------- /res-mdpi/images/dummyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/res-mdpi/images/dummyfile -------------------------------------------------------------------------------- /res-xhdpi/images/dummyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/res-xhdpi/images/dummyfile -------------------------------------------------------------------------------- /res-xxhdpi/images/dummyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/res-xxhdpi/images/dummyfile -------------------------------------------------------------------------------- /res-xxxhdpi/images/dummyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/res-xxxhdpi/images/dummyfile -------------------------------------------------------------------------------- /res/dummyfileforgit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/res/dummyfileforgit -------------------------------------------------------------------------------- /res/images/dummyfile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/res/images/dummyfile2 -------------------------------------------------------------------------------- /sepolicy/twrp.te: -------------------------------------------------------------------------------- 1 | recovery_only(` 2 | # Allow recovery to set permissive mode 3 | permissive recovery; 4 | ') 5 | -------------------------------------------------------------------------------- /tests/testdata/alter-footer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/alter-footer.zip -------------------------------------------------------------------------------- /tests/testdata/alter-metadata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/alter-metadata.zip -------------------------------------------------------------------------------- /tests/testdata/fake-eocd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/fake-eocd.zip -------------------------------------------------------------------------------- /tests/testdata/jarsigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/jarsigned.zip -------------------------------------------------------------------------------- /tests/testdata/new.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/new.file -------------------------------------------------------------------------------- /tests/testdata/old.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/old.file -------------------------------------------------------------------------------- /tests/testdata/otasigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/otasigned.zip -------------------------------------------------------------------------------- /tests/testdata/otasigned_ecdsa_sha256.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/otasigned_ecdsa_sha256.zip -------------------------------------------------------------------------------- /tests/testdata/otasigned_f4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/otasigned_f4.zip -------------------------------------------------------------------------------- /tests/testdata/otasigned_f4_sha256.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/otasigned_f4_sha256.zip -------------------------------------------------------------------------------- /tests/testdata/otasigned_sha256.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/otasigned_sha256.zip -------------------------------------------------------------------------------- /tests/testdata/patch.bsdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/patch.bsdiff -------------------------------------------------------------------------------- /tests/testdata/random.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/random.zip -------------------------------------------------------------------------------- /tests/testdata/test_f4.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/test_f4.pk8 -------------------------------------------------------------------------------- /tests/testdata/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/testkey.pk8 -------------------------------------------------------------------------------- /tests/testdata/testkey_ecdsa.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/testkey_ecdsa.pk8 -------------------------------------------------------------------------------- /tests/testdata/unsigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multirom-dev/Team-Win-Recovery-Project/a4a165f1428be9a2b5a696d39787bdcd0ef9254f/tests/testdata/unsigned.zip -------------------------------------------------------------------------------- /tools/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /verifier24/README: -------------------------------------------------------------------------------- 1 | This is older code from Android 5.1 Marshmallow (SDK ver 24) and older 2 | that still used mincrypt instead of libcrypto. 3 | --------------------------------------------------------------------------------