├── .github └── workflows │ └── build_and_release.yml ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── a │ │ │ └── forevergreat │ │ │ └── atoolbox │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_launcher_foreground.png │ │ └── splash.png │ │ ├── drawable-mdpi │ │ ├── ic_launcher_foreground.png │ │ └── splash.png │ │ ├── drawable-night-v21 │ │ ├── background.png │ │ └── launch_background.xml │ │ ├── drawable-night │ │ ├── background.png │ │ └── launch_background.xml │ │ ├── drawable-v21 │ │ ├── background.png │ │ └── launch_background.xml │ │ ├── drawable-xhdpi │ │ ├── ic_launcher_foreground.png │ │ └── splash.png │ │ ├── drawable-xxhdpi │ │ ├── ic_launcher_foreground.png │ │ └── splash.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_launcher_foreground.png │ │ └── splash.png │ │ ├── drawable │ │ ├── background.png │ │ └── launch_background.xml │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-night-v31 │ │ └── styles.xml │ │ ├── values-night │ │ └── styles.xml │ │ ├── values-v31 │ │ └── styles.xml │ │ └── values │ │ ├── colors.xml │ │ └── styles.xml ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle.kts ├── assets ├── 1.jpg ├── 2.jpg ├── aaa.png └── profile.png ├── flutter_launcher_icons.yaml ├── lib ├── aaa.dart ├── main.dart ├── service │ ├── internet │ │ ├── doh.dart │ │ ├── doh_PTR_v4.dart │ │ ├── doh_PTR_v6.dart │ │ ├── dot.dart │ │ ├── image_search.dart │ │ ├── thumbnail_search.dart │ │ └── video_download.dart │ ├── intranet │ │ ├── avbv.dart │ │ ├── base64.dart │ │ ├── garbled_recovery.dart │ │ ├── ocr.dart │ │ ├── qrcode.dart │ │ └── scan_address.dart │ └── share_handler.dart ├── test.dart ├── themes │ ├── theme.dart │ └── util.dart ├── views │ ├── about_page.dart │ ├── internet │ │ ├── backup_screen.dart │ │ ├── dns_screen.dart │ │ ├── image_screen.dart │ │ ├── netspeed_screen.dart │ │ ├── ptr_screen.dart │ │ ├── thumbnail_screen.dart │ │ └── url_decode.dart │ ├── internet_page.dart │ ├── intranet │ │ ├── address_screen.dart │ │ ├── avbv.dart │ │ ├── base64.dart │ │ ├── garbled_screen.dart │ │ ├── ocr_screen.dart │ │ └── qrcode.dart │ ├── intranet_page.dart │ └── share_screen.dart └── widgets │ ├── bottom_nav_bar.dart │ ├── popup_infinity.dart │ ├── popup_links.dart │ └── popup_text.dart ├── pubspec.yaml └── 其他 ├── worker.js └── 备忘录.txt /.github/workflows/build_and_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/.github/workflows/build_and_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/a/forevergreat/atoolbox/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/kotlin/a/forevergreat/atoolbox/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-night-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-night-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-night/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-night/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/assets/1.jpg -------------------------------------------------------------------------------- /assets/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/assets/2.jpg -------------------------------------------------------------------------------- /assets/aaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/assets/aaa.png -------------------------------------------------------------------------------- /assets/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/assets/profile.png -------------------------------------------------------------------------------- /flutter_launcher_icons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/flutter_launcher_icons.yaml -------------------------------------------------------------------------------- /lib/aaa.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/aaa.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/service/internet/doh.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/internet/doh.dart -------------------------------------------------------------------------------- /lib/service/internet/doh_PTR_v4.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/internet/doh_PTR_v4.dart -------------------------------------------------------------------------------- /lib/service/internet/doh_PTR_v6.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/internet/doh_PTR_v6.dart -------------------------------------------------------------------------------- /lib/service/internet/dot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/internet/dot.dart -------------------------------------------------------------------------------- /lib/service/internet/image_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/internet/image_search.dart -------------------------------------------------------------------------------- /lib/service/internet/thumbnail_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/internet/thumbnail_search.dart -------------------------------------------------------------------------------- /lib/service/internet/video_download.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/internet/video_download.dart -------------------------------------------------------------------------------- /lib/service/intranet/avbv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/intranet/avbv.dart -------------------------------------------------------------------------------- /lib/service/intranet/base64.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/intranet/base64.dart -------------------------------------------------------------------------------- /lib/service/intranet/garbled_recovery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/intranet/garbled_recovery.dart -------------------------------------------------------------------------------- /lib/service/intranet/ocr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/intranet/ocr.dart -------------------------------------------------------------------------------- /lib/service/intranet/qrcode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/intranet/qrcode.dart -------------------------------------------------------------------------------- /lib/service/intranet/scan_address.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/intranet/scan_address.dart -------------------------------------------------------------------------------- /lib/service/share_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/service/share_handler.dart -------------------------------------------------------------------------------- /lib/test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/test.dart -------------------------------------------------------------------------------- /lib/themes/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/themes/theme.dart -------------------------------------------------------------------------------- /lib/themes/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/themes/util.dart -------------------------------------------------------------------------------- /lib/views/about_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/about_page.dart -------------------------------------------------------------------------------- /lib/views/internet/backup_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/internet/backup_screen.dart -------------------------------------------------------------------------------- /lib/views/internet/dns_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/internet/dns_screen.dart -------------------------------------------------------------------------------- /lib/views/internet/image_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/internet/image_screen.dart -------------------------------------------------------------------------------- /lib/views/internet/netspeed_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/internet/netspeed_screen.dart -------------------------------------------------------------------------------- /lib/views/internet/ptr_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/internet/ptr_screen.dart -------------------------------------------------------------------------------- /lib/views/internet/thumbnail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/internet/thumbnail_screen.dart -------------------------------------------------------------------------------- /lib/views/internet/url_decode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/internet/url_decode.dart -------------------------------------------------------------------------------- /lib/views/internet_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/internet_page.dart -------------------------------------------------------------------------------- /lib/views/intranet/address_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/intranet/address_screen.dart -------------------------------------------------------------------------------- /lib/views/intranet/avbv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/intranet/avbv.dart -------------------------------------------------------------------------------- /lib/views/intranet/base64.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/intranet/base64.dart -------------------------------------------------------------------------------- /lib/views/intranet/garbled_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/intranet/garbled_screen.dart -------------------------------------------------------------------------------- /lib/views/intranet/ocr_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/intranet/ocr_screen.dart -------------------------------------------------------------------------------- /lib/views/intranet/qrcode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/intranet/qrcode.dart -------------------------------------------------------------------------------- /lib/views/intranet_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/intranet_page.dart -------------------------------------------------------------------------------- /lib/views/share_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/views/share_screen.dart -------------------------------------------------------------------------------- /lib/widgets/bottom_nav_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/widgets/bottom_nav_bar.dart -------------------------------------------------------------------------------- /lib/widgets/popup_infinity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/widgets/popup_infinity.dart -------------------------------------------------------------------------------- /lib/widgets/popup_links.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/widgets/popup_links.dart -------------------------------------------------------------------------------- /lib/widgets/popup_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/lib/widgets/popup_text.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /其他/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/其他/worker.js -------------------------------------------------------------------------------- /其他/备忘录.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4evergr8/atoolbox/HEAD/其他/备忘录.txt --------------------------------------------------------------------------------