├── .editorconfig ├── .github └── flowchart.png ├── .gitignore ├── .hintrc ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── .wrangler └── state │ └── v3 │ └── cache │ ├── default │ └── blobs │ │ ├── 04d0b45930cd292f33e19f49e922f160e5b314a8e959a7511e6ef9abd88bb2ad0000019632b1317e │ │ ├── 5a2a78856165e1aa94767b02b9e47b3ed8aeb26f0b9b335de1bc82ec72c3e2a50000019632afd93d │ │ ├── 6354795bf624d8e811d8a2cf65f0521d9c73bfc137928b35f856d3405a66c5210000019632afcc03 │ │ ├── 751754c159783577da8783d3045862732ce57ce6bc4f86aa664c1016915aec2b0000019632af4713 │ │ ├── 7cf24f1c2d2cafc1f7e8540d732165d8d3f43c5276246b11755267b8aaddbcc30000019632af8d25 │ │ ├── 8f7d04a24ec7e0cd58b87b55420bfd332036b708f72b22aea87d8507534c116b0000019632afa93a │ │ ├── ab5482f74ba835d0072db51f8d6c8a9f587ffef4e0b9a3646fe2846828c7ab600000019632af11b0 │ │ ├── c811e21a0e34d4d698aa6b27e75e61c029cfad08ee1d70e883bb9752bea287cd0000019632961a44 │ │ └── ff4b9baeb64f904def752587c50ecb99d886882837cb9144400e7f97420464870000019632b0fd57 │ └── miniflare-CacheObject │ └── 9f458c07675338a7426a7b81ac4fb1baf92d034efbcaaf4336379640ed744ded.sqlite ├── README.md ├── checkProxies.py ├── nitro.config.ts ├── package.json ├── pnpm-lock.yaml ├── src ├── lib │ └── unzipjs.min.js ├── routes │ ├── c │ │ └── [vrf] │ │ │ └── id │ │ │ └── [fileId].get.ts │ ├── faq.ts │ ├── index.ts │ └── search.get.ts ├── sources │ └── subdl.ts └── utils │ ├── function.ts │ ├── json.ts │ ├── lookup.ts │ ├── proxy.ts │ ├── types.ts │ ├── unzip.ts │ ├── userAgents.ts │ └── utils.ts ├── tsconfig.json └── wrangler.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.github/flowchart.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.nitro 3 | /cloudflare 4 | /.output 5 | -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.hintrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .nitro 2 | cloudflare 3 | node_modules 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.wrangler/state/v3/cache/default/blobs/04d0b45930cd292f33e19f49e922f160e5b314a8e959a7511e6ef9abd88bb2ad0000019632b1317e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.wrangler/state/v3/cache/default/blobs/04d0b45930cd292f33e19f49e922f160e5b314a8e959a7511e6ef9abd88bb2ad0000019632b1317e -------------------------------------------------------------------------------- /.wrangler/state/v3/cache/default/blobs/5a2a78856165e1aa94767b02b9e47b3ed8aeb26f0b9b335de1bc82ec72c3e2a50000019632afd93d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.wrangler/state/v3/cache/default/blobs/5a2a78856165e1aa94767b02b9e47b3ed8aeb26f0b9b335de1bc82ec72c3e2a50000019632afd93d -------------------------------------------------------------------------------- /.wrangler/state/v3/cache/default/blobs/6354795bf624d8e811d8a2cf65f0521d9c73bfc137928b35f856d3405a66c5210000019632afcc03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.wrangler/state/v3/cache/default/blobs/6354795bf624d8e811d8a2cf65f0521d9c73bfc137928b35f856d3405a66c5210000019632afcc03 -------------------------------------------------------------------------------- /.wrangler/state/v3/cache/default/blobs/751754c159783577da8783d3045862732ce57ce6bc4f86aa664c1016915aec2b0000019632af4713: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.wrangler/state/v3/cache/default/blobs/751754c159783577da8783d3045862732ce57ce6bc4f86aa664c1016915aec2b0000019632af4713 -------------------------------------------------------------------------------- /.wrangler/state/v3/cache/default/blobs/7cf24f1c2d2cafc1f7e8540d732165d8d3f43c5276246b11755267b8aaddbcc30000019632af8d25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.wrangler/state/v3/cache/default/blobs/7cf24f1c2d2cafc1f7e8540d732165d8d3f43c5276246b11755267b8aaddbcc30000019632af8d25 -------------------------------------------------------------------------------- /.wrangler/state/v3/cache/default/blobs/8f7d04a24ec7e0cd58b87b55420bfd332036b708f72b22aea87d8507534c116b0000019632afa93a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.wrangler/state/v3/cache/default/blobs/8f7d04a24ec7e0cd58b87b55420bfd332036b708f72b22aea87d8507534c116b0000019632afa93a -------------------------------------------------------------------------------- /.wrangler/state/v3/cache/default/blobs/ab5482f74ba835d0072db51f8d6c8a9f587ffef4e0b9a3646fe2846828c7ab600000019632af11b0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.wrangler/state/v3/cache/default/blobs/ab5482f74ba835d0072db51f8d6c8a9f587ffef4e0b9a3646fe2846828c7ab600000019632af11b0 -------------------------------------------------------------------------------- /.wrangler/state/v3/cache/default/blobs/c811e21a0e34d4d698aa6b27e75e61c029cfad08ee1d70e883bb9752bea287cd0000019632961a44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.wrangler/state/v3/cache/default/blobs/c811e21a0e34d4d698aa6b27e75e61c029cfad08ee1d70e883bb9752bea287cd0000019632961a44 -------------------------------------------------------------------------------- /.wrangler/state/v3/cache/default/blobs/ff4b9baeb64f904def752587c50ecb99d886882837cb9144400e7f97420464870000019632b0fd57: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.wrangler/state/v3/cache/default/blobs/ff4b9baeb64f904def752587c50ecb99d886882837cb9144400e7f97420464870000019632b0fd57 -------------------------------------------------------------------------------- /.wrangler/state/v3/cache/miniflare-CacheObject/9f458c07675338a7426a7b81ac4fb1baf92d034efbcaaf4336379640ed744ded.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/.wrangler/state/v3/cache/miniflare-CacheObject/9f458c07675338a7426a7b81ac4fb1baf92d034efbcaaf4336379640ed744ded.sqlite -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/README.md -------------------------------------------------------------------------------- /checkProxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/checkProxies.py -------------------------------------------------------------------------------- /nitro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/nitro.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/lib/unzipjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/lib/unzipjs.min.js -------------------------------------------------------------------------------- /src/routes/c/[vrf]/id/[fileId].get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/routes/c/[vrf]/id/[fileId].get.ts -------------------------------------------------------------------------------- /src/routes/faq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/routes/faq.ts -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/routes/search.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/routes/search.get.ts -------------------------------------------------------------------------------- /src/sources/subdl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/sources/subdl.ts -------------------------------------------------------------------------------- /src/utils/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/utils/function.ts -------------------------------------------------------------------------------- /src/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/utils/json.ts -------------------------------------------------------------------------------- /src/utils/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/utils/lookup.ts -------------------------------------------------------------------------------- /src/utils/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/utils/proxy.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /src/utils/unzip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/utils/unzip.ts -------------------------------------------------------------------------------- /src/utils/userAgents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/utils/userAgents.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzCozi/wyzie-subs/HEAD/wrangler.toml --------------------------------------------------------------------------------