gitextract_rv9tbtv8/ ├── .dockerignore ├── .editorconfig ├── .eslintrc.json ├── .github/ │ └── workflows/ │ ├── push-docker-hub.yml │ └── release.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .nvmrc ├── .prettierrc.json ├── Dockerfile ├── LICENSE ├── README.md ├── entrypoint.sh ├── index.tsx ├── package.json ├── services/ │ ├── adobe-helpers.ts │ ├── app-status.ts │ ├── b1g-handler.ts │ ├── bally-handler.ts │ ├── build-schedule.ts │ ├── caching.ts │ ├── cbs-handler.ts │ ├── channels.ts │ ├── config.ts │ ├── database.ts │ ├── debug.ts │ ├── espn-handler.ts │ ├── flo-handler.ts │ ├── fox-handler.ts │ ├── foxone-handler.ts │ ├── generate-m3u.ts │ ├── generate-xmltv.ts │ ├── gotham-channels.ts │ ├── gotham-handler.ts │ ├── hudl-handler.ts │ ├── init-directories.ts │ ├── jsdom-helper.ts │ ├── kbo-handler.ts │ ├── ksl-handler.ts │ ├── launch-channel.ts │ ├── midco-handler.ts │ ├── misc-db-service.ts │ ├── mlb-handler.ts │ ├── mw-handler.ts │ ├── networks.ts │ ├── nfl-handler.ts │ ├── nhltv-handler.ts │ ├── nwsl-handler.ts │ ├── outside-handler.ts │ ├── paramount-handler.ts │ ├── playlist-handler.ts │ ├── port.ts │ ├── providers/ │ │ ├── b1g/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── bally/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ └── index.tsx │ │ ├── cbs-sports/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── espn/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── espn-plus/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── flosports/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── fox/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── foxone/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── gotham/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ ├── TveLogin.tsx │ │ │ └── index.tsx │ │ ├── hudl/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ └── index.tsx │ │ ├── index.ts │ │ ├── kbo/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ └── index.tsx │ │ ├── ksl/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ └── index.tsx │ │ ├── midco/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── mlb/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── mw/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ └── index.tsx │ │ ├── nfl/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── nhl-tv/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── nwsl/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── outside/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── paramount/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── pwhl/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ └── index.tsx │ │ ├── victory/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── wnba/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ ├── CardBody.tsx │ │ │ ├── Login.tsx │ │ │ └── index.tsx │ │ ├── wsn/ │ │ │ ├── index.tsx │ │ │ └── views/ │ │ │ └── index.tsx │ │ └── zeam/ │ │ ├── index.tsx │ │ └── views/ │ │ └── index.tsx │ ├── pwhl-handler.ts │ ├── shared-helpers.ts │ ├── shared-interfaces.ts │ ├── template-handler.ts │ ├── tubi-helper.ts │ ├── user-agent.ts │ ├── victory-handler.ts │ ├── wnba-handler.ts │ ├── wsn-handler.ts │ ├── yt-dlp-helper.ts │ └── zeam-handler.ts ├── tsconfig.json └── views/ ├── Header.tsx ├── Layout.tsx ├── Links.tsx ├── Main.tsx ├── Options.tsx ├── Providers.tsx ├── Script.tsx ├── Style.tsx └── Tools.tsx