gitextract_cbt85_f1/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ ├── feature-request.md │ │ └── game-request.md │ ├── dependabot.yml │ └── workflows/ │ └── ads.yml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── CONTRIBUTING.md ├── Dockerfile ├── Failed.html ├── LICENSE ├── Masqr.js ├── README.md ├── SECURITY.md ├── app.json ├── biome.json ├── config.js ├── index.js ├── package.json ├── render.yaml ├── static/ │ ├── 404.html │ ├── ads.txt │ ├── apps.html │ ├── assets/ │ │ ├── css/ │ │ │ ├── container.css │ │ │ ├── error.css │ │ │ ├── global.css │ │ │ ├── h.css │ │ │ ├── nav.css │ │ │ ├── settings.css │ │ │ ├── t.css │ │ │ └── themes/ │ │ │ ├── catppuccin/ │ │ │ │ ├── frappe.css │ │ │ │ ├── latte.css │ │ │ │ ├── macchiato.css │ │ │ │ └── mocha.css │ │ │ ├── colors/ │ │ │ │ ├── inverted.css │ │ │ │ └── sky.css │ │ │ └── template.css │ │ ├── history/ │ │ │ ├── client.js │ │ │ ├── config.js │ │ │ ├── handler.js │ │ │ ├── html.js │ │ │ └── worker.js │ │ ├── js/ │ │ │ ├── c1.js │ │ │ ├── h1.js │ │ │ ├── index-3.js │ │ │ ├── m1.js │ │ │ ├── s1.js │ │ │ └── t3.js │ │ ├── json/ │ │ │ ├── a.json │ │ │ ├── a.min.json │ │ │ ├── g.json │ │ │ └── g.min.json │ │ └── mathematics/ │ │ ├── bundle.js │ │ ├── config.js │ │ ├── handler.js │ │ └── sw.js │ ├── games.html │ ├── index.html │ ├── robots.txt │ ├── settings.html │ ├── sw.js │ └── tabs.html └── vercel.json