gitextract_qdk3i1xx/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── package-folder.yaml │ ├── release.yaml │ └── wiki-sync.yaml ├── .gitignore ├── 01_info_variable.sh ├── LICENSE ├── README.md ├── configuration.md ├── docs/ │ ├── README.md │ ├── architecture.md │ ├── build-and-release.md │ ├── commands.md │ ├── contributing.md │ └── runtime-paths.md ├── forkinfo.md ├── install.sh ├── knownissues.md ├── scripts/ │ ├── _xkeen/ │ │ ├── 01_info/ │ │ │ ├── 00_info_import.sh │ │ │ ├── 01_info_variable.sh │ │ │ ├── 02_info_packages.sh │ │ │ ├── 03_info_cpu.sh │ │ │ ├── 04_info_mihomo.sh │ │ │ ├── 04_info_xray.sh │ │ │ ├── 05_info_geofile.sh │ │ │ ├── 06_info_console.sh │ │ │ ├── 07_info_cron.sh │ │ │ └── 08_info_version/ │ │ │ ├── 00_version_import.sh │ │ │ ├── 01_version_xkeen.sh │ │ │ ├── 02_version_mihomo.sh │ │ │ └── 02_version_xray.sh │ │ ├── 02_install/ │ │ │ ├── 00_install_import.sh │ │ │ ├── 01_install_packages.sh │ │ │ ├── 02_install_mihomo.sh │ │ │ ├── 02_install_xray.sh │ │ │ ├── 03_install_xkeen.sh │ │ │ ├── 04_install_geofile.sh │ │ │ ├── 05_install_geoipset.sh │ │ │ ├── 06_install_cron.sh │ │ │ ├── 07_install_register/ │ │ │ │ ├── 00_register_common.sh │ │ │ │ ├── 00_register_import.sh │ │ │ │ ├── 01_register_mihomo.sh │ │ │ │ ├── 01_register_xray.sh │ │ │ │ ├── 02_register_xkeen.sh │ │ │ │ ├── 03_register_cron.sh │ │ │ │ └── 04_register_init.sh │ │ │ └── 08_install_configs/ │ │ │ ├── 00_configs_import.sh │ │ │ ├── 01_configs_install.sh │ │ │ └── 02_configs_dir/ │ │ │ ├── 01_log.json │ │ │ ├── 02_dns.json │ │ │ ├── 03_inbounds.json │ │ │ ├── 04_outbounds.json │ │ │ ├── 05_routing.json │ │ │ └── 06_policy.json │ │ ├── 03_delete/ │ │ │ ├── 00_delete_import.sh │ │ │ ├── 01_delete_geofile.sh │ │ │ ├── 02_delete_geoipset.sh │ │ │ ├── 03_delete_cron.sh │ │ │ ├── 04_delete_configs.sh │ │ │ ├── 05_delete_register.sh │ │ │ └── 06_delete_tmp.sh │ │ ├── 04_tools/ │ │ │ ├── 00_tools_import.sh │ │ │ ├── 01_tools_ports.sh │ │ │ ├── 02_tools_modules.sh │ │ │ ├── 03_tools_diagnostic.sh │ │ │ ├── 04_tools_delay.sh │ │ │ ├── 05_tools_choice/ │ │ │ │ ├── 00_choice_import.sh │ │ │ │ ├── 01_choice_cores.sh │ │ │ │ ├── 02_choice_xkeen.sh │ │ │ │ ├── 03_choice_geofile.sh │ │ │ │ ├── 04_choice_input.sh │ │ │ │ └── 05_choice_cron/ │ │ │ │ ├── 00_cron_import.sh │ │ │ │ ├── 01_cron_status.sh │ │ │ │ └── 02_cron_time.sh │ │ │ ├── 06_tools_backups/ │ │ │ │ ├── 00_backups_import.sh │ │ │ │ ├── 01_backups_xkeen.sh │ │ │ │ ├── 02_backups_configs_mihomo.sh │ │ │ │ └── 02_backups_configs_xray.sh │ │ │ └── 07_tools_downloaders/ │ │ │ ├── 00_downloaders_import.sh │ │ │ ├── 00_fetch_with_mirrors.sh │ │ │ ├── 01_downloaders_mihomo.sh │ │ │ ├── 01_downloaders_xray.sh │ │ │ └── 02_donwloaders_xkeen.sh │ │ ├── 05_tests/ │ │ │ ├── 00_tests_import.sh │ │ │ ├── 01_tests_connected.sh │ │ │ ├── 02_tests_xports.sh │ │ │ └── 03_tests_storage.sh │ │ ├── about.sh │ │ └── import.sh │ └── xkeen ├── test/ │ └── README.md └── wiki/ ├── DNS-over-VLESS.md ├── FAQ.md ├── Home.md ├── _Footer.md ├── _Sidebar.md └── Маршрутизация-по-DSCP.md