├── .editorconfig ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md ├── stale.yml └── workflows │ ├── build-releases.yml │ ├── lint-and-build.yml │ └── lint-and-build.yml.old ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── angular.json ├── angular.webpack.js ├── electron-builder.json ├── main ├── handlers │ ├── authentication-handlers.ts │ ├── file-handlers.ts │ ├── irc-authentication-handlers.ts │ ├── irc-handlers.ts │ ├── ui-handlers.ts │ └── webhook-handlers.ts ├── ipc-channels.ts ├── main.ts ├── models │ ├── irc-channel.ts │ ├── irc-message.ts │ ├── message-builder.ts │ └── wy-mod.ts ├── oauth │ └── oauth-server.ts ├── preload.ts ├── services │ ├── data-migration-handler.ts │ ├── ipc-handler.ts │ ├── update-manager.ts │ └── window-manager.ts └── utils │ └── logger.ts ├── package.json ├── postinstall-web.js ├── postinstall.js ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ └── dialogs │ │ │ ├── add-bulk-teams-dialog │ │ │ ├── add-bulk-teams-dialog.component.html │ │ │ ├── add-bulk-teams-dialog.component.scss │ │ │ ├── add-bulk-teams-dialog.component.spec.ts │ │ │ └── add-bulk-teams-dialog.component.ts │ │ │ ├── ban-beatmap │ │ │ ├── ban-beatmap.component.html │ │ │ ├── ban-beatmap.component.scss │ │ │ ├── ban-beatmap.component.spec.ts │ │ │ └── ban-beatmap.component.ts │ │ │ ├── data-migration-dialog │ │ │ ├── data-migration-dialog.component.html │ │ │ ├── data-migration-dialog.component.scss │ │ │ ├── data-migration-dialog.component.spec.ts │ │ │ └── data-migration-dialog.component.ts │ │ │ ├── delete-lobby │ │ │ ├── delete-lobby.component.html │ │ │ ├── delete-lobby.component.scss │ │ │ ├── delete-lobby.component.spec.ts │ │ │ └── delete-lobby.component.ts │ │ │ ├── delete-mappool-dialog │ │ │ ├── delete-mappool-dialog.component.html │ │ │ ├── delete-mappool-dialog.component.scss │ │ │ ├── delete-mappool-dialog.component.spec.ts │ │ │ └── delete-mappool-dialog.component.ts │ │ │ ├── delete-mod-bracket-dialog │ │ │ ├── delete-mod-bracket-dialog.component.html │ │ │ ├── delete-mod-bracket-dialog.component.scss │ │ │ ├── delete-mod-bracket-dialog.component.spec.ts │ │ │ └── delete-mod-bracket-dialog.component.ts │ │ │ ├── delete-team-dialog │ │ │ ├── delete-team-dialog.component.html │ │ │ ├── delete-team-dialog.component.scss │ │ │ ├── delete-team-dialog.component.spec.ts │ │ │ └── delete-team-dialog.component.ts │ │ │ ├── delete-tournament-dialog │ │ │ ├── delete-tournament-dialog.component.html │ │ │ ├── delete-tournament-dialog.component.scss │ │ │ ├── delete-tournament-dialog.component.spec.ts │ │ │ └── delete-tournament-dialog.component.ts │ │ │ ├── irc-pick-map-same-mod-bracket │ │ │ ├── irc-pick-map-same-mod-bracket.component.html │ │ │ ├── irc-pick-map-same-mod-bracket.component.scss │ │ │ ├── irc-pick-map-same-mod-bracket.component.spec.ts │ │ │ └── irc-pick-map-same-mod-bracket.component.ts │ │ │ ├── irc-shortcut-dialog │ │ │ ├── irc-shortcut-dialog.component.html │ │ │ ├── irc-shortcut-dialog.component.scss │ │ │ ├── irc-shortcut-dialog.component.spec.ts │ │ │ └── irc-shortcut-dialog.component.ts │ │ │ ├── irc-shortcut-warning-dialog │ │ │ ├── irc-shortcut-warning-dialog.component.html │ │ │ ├── irc-shortcut-warning-dialog.component.scss │ │ │ ├── irc-shortcut-warning-dialog.component.spec.ts │ │ │ └── irc-shortcut-warning-dialog.component.ts │ │ │ ├── join-irc-channel │ │ │ ├── join-irc-channel.component.html │ │ │ ├── join-irc-channel.component.scss │ │ │ ├── join-irc-channel.component.spec.ts │ │ │ └── join-irc-channel.component.ts │ │ │ ├── multiplayer-lobby-move-player │ │ │ ├── multiplayer-lobby-move-player.component.html │ │ │ ├── multiplayer-lobby-move-player.component.scss │ │ │ ├── multiplayer-lobby-move-player.component.spec.ts │ │ │ └── multiplayer-lobby-move-player.component.ts │ │ │ ├── multiplayer-lobby-settings │ │ │ ├── multiplayer-lobby-settings.component.html │ │ │ ├── multiplayer-lobby-settings.component.scss │ │ │ ├── multiplayer-lobby-settings.component.spec.ts │ │ │ └── multiplayer-lobby-settings.component.ts │ │ │ ├── protect-beatmap-dialog │ │ │ ├── protect-beatmap-dialog.component.html │ │ │ ├── protect-beatmap-dialog.component.scss │ │ │ ├── protect-beatmap-dialog.component.spec.ts │ │ │ └── protect-beatmap-dialog.component.ts │ │ │ ├── publish-tournament-dialog │ │ │ ├── publish-tournament-dialog.component.html │ │ │ ├── publish-tournament-dialog.component.scss │ │ │ ├── publish-tournament-dialog.component.spec.ts │ │ │ └── publish-tournament-dialog.component.ts │ │ │ ├── remove-settings │ │ │ ├── remove-settings.component.html │ │ │ ├── remove-settings.component.scss │ │ │ ├── remove-settings.component.spec.ts │ │ │ └── remove-settings.component.ts │ │ │ ├── send-beatmap-result │ │ │ ├── send-beatmap-result.component.html │ │ │ ├── send-beatmap-result.component.scss │ │ │ ├── send-beatmap-result.component.spec.ts │ │ │ └── send-beatmap-result.component.ts │ │ │ ├── send-final-result │ │ │ ├── send-final-result.component.html │ │ │ ├── send-final-result.component.scss │ │ │ ├── send-final-result.component.spec.ts │ │ │ └── send-final-result.component.ts │ │ │ └── tournament-add-user-dialog │ │ │ ├── tournament-add-user-dialog.component.html │ │ │ ├── tournament-add-user-dialog.component.scss │ │ │ ├── tournament-add-user-dialog.component.spec.ts │ │ │ └── tournament-add-user-dialog.component.ts │ ├── core │ │ ├── directive │ │ │ └── clickable-links.directive.ts │ │ └── interceptors │ │ │ └── credentials.interceptor.ts │ ├── interfaces │ │ ├── i-ban-beatmap-dialog-data.ts │ │ ├── i-beatmap-mod-bracket-dialog-data.ts │ │ ├── i-delete-mod-bracket-dialog-data.ts │ │ ├── i-irc-shortcut-command-dialog-data.ts │ │ ├── i-mappool-dialog-data.ts │ │ ├── i-multiplayer-lobby-delete-dialog-data.ts │ │ ├── i-multiplayer-lobby-move-player-dialog-data.ts │ │ ├── i-multiplayer-lobby-send-final-message-dialog-data.ts │ │ ├── i-multiplayer-lobby-settings-dialog-data.ts │ │ ├── i-protect-beatmap-dialog-data.ts │ │ ├── i-send-beatmap-result-dialog-data.ts │ │ ├── i-team-dialog-data.ts │ │ ├── i-tournament-dialog-data.ts │ │ └── i-tournament-invite-dialog-data.ts │ ├── layout │ │ ├── error │ │ │ ├── error.component.html │ │ │ ├── error.component.scss │ │ │ ├── error.component.spec.ts │ │ │ └── error.component.ts │ │ ├── main │ │ │ ├── main.component.html │ │ │ ├── main.component.scss │ │ │ ├── main.component.spec.ts │ │ │ └── main.component.ts │ │ ├── sidebar │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.spec.ts │ │ │ └── sidebar.component.ts │ │ └── updater │ │ │ ├── updater.component.html │ │ │ ├── updater.component.scss │ │ │ ├── updater.component.spec.ts │ │ │ └── updater.component.ts │ ├── models │ │ ├── authentication │ │ │ ├── authentication-response.ts │ │ │ ├── role.ts │ │ │ ├── user-osu.ts │ │ │ └── user.ts │ │ ├── cache │ │ │ ├── cache-beatmap.ts │ │ │ └── cache-user.ts │ │ ├── calculations.ts │ │ ├── irc-shortcut-command.ts │ │ ├── irc │ │ │ ├── irc-channel.ts │ │ │ ├── irc-message.ts │ │ │ ├── message-builder.ts │ │ │ └── regex.ts │ │ ├── lobby.ts │ │ ├── multiplayer-lobby-players │ │ │ ├── multiplayer-lobby-players-player.ts │ │ │ └── multiplayer-lobby-players.ts │ │ ├── osu-models │ │ │ ├── beatmap.ts │ │ │ ├── multiplayer-game-score.ts │ │ │ ├── multiplayer-game.ts │ │ │ ├── multiplayer-match.ts │ │ │ ├── osu-user.ts │ │ │ └── osu.ts │ │ ├── picked-category.ts │ │ ├── score-calculation │ │ │ ├── calculate.ts │ │ │ └── calculation-types │ │ │ │ ├── axs-calculation.ts │ │ │ │ ├── ctm-calculation.ts │ │ │ │ ├── oml-score-calculation.ts │ │ │ │ ├── proposed-calculation.ts │ │ │ │ ├── score-interface.ts │ │ │ │ ├── team-vs-calculation.ts │ │ │ │ ├── team-vs-hidden-calculation.ts │ │ │ │ └── three-cwc-score-calculation.ts │ │ ├── sidebar-item.ts │ │ ├── slash-command.ts │ │ ├── store-multiplayer │ │ │ ├── multiplayer-data-user.ts │ │ │ └── multiplayer-data.ts │ │ ├── toast.ts │ │ ├── tutorial │ │ │ ├── tutorial-category.ts │ │ │ └── tutorial-step.ts │ │ ├── wybintournament │ │ │ ├── wybin-match.ts │ │ │ ├── wybin-opponent.ts │ │ │ └── wybin-stage.ts │ │ └── wytournament │ │ │ ├── mappool │ │ │ ├── wy-mappool.ts │ │ │ ├── wy-mod-bracket-map.ts │ │ │ ├── wy-mod-bracket.ts │ │ │ ├── wy-mod-category.ts │ │ │ ├── wy-mod.ts │ │ │ └── wy-mystery-mappool-helper.ts │ │ │ ├── wy-conditional-message.ts │ │ │ ├── wy-stage.ts │ │ │ ├── wy-team-player.ts │ │ │ ├── wy-team.ts │ │ │ ├── wy-tournament.ts │ │ │ └── wy-webhook.ts │ ├── modules │ │ ├── authentication │ │ │ ├── authentication-routing.module.ts │ │ │ ├── authentication.module.ts │ │ │ └── components │ │ │ │ └── authentication │ │ │ │ ├── authentication.component.html │ │ │ │ ├── authentication.component.scss │ │ │ │ ├── authentication.component.spec.ts │ │ │ │ └── authentication.component.ts │ │ ├── axs │ │ │ ├── axs-routing.module.ts │ │ │ ├── axs.module.ts │ │ │ └── components │ │ │ │ ├── axs-calculator │ │ │ │ ├── axs-calculator.component.html │ │ │ │ ├── axs-calculator.component.scss │ │ │ │ ├── axs-calculator.component.spec.ts │ │ │ │ └── axs-calculator.component.ts │ │ │ │ ├── axs-formula │ │ │ │ ├── axs-formula.component.html │ │ │ │ ├── axs-formula.component.scss │ │ │ │ ├── axs-formula.component.spec.ts │ │ │ │ └── axs-formula.component.ts │ │ │ │ ├── axs-information │ │ │ │ ├── axs-information.component.html │ │ │ │ ├── axs-information.component.scss │ │ │ │ ├── axs-information.component.spec.ts │ │ │ │ └── axs-information.component.ts │ │ │ │ └── axs-router │ │ │ │ ├── axs-router.component.html │ │ │ │ ├── axs-router.component.scss │ │ │ │ ├── axs-router.component.spec.ts │ │ │ │ └── axs-router.component.ts │ │ ├── changelog │ │ │ ├── changelog-routing.module.ts │ │ │ ├── changelog.module.ts │ │ │ └── components │ │ │ │ └── changelog │ │ │ │ ├── changelog.component.html │ │ │ │ ├── changelog.component.scss │ │ │ │ ├── changelog.component.spec.ts │ │ │ │ └── changelog.component.ts │ │ ├── information │ │ │ ├── components │ │ │ │ └── information │ │ │ │ │ ├── information.component.html │ │ │ │ │ ├── information.component.scss │ │ │ │ │ ├── information.component.spec.ts │ │ │ │ │ └── information.component.ts │ │ │ ├── information-routing.module.ts │ │ │ └── information.module.ts │ │ ├── irc │ │ │ ├── components │ │ │ │ ├── irc-player-management │ │ │ │ │ ├── irc-player-management.component.html │ │ │ │ │ ├── irc-player-management.component.scss │ │ │ │ │ ├── irc-player-management.component.spec.ts │ │ │ │ │ └── irc-player-management.component.ts │ │ │ │ ├── irc-shortcut-commands │ │ │ │ │ ├── irc-shortcut-commands.component.html │ │ │ │ │ ├── irc-shortcut-commands.component.scss │ │ │ │ │ ├── irc-shortcut-commands.component.spec.ts │ │ │ │ │ └── irc-shortcut-commands.component.ts │ │ │ │ └── irc │ │ │ │ │ ├── irc.component.html │ │ │ │ │ ├── irc.component.scss │ │ │ │ │ ├── irc.component.spec.ts │ │ │ │ │ └── irc.component.ts │ │ │ ├── irc-routing.module.ts │ │ │ └── irc.module.ts │ │ ├── lobby │ │ │ ├── components │ │ │ │ ├── all-lobbies │ │ │ │ │ ├── all-lobbies.component.html │ │ │ │ │ ├── all-lobbies.component.scss │ │ │ │ │ ├── all-lobbies.component.spec.ts │ │ │ │ │ └── all-lobbies.component.ts │ │ │ │ ├── create-lobby │ │ │ │ │ ├── create-lobby.component.html │ │ │ │ │ ├── create-lobby.component.scss │ │ │ │ │ ├── create-lobby.component.spec.ts │ │ │ │ │ └── create-lobby.component.ts │ │ │ │ ├── join-lobby │ │ │ │ │ ├── join-lobby.component.html │ │ │ │ │ ├── join-lobby.component.scss │ │ │ │ │ ├── join-lobby.component.spec.ts │ │ │ │ │ └── join-lobby.component.ts │ │ │ │ ├── lobby-form │ │ │ │ │ ├── lobby-form.component.html │ │ │ │ │ ├── lobby-form.component.scss │ │ │ │ │ ├── lobby-form.component.spec.ts │ │ │ │ │ └── lobby-form.component.ts │ │ │ │ └── lobby-view │ │ │ │ │ ├── lobby-view.component.html │ │ │ │ │ ├── lobby-view.component.scss │ │ │ │ │ ├── lobby-view.component.spec.ts │ │ │ │ │ └── lobby-view.component.ts │ │ │ ├── lobby-routing.module.ts │ │ │ └── lobby.module.ts │ │ ├── settings │ │ │ ├── components │ │ │ │ └── settings │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.scss │ │ │ │ │ ├── settings.component.spec.ts │ │ │ │ │ └── settings.component.ts │ │ │ ├── models │ │ │ │ └── options-menu.ts │ │ │ ├── settings-routing.module.ts │ │ │ └── settings.module.ts │ │ ├── tournament-management │ │ │ ├── components-utility │ │ │ │ ├── tournament-card │ │ │ │ │ ├── tournament-card.component.html │ │ │ │ │ ├── tournament-card.component.scss │ │ │ │ │ ├── tournament-card.component.spec.ts │ │ │ │ │ └── tournament-card.component.ts │ │ │ │ └── tournament │ │ │ │ │ ├── tournament-access │ │ │ │ │ ├── tournament-access.component.html │ │ │ │ │ ├── tournament-access.component.scss │ │ │ │ │ ├── tournament-access.component.spec.ts │ │ │ │ │ └── tournament-access.component.ts │ │ │ │ │ ├── tournament-beatmap-result │ │ │ │ │ ├── tournament-conditional-message.component.html │ │ │ │ │ ├── tournament-conditional-message.component.scss │ │ │ │ │ ├── tournament-conditional-message.component.spec.ts │ │ │ │ │ └── tournament-conditional-message.component.ts │ │ │ │ │ ├── tournament-general │ │ │ │ │ ├── tournament-general.component.html │ │ │ │ │ ├── tournament-general.component.scss │ │ │ │ │ ├── tournament-general.component.spec.ts │ │ │ │ │ └── tournament-general.component.ts │ │ │ │ │ ├── tournament-mappool │ │ │ │ │ ├── mappool-overview │ │ │ │ │ │ ├── mappool-overview.component.html │ │ │ │ │ │ ├── mappool-overview.component.scss │ │ │ │ │ │ ├── mappool-overview.component.spec.ts │ │ │ │ │ │ └── mappool-overview.component.ts │ │ │ │ │ ├── mappool │ │ │ │ │ │ ├── mappool.component.html │ │ │ │ │ │ ├── mappool.component.scss │ │ │ │ │ │ ├── mappool.component.spec.ts │ │ │ │ │ │ └── mappool.component.ts │ │ │ │ │ └── mod-bracket │ │ │ │ │ │ ├── mod-bracket.component.html │ │ │ │ │ │ ├── mod-bracket.component.scss │ │ │ │ │ │ ├── mod-bracket.component.spec.ts │ │ │ │ │ │ └── mod-bracket.component.ts │ │ │ │ │ ├── tournament-participants │ │ │ │ │ ├── tournament-participants.component.html │ │ │ │ │ ├── tournament-participants.component.scss │ │ │ │ │ ├── tournament-participants.component.spec.ts │ │ │ │ │ └── tournament-participants.component.ts │ │ │ │ │ ├── tournament-stages │ │ │ │ │ ├── tournament-stages.component.html │ │ │ │ │ ├── tournament-stages.component.scss │ │ │ │ │ ├── tournament-stages.component.spec.ts │ │ │ │ │ └── tournament-stages.component.ts │ │ │ │ │ ├── tournament-webhook │ │ │ │ │ ├── tournament-webhook.component.html │ │ │ │ │ ├── tournament-webhook.component.scss │ │ │ │ │ ├── tournament-webhook.component.spec.ts │ │ │ │ │ └── tournament-webhook.component.ts │ │ │ │ │ ├── tournament-wybin │ │ │ │ │ ├── tournament-wybin.component.html │ │ │ │ │ ├── tournament-wybin.component.scss │ │ │ │ │ ├── tournament-wybin.component.spec.ts │ │ │ │ │ └── tournament-wybin.component.ts │ │ │ │ │ └── tournament │ │ │ │ │ ├── tournament.component.html │ │ │ │ │ ├── tournament.component.scss │ │ │ │ │ ├── tournament.component.spec.ts │ │ │ │ │ └── tournament.component.ts │ │ │ ├── components │ │ │ │ ├── management-router │ │ │ │ │ ├── management-router.component.html │ │ │ │ │ ├── management-router.component.scss │ │ │ │ │ ├── management-router.component.spec.ts │ │ │ │ │ └── management-router.component.ts │ │ │ │ ├── tournament-manage │ │ │ │ │ ├── tournament-create │ │ │ │ │ │ ├── tournament-create.component.html │ │ │ │ │ │ ├── tournament-create.component.scss │ │ │ │ │ │ ├── tournament-create.component.spec.ts │ │ │ │ │ │ └── tournament-create.component.ts │ │ │ │ │ └── tournament-edit │ │ │ │ │ │ ├── tournament-edit.component.html │ │ │ │ │ │ ├── tournament-edit.component.scss │ │ │ │ │ │ ├── tournament-edit.component.spec.ts │ │ │ │ │ │ └── tournament-edit.component.ts │ │ │ │ └── tournament-view │ │ │ │ │ ├── tournament-all-published-administrator │ │ │ │ │ ├── tournament-all-published-administrator.component.html │ │ │ │ │ ├── tournament-all-published-administrator.component.scss │ │ │ │ │ ├── tournament-all-published-administrator.component.spec.ts │ │ │ │ │ └── tournament-all-published-administrator.component.ts │ │ │ │ │ ├── tournament-all-published │ │ │ │ │ ├── tournament-all-published.component.html │ │ │ │ │ ├── tournament-all-published.component.scss │ │ │ │ │ ├── tournament-all-published.component.spec.ts │ │ │ │ │ └── tournament-all-published.component.ts │ │ │ │ │ ├── tournament-my-published │ │ │ │ │ ├── tournament-my-published.component.html │ │ │ │ │ ├── tournament-my-published.component.scss │ │ │ │ │ ├── tournament-my-published.component.spec.ts │ │ │ │ │ └── tournament-my-published.component.ts │ │ │ │ │ └── tournament-overview │ │ │ │ │ ├── tournament-overview.component.html │ │ │ │ │ ├── tournament-overview.component.scss │ │ │ │ │ ├── tournament-overview.component.spec.ts │ │ │ │ │ └── tournament-overview.component.ts │ │ │ ├── models │ │ │ │ ├── mod-bracket-unique-mods-validator.ts │ │ │ │ └── validation-error.ts │ │ │ ├── services │ │ │ │ └── validation-error.service.ts │ │ │ ├── tournament-management-routing.module.ts │ │ │ └── tournament-management.module.ts │ │ ├── tutorial │ │ │ ├── components │ │ │ │ └── tutorial-overview │ │ │ │ │ ├── tutorial-overview.component.html │ │ │ │ │ ├── tutorial-overview.component.scss │ │ │ │ │ ├── tutorial-overview.component.spec.ts │ │ │ │ │ └── tutorial-overview.component.ts │ │ │ ├── tutorial-routing.module.ts │ │ │ └── tutorial.module.ts │ │ └── webhook │ │ │ ├── components │ │ │ └── webhook │ │ │ │ ├── webhook.component.html │ │ │ │ ├── webhook.component.scss │ │ │ │ ├── webhook.component.spec.ts │ │ │ │ └── webhook.component.ts │ │ │ ├── webhook-routing.module.ts │ │ │ └── webhook.module.ts │ ├── services │ │ ├── authenticate.service.ts │ │ ├── cache.service.ts │ │ ├── challonge.service.ts │ │ ├── debug.service.ts │ │ ├── electron.service.ts │ │ ├── generic.service.ts │ │ ├── irc-shortcut-commands.service.ts │ │ ├── irc.service.ts │ │ ├── multiplayer-lobby-players.service.ts │ │ ├── osu-api │ │ │ ├── api-key-validation.service.ts │ │ │ ├── get-beatmap.service.ts │ │ │ ├── get-multiplayer.service.ts │ │ │ └── get-user.service.ts │ │ ├── slash-command.service.ts │ │ ├── storage │ │ │ ├── cache-store.service.ts │ │ │ ├── irc-shortcut-commands-store.service.ts │ │ │ ├── lobby-store.service.ts │ │ │ ├── settings-store.service.ts │ │ │ ├── storage-driver.service.ts │ │ │ ├── tournament-store.service.ts │ │ │ └── webhook-store.service.ts │ │ ├── toast.service.ts │ │ ├── tournament.service.ts │ │ ├── tutorial.service.ts │ │ ├── webhook.service.ts │ │ ├── wy-multiplayer-lobbies.service.ts │ │ └── wybin.service.ts │ └── shared │ │ ├── angular-material.module.ts │ │ ├── components │ │ ├── alert │ │ │ ├── alert.component.html │ │ │ ├── alert.component.scss │ │ │ ├── alert.component.spec.ts │ │ │ └── alert.component.ts │ │ ├── debug │ │ │ ├── debug.component.html │ │ │ ├── debug.component.scss │ │ │ ├── debug.component.spec.ts │ │ │ └── debug.component.ts │ │ ├── toast │ │ │ ├── toast.component.html │ │ │ ├── toast.component.scss │ │ │ ├── toast.component.spec.ts │ │ │ └── toast.component.ts │ │ └── tutorial │ │ │ ├── tutorial.component.html │ │ │ ├── tutorial.component.scss │ │ │ ├── tutorial.component.spec.ts │ │ │ └── tutorial.component.ts │ │ ├── directives │ │ └── ng-var.directive.ts │ │ ├── misc.ts │ │ ├── pipes │ │ ├── filter-team.pipe.ts │ │ ├── filter-tournament.pipe.ts │ │ ├── reverse.pipe.ts │ │ ├── search-mod-bracket.pipe.ts │ │ └── search.pipe.ts │ │ └── shared.module.ts ├── assets │ ├── .gitkeep │ ├── icons │ │ ├── LICENSE.txt │ │ ├── exclamation-circle.svg │ │ ├── exclamation-triangle.svg │ │ ├── hammer.svg │ │ ├── info-circle.svg │ │ └── trophy.svg │ ├── images │ │ ├── flags │ │ │ ├── ad.png │ │ │ ├── ae.png │ │ │ ├── af.png │ │ │ ├── ag.png │ │ │ ├── ai.png │ │ │ ├── al.png │ │ │ ├── am.png │ │ │ ├── ao.png │ │ │ ├── aq.png │ │ │ ├── ar.png │ │ │ ├── as.png │ │ │ ├── at.png │ │ │ ├── au.png │ │ │ ├── aw.png │ │ │ ├── ax.png │ │ │ ├── az.png │ │ │ ├── ba.png │ │ │ ├── bb.png │ │ │ ├── bd.png │ │ │ ├── be.png │ │ │ ├── bf.png │ │ │ ├── bg.png │ │ │ ├── bh.png │ │ │ ├── bi.png │ │ │ ├── bj.png │ │ │ ├── bl.png │ │ │ ├── bm.png │ │ │ ├── bn.png │ │ │ ├── bo.png │ │ │ ├── bq.png │ │ │ ├── br.png │ │ │ ├── bs.png │ │ │ ├── bt.png │ │ │ ├── bv.png │ │ │ ├── bw.png │ │ │ ├── by.png │ │ │ ├── bz.png │ │ │ ├── ca.png │ │ │ ├── cc.png │ │ │ ├── cd.png │ │ │ ├── cf.png │ │ │ ├── cg.png │ │ │ ├── ch.png │ │ │ ├── ci.png │ │ │ ├── ck.png │ │ │ ├── cl.png │ │ │ ├── cm.png │ │ │ ├── cn.png │ │ │ ├── co.png │ │ │ ├── cr.png │ │ │ ├── cu.png │ │ │ ├── cv.png │ │ │ ├── cw.png │ │ │ ├── cx.png │ │ │ ├── cy.png │ │ │ ├── cz.png │ │ │ ├── de.png │ │ │ ├── dj.png │ │ │ ├── dk.png │ │ │ ├── dm.png │ │ │ ├── do.png │ │ │ ├── dz.png │ │ │ ├── ec.png │ │ │ ├── ee.png │ │ │ ├── eg.png │ │ │ ├── eh.png │ │ │ ├── er.png │ │ │ ├── es.png │ │ │ ├── et.png │ │ │ ├── fi.png │ │ │ ├── fj.png │ │ │ ├── fk.png │ │ │ ├── fm.png │ │ │ ├── fo.png │ │ │ ├── fr.png │ │ │ ├── ga.png │ │ │ ├── gb-eng.png │ │ │ ├── gb-nir.png │ │ │ ├── gb-sct.png │ │ │ ├── gb-wls.png │ │ │ ├── gb.png │ │ │ ├── gd.png │ │ │ ├── ge.png │ │ │ ├── gf.png │ │ │ ├── gg.png │ │ │ ├── gh.png │ │ │ ├── gi.png │ │ │ ├── gl.png │ │ │ ├── gm.png │ │ │ ├── gn.png │ │ │ ├── gp.png │ │ │ ├── gq.png │ │ │ ├── gr.png │ │ │ ├── gs.png │ │ │ ├── gt.png │ │ │ ├── gu.png │ │ │ ├── gw.png │ │ │ ├── gy.png │ │ │ ├── hk.png │ │ │ ├── hm.png │ │ │ ├── hn.png │ │ │ ├── hr.png │ │ │ ├── ht.png │ │ │ ├── hu.png │ │ │ ├── id.png │ │ │ ├── ie.png │ │ │ ├── il.png │ │ │ ├── im.png │ │ │ ├── in.png │ │ │ ├── io.png │ │ │ ├── iq.png │ │ │ ├── ir.png │ │ │ ├── is.png │ │ │ ├── it.png │ │ │ ├── je.png │ │ │ ├── jm.png │ │ │ ├── jo.png │ │ │ ├── jp.png │ │ │ ├── ke.png │ │ │ ├── kg.png │ │ │ ├── kh.png │ │ │ ├── ki.png │ │ │ ├── km.png │ │ │ ├── kn.png │ │ │ ├── kp.png │ │ │ ├── kr.png │ │ │ ├── kw.png │ │ │ ├── ky.png │ │ │ ├── kz.png │ │ │ ├── la.png │ │ │ ├── lb.png │ │ │ ├── lc.png │ │ │ ├── li.png │ │ │ ├── lk.png │ │ │ ├── lr.png │ │ │ ├── ls.png │ │ │ ├── lt.png │ │ │ ├── lu.png │ │ │ ├── lv.png │ │ │ ├── ly.png │ │ │ ├── ma.png │ │ │ ├── mc.png │ │ │ ├── md.png │ │ │ ├── me.png │ │ │ ├── mf.png │ │ │ ├── mg.png │ │ │ ├── mh.png │ │ │ ├── mk.png │ │ │ ├── ml.png │ │ │ ├── mm.png │ │ │ ├── mn.png │ │ │ ├── mo.png │ │ │ ├── mp.png │ │ │ ├── mq.png │ │ │ ├── mr.png │ │ │ ├── ms.png │ │ │ ├── mt.png │ │ │ ├── mu.png │ │ │ ├── mv.png │ │ │ ├── mw.png │ │ │ ├── mx.png │ │ │ ├── my.png │ │ │ ├── mz.png │ │ │ ├── na.png │ │ │ ├── nc.png │ │ │ ├── ne.png │ │ │ ├── nf.png │ │ │ ├── ng.png │ │ │ ├── ni.png │ │ │ ├── nl.png │ │ │ ├── no.png │ │ │ ├── np.png │ │ │ ├── nr.png │ │ │ ├── nu.png │ │ │ ├── nz.png │ │ │ ├── om.png │ │ │ ├── pa.png │ │ │ ├── pe.png │ │ │ ├── pf.png │ │ │ ├── pg.png │ │ │ ├── ph.png │ │ │ ├── pk.png │ │ │ ├── pl.png │ │ │ ├── pm.png │ │ │ ├── pn.png │ │ │ ├── pr.png │ │ │ ├── ps.png │ │ │ ├── pt.png │ │ │ ├── pw.png │ │ │ ├── py.png │ │ │ ├── qa.png │ │ │ ├── re.png │ │ │ ├── ro.png │ │ │ ├── rs.png │ │ │ ├── ru.png │ │ │ ├── rw.png │ │ │ ├── sa.png │ │ │ ├── sb.png │ │ │ ├── sc.png │ │ │ ├── sd.png │ │ │ ├── se.png │ │ │ ├── sg.png │ │ │ ├── sh.png │ │ │ ├── si.png │ │ │ ├── sj.png │ │ │ ├── sk.png │ │ │ ├── sl.png │ │ │ ├── sm.png │ │ │ ├── sn.png │ │ │ ├── so.png │ │ │ ├── sr.png │ │ │ ├── ss.png │ │ │ ├── st.png │ │ │ ├── sv.png │ │ │ ├── sx.png │ │ │ ├── sy.png │ │ │ ├── sz.png │ │ │ ├── tc.png │ │ │ ├── td.png │ │ │ ├── tf.png │ │ │ ├── tg.png │ │ │ ├── th.png │ │ │ ├── tj.png │ │ │ ├── tk.png │ │ │ ├── tl.png │ │ │ ├── tm.png │ │ │ ├── tn.png │ │ │ ├── to.png │ │ │ ├── tr.png │ │ │ ├── tt.png │ │ │ ├── tv.png │ │ │ ├── tw.png │ │ │ ├── tz.png │ │ │ ├── ua.png │ │ │ ├── ug.png │ │ │ ├── um.png │ │ │ ├── us.png │ │ │ ├── uy.png │ │ │ ├── uz.png │ │ │ ├── va.png │ │ │ ├── vc.png │ │ │ ├── ve.png │ │ │ ├── vg.png │ │ │ ├── vi.png │ │ │ ├── vn.png │ │ │ ├── vu.png │ │ │ ├── wf.png │ │ │ ├── ws.png │ │ │ ├── xk.png │ │ │ ├── ye.png │ │ │ ├── yt.png │ │ │ ├── za.png │ │ │ ├── zm.png │ │ │ └── zw.png │ │ ├── icon.png │ │ ├── mac-icon │ │ │ └── icon.png │ │ └── osulogo.png │ ├── osu-mods │ │ ├── LICENCE │ │ ├── README │ │ ├── dt.png │ │ ├── dt@2x.png │ │ ├── ez.png │ │ ├── ez@2x.png │ │ ├── fl.png │ │ ├── fl@2x.png │ │ ├── hd.png │ │ ├── hd@2x.png │ │ ├── hr.png │ │ ├── hr@2x.png │ │ ├── ht.png │ │ ├── ht@2x.png │ │ ├── nc.png │ │ ├── nc@2x.png │ │ ├── nf.png │ │ ├── nf@2x.png │ │ ├── nm.png │ │ ├── nm@2x.png │ │ ├── pf.png │ │ ├── pf@2x.png │ │ ├── sd.png │ │ └── sd@2x.png │ ├── screenshots │ │ ├── irc.png │ │ └── mappool-management.png │ ├── stairs.mp3 │ └── tutorial-tournament-template.json ├── bootstrap.scss ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── eslintrc.config.json ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills-test.ts ├── polyfills.ts ├── shared │ └── electron-api.ts ├── styles.scss ├── styles │ ├── _theme.scss │ └── _variables.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.base.json ├── tsconfig.electron.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/build-releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/.github/workflows/build-releases.yml -------------------------------------------------------------------------------- /.github/workflows/lint-and-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/.github/workflows/lint-and-build.yml -------------------------------------------------------------------------------- /.github/workflows/lint-and-build.yml.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/.github/workflows/lint-and-build.yml.old -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/angular.json -------------------------------------------------------------------------------- /angular.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/angular.webpack.js -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/electron-builder.json -------------------------------------------------------------------------------- /main/handlers/authentication-handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/handlers/authentication-handlers.ts -------------------------------------------------------------------------------- /main/handlers/file-handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/handlers/file-handlers.ts -------------------------------------------------------------------------------- /main/handlers/irc-authentication-handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/handlers/irc-authentication-handlers.ts -------------------------------------------------------------------------------- /main/handlers/irc-handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/handlers/irc-handlers.ts -------------------------------------------------------------------------------- /main/handlers/ui-handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/handlers/ui-handlers.ts -------------------------------------------------------------------------------- /main/handlers/webhook-handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/handlers/webhook-handlers.ts -------------------------------------------------------------------------------- /main/ipc-channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/ipc-channels.ts -------------------------------------------------------------------------------- /main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/main.ts -------------------------------------------------------------------------------- /main/models/irc-channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/models/irc-channel.ts -------------------------------------------------------------------------------- /main/models/irc-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/models/irc-message.ts -------------------------------------------------------------------------------- /main/models/message-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/models/message-builder.ts -------------------------------------------------------------------------------- /main/models/wy-mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/models/wy-mod.ts -------------------------------------------------------------------------------- /main/oauth/oauth-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/oauth/oauth-server.ts -------------------------------------------------------------------------------- /main/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/preload.ts -------------------------------------------------------------------------------- /main/services/data-migration-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/services/data-migration-handler.ts -------------------------------------------------------------------------------- /main/services/ipc-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/services/ipc-handler.ts -------------------------------------------------------------------------------- /main/services/update-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/services/update-manager.ts -------------------------------------------------------------------------------- /main/services/window-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/services/window-manager.ts -------------------------------------------------------------------------------- /main/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/main/utils/logger.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/package.json -------------------------------------------------------------------------------- /postinstall-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/postinstall-web.js -------------------------------------------------------------------------------- /postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/postinstall.js -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/add-bulk-teams-dialog/add-bulk-teams-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/add-bulk-teams-dialog/add-bulk-teams-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/add-bulk-teams-dialog/add-bulk-teams-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/add-bulk-teams-dialog/add-bulk-teams-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/add-bulk-teams-dialog/add-bulk-teams-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/add-bulk-teams-dialog/add-bulk-teams-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/add-bulk-teams-dialog/add-bulk-teams-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/ban-beatmap/ban-beatmap.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/ban-beatmap/ban-beatmap.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/ban-beatmap/ban-beatmap.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/ban-beatmap/ban-beatmap.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/ban-beatmap/ban-beatmap.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/ban-beatmap/ban-beatmap.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/ban-beatmap/ban-beatmap.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/data-migration-dialog/data-migration-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/data-migration-dialog/data-migration-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/data-migration-dialog/data-migration-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/data-migration-dialog/data-migration-dialog.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/data-migration-dialog/data-migration-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/data-migration-dialog/data-migration-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/data-migration-dialog/data-migration-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/data-migration-dialog/data-migration-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-lobby/delete-lobby.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-lobby/delete-lobby.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-lobby/delete-lobby.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-lobby/delete-lobby.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-lobby/delete-lobby.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-lobby/delete-lobby.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-lobby/delete-lobby.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-mappool-dialog/delete-mappool-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-mappool-dialog/delete-mappool-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-mappool-dialog/delete-mappool-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-mappool-dialog/delete-mappool-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-mappool-dialog/delete-mappool-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-mappool-dialog/delete-mappool-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-mappool-dialog/delete-mappool-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-mod-bracket-dialog/delete-mod-bracket-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-mod-bracket-dialog/delete-mod-bracket-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-mod-bracket-dialog/delete-mod-bracket-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-mod-bracket-dialog/delete-mod-bracket-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-mod-bracket-dialog/delete-mod-bracket-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-mod-bracket-dialog/delete-mod-bracket-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-mod-bracket-dialog/delete-mod-bracket-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-team-dialog/delete-team-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-team-dialog/delete-team-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-team-dialog/delete-team-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-team-dialog/delete-team-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-team-dialog/delete-team-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-team-dialog/delete-team-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-team-dialog/delete-team-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-tournament-dialog/delete-tournament-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-tournament-dialog/delete-tournament-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-tournament-dialog/delete-tournament-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-tournament-dialog/delete-tournament-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-tournament-dialog/delete-tournament-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/delete-tournament-dialog/delete-tournament-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/delete-tournament-dialog/delete-tournament-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-pick-map-same-mod-bracket/irc-pick-map-same-mod-bracket.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/irc-pick-map-same-mod-bracket/irc-pick-map-same-mod-bracket.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-pick-map-same-mod-bracket/irc-pick-map-same-mod-bracket.component.scss: -------------------------------------------------------------------------------- 1 | .hover { 2 | cursor: pointer; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-pick-map-same-mod-bracket/irc-pick-map-same-mod-bracket.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/irc-pick-map-same-mod-bracket/irc-pick-map-same-mod-bracket.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-pick-map-same-mod-bracket/irc-pick-map-same-mod-bracket.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/irc-pick-map-same-mod-bracket/irc-pick-map-same-mod-bracket.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-shortcut-dialog/irc-shortcut-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/irc-shortcut-dialog/irc-shortcut-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-shortcut-dialog/irc-shortcut-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/irc-shortcut-dialog/irc-shortcut-dialog.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-shortcut-dialog/irc-shortcut-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/irc-shortcut-dialog/irc-shortcut-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-shortcut-dialog/irc-shortcut-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/irc-shortcut-dialog/irc-shortcut-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-shortcut-warning-dialog/irc-shortcut-warning-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/irc-shortcut-warning-dialog/irc-shortcut-warning-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-shortcut-warning-dialog/irc-shortcut-warning-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-shortcut-warning-dialog/irc-shortcut-warning-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/irc-shortcut-warning-dialog/irc-shortcut-warning-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/irc-shortcut-warning-dialog/irc-shortcut-warning-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/irc-shortcut-warning-dialog/irc-shortcut-warning-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/join-irc-channel/join-irc-channel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/join-irc-channel/join-irc-channel.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/join-irc-channel/join-irc-channel.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/join-irc-channel/join-irc-channel.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/join-irc-channel/join-irc-channel.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/join-irc-channel/join-irc-channel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/join-irc-channel/join-irc-channel.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/multiplayer-lobby-move-player/multiplayer-lobby-move-player.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/multiplayer-lobby-move-player/multiplayer-lobby-move-player.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/multiplayer-lobby-move-player/multiplayer-lobby-move-player.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/multiplayer-lobby-move-player/multiplayer-lobby-move-player.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/multiplayer-lobby-move-player/multiplayer-lobby-move-player.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/multiplayer-lobby-move-player/multiplayer-lobby-move-player.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/multiplayer-lobby-move-player/multiplayer-lobby-move-player.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/multiplayer-lobby-move-player/multiplayer-lobby-move-player.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/multiplayer-lobby-settings/multiplayer-lobby-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/multiplayer-lobby-settings/multiplayer-lobby-settings.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/multiplayer-lobby-settings/multiplayer-lobby-settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/multiplayer-lobby-settings/multiplayer-lobby-settings.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/multiplayer-lobby-settings/multiplayer-lobby-settings.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/multiplayer-lobby-settings/multiplayer-lobby-settings.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/multiplayer-lobby-settings/multiplayer-lobby-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/multiplayer-lobby-settings/multiplayer-lobby-settings.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/protect-beatmap-dialog/protect-beatmap-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/protect-beatmap-dialog/protect-beatmap-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/protect-beatmap-dialog/protect-beatmap-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/protect-beatmap-dialog/protect-beatmap-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/protect-beatmap-dialog/protect-beatmap-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/protect-beatmap-dialog/protect-beatmap-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/protect-beatmap-dialog/protect-beatmap-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/publish-tournament-dialog/publish-tournament-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/publish-tournament-dialog/publish-tournament-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/publish-tournament-dialog/publish-tournament-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/publish-tournament-dialog/publish-tournament-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/publish-tournament-dialog/publish-tournament-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/publish-tournament-dialog/publish-tournament-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/publish-tournament-dialog/publish-tournament-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/remove-settings/remove-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/remove-settings/remove-settings.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/remove-settings/remove-settings.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/dialogs/remove-settings/remove-settings.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/remove-settings/remove-settings.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/remove-settings/remove-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/remove-settings/remove-settings.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/send-beatmap-result/send-beatmap-result.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/send-beatmap-result/send-beatmap-result.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/send-beatmap-result/send-beatmap-result.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/send-beatmap-result/send-beatmap-result.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/send-beatmap-result/send-beatmap-result.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/send-beatmap-result/send-beatmap-result.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/send-beatmap-result/send-beatmap-result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/send-beatmap-result/send-beatmap-result.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/send-final-result/send-final-result.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/send-final-result/send-final-result.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/send-final-result/send-final-result.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/send-final-result/send-final-result.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/send-final-result/send-final-result.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/send-final-result/send-final-result.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/send-final-result/send-final-result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/send-final-result/send-final-result.component.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/tournament-add-user-dialog/tournament-add-user-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/tournament-add-user-dialog/tournament-add-user-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/dialogs/tournament-add-user-dialog/tournament-add-user-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/tournament-add-user-dialog/tournament-add-user-dialog.component.scss -------------------------------------------------------------------------------- /src/app/components/dialogs/tournament-add-user-dialog/tournament-add-user-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/tournament-add-user-dialog/tournament-add-user-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/dialogs/tournament-add-user-dialog/tournament-add-user-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/components/dialogs/tournament-add-user-dialog/tournament-add-user-dialog.component.ts -------------------------------------------------------------------------------- /src/app/core/directive/clickable-links.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/core/directive/clickable-links.directive.ts -------------------------------------------------------------------------------- /src/app/core/interceptors/credentials.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/core/interceptors/credentials.interceptor.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-ban-beatmap-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-ban-beatmap-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-beatmap-mod-bracket-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-beatmap-mod-bracket-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-delete-mod-bracket-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-delete-mod-bracket-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-irc-shortcut-command-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-irc-shortcut-command-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-mappool-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-mappool-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-multiplayer-lobby-delete-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-multiplayer-lobby-delete-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-multiplayer-lobby-move-player-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-multiplayer-lobby-move-player-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-multiplayer-lobby-send-final-message-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-multiplayer-lobby-send-final-message-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-multiplayer-lobby-settings-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-multiplayer-lobby-settings-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-protect-beatmap-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-protect-beatmap-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-send-beatmap-result-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-send-beatmap-result-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-team-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-team-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-tournament-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-tournament-dialog-data.ts -------------------------------------------------------------------------------- /src/app/interfaces/i-tournament-invite-dialog-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/interfaces/i-tournament-invite-dialog-data.ts -------------------------------------------------------------------------------- /src/app/layout/error/error.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/error/error.component.html -------------------------------------------------------------------------------- /src/app/layout/error/error.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/layout/error/error.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/error/error.component.spec.ts -------------------------------------------------------------------------------- /src/app/layout/error/error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/error/error.component.ts -------------------------------------------------------------------------------- /src/app/layout/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/main/main.component.html -------------------------------------------------------------------------------- /src/app/layout/main/main.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/main/main.component.scss -------------------------------------------------------------------------------- /src/app/layout/main/main.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/main/main.component.spec.ts -------------------------------------------------------------------------------- /src/app/layout/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/main/main.component.ts -------------------------------------------------------------------------------- /src/app/layout/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /src/app/layout/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /src/app/layout/sidebar/sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/sidebar/sidebar.component.spec.ts -------------------------------------------------------------------------------- /src/app/layout/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /src/app/layout/updater/updater.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/updater/updater.component.html -------------------------------------------------------------------------------- /src/app/layout/updater/updater.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/updater/updater.component.scss -------------------------------------------------------------------------------- /src/app/layout/updater/updater.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/updater/updater.component.spec.ts -------------------------------------------------------------------------------- /src/app/layout/updater/updater.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/layout/updater/updater.component.ts -------------------------------------------------------------------------------- /src/app/models/authentication/authentication-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/authentication/authentication-response.ts -------------------------------------------------------------------------------- /src/app/models/authentication/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/authentication/role.ts -------------------------------------------------------------------------------- /src/app/models/authentication/user-osu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/authentication/user-osu.ts -------------------------------------------------------------------------------- /src/app/models/authentication/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/authentication/user.ts -------------------------------------------------------------------------------- /src/app/models/cache/cache-beatmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/cache/cache-beatmap.ts -------------------------------------------------------------------------------- /src/app/models/cache/cache-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/cache/cache-user.ts -------------------------------------------------------------------------------- /src/app/models/calculations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/calculations.ts -------------------------------------------------------------------------------- /src/app/models/irc-shortcut-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/irc-shortcut-command.ts -------------------------------------------------------------------------------- /src/app/models/irc/irc-channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/irc/irc-channel.ts -------------------------------------------------------------------------------- /src/app/models/irc/irc-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/irc/irc-message.ts -------------------------------------------------------------------------------- /src/app/models/irc/message-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/irc/message-builder.ts -------------------------------------------------------------------------------- /src/app/models/irc/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/irc/regex.ts -------------------------------------------------------------------------------- /src/app/models/lobby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/lobby.ts -------------------------------------------------------------------------------- /src/app/models/multiplayer-lobby-players/multiplayer-lobby-players-player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/multiplayer-lobby-players/multiplayer-lobby-players-player.ts -------------------------------------------------------------------------------- /src/app/models/multiplayer-lobby-players/multiplayer-lobby-players.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/multiplayer-lobby-players/multiplayer-lobby-players.ts -------------------------------------------------------------------------------- /src/app/models/osu-models/beatmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/osu-models/beatmap.ts -------------------------------------------------------------------------------- /src/app/models/osu-models/multiplayer-game-score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/osu-models/multiplayer-game-score.ts -------------------------------------------------------------------------------- /src/app/models/osu-models/multiplayer-game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/osu-models/multiplayer-game.ts -------------------------------------------------------------------------------- /src/app/models/osu-models/multiplayer-match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/osu-models/multiplayer-match.ts -------------------------------------------------------------------------------- /src/app/models/osu-models/osu-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/osu-models/osu-user.ts -------------------------------------------------------------------------------- /src/app/models/osu-models/osu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/osu-models/osu.ts -------------------------------------------------------------------------------- /src/app/models/picked-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/picked-category.ts -------------------------------------------------------------------------------- /src/app/models/score-calculation/calculate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/score-calculation/calculate.ts -------------------------------------------------------------------------------- /src/app/models/score-calculation/calculation-types/axs-calculation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/score-calculation/calculation-types/axs-calculation.ts -------------------------------------------------------------------------------- /src/app/models/score-calculation/calculation-types/ctm-calculation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/score-calculation/calculation-types/ctm-calculation.ts -------------------------------------------------------------------------------- /src/app/models/score-calculation/calculation-types/oml-score-calculation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/score-calculation/calculation-types/oml-score-calculation.ts -------------------------------------------------------------------------------- /src/app/models/score-calculation/calculation-types/proposed-calculation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/score-calculation/calculation-types/proposed-calculation.ts -------------------------------------------------------------------------------- /src/app/models/score-calculation/calculation-types/score-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/score-calculation/calculation-types/score-interface.ts -------------------------------------------------------------------------------- /src/app/models/score-calculation/calculation-types/team-vs-calculation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/score-calculation/calculation-types/team-vs-calculation.ts -------------------------------------------------------------------------------- /src/app/models/score-calculation/calculation-types/team-vs-hidden-calculation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/score-calculation/calculation-types/team-vs-hidden-calculation.ts -------------------------------------------------------------------------------- /src/app/models/score-calculation/calculation-types/three-cwc-score-calculation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/score-calculation/calculation-types/three-cwc-score-calculation.ts -------------------------------------------------------------------------------- /src/app/models/sidebar-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/sidebar-item.ts -------------------------------------------------------------------------------- /src/app/models/slash-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/slash-command.ts -------------------------------------------------------------------------------- /src/app/models/store-multiplayer/multiplayer-data-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/store-multiplayer/multiplayer-data-user.ts -------------------------------------------------------------------------------- /src/app/models/store-multiplayer/multiplayer-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/store-multiplayer/multiplayer-data.ts -------------------------------------------------------------------------------- /src/app/models/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/toast.ts -------------------------------------------------------------------------------- /src/app/models/tutorial/tutorial-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/tutorial/tutorial-category.ts -------------------------------------------------------------------------------- /src/app/models/tutorial/tutorial-step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/tutorial/tutorial-step.ts -------------------------------------------------------------------------------- /src/app/models/wybintournament/wybin-match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wybintournament/wybin-match.ts -------------------------------------------------------------------------------- /src/app/models/wybintournament/wybin-opponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wybintournament/wybin-opponent.ts -------------------------------------------------------------------------------- /src/app/models/wybintournament/wybin-stage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wybintournament/wybin-stage.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/mappool/wy-mappool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/mappool/wy-mappool.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/mappool/wy-mod-bracket-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/mappool/wy-mod-bracket-map.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/mappool/wy-mod-bracket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/mappool/wy-mod-bracket.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/mappool/wy-mod-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/mappool/wy-mod-category.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/mappool/wy-mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/mappool/wy-mod.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/mappool/wy-mystery-mappool-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/mappool/wy-mystery-mappool-helper.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/wy-conditional-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/wy-conditional-message.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/wy-stage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/wy-stage.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/wy-team-player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/wy-team-player.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/wy-team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/wy-team.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/wy-tournament.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/wy-tournament.ts -------------------------------------------------------------------------------- /src/app/models/wytournament/wy-webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/models/wytournament/wy-webhook.ts -------------------------------------------------------------------------------- /src/app/modules/authentication/authentication-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/authentication/authentication-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/authentication/authentication.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/authentication/authentication.module.ts -------------------------------------------------------------------------------- /src/app/modules/authentication/components/authentication/authentication.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/authentication/components/authentication/authentication.component.html -------------------------------------------------------------------------------- /src/app/modules/authentication/components/authentication/authentication.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/authentication/components/authentication/authentication.component.scss -------------------------------------------------------------------------------- /src/app/modules/authentication/components/authentication/authentication.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/authentication/components/authentication/authentication.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/authentication/components/authentication/authentication.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/authentication/components/authentication/authentication.component.ts -------------------------------------------------------------------------------- /src/app/modules/axs/axs-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/axs-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/axs/axs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/axs.module.ts -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-calculator/axs-calculator.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-calculator/axs-calculator.component.html -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-calculator/axs-calculator.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-calculator/axs-calculator.component.scss -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-calculator/axs-calculator.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-calculator/axs-calculator.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-calculator/axs-calculator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-calculator/axs-calculator.component.ts -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-formula/axs-formula.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-formula/axs-formula.component.html -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-formula/axs-formula.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-formula/axs-formula.component.scss -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-formula/axs-formula.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-formula/axs-formula.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-formula/axs-formula.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-formula/axs-formula.component.ts -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-information/axs-information.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-information/axs-information.component.html -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-information/axs-information.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-information/axs-information.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-information/axs-information.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-information/axs-information.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-information/axs-information.component.ts -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-router/axs-router.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-router/axs-router.component.html -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-router/axs-router.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-router/axs-router.component.scss -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-router/axs-router.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-router/axs-router.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/axs/components/axs-router/axs-router.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/axs/components/axs-router/axs-router.component.ts -------------------------------------------------------------------------------- /src/app/modules/changelog/changelog-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/changelog/changelog-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/changelog/changelog.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/changelog/changelog.module.ts -------------------------------------------------------------------------------- /src/app/modules/changelog/components/changelog/changelog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/changelog/components/changelog/changelog.component.html -------------------------------------------------------------------------------- /src/app/modules/changelog/components/changelog/changelog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/changelog/components/changelog/changelog.component.scss -------------------------------------------------------------------------------- /src/app/modules/changelog/components/changelog/changelog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/changelog/components/changelog/changelog.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/changelog/components/changelog/changelog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/changelog/components/changelog/changelog.component.ts -------------------------------------------------------------------------------- /src/app/modules/information/components/information/information.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/information/components/information/information.component.html -------------------------------------------------------------------------------- /src/app/modules/information/components/information/information.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/information/components/information/information.component.scss -------------------------------------------------------------------------------- /src/app/modules/information/components/information/information.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/information/components/information/information.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/information/components/information/information.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/information/components/information/information.component.ts -------------------------------------------------------------------------------- /src/app/modules/information/information-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/information/information-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/information/information.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/information/information.module.ts -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc-player-management/irc-player-management.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc-player-management/irc-player-management.component.html -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc-player-management/irc-player-management.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc-player-management/irc-player-management.component.scss -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc-player-management/irc-player-management.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc-player-management/irc-player-management.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc-player-management/irc-player-management.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc-player-management/irc-player-management.component.ts -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc-shortcut-commands/irc-shortcut-commands.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc-shortcut-commands/irc-shortcut-commands.component.html -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc-shortcut-commands/irc-shortcut-commands.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc-shortcut-commands/irc-shortcut-commands.component.scss -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc-shortcut-commands/irc-shortcut-commands.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc-shortcut-commands/irc-shortcut-commands.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc-shortcut-commands/irc-shortcut-commands.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc-shortcut-commands/irc-shortcut-commands.component.ts -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc/irc.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc/irc.component.html -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc/irc.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc/irc.component.scss -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc/irc.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc/irc.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/irc/components/irc/irc.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/components/irc/irc.component.ts -------------------------------------------------------------------------------- /src/app/modules/irc/irc-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/irc-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/irc/irc.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/irc/irc.module.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/components/all-lobbies/all-lobbies.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/all-lobbies/all-lobbies.component.html -------------------------------------------------------------------------------- /src/app/modules/lobby/components/all-lobbies/all-lobbies.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/all-lobbies/all-lobbies.component.scss -------------------------------------------------------------------------------- /src/app/modules/lobby/components/all-lobbies/all-lobbies.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/all-lobbies/all-lobbies.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/components/all-lobbies/all-lobbies.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/all-lobbies/all-lobbies.component.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/components/create-lobby/create-lobby.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/create-lobby/create-lobby.component.html -------------------------------------------------------------------------------- /src/app/modules/lobby/components/create-lobby/create-lobby.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/create-lobby/create-lobby.component.scss -------------------------------------------------------------------------------- /src/app/modules/lobby/components/create-lobby/create-lobby.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/create-lobby/create-lobby.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/components/create-lobby/create-lobby.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/create-lobby/create-lobby.component.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/components/join-lobby/join-lobby.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/join-lobby/join-lobby.component.html -------------------------------------------------------------------------------- /src/app/modules/lobby/components/join-lobby/join-lobby.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/join-lobby/join-lobby.component.scss -------------------------------------------------------------------------------- /src/app/modules/lobby/components/join-lobby/join-lobby.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/join-lobby/join-lobby.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/components/join-lobby/join-lobby.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/join-lobby/join-lobby.component.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/components/lobby-form/lobby-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/lobby-form/lobby-form.component.html -------------------------------------------------------------------------------- /src/app/modules/lobby/components/lobby-form/lobby-form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/lobby-form/lobby-form.component.scss -------------------------------------------------------------------------------- /src/app/modules/lobby/components/lobby-form/lobby-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/lobby-form/lobby-form.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/components/lobby-form/lobby-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/lobby-form/lobby-form.component.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/components/lobby-view/lobby-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/lobby-view/lobby-view.component.html -------------------------------------------------------------------------------- /src/app/modules/lobby/components/lobby-view/lobby-view.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/lobby-view/lobby-view.component.scss -------------------------------------------------------------------------------- /src/app/modules/lobby/components/lobby-view/lobby-view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/lobby-view/lobby-view.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/components/lobby-view/lobby-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/components/lobby-view/lobby-view.component.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/lobby-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/lobby-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/lobby/lobby.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/lobby/lobby.module.ts -------------------------------------------------------------------------------- /src/app/modules/settings/components/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/settings/components/settings/settings.component.html -------------------------------------------------------------------------------- /src/app/modules/settings/components/settings/settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/settings/components/settings/settings.component.scss -------------------------------------------------------------------------------- /src/app/modules/settings/components/settings/settings.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/settings/components/settings/settings.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/settings/components/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/settings/components/settings/settings.component.ts -------------------------------------------------------------------------------- /src/app/modules/settings/models/options-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/settings/models/options-menu.ts -------------------------------------------------------------------------------- /src/app/modules/settings/settings-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/settings/settings-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/settings/settings.module.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament-card/tournament-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament-card/tournament-card.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament-card/tournament-card.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament-card/tournament-card.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament-card/tournament-card.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament-card/tournament-card.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament-card/tournament-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament-card/tournament-card.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-access/tournament-access.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-access/tournament-access.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-access/tournament-access.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-access/tournament-access.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-access/tournament-access.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-access/tournament-access.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-access/tournament-access.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-access/tournament-access.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-beatmap-result/tournament-conditional-message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-beatmap-result/tournament-conditional-message.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-beatmap-result/tournament-conditional-message.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-beatmap-result/tournament-conditional-message.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-beatmap-result/tournament-conditional-message.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-beatmap-result/tournament-conditional-message.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-beatmap-result/tournament-conditional-message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-beatmap-result/tournament-conditional-message.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-general/tournament-general.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-general/tournament-general.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-general/tournament-general.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-general/tournament-general.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-general/tournament-general.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-general/tournament-general.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-general/tournament-general.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-general/tournament-general.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool-overview/mappool-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool-overview/mappool-overview.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool-overview/mappool-overview.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool-overview/mappool-overview.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool-overview/mappool-overview.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool-overview/mappool-overview.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool-overview/mappool-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool-overview/mappool-overview.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool/mappool.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool/mappool.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool/mappool.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool/mappool.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool/mappool.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool/mappool.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool/mappool.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mappool/mappool.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mod-bracket/mod-bracket.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mod-bracket/mod-bracket.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mod-bracket/mod-bracket.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mod-bracket/mod-bracket.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mod-bracket/mod-bracket.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mod-bracket/mod-bracket.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mod-bracket/mod-bracket.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-mappool/mod-bracket/mod-bracket.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-participants/tournament-participants.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-participants/tournament-participants.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-participants/tournament-participants.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-participants/tournament-participants.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-participants/tournament-participants.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-participants/tournament-participants.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-participants/tournament-participants.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-participants/tournament-participants.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-stages/tournament-stages.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-stages/tournament-stages.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-stages/tournament-stages.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-stages/tournament-stages.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-stages/tournament-stages.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-stages/tournament-stages.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-stages/tournament-stages.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-stages/tournament-stages.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-webhook/tournament-webhook.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-webhook/tournament-webhook.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-webhook/tournament-webhook.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-webhook/tournament-webhook.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-webhook/tournament-webhook.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-webhook/tournament-webhook.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-webhook/tournament-webhook.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-webhook/tournament-webhook.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-wybin/tournament-wybin.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-wybin/tournament-wybin.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-wybin/tournament-wybin.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-wybin/tournament-wybin.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-wybin/tournament-wybin.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament-wybin/tournament-wybin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament-wybin/tournament-wybin.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament/tournament.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament/tournament.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament/tournament.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament/tournament.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament/tournament.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components-utility/tournament/tournament/tournament.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components-utility/tournament/tournament/tournament.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/management-router/management-router.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/management-router/management-router.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/management-router/management-router.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/management-router/management-router.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/management-router/management-router.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/management-router/management-router.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/management-router/management-router.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/management-router/management-router.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-manage/tournament-create/tournament-create.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-manage/tournament-create/tournament-create.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-manage/tournament-create/tournament-create.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-manage/tournament-create/tournament-create.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-manage/tournament-create/tournament-create.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-manage/tournament-create/tournament-create.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-manage/tournament-create/tournament-create.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-manage/tournament-create/tournament-create.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-manage/tournament-edit/tournament-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-manage/tournament-edit/tournament-edit.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-manage/tournament-edit/tournament-edit.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-manage/tournament-edit/tournament-edit.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-manage/tournament-edit/tournament-edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-manage/tournament-edit/tournament-edit.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-manage/tournament-edit/tournament-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-manage/tournament-edit/tournament-edit.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-all-published-administrator/tournament-all-published-administrator.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-all-published-administrator/tournament-all-published-administrator.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-all-published-administrator/tournament-all-published-administrator.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-all-published-administrator/tournament-all-published-administrator.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-all-published-administrator/tournament-all-published-administrator.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-all-published-administrator/tournament-all-published-administrator.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-all-published-administrator/tournament-all-published-administrator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-all-published-administrator/tournament-all-published-administrator.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-all-published/tournament-all-published.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-all-published/tournament-all-published.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-all-published/tournament-all-published.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-all-published/tournament-all-published.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-all-published/tournament-all-published.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-all-published/tournament-all-published.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-all-published/tournament-all-published.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-all-published/tournament-all-published.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-my-published/tournament-my-published.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-my-published/tournament-my-published.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-my-published/tournament-my-published.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-my-published/tournament-my-published.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-my-published/tournament-my-published.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-my-published/tournament-my-published.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-my-published/tournament-my-published.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-my-published/tournament-my-published.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-overview/tournament-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-overview/tournament-overview.component.html -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-overview/tournament-overview.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-overview/tournament-overview.component.scss -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-overview/tournament-overview.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-overview/tournament-overview.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/components/tournament-view/tournament-overview/tournament-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/components/tournament-view/tournament-overview/tournament-overview.component.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/models/mod-bracket-unique-mods-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/models/mod-bracket-unique-mods-validator.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/models/validation-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/models/validation-error.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/services/validation-error.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/services/validation-error.service.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/tournament-management-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/tournament-management-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/tournament-management/tournament-management.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tournament-management/tournament-management.module.ts -------------------------------------------------------------------------------- /src/app/modules/tutorial/components/tutorial-overview/tutorial-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tutorial/components/tutorial-overview/tutorial-overview.component.html -------------------------------------------------------------------------------- /src/app/modules/tutorial/components/tutorial-overview/tutorial-overview.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tutorial/components/tutorial-overview/tutorial-overview.component.scss -------------------------------------------------------------------------------- /src/app/modules/tutorial/components/tutorial-overview/tutorial-overview.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tutorial/components/tutorial-overview/tutorial-overview.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/tutorial/components/tutorial-overview/tutorial-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tutorial/components/tutorial-overview/tutorial-overview.component.ts -------------------------------------------------------------------------------- /src/app/modules/tutorial/tutorial-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tutorial/tutorial-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/tutorial/tutorial.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/tutorial/tutorial.module.ts -------------------------------------------------------------------------------- /src/app/modules/webhook/components/webhook/webhook.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/webhook/components/webhook/webhook.component.html -------------------------------------------------------------------------------- /src/app/modules/webhook/components/webhook/webhook.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/webhook/components/webhook/webhook.component.scss -------------------------------------------------------------------------------- /src/app/modules/webhook/components/webhook/webhook.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/webhook/components/webhook/webhook.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/webhook/components/webhook/webhook.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/webhook/components/webhook/webhook.component.ts -------------------------------------------------------------------------------- /src/app/modules/webhook/webhook-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/webhook/webhook-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/webhook/webhook.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/modules/webhook/webhook.module.ts -------------------------------------------------------------------------------- /src/app/services/authenticate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/authenticate.service.ts -------------------------------------------------------------------------------- /src/app/services/cache.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/cache.service.ts -------------------------------------------------------------------------------- /src/app/services/challonge.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/challonge.service.ts -------------------------------------------------------------------------------- /src/app/services/debug.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/debug.service.ts -------------------------------------------------------------------------------- /src/app/services/electron.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/electron.service.ts -------------------------------------------------------------------------------- /src/app/services/generic.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/generic.service.ts -------------------------------------------------------------------------------- /src/app/services/irc-shortcut-commands.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/irc-shortcut-commands.service.ts -------------------------------------------------------------------------------- /src/app/services/irc.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/irc.service.ts -------------------------------------------------------------------------------- /src/app/services/multiplayer-lobby-players.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/multiplayer-lobby-players.service.ts -------------------------------------------------------------------------------- /src/app/services/osu-api/api-key-validation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/osu-api/api-key-validation.service.ts -------------------------------------------------------------------------------- /src/app/services/osu-api/get-beatmap.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/osu-api/get-beatmap.service.ts -------------------------------------------------------------------------------- /src/app/services/osu-api/get-multiplayer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/osu-api/get-multiplayer.service.ts -------------------------------------------------------------------------------- /src/app/services/osu-api/get-user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/osu-api/get-user.service.ts -------------------------------------------------------------------------------- /src/app/services/slash-command.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/slash-command.service.ts -------------------------------------------------------------------------------- /src/app/services/storage/cache-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/storage/cache-store.service.ts -------------------------------------------------------------------------------- /src/app/services/storage/irc-shortcut-commands-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/storage/irc-shortcut-commands-store.service.ts -------------------------------------------------------------------------------- /src/app/services/storage/lobby-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/storage/lobby-store.service.ts -------------------------------------------------------------------------------- /src/app/services/storage/settings-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/storage/settings-store.service.ts -------------------------------------------------------------------------------- /src/app/services/storage/storage-driver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/storage/storage-driver.service.ts -------------------------------------------------------------------------------- /src/app/services/storage/tournament-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/storage/tournament-store.service.ts -------------------------------------------------------------------------------- /src/app/services/storage/webhook-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/storage/webhook-store.service.ts -------------------------------------------------------------------------------- /src/app/services/toast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/toast.service.ts -------------------------------------------------------------------------------- /src/app/services/tournament.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/tournament.service.ts -------------------------------------------------------------------------------- /src/app/services/tutorial.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/tutorial.service.ts -------------------------------------------------------------------------------- /src/app/services/webhook.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/webhook.service.ts -------------------------------------------------------------------------------- /src/app/services/wy-multiplayer-lobbies.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/wy-multiplayer-lobbies.service.ts -------------------------------------------------------------------------------- /src/app/services/wybin.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/services/wybin.service.ts -------------------------------------------------------------------------------- /src/app/shared/angular-material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/angular-material.module.ts -------------------------------------------------------------------------------- /src/app/shared/components/alert/alert.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/alert/alert.component.html -------------------------------------------------------------------------------- /src/app/shared/components/alert/alert.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/alert/alert.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/alert/alert.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/alert/alert.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/alert/alert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/alert/alert.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/debug/debug.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/debug/debug.component.html -------------------------------------------------------------------------------- /src/app/shared/components/debug/debug.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/debug/debug.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/debug/debug.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/debug/debug.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/debug/debug.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/debug/debug.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/toast/toast.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/toast/toast.component.html -------------------------------------------------------------------------------- /src/app/shared/components/toast/toast.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/toast/toast.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/toast/toast.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/toast/toast.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/toast/toast.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/toast/toast.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/tutorial/tutorial.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/tutorial/tutorial.component.html -------------------------------------------------------------------------------- /src/app/shared/components/tutorial/tutorial.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/tutorial/tutorial.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/tutorial/tutorial.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/tutorial/tutorial.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/tutorial/tutorial.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/components/tutorial/tutorial.component.ts -------------------------------------------------------------------------------- /src/app/shared/directives/ng-var.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/directives/ng-var.directive.ts -------------------------------------------------------------------------------- /src/app/shared/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/misc.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/filter-team.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/pipes/filter-team.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/filter-tournament.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/pipes/filter-tournament.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/reverse.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/pipes/reverse.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/search-mod-bracket.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/pipes/search-mod-bracket.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/search.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/pipes/search.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/icons/LICENSE.txt -------------------------------------------------------------------------------- /src/assets/icons/exclamation-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/icons/exclamation-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/exclamation-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/icons/exclamation-triangle.svg -------------------------------------------------------------------------------- /src/assets/icons/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/icons/hammer.svg -------------------------------------------------------------------------------- /src/assets/icons/info-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/icons/info-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/icons/trophy.svg -------------------------------------------------------------------------------- /src/assets/images/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ad.png -------------------------------------------------------------------------------- /src/assets/images/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ae.png -------------------------------------------------------------------------------- /src/assets/images/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/af.png -------------------------------------------------------------------------------- /src/assets/images/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ag.png -------------------------------------------------------------------------------- /src/assets/images/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ai.png -------------------------------------------------------------------------------- /src/assets/images/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/al.png -------------------------------------------------------------------------------- /src/assets/images/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/am.png -------------------------------------------------------------------------------- /src/assets/images/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ao.png -------------------------------------------------------------------------------- /src/assets/images/flags/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/aq.png -------------------------------------------------------------------------------- /src/assets/images/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ar.png -------------------------------------------------------------------------------- /src/assets/images/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/as.png -------------------------------------------------------------------------------- /src/assets/images/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/at.png -------------------------------------------------------------------------------- /src/assets/images/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/au.png -------------------------------------------------------------------------------- /src/assets/images/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/aw.png -------------------------------------------------------------------------------- /src/assets/images/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ax.png -------------------------------------------------------------------------------- /src/assets/images/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/az.png -------------------------------------------------------------------------------- /src/assets/images/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ba.png -------------------------------------------------------------------------------- /src/assets/images/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bb.png -------------------------------------------------------------------------------- /src/assets/images/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bd.png -------------------------------------------------------------------------------- /src/assets/images/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/be.png -------------------------------------------------------------------------------- /src/assets/images/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bf.png -------------------------------------------------------------------------------- /src/assets/images/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bg.png -------------------------------------------------------------------------------- /src/assets/images/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bh.png -------------------------------------------------------------------------------- /src/assets/images/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bi.png -------------------------------------------------------------------------------- /src/assets/images/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bj.png -------------------------------------------------------------------------------- /src/assets/images/flags/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bl.png -------------------------------------------------------------------------------- /src/assets/images/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bm.png -------------------------------------------------------------------------------- /src/assets/images/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bn.png -------------------------------------------------------------------------------- /src/assets/images/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bo.png -------------------------------------------------------------------------------- /src/assets/images/flags/bq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bq.png -------------------------------------------------------------------------------- /src/assets/images/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/br.png -------------------------------------------------------------------------------- /src/assets/images/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bs.png -------------------------------------------------------------------------------- /src/assets/images/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bt.png -------------------------------------------------------------------------------- /src/assets/images/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bv.png -------------------------------------------------------------------------------- /src/assets/images/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bw.png -------------------------------------------------------------------------------- /src/assets/images/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/by.png -------------------------------------------------------------------------------- /src/assets/images/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/bz.png -------------------------------------------------------------------------------- /src/assets/images/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ca.png -------------------------------------------------------------------------------- /src/assets/images/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cc.png -------------------------------------------------------------------------------- /src/assets/images/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cd.png -------------------------------------------------------------------------------- /src/assets/images/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cf.png -------------------------------------------------------------------------------- /src/assets/images/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cg.png -------------------------------------------------------------------------------- /src/assets/images/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ch.png -------------------------------------------------------------------------------- /src/assets/images/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ci.png -------------------------------------------------------------------------------- /src/assets/images/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ck.png -------------------------------------------------------------------------------- /src/assets/images/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cl.png -------------------------------------------------------------------------------- /src/assets/images/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cm.png -------------------------------------------------------------------------------- /src/assets/images/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cn.png -------------------------------------------------------------------------------- /src/assets/images/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/co.png -------------------------------------------------------------------------------- /src/assets/images/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cr.png -------------------------------------------------------------------------------- /src/assets/images/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cu.png -------------------------------------------------------------------------------- /src/assets/images/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cv.png -------------------------------------------------------------------------------- /src/assets/images/flags/cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cw.png -------------------------------------------------------------------------------- /src/assets/images/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cx.png -------------------------------------------------------------------------------- /src/assets/images/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cy.png -------------------------------------------------------------------------------- /src/assets/images/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/cz.png -------------------------------------------------------------------------------- /src/assets/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/de.png -------------------------------------------------------------------------------- /src/assets/images/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/dj.png -------------------------------------------------------------------------------- /src/assets/images/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/dk.png -------------------------------------------------------------------------------- /src/assets/images/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/dm.png -------------------------------------------------------------------------------- /src/assets/images/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/do.png -------------------------------------------------------------------------------- /src/assets/images/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/dz.png -------------------------------------------------------------------------------- /src/assets/images/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ec.png -------------------------------------------------------------------------------- /src/assets/images/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ee.png -------------------------------------------------------------------------------- /src/assets/images/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/eg.png -------------------------------------------------------------------------------- /src/assets/images/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/eh.png -------------------------------------------------------------------------------- /src/assets/images/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/er.png -------------------------------------------------------------------------------- /src/assets/images/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/es.png -------------------------------------------------------------------------------- /src/assets/images/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/et.png -------------------------------------------------------------------------------- /src/assets/images/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/fi.png -------------------------------------------------------------------------------- /src/assets/images/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/fj.png -------------------------------------------------------------------------------- /src/assets/images/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/fk.png -------------------------------------------------------------------------------- /src/assets/images/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/fm.png -------------------------------------------------------------------------------- /src/assets/images/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/fo.png -------------------------------------------------------------------------------- /src/assets/images/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/fr.png -------------------------------------------------------------------------------- /src/assets/images/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ga.png -------------------------------------------------------------------------------- /src/assets/images/flags/gb-eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gb-eng.png -------------------------------------------------------------------------------- /src/assets/images/flags/gb-nir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gb-nir.png -------------------------------------------------------------------------------- /src/assets/images/flags/gb-sct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gb-sct.png -------------------------------------------------------------------------------- /src/assets/images/flags/gb-wls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gb-wls.png -------------------------------------------------------------------------------- /src/assets/images/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gb.png -------------------------------------------------------------------------------- /src/assets/images/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gd.png -------------------------------------------------------------------------------- /src/assets/images/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ge.png -------------------------------------------------------------------------------- /src/assets/images/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gf.png -------------------------------------------------------------------------------- /src/assets/images/flags/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gg.png -------------------------------------------------------------------------------- /src/assets/images/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gh.png -------------------------------------------------------------------------------- /src/assets/images/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gi.png -------------------------------------------------------------------------------- /src/assets/images/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gl.png -------------------------------------------------------------------------------- /src/assets/images/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gm.png -------------------------------------------------------------------------------- /src/assets/images/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gn.png -------------------------------------------------------------------------------- /src/assets/images/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gp.png -------------------------------------------------------------------------------- /src/assets/images/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gq.png -------------------------------------------------------------------------------- /src/assets/images/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gr.png -------------------------------------------------------------------------------- /src/assets/images/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gs.png -------------------------------------------------------------------------------- /src/assets/images/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gt.png -------------------------------------------------------------------------------- /src/assets/images/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gu.png -------------------------------------------------------------------------------- /src/assets/images/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gw.png -------------------------------------------------------------------------------- /src/assets/images/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/gy.png -------------------------------------------------------------------------------- /src/assets/images/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/hk.png -------------------------------------------------------------------------------- /src/assets/images/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/hm.png -------------------------------------------------------------------------------- /src/assets/images/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/hn.png -------------------------------------------------------------------------------- /src/assets/images/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/hr.png -------------------------------------------------------------------------------- /src/assets/images/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ht.png -------------------------------------------------------------------------------- /src/assets/images/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/hu.png -------------------------------------------------------------------------------- /src/assets/images/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/id.png -------------------------------------------------------------------------------- /src/assets/images/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ie.png -------------------------------------------------------------------------------- /src/assets/images/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/il.png -------------------------------------------------------------------------------- /src/assets/images/flags/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/im.png -------------------------------------------------------------------------------- /src/assets/images/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/in.png -------------------------------------------------------------------------------- /src/assets/images/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/io.png -------------------------------------------------------------------------------- /src/assets/images/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/iq.png -------------------------------------------------------------------------------- /src/assets/images/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ir.png -------------------------------------------------------------------------------- /src/assets/images/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/is.png -------------------------------------------------------------------------------- /src/assets/images/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/it.png -------------------------------------------------------------------------------- /src/assets/images/flags/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/je.png -------------------------------------------------------------------------------- /src/assets/images/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/jm.png -------------------------------------------------------------------------------- /src/assets/images/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/jo.png -------------------------------------------------------------------------------- /src/assets/images/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/jp.png -------------------------------------------------------------------------------- /src/assets/images/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ke.png -------------------------------------------------------------------------------- /src/assets/images/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/kg.png -------------------------------------------------------------------------------- /src/assets/images/flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/kh.png -------------------------------------------------------------------------------- /src/assets/images/flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ki.png -------------------------------------------------------------------------------- /src/assets/images/flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/km.png -------------------------------------------------------------------------------- /src/assets/images/flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/kn.png -------------------------------------------------------------------------------- /src/assets/images/flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/kp.png -------------------------------------------------------------------------------- /src/assets/images/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/kr.png -------------------------------------------------------------------------------- /src/assets/images/flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/kw.png -------------------------------------------------------------------------------- /src/assets/images/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ky.png -------------------------------------------------------------------------------- /src/assets/images/flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/kz.png -------------------------------------------------------------------------------- /src/assets/images/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/la.png -------------------------------------------------------------------------------- /src/assets/images/flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/lb.png -------------------------------------------------------------------------------- /src/assets/images/flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/lc.png -------------------------------------------------------------------------------- /src/assets/images/flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/li.png -------------------------------------------------------------------------------- /src/assets/images/flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/lk.png -------------------------------------------------------------------------------- /src/assets/images/flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/lr.png -------------------------------------------------------------------------------- /src/assets/images/flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ls.png -------------------------------------------------------------------------------- /src/assets/images/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/lt.png -------------------------------------------------------------------------------- /src/assets/images/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/lu.png -------------------------------------------------------------------------------- /src/assets/images/flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/lv.png -------------------------------------------------------------------------------- /src/assets/images/flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ly.png -------------------------------------------------------------------------------- /src/assets/images/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ma.png -------------------------------------------------------------------------------- /src/assets/images/flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mc.png -------------------------------------------------------------------------------- /src/assets/images/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/md.png -------------------------------------------------------------------------------- /src/assets/images/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/me.png -------------------------------------------------------------------------------- /src/assets/images/flags/mf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mf.png -------------------------------------------------------------------------------- /src/assets/images/flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mg.png -------------------------------------------------------------------------------- /src/assets/images/flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mh.png -------------------------------------------------------------------------------- /src/assets/images/flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mk.png -------------------------------------------------------------------------------- /src/assets/images/flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ml.png -------------------------------------------------------------------------------- /src/assets/images/flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mm.png -------------------------------------------------------------------------------- /src/assets/images/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mn.png -------------------------------------------------------------------------------- /src/assets/images/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mo.png -------------------------------------------------------------------------------- /src/assets/images/flags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mp.png -------------------------------------------------------------------------------- /src/assets/images/flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mq.png -------------------------------------------------------------------------------- /src/assets/images/flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mr.png -------------------------------------------------------------------------------- /src/assets/images/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ms.png -------------------------------------------------------------------------------- /src/assets/images/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mt.png -------------------------------------------------------------------------------- /src/assets/images/flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mu.png -------------------------------------------------------------------------------- /src/assets/images/flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mv.png -------------------------------------------------------------------------------- /src/assets/images/flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mw.png -------------------------------------------------------------------------------- /src/assets/images/flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mx.png -------------------------------------------------------------------------------- /src/assets/images/flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/my.png -------------------------------------------------------------------------------- /src/assets/images/flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/mz.png -------------------------------------------------------------------------------- /src/assets/images/flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/na.png -------------------------------------------------------------------------------- /src/assets/images/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/nc.png -------------------------------------------------------------------------------- /src/assets/images/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ne.png -------------------------------------------------------------------------------- /src/assets/images/flags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/nf.png -------------------------------------------------------------------------------- /src/assets/images/flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ng.png -------------------------------------------------------------------------------- /src/assets/images/flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ni.png -------------------------------------------------------------------------------- /src/assets/images/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/nl.png -------------------------------------------------------------------------------- /src/assets/images/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/no.png -------------------------------------------------------------------------------- /src/assets/images/flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/np.png -------------------------------------------------------------------------------- /src/assets/images/flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/nr.png -------------------------------------------------------------------------------- /src/assets/images/flags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/nu.png -------------------------------------------------------------------------------- /src/assets/images/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/nz.png -------------------------------------------------------------------------------- /src/assets/images/flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/om.png -------------------------------------------------------------------------------- /src/assets/images/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pa.png -------------------------------------------------------------------------------- /src/assets/images/flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pe.png -------------------------------------------------------------------------------- /src/assets/images/flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pf.png -------------------------------------------------------------------------------- /src/assets/images/flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pg.png -------------------------------------------------------------------------------- /src/assets/images/flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ph.png -------------------------------------------------------------------------------- /src/assets/images/flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pk.png -------------------------------------------------------------------------------- /src/assets/images/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pl.png -------------------------------------------------------------------------------- /src/assets/images/flags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pm.png -------------------------------------------------------------------------------- /src/assets/images/flags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pn.png -------------------------------------------------------------------------------- /src/assets/images/flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pr.png -------------------------------------------------------------------------------- /src/assets/images/flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ps.png -------------------------------------------------------------------------------- /src/assets/images/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pt.png -------------------------------------------------------------------------------- /src/assets/images/flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/pw.png -------------------------------------------------------------------------------- /src/assets/images/flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/py.png -------------------------------------------------------------------------------- /src/assets/images/flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/qa.png -------------------------------------------------------------------------------- /src/assets/images/flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/re.png -------------------------------------------------------------------------------- /src/assets/images/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ro.png -------------------------------------------------------------------------------- /src/assets/images/flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/rs.png -------------------------------------------------------------------------------- /src/assets/images/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ru.png -------------------------------------------------------------------------------- /src/assets/images/flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/rw.png -------------------------------------------------------------------------------- /src/assets/images/flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sa.png -------------------------------------------------------------------------------- /src/assets/images/flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sb.png -------------------------------------------------------------------------------- /src/assets/images/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sc.png -------------------------------------------------------------------------------- /src/assets/images/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sd.png -------------------------------------------------------------------------------- /src/assets/images/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/se.png -------------------------------------------------------------------------------- /src/assets/images/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sg.png -------------------------------------------------------------------------------- /src/assets/images/flags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sh.png -------------------------------------------------------------------------------- /src/assets/images/flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/si.png -------------------------------------------------------------------------------- /src/assets/images/flags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sj.png -------------------------------------------------------------------------------- /src/assets/images/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sk.png -------------------------------------------------------------------------------- /src/assets/images/flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sl.png -------------------------------------------------------------------------------- /src/assets/images/flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sm.png -------------------------------------------------------------------------------- /src/assets/images/flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sn.png -------------------------------------------------------------------------------- /src/assets/images/flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/so.png -------------------------------------------------------------------------------- /src/assets/images/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sr.png -------------------------------------------------------------------------------- /src/assets/images/flags/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ss.png -------------------------------------------------------------------------------- /src/assets/images/flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/st.png -------------------------------------------------------------------------------- /src/assets/images/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sv.png -------------------------------------------------------------------------------- /src/assets/images/flags/sx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sx.png -------------------------------------------------------------------------------- /src/assets/images/flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sy.png -------------------------------------------------------------------------------- /src/assets/images/flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/sz.png -------------------------------------------------------------------------------- /src/assets/images/flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tc.png -------------------------------------------------------------------------------- /src/assets/images/flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/td.png -------------------------------------------------------------------------------- /src/assets/images/flags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tf.png -------------------------------------------------------------------------------- /src/assets/images/flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tg.png -------------------------------------------------------------------------------- /src/assets/images/flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/th.png -------------------------------------------------------------------------------- /src/assets/images/flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tj.png -------------------------------------------------------------------------------- /src/assets/images/flags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tk.png -------------------------------------------------------------------------------- /src/assets/images/flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tl.png -------------------------------------------------------------------------------- /src/assets/images/flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tm.png -------------------------------------------------------------------------------- /src/assets/images/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tn.png -------------------------------------------------------------------------------- /src/assets/images/flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/to.png -------------------------------------------------------------------------------- /src/assets/images/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tr.png -------------------------------------------------------------------------------- /src/assets/images/flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tt.png -------------------------------------------------------------------------------- /src/assets/images/flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tv.png -------------------------------------------------------------------------------- /src/assets/images/flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tw.png -------------------------------------------------------------------------------- /src/assets/images/flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/tz.png -------------------------------------------------------------------------------- /src/assets/images/flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ua.png -------------------------------------------------------------------------------- /src/assets/images/flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ug.png -------------------------------------------------------------------------------- /src/assets/images/flags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/um.png -------------------------------------------------------------------------------- /src/assets/images/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/us.png -------------------------------------------------------------------------------- /src/assets/images/flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/uy.png -------------------------------------------------------------------------------- /src/assets/images/flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/uz.png -------------------------------------------------------------------------------- /src/assets/images/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/va.png -------------------------------------------------------------------------------- /src/assets/images/flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/vc.png -------------------------------------------------------------------------------- /src/assets/images/flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ve.png -------------------------------------------------------------------------------- /src/assets/images/flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/vg.png -------------------------------------------------------------------------------- /src/assets/images/flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/vi.png -------------------------------------------------------------------------------- /src/assets/images/flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/vn.png -------------------------------------------------------------------------------- /src/assets/images/flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/vu.png -------------------------------------------------------------------------------- /src/assets/images/flags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/wf.png -------------------------------------------------------------------------------- /src/assets/images/flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ws.png -------------------------------------------------------------------------------- /src/assets/images/flags/xk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/xk.png -------------------------------------------------------------------------------- /src/assets/images/flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/ye.png -------------------------------------------------------------------------------- /src/assets/images/flags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/yt.png -------------------------------------------------------------------------------- /src/assets/images/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/za.png -------------------------------------------------------------------------------- /src/assets/images/flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/zm.png -------------------------------------------------------------------------------- /src/assets/images/flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/flags/zw.png -------------------------------------------------------------------------------- /src/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/icon.png -------------------------------------------------------------------------------- /src/assets/images/mac-icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/mac-icon/icon.png -------------------------------------------------------------------------------- /src/assets/images/osulogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/images/osulogo.png -------------------------------------------------------------------------------- /src/assets/osu-mods/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/LICENCE -------------------------------------------------------------------------------- /src/assets/osu-mods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/README -------------------------------------------------------------------------------- /src/assets/osu-mods/dt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/dt.png -------------------------------------------------------------------------------- /src/assets/osu-mods/dt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/dt@2x.png -------------------------------------------------------------------------------- /src/assets/osu-mods/ez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/ez.png -------------------------------------------------------------------------------- /src/assets/osu-mods/ez@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/ez@2x.png -------------------------------------------------------------------------------- /src/assets/osu-mods/fl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/fl.png -------------------------------------------------------------------------------- /src/assets/osu-mods/fl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/fl@2x.png -------------------------------------------------------------------------------- /src/assets/osu-mods/hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/hd.png -------------------------------------------------------------------------------- /src/assets/osu-mods/hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/hd@2x.png -------------------------------------------------------------------------------- /src/assets/osu-mods/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/hr.png -------------------------------------------------------------------------------- /src/assets/osu-mods/hr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/hr@2x.png -------------------------------------------------------------------------------- /src/assets/osu-mods/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/ht.png -------------------------------------------------------------------------------- /src/assets/osu-mods/ht@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/ht@2x.png -------------------------------------------------------------------------------- /src/assets/osu-mods/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/nc.png -------------------------------------------------------------------------------- /src/assets/osu-mods/nc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/nc@2x.png -------------------------------------------------------------------------------- /src/assets/osu-mods/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/nf.png -------------------------------------------------------------------------------- /src/assets/osu-mods/nf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/nf@2x.png -------------------------------------------------------------------------------- /src/assets/osu-mods/nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/nm.png -------------------------------------------------------------------------------- /src/assets/osu-mods/nm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/nm@2x.png -------------------------------------------------------------------------------- /src/assets/osu-mods/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/pf.png -------------------------------------------------------------------------------- /src/assets/osu-mods/pf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/pf@2x.png -------------------------------------------------------------------------------- /src/assets/osu-mods/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/sd.png -------------------------------------------------------------------------------- /src/assets/osu-mods/sd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/osu-mods/sd@2x.png -------------------------------------------------------------------------------- /src/assets/screenshots/irc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/screenshots/irc.png -------------------------------------------------------------------------------- /src/assets/screenshots/mappool-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/screenshots/mappool-management.png -------------------------------------------------------------------------------- /src/assets/stairs.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/stairs.mp3 -------------------------------------------------------------------------------- /src/assets/tutorial-tournament-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/assets/tutorial-tournament-template.json -------------------------------------------------------------------------------- /src/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/bootstrap.scss -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/eslintrc.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/eslintrc.config.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/polyfills-test.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/shared/electron-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/shared/electron-api.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/styles/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/styles/_theme.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.electron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/tsconfig.electron.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesley-221/wyReferee/HEAD/tsconfig.json --------------------------------------------------------------------------------