├── .gitignore ├── .prettierrc ├── README.md ├── public ├── icons │ ├── zh.18mh-v1.png │ ├── zh.bakamh-v2.png │ ├── zh.baozimh1-v5.png │ ├── zh.baozimh2-v6.png │ ├── zh.bilicomic-v4.png │ ├── zh.cartoonmad-v2.png │ ├── zh.copymanga-v12.png │ ├── zh.godamanga-v9.png │ ├── zh.gufengmh-v3.png │ ├── zh.hanime1-v3.png │ ├── zh.happymh-v1.png │ ├── zh.ho5ho-v1.png │ ├── zh.komiic-v3.png │ ├── zh.manhuabika-v1.png │ ├── zh.manhuadb-v1.png │ ├── zh.manhuaren-v2.png │ ├── zh.mkzhan-v1.png │ ├── zh.msxhm-v6.png │ ├── zh.mycomic-v2.png │ ├── zh.noy1-v3.png │ ├── zh.se8-v3.png │ ├── zh.wnacg-v4.png │ ├── zh.yandanshe-v1.png │ ├── zh.zaimanhua-v1.png │ └── zh.zerobywns-v8.png ├── index.json ├── index.min.json └── sources │ ├── zh.18mh-v1.aix │ ├── zh.bakamh-v2.aix │ ├── zh.baozimh1-v5.aix │ ├── zh.baozimh2-v6.aix │ ├── zh.bilicomic-v4.aix │ ├── zh.cartoonmad-v2.aix │ ├── zh.copymanga-v12.aix │ ├── zh.godamanga-v9.aix │ ├── zh.gufengmh-v3.aix │ ├── zh.hanime1-v3.aix │ ├── zh.happymh-v1.aix │ ├── zh.ho5ho-v1.aix │ ├── zh.komiic-v3.aix │ ├── zh.manhuabika-v1.aix │ ├── zh.manhuadb-v1.aix │ ├── zh.manhuaren-v2.aix │ ├── zh.mkzhan-v1.aix │ ├── zh.msxhm-v6.aix │ ├── zh.mycomic-v2.aix │ ├── zh.noy1-v3.aix │ ├── zh.se8-v3.aix │ ├── zh.wnacg-v4.aix │ ├── zh.yandanshe-v1.aix │ ├── zh.zaimanhua-v1.aix │ └── zh.zerobywns-v8.aix ├── rustfmt.toml └── src ├── as ├── zh.dogemanga │ ├── asconfig.json │ ├── package-lock.json │ ├── package.json │ ├── res │ │ ├── Icon.png │ │ ├── filters.json │ │ └── source.json │ ├── src │ │ ├── dogemanga.ts │ │ └── index.ts │ └── tsconfig.json └── zh.isekai │ ├── asconfig.json │ ├── package-lock.json │ ├── package.json │ ├── res │ ├── Icon.png │ ├── filters.json │ ├── settings.json │ └── source.json │ ├── src │ ├── index.ts │ └── isekai.ts │ └── tsconfig.json └── rust ├── zh.139mh ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.18mh ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.55dmh ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.bakamh ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.baozimh1 ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.baozimh2 ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.bilicomic ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.cartoonmad ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.copymanga ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ ├── crypto.rs │ ├── helper.rs │ ├── lib.rs │ └── parser.rs ├── zh.godamanga ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.gufengmh ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.hanime1 ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.happymh ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.ho5ho ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.komiic ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ ├── settings.json │ └── source.json └── src │ ├── helper.rs │ ├── lib.rs │ └── parser.rs ├── zh.manhuabika ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ ├── settings.json │ └── source.json └── src │ ├── crypto.rs │ ├── helper.rs │ ├── lib.rs │ └── parser.rs ├── zh.manhuadb ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.manhuaren ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ ├── settings.json │ └── source.json └── src │ ├── helper.rs │ ├── lib.rs │ └── parser.rs ├── zh.miaoshangmanhua ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.mkzhan ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ ├── settings.json │ └── source.json └── src │ └── lib.rs ├── zh.mxshm ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ ├── settings.json │ └── source.json └── src │ └── lib.rs ├── zh.mycomic ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.nicohub ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ ├── lib.rs │ └── parser.rs ├── zh.noy1 ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ ├── settings.json │ └── source.json └── src │ ├── helper.rs │ ├── lib.rs │ └── parser.rs ├── zh.se8 ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.vomicmh ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.wnacg ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.yandanshe ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.yemancomic ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs ├── zh.zaimanhua ├── .cargo │ └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res │ ├── Icon.png │ ├── filters.json │ └── source.json └── src │ └── lib.rs └── zh.zerobywns ├── .cargo └── config.toml ├── Cargo.lock ├── Cargo.toml ├── build.sh ├── res ├── Icon.png ├── filters.json ├── settings.json └── source.json └── src ├── helper.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/README.md -------------------------------------------------------------------------------- /public/icons/zh.18mh-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.18mh-v1.png -------------------------------------------------------------------------------- /public/icons/zh.bakamh-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.bakamh-v2.png -------------------------------------------------------------------------------- /public/icons/zh.baozimh1-v5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.baozimh1-v5.png -------------------------------------------------------------------------------- /public/icons/zh.baozimh2-v6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.baozimh2-v6.png -------------------------------------------------------------------------------- /public/icons/zh.bilicomic-v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.bilicomic-v4.png -------------------------------------------------------------------------------- /public/icons/zh.cartoonmad-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.cartoonmad-v2.png -------------------------------------------------------------------------------- /public/icons/zh.copymanga-v12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.copymanga-v12.png -------------------------------------------------------------------------------- /public/icons/zh.godamanga-v9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.godamanga-v9.png -------------------------------------------------------------------------------- /public/icons/zh.gufengmh-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.gufengmh-v3.png -------------------------------------------------------------------------------- /public/icons/zh.hanime1-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.hanime1-v3.png -------------------------------------------------------------------------------- /public/icons/zh.happymh-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.happymh-v1.png -------------------------------------------------------------------------------- /public/icons/zh.ho5ho-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.ho5ho-v1.png -------------------------------------------------------------------------------- /public/icons/zh.komiic-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.komiic-v3.png -------------------------------------------------------------------------------- /public/icons/zh.manhuabika-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.manhuabika-v1.png -------------------------------------------------------------------------------- /public/icons/zh.manhuadb-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.manhuadb-v1.png -------------------------------------------------------------------------------- /public/icons/zh.manhuaren-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.manhuaren-v2.png -------------------------------------------------------------------------------- /public/icons/zh.mkzhan-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.mkzhan-v1.png -------------------------------------------------------------------------------- /public/icons/zh.msxhm-v6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.msxhm-v6.png -------------------------------------------------------------------------------- /public/icons/zh.mycomic-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.mycomic-v2.png -------------------------------------------------------------------------------- /public/icons/zh.noy1-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.noy1-v3.png -------------------------------------------------------------------------------- /public/icons/zh.se8-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.se8-v3.png -------------------------------------------------------------------------------- /public/icons/zh.wnacg-v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.wnacg-v4.png -------------------------------------------------------------------------------- /public/icons/zh.yandanshe-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.yandanshe-v1.png -------------------------------------------------------------------------------- /public/icons/zh.zaimanhua-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.zaimanhua-v1.png -------------------------------------------------------------------------------- /public/icons/zh.zerobywns-v8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/icons/zh.zerobywns-v8.png -------------------------------------------------------------------------------- /public/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/index.json -------------------------------------------------------------------------------- /public/index.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/index.min.json -------------------------------------------------------------------------------- /public/sources/zh.18mh-v1.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.18mh-v1.aix -------------------------------------------------------------------------------- /public/sources/zh.bakamh-v2.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.bakamh-v2.aix -------------------------------------------------------------------------------- /public/sources/zh.baozimh1-v5.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.baozimh1-v5.aix -------------------------------------------------------------------------------- /public/sources/zh.baozimh2-v6.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.baozimh2-v6.aix -------------------------------------------------------------------------------- /public/sources/zh.bilicomic-v4.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.bilicomic-v4.aix -------------------------------------------------------------------------------- /public/sources/zh.cartoonmad-v2.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.cartoonmad-v2.aix -------------------------------------------------------------------------------- /public/sources/zh.copymanga-v12.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.copymanga-v12.aix -------------------------------------------------------------------------------- /public/sources/zh.godamanga-v9.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.godamanga-v9.aix -------------------------------------------------------------------------------- /public/sources/zh.gufengmh-v3.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.gufengmh-v3.aix -------------------------------------------------------------------------------- /public/sources/zh.hanime1-v3.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.hanime1-v3.aix -------------------------------------------------------------------------------- /public/sources/zh.happymh-v1.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.happymh-v1.aix -------------------------------------------------------------------------------- /public/sources/zh.ho5ho-v1.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.ho5ho-v1.aix -------------------------------------------------------------------------------- /public/sources/zh.komiic-v3.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.komiic-v3.aix -------------------------------------------------------------------------------- /public/sources/zh.manhuabika-v1.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.manhuabika-v1.aix -------------------------------------------------------------------------------- /public/sources/zh.manhuadb-v1.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.manhuadb-v1.aix -------------------------------------------------------------------------------- /public/sources/zh.manhuaren-v2.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.manhuaren-v2.aix -------------------------------------------------------------------------------- /public/sources/zh.mkzhan-v1.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.mkzhan-v1.aix -------------------------------------------------------------------------------- /public/sources/zh.msxhm-v6.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.msxhm-v6.aix -------------------------------------------------------------------------------- /public/sources/zh.mycomic-v2.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.mycomic-v2.aix -------------------------------------------------------------------------------- /public/sources/zh.noy1-v3.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.noy1-v3.aix -------------------------------------------------------------------------------- /public/sources/zh.se8-v3.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.se8-v3.aix -------------------------------------------------------------------------------- /public/sources/zh.wnacg-v4.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.wnacg-v4.aix -------------------------------------------------------------------------------- /public/sources/zh.yandanshe-v1.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.yandanshe-v1.aix -------------------------------------------------------------------------------- /public/sources/zh.zaimanhua-v1.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.zaimanhua-v1.aix -------------------------------------------------------------------------------- /public/sources/zh.zerobywns-v8.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/public/sources/zh.zerobywns-v8.aix -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/as/zh.dogemanga/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.dogemanga/asconfig.json -------------------------------------------------------------------------------- /src/as/zh.dogemanga/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.dogemanga/package-lock.json -------------------------------------------------------------------------------- /src/as/zh.dogemanga/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.dogemanga/package.json -------------------------------------------------------------------------------- /src/as/zh.dogemanga/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.dogemanga/res/Icon.png -------------------------------------------------------------------------------- /src/as/zh.dogemanga/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.dogemanga/res/filters.json -------------------------------------------------------------------------------- /src/as/zh.dogemanga/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.dogemanga/res/source.json -------------------------------------------------------------------------------- /src/as/zh.dogemanga/src/dogemanga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.dogemanga/src/dogemanga.ts -------------------------------------------------------------------------------- /src/as/zh.dogemanga/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.dogemanga/src/index.ts -------------------------------------------------------------------------------- /src/as/zh.dogemanga/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.dogemanga/tsconfig.json -------------------------------------------------------------------------------- /src/as/zh.isekai/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.isekai/asconfig.json -------------------------------------------------------------------------------- /src/as/zh.isekai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.isekai/package-lock.json -------------------------------------------------------------------------------- /src/as/zh.isekai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.isekai/package.json -------------------------------------------------------------------------------- /src/as/zh.isekai/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.isekai/res/Icon.png -------------------------------------------------------------------------------- /src/as/zh.isekai/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.isekai/res/filters.json -------------------------------------------------------------------------------- /src/as/zh.isekai/res/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.isekai/res/settings.json -------------------------------------------------------------------------------- /src/as/zh.isekai/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.isekai/res/source.json -------------------------------------------------------------------------------- /src/as/zh.isekai/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.isekai/src/index.ts -------------------------------------------------------------------------------- /src/as/zh.isekai/src/isekai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.isekai/src/isekai.ts -------------------------------------------------------------------------------- /src/as/zh.isekai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/as/zh.isekai/tsconfig.json -------------------------------------------------------------------------------- /src/rust/zh.139mh/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.139mh/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.139mh/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.139mh/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.139mh/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.139mh/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.139mh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.139mh/build.sh -------------------------------------------------------------------------------- /src/rust/zh.139mh/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.139mh/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.139mh/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.139mh/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.139mh/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.139mh/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.139mh/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.139mh/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.18mh/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.18mh/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.18mh/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.18mh/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.18mh/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.18mh/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.18mh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.18mh/build.sh -------------------------------------------------------------------------------- /src/rust/zh.18mh/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.18mh/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.18mh/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.18mh/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.18mh/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.18mh/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.18mh/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.18mh/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.55dmh/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.55dmh/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.55dmh/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.55dmh/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.55dmh/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.55dmh/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.55dmh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.55dmh/build.sh -------------------------------------------------------------------------------- /src/rust/zh.55dmh/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.55dmh/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.55dmh/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.55dmh/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.55dmh/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.55dmh/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.55dmh/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.55dmh/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.bakamh/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bakamh/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.bakamh/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bakamh/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.bakamh/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bakamh/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.bakamh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bakamh/build.sh -------------------------------------------------------------------------------- /src/rust/zh.bakamh/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bakamh/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.bakamh/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bakamh/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.bakamh/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bakamh/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.bakamh/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bakamh/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.baozimh1/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh1/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.baozimh1/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh1/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.baozimh1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh1/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.baozimh1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh1/build.sh -------------------------------------------------------------------------------- /src/rust/zh.baozimh1/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh1/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.baozimh1/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh1/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.baozimh1/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh1/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.baozimh1/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh1/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.baozimh2/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh2/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.baozimh2/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh2/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.baozimh2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh2/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.baozimh2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh2/build.sh -------------------------------------------------------------------------------- /src/rust/zh.baozimh2/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh2/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.baozimh2/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh2/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.baozimh2/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh2/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.baozimh2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.baozimh2/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.bilicomic/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bilicomic/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.bilicomic/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bilicomic/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.bilicomic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bilicomic/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.bilicomic/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bilicomic/build.sh -------------------------------------------------------------------------------- /src/rust/zh.bilicomic/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bilicomic/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.bilicomic/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bilicomic/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.bilicomic/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bilicomic/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.bilicomic/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.bilicomic/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.cartoonmad/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.cartoonmad/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.cartoonmad/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.cartoonmad/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.cartoonmad/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.cartoonmad/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.cartoonmad/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.cartoonmad/build.sh -------------------------------------------------------------------------------- /src/rust/zh.cartoonmad/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.cartoonmad/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.cartoonmad/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.cartoonmad/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.cartoonmad/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.cartoonmad/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.cartoonmad/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.cartoonmad/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.copymanga/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.copymanga/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.copymanga/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.copymanga/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/build.sh -------------------------------------------------------------------------------- /src/rust/zh.copymanga/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.copymanga/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.copymanga/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.copymanga/src/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/src/crypto.rs -------------------------------------------------------------------------------- /src/rust/zh.copymanga/src/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/src/helper.rs -------------------------------------------------------------------------------- /src/rust/zh.copymanga/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.copymanga/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.copymanga/src/parser.rs -------------------------------------------------------------------------------- /src/rust/zh.godamanga/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.godamanga/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.godamanga/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.godamanga/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.godamanga/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.godamanga/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.godamanga/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.godamanga/build.sh -------------------------------------------------------------------------------- /src/rust/zh.godamanga/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.godamanga/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.godamanga/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.godamanga/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.godamanga/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.godamanga/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.godamanga/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.godamanga/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.gufengmh/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.gufengmh/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.gufengmh/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.gufengmh/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.gufengmh/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.gufengmh/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.gufengmh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.gufengmh/build.sh -------------------------------------------------------------------------------- /src/rust/zh.gufengmh/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.gufengmh/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.gufengmh/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.gufengmh/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.gufengmh/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.gufengmh/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.gufengmh/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.gufengmh/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.hanime1/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.hanime1/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.hanime1/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.hanime1/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.hanime1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.hanime1/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.hanime1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.hanime1/build.sh -------------------------------------------------------------------------------- /src/rust/zh.hanime1/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.hanime1/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.hanime1/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.hanime1/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.hanime1/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.hanime1/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.hanime1/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.hanime1/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.happymh/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.happymh/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.happymh/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.happymh/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.happymh/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.happymh/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.happymh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.happymh/build.sh -------------------------------------------------------------------------------- /src/rust/zh.happymh/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.happymh/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.happymh/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.happymh/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.happymh/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.happymh/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.happymh/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.happymh/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.ho5ho/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.ho5ho/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.ho5ho/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.ho5ho/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.ho5ho/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.ho5ho/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.ho5ho/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.ho5ho/build.sh -------------------------------------------------------------------------------- /src/rust/zh.ho5ho/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.ho5ho/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.ho5ho/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.ho5ho/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.ho5ho/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.ho5ho/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.ho5ho/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.ho5ho/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.komiic/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.komiic/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.komiic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.komiic/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/build.sh -------------------------------------------------------------------------------- /src/rust/zh.komiic/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.komiic/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.komiic/res/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/res/settings.json -------------------------------------------------------------------------------- /src/rust/zh.komiic/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.komiic/src/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/src/helper.rs -------------------------------------------------------------------------------- /src/rust/zh.komiic/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.komiic/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.komiic/src/parser.rs -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/build.sh -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/res/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/res/settings.json -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/src/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/src/crypto.rs -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/src/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/src/helper.rs -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.manhuabika/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuabika/src/parser.rs -------------------------------------------------------------------------------- /src/rust/zh.manhuadb/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuadb/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.manhuadb/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuadb/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.manhuadb/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuadb/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.manhuadb/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuadb/build.sh -------------------------------------------------------------------------------- /src/rust/zh.manhuadb/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuadb/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.manhuadb/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuadb/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.manhuadb/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuadb/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.manhuadb/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuadb/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/build.sh -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/res/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/res/settings.json -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/src/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/src/helper.rs -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.manhuaren/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.manhuaren/src/parser.rs -------------------------------------------------------------------------------- /src/rust/zh.miaoshangmanhua/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.miaoshangmanhua/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.miaoshangmanhua/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.miaoshangmanhua/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.miaoshangmanhua/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.miaoshangmanhua/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.miaoshangmanhua/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.miaoshangmanhua/build.sh -------------------------------------------------------------------------------- /src/rust/zh.miaoshangmanhua/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.miaoshangmanhua/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.miaoshangmanhua/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.miaoshangmanhua/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.miaoshangmanhua/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.miaoshangmanhua/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.miaoshangmanhua/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.miaoshangmanhua/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.mkzhan/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mkzhan/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.mkzhan/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mkzhan/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.mkzhan/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mkzhan/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.mkzhan/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mkzhan/build.sh -------------------------------------------------------------------------------- /src/rust/zh.mkzhan/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mkzhan/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.mkzhan/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mkzhan/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.mkzhan/res/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mkzhan/res/settings.json -------------------------------------------------------------------------------- /src/rust/zh.mkzhan/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mkzhan/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.mkzhan/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mkzhan/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.mxshm/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mxshm/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.mxshm/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mxshm/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.mxshm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mxshm/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.mxshm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mxshm/build.sh -------------------------------------------------------------------------------- /src/rust/zh.mxshm/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mxshm/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.mxshm/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mxshm/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.mxshm/res/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mxshm/res/settings.json -------------------------------------------------------------------------------- /src/rust/zh.mxshm/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mxshm/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.mxshm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mxshm/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.mycomic/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mycomic/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.mycomic/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mycomic/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.mycomic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mycomic/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.mycomic/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mycomic/build.sh -------------------------------------------------------------------------------- /src/rust/zh.mycomic/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mycomic/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.mycomic/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mycomic/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.mycomic/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mycomic/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.mycomic/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.mycomic/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.nicohub/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.nicohub/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.nicohub/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.nicohub/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.nicohub/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.nicohub/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.nicohub/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.nicohub/build.sh -------------------------------------------------------------------------------- /src/rust/zh.nicohub/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.nicohub/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.nicohub/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.nicohub/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.nicohub/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.nicohub/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.nicohub/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.nicohub/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.nicohub/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.nicohub/src/parser.rs -------------------------------------------------------------------------------- /src/rust/zh.noy1/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.noy1/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.noy1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.noy1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/build.sh -------------------------------------------------------------------------------- /src/rust/zh.noy1/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.noy1/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.noy1/res/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/res/settings.json -------------------------------------------------------------------------------- /src/rust/zh.noy1/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.noy1/src/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/src/helper.rs -------------------------------------------------------------------------------- /src/rust/zh.noy1/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.noy1/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.noy1/src/parser.rs -------------------------------------------------------------------------------- /src/rust/zh.se8/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.se8/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.se8/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.se8/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.se8/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.se8/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.se8/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.se8/build.sh -------------------------------------------------------------------------------- /src/rust/zh.se8/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.se8/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.se8/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.se8/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.se8/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.se8/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.se8/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.se8/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.vomicmh/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.vomicmh/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.vomicmh/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.vomicmh/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.vomicmh/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.vomicmh/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.vomicmh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.vomicmh/build.sh -------------------------------------------------------------------------------- /src/rust/zh.vomicmh/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.vomicmh/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.vomicmh/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.vomicmh/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.vomicmh/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.vomicmh/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.vomicmh/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.vomicmh/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.wnacg/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.wnacg/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.wnacg/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.wnacg/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.wnacg/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.wnacg/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.wnacg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.wnacg/build.sh -------------------------------------------------------------------------------- /src/rust/zh.wnacg/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.wnacg/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.wnacg/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.wnacg/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.wnacg/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.wnacg/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.wnacg/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.wnacg/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.yandanshe/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yandanshe/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.yandanshe/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yandanshe/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.yandanshe/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yandanshe/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.yandanshe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yandanshe/build.sh -------------------------------------------------------------------------------- /src/rust/zh.yandanshe/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yandanshe/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.yandanshe/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yandanshe/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.yandanshe/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yandanshe/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.yandanshe/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yandanshe/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.yemancomic/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yemancomic/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.yemancomic/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yemancomic/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.yemancomic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yemancomic/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.yemancomic/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yemancomic/build.sh -------------------------------------------------------------------------------- /src/rust/zh.yemancomic/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yemancomic/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.yemancomic/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yemancomic/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.yemancomic/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yemancomic/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.yemancomic/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.yemancomic/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.zaimanhua/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zaimanhua/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.zaimanhua/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zaimanhua/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.zaimanhua/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zaimanhua/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.zaimanhua/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zaimanhua/build.sh -------------------------------------------------------------------------------- /src/rust/zh.zaimanhua/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zaimanhua/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.zaimanhua/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zaimanhua/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.zaimanhua/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zaimanhua/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.zaimanhua/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zaimanhua/src/lib.rs -------------------------------------------------------------------------------- /src/rust/zh.zerobywns/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zerobywns/.cargo/config.toml -------------------------------------------------------------------------------- /src/rust/zh.zerobywns/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zerobywns/Cargo.lock -------------------------------------------------------------------------------- /src/rust/zh.zerobywns/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zerobywns/Cargo.toml -------------------------------------------------------------------------------- /src/rust/zh.zerobywns/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zerobywns/build.sh -------------------------------------------------------------------------------- /src/rust/zh.zerobywns/res/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zerobywns/res/Icon.png -------------------------------------------------------------------------------- /src/rust/zh.zerobywns/res/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zerobywns/res/filters.json -------------------------------------------------------------------------------- /src/rust/zh.zerobywns/res/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zerobywns/res/settings.json -------------------------------------------------------------------------------- /src/rust/zh.zerobywns/res/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zerobywns/res/source.json -------------------------------------------------------------------------------- /src/rust/zh.zerobywns/src/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zerobywns/src/helper.rs -------------------------------------------------------------------------------- /src/rust/zh.zerobywns/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suiyuran/aidoku-zh-sources/HEAD/src/rust/zh.zerobywns/src/lib.rs --------------------------------------------------------------------------------