gitextract_1iyklgqu/ ├── .eslintrc.json ├── .github/ │ └── workflows/ │ ├── test.yml │ └── update.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .prettierignore ├── .scripts/ │ ├── answers.csv │ ├── update.js │ └── whitelist.csv ├── .vscode/ │ └── settings.json ├── README.md ├── components/ │ ├── Alert.tsx │ ├── App.tsx │ ├── Board.tsx │ ├── Container.tsx │ ├── EmojiRain.tsx │ ├── EmojiSelector.tsx │ ├── Header.tsx │ ├── HeadingWithNum.tsx │ ├── HelpModal.tsx │ ├── Keyboard.tsx │ ├── KeyboardButton.tsx │ ├── Link.tsx │ ├── LiveStatsModal.tsx │ ├── Modal.tsx │ ├── SettingsModal.tsx │ ├── SponsorshipFooter.tsx │ ├── StatsModal.tsx │ └── Tile.tsx ├── env.dev ├── jest.config.js ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages/ │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.js │ ├── api/ │ │ ├── define/ │ │ │ └── [word].ts │ │ ├── live.ts │ │ └── words.ts │ ├── arsip/ │ │ ├── [num].tsx │ │ └── index.tsx │ ├── bantuan.tsx │ ├── index.tsx │ └── lawan.tsx ├── postcss.config.js ├── public/ │ ├── ads.txt │ └── google563f40b6a67a6d75.html ├── sentry.client.config.js ├── sentry.properties ├── sentry.server.config.js ├── styles/ │ └── globals.css ├── tailwind.config.js ├── tsconfig.json └── utils/ ├── __tests__/ │ ├── answer.test.js │ └── game.test.js ├── animation.ts ├── answers.ts ├── browser.ts ├── codec.ts ├── constants.ts ├── fetcher.ts ├── formatter.ts ├── game.ts ├── liveGame.ts ├── message.ts ├── tracking.ts ├── types.ts └── useStoredState.ts