gitextract_9qmznag3/ ├── .github/ │ └── workflows/ │ ├── build-release.yml │ └── build-test.yml ├── .gitignore ├── LICENSE ├── Module/ │ ├── META-INF/ │ │ └── com/ │ │ └── google/ │ │ └── android/ │ │ ├── update-binary │ │ └── updater-script │ ├── Yuri/ │ │ ├── action/ │ │ │ ├── integrity.sh │ │ │ └── root.sh │ │ ├── boot_hash.sh │ │ ├── clear_all_detection_traces.sh │ │ ├── hma.sh │ │ ├── kill_all.sh │ │ ├── kill_google_process.sh │ │ ├── pif.sh │ │ ├── rka/ │ │ │ ├── arm64-v8a/ │ │ │ │ └── sqlite3 │ │ │ ├── armeabi/ │ │ │ │ └── sqlite3 │ │ │ ├── armeabi-v7a/ │ │ │ │ └── sqlite3 │ │ │ ├── jsonarray.sh │ │ │ ├── lspmcfg.sh │ │ │ ├── x86/ │ │ │ │ └── sqlite3 │ │ │ └── x86_64/ │ │ │ └── sqlite3 │ │ ├── security_patch.sh │ │ ├── select_app_neccesary.sh │ │ ├── target_txt.sh │ │ ├── yuri_keybox.sh │ │ ├── yurirka.sh │ │ └── znctl.sh │ ├── action.sh │ ├── customize.sh │ ├── module.prop │ ├── service.sh │ ├── uninstall.sh │ └── webroot/ │ ├── common/ │ │ ├── FixWidevineL1/ │ │ │ ├── FixWidevineL1.sh │ │ │ └── attestation │ │ ├── boot_hash.sh │ │ ├── device-info.sh │ │ ├── lsposed2.sh │ │ ├── pif2.sh │ │ ├── twrp.sh │ │ └── widevinel1.sh │ ├── config.json │ ├── css/ │ │ └── style.css │ ├── index.html │ ├── js/ │ │ ├── components/ │ │ │ ├── clock.js │ │ │ ├── navigation.js │ │ │ └── networkStatus.js │ │ ├── dev.js │ │ ├── device.js │ │ ├── main.js │ │ ├── redirect.js │ │ ├── theme.js │ │ ├── utils/ │ │ │ ├── i18n.js │ │ │ ├── scriptExecutor.js │ │ │ └── toast.js │ │ └── version.js │ ├── json/ │ │ └── dev.json │ └── lang/ │ ├── af.json │ ├── ar.json │ ├── ca.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── el.json │ ├── es.json │ ├── fi.json │ ├── fr.json │ ├── he.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── nl.json │ ├── no.json │ ├── pl.json │ ├── pt.json │ ├── ro.json │ ├── ru.json │ ├── sr.json │ ├── sv.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ └── zh.json ├── README.md ├── changelog.md ├── config.json ├── doc/ │ └── README_ja-JP.md ├── key └── update.json