├── .config └── dotnet-tools.json ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── AppContext.cs ├── Auth ├── BeatLeader │ ├── BeatLeaderAuthenticationConstants.cs │ ├── BeatLeaderAuthenticationDefaults.cs │ ├── BeatLeaderAuthenticationExtensions.cs │ ├── BeatLeaderAuthenticationHandler.cs │ └── BeatLeaderAuthenticationOptions.cs ├── BeatSaver │ ├── BeatSaverAuthenticationConstants.cs │ ├── BeatSaverAuthenticationDefaults.cs │ ├── BeatSaverAuthenticationExtensions.cs │ ├── BeatSaverAuthenticationHandler.cs │ └── BeatSaverAuthenticationOptions.cs ├── BlueSky │ ├── BlueSkyAuthenticationConstants.cs │ ├── BlueSkyAuthenticationDefaults.cs │ ├── BlueSkyAuthenticationExtensions.cs │ ├── BlueSkyAuthenticationHandler.cs │ └── BlueSkyAuthenticationOptions.cs ├── Oculus │ ├── OculusAuthenticationConstants.cs │ ├── OculusAuthenticationDefaults.cs │ ├── OculusAuthenticationExtensions.cs │ ├── OculusAuthenticationHandler.cs │ ├── OculusAuthenticationInitializer.cs │ └── OculusAuthenticationOptions.cs ├── OculusToken │ ├── OculusTokenAuthenticationConstants.cs │ ├── OculusTokenAuthenticationDefaults.cs │ ├── OculusTokenAuthenticationExtensions.cs │ ├── OculusTokenAuthenticationHandler.cs │ ├── OculusTokenAuthenticationInitializer.cs │ └── OculusTokenAuthenticationOptions.cs └── SteamTicket │ ├── OpenIdAuthenticationConstants.cs │ ├── OpenIdAuthenticationDefaults.cs │ ├── OpenIdAuthenticationExtensions.cs │ ├── OpenIdAuthenticationHandler.cs │ ├── OpenIdAuthenticationInitializer.cs │ └── OpenIdAuthenticationOptions.cs ├── BeatLeader-Server-Sockets ├── BeatLeader-Server-Sockets.csproj ├── BeatLeader-Server-Sockets.csproj.user ├── Controllers │ └── SocketsController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── BeatLeader-Server.csproj ├── BeatLeader-Server.csproj.user ├── BeatLeader-Server.sln ├── Bot ├── Bot.cs └── RTNominationsForum.cs ├── ControllerHelpers ├── ClanControllerHelper.cs ├── LeaderboardControllerHelper.cs ├── LeaderboardRefreshControllerHelper.cs ├── PatreonControllerHelper.cs ├── PlayerAdminControllerHelper.cs ├── PlayerContextRefreshControllerHelper.cs ├── PlayerControllerHelper.cs ├── PlayerRefreshControllerHelper.cs ├── ScoreControllerHelper.cs ├── ScoreRefreshControllerHelper.cs └── SongControllerHelper.cs ├── Controllers ├── AchievementsController.cs ├── Admin │ ├── AdminController.cs │ ├── BanAdminController.cs │ ├── ClanAdminController.cs │ ├── PlayerAdminController.cs │ ├── PlayerScoresAdminController.cs │ └── StatsAdminController.cs ├── AliasManagementController.cs ├── AuthenticationController.cs ├── BackupController.cs ├── BadgeController.cs ├── BeastSaberController.cs ├── BeatSaverController.cs ├── ClanController.cs ├── ClanManagementController.cs ├── CurrentUserController.cs ├── DeveloperController.cs ├── EarthDayController.cs ├── EventsController.cs ├── ExperienceController.cs ├── FriendsController.cs ├── LeaderboardController.cs ├── LeaderboardManagementController.cs ├── LeaderboardRefreshController.cs ├── MapperController.cs ├── MiniRankingController.cs ├── MiscController.cs ├── ModClanController.cs ├── ModController.cs ├── ModifiersController.cs ├── PatreonController.cs ├── PinnedScoreController.cs ├── PlayerContextRefreshController.cs ├── PlayerController.cs ├── PlayerRefreshController.cs ├── PlayerScoresController.cs ├── PlaylistController.cs ├── PreviewController.cs ├── RankController.cs ├── ReeSabersPresetsController.cs ├── ReplayController.cs ├── ReweightController.cs ├── ScoreController.cs ├── ScoreRefreshController.cs ├── ScoresController.cs ├── SocialsController.cs ├── SocketController.cs ├── SongController.cs ├── SongSuggestController.cs ├── SpeedrunController.cs ├── StatsController.cs ├── SuggestionsController.cs ├── UnicodeController.cs ├── ValentineController.cs └── WatermarkManagementController.cs ├── EmbedGenerator ├── EmbedGenerator.cs ├── EmbedLayout.cs ├── EmbedPixelShader.cs └── Utils │ ├── DrawingUtils.cs │ ├── FloatColor.cs │ ├── ImageTexture.cs │ ├── LinearGradientTexture.cs │ ├── Matrix3x3.cs │ └── RoundedRectangleTexture.cs ├── Enums ├── CustomAuthClaims.cs ├── MyType.cs ├── Operation.cs ├── Order.cs ├── RatingType.cs ├── SortBy.cs └── Type.cs ├── Extensions ├── HttpContextExtensions.cs ├── HttpWebRequestExtensions.cs ├── JsonExtensions.cs ├── LinqExtensions.cs ├── ModelExtensions.cs ├── ObjectToDictionaryHelper.cs ├── ServiceProviderExtensions.cs ├── StreamExtensions.cs ├── StringExtensions.cs ├── TaskExtensions.cs └── TimeExtensions.cs ├── LICENSE ├── Migrations ├── 20220219120259_InitialDb.Designer.cs ├── 20220219120259_InitialDb.cs ├── 20220228125623_OculusAuth.Designer.cs ├── 20220228125623_OculusAuth.cs ├── 20220306224446_OculusAuthDumb.Designer.cs ├── 20220306224446_OculusAuthDumb.cs ├── 20220307150636_AuthIps.Designer.cs ├── 20220307150636_AuthIps.cs ├── 20220310173139_AccountLink.Designer.cs ├── 20220310173139_AccountLink.cs ├── 20220314002611_HistoriesTimestamp.Designer.cs ├── 20220314002611_HistoriesTimestamp.cs ├── 20220317160314_ScoreStatistic.Designer.cs ├── 20220317160314_ScoreStatistic.cs ├── 20220318160413_JDAndSteamData.Designer.cs ├── 20220318160413_JDAndSteamData.cs ├── 20220401233930_Badges.Designer.cs ├── 20220401233930_Badges.cs ├── 20220405205401_AuthIds.Designer.cs ├── 20220405205401_AuthIds.cs ├── 20220408184646_ScoreError.Designer.cs ├── 20220408184646_ScoreError.cs ├── 20220412213944_StatisticHistory.Designer.cs ├── 20220412213944_StatisticHistory.cs ├── 20220413163357_CountryChange.Designer.cs ├── 20220413163357_CountryChange.cs ├── 20220415140206_CountryChange2.Designer.cs ├── 20220415140206_CountryChange2.cs ├── 20220419002615_FriendsAndClans.Designer.cs ├── 20220419002615_FriendsAndClans.cs ├── 20220420231420_CustomModsAndDailyImprovements.Designer.cs ├── 20220420231420_CustomModsAndDailyImprovements.cs ├── 20220427211908_MaxScoreForSong.Designer.cs ├── 20220427211908_MaxScoreForSong.cs ├── 20220429145938_LoginAttempts.Designer.cs ├── 20220429145938_LoginAttempts.cs ├── 20220502100716_LinkRequest.Designer.cs ├── 20220502100716_LinkRequest.cs ├── 20220509000948_ClanFixes.Designer.cs ├── 20220509000948_ClanFixes.cs ├── 20220512112035_FriendsFixes1.Designer.cs ├── 20220512112035_FriendsFixes1.cs ├── 20220512112529_FriendsFixes2.Designer.cs ├── 20220512112529_FriendsFixes2.cs ├── 20220512230702_Patreon.Designer.cs ├── 20220512230702_Patreon.cs ├── 20220513102909_ClanMoreInfo.Designer.cs ├── 20220513102909_ClanMoreInfo.cs ├── 20220519104041_Timepost.Designer.cs ├── 20220519104041_Timepost.cs ├── 20220520154806_PatreonFeatures.Designer.cs ├── 20220520154806_PatreonFeatures.cs ├── 20220525175700_ReservedTags.Designer.cs ├── 20220525175700_ReservedTags.cs ├── 20220620172245_Ban.Designer.cs ├── 20220620172245_Ban.cs ├── 20220622140902_LoginChanges.Designer.cs ├── 20220622140902_LoginChanges.cs ├── 20220622141746_ScoreImprovements.Designer.cs ├── 20220622141746_ScoreImprovements.cs ├── 20220622184918_YoinkOPAv1.Designer.cs ├── 20220622184918_YoinkOPAv1.cs ├── 20220626164015_AverageRank.Designer.cs ├── 20220626164015_AverageRank.cs ├── 20220628232302_RankVoting.Designer.cs ├── 20220628232302_RankVoting.cs ├── 20220706211144_ScoreImprovements2.Designer.cs ├── 20220706211144_ScoreImprovements2.cs ├── 20220715202354_OculusID.Designer.cs ├── 20220715202354_OculusID.cs ├── 20220720212852_BonusPP.Designer.cs ├── 20220720212852_BonusPP.cs ├── 20220721094204_RankChange.Designer.cs ├── 20220721094204_RankChange.cs ├── 20220727192736_Qualification.Designer.cs ├── 20220727192736_Qualification.cs ├── 20220730190959_MorePlayerStats.Designer.cs ├── 20220730190959_MorePlayerStats.cs ├── 20220801201649_LeaderboardStatistic.Designer.cs ├── 20220801201649_LeaderboardStatistic.cs ├── 20220802134910_BeatSaver.Designer.cs ├── 20220802134910_BeatSaver.cs ├── 20220805012928_QualificationUpdate.Designer.cs ├── 20220805012928_QualificationUpdate.cs ├── 20220807021629_ScoreRedirect.Designer.cs ├── 20220807021629_ScoreRedirect.cs ├── 20220808011956_QualificationUpdate1.Designer.cs ├── 20220808011956_QualificationUpdate1.cs ├── 20220809230804_QualificationUpdate2.Designer.cs ├── 20220809230804_QualificationUpdate2.cs ├── 20220811135256_QualificationChanges.Designer.cs ├── 20220811135256_QualificationChanges.cs ├── 20220818032737_DiffStatus.Designer.cs ├── 20220818032737_DiffStatus.cs ├── 20220818122908_LastScoreTime.Designer.cs ├── 20220818122908_LastScoreTime.cs ├── 20220819164953_Events.Designer.cs ├── 20220819164953_Events.cs ├── 20220820165848_SongUpdateTime.Designer.cs ├── 20220820165848_SongUpdateTime.cs ├── 20220820195703_SongIndex.Designer.cs ├── 20220820195703_SongIndex.cs ├── 20220823165347_Socials.Designer.cs ├── 20220823165347_Socials.cs ├── 20220828123545_ModifiersAndPins.Designer.cs ├── 20220828123545_ModifiersAndPins.cs ├── 20220830151114_YoutubeLinks.Designer.cs ├── 20220830151114_YoutubeLinks.cs ├── 20220901183813_CommentaryUpdatesAndBadgeLinks.Designer.cs ├── 20220901183813_CommentaryUpdatesAndBadgeLinks.cs ├── 20220903223402_Reweights.Designer.cs ├── 20220903223402_Reweights.cs ├── 20220905235935_Cleanups.Designer.cs ├── 20220905235935_Cleanups.cs ├── 20220907154921_LeaderboardChanges.Designer.cs ├── 20220907154921_LeaderboardChanges.cs ├── 20220907163810_LeaderboardChanges2.Designer.cs ├── 20220907163810_LeaderboardChanges2.cs ├── 20220911205658_MapperApproval.Designer.cs ├── 20220911205658_MapperApproval.cs ├── 20220913210211_StatisticMigrations.Designer.cs ├── 20220913210211_StatisticMigrations.cs ├── 20220914120212_StatisticMigrations2.Designer.cs ├── 20220914120212_StatisticMigrations2.cs ├── 20220915131813_QualificationModifiers.Designer.cs ├── 20220915131813_QualificationModifiers.cs ├── 20220916135955_EventPlayerEventName.Designer.cs ├── 20220916135955_EventPlayerEventName.cs ├── 20220916143150_StrictAngles.Designer.cs ├── 20220916143150_StrictAngles.cs ├── 20220922210040_WeightedAcc.Designer.cs ├── 20220922210040_WeightedAcc.cs ├── 20220924180606_ProfileSettings.Designer.cs ├── 20220924180606_ProfileSettings.cs ├── 20220927161329_PlayerChanges.Designer.cs ├── 20220927161329_PlayerChanges.cs ├── 20220927174856_PlayerChanges2.Designer.cs ├── 20220927174856_PlayerChanges2.cs ├── 20220927175221_PlayerChanges3.Designer.cs ├── 20220927175221_PlayerChanges3.cs ├── 20220929232206_WatchAndPlayedStats.Designer.cs ├── 20220929232206_WatchAndPlayedStats.cs ├── 20221002141427_YeetApproval.Designer.cs ├── 20221002141427_YeetApproval.cs ├── 20221004180500_VotesInLeaderboard.Designer.cs ├── 20221004180500_VotesInLeaderboard.cs ├── 20221009222414_AverageWeightedRankedRank.Designer.cs ├── 20221009222414_AverageWeightedRankedRank.cs ├── 20221010191544_ScoreStatsReplay.Designer.cs ├── 20221010191544_ScoreStatsReplay.cs ├── 20221010223853_ScoreStatsScore.Designer.cs ├── 20221010223853_ScoreStatsScore.cs ├── 20221011222927_Headsets.Designer.cs ├── 20221011222927_Headsets.cs ├── 20221016134441_WatchingStatsFixes.Designer.cs ├── 20221016134441_WatchingStatsFixes.cs ├── 20221018211646_ScoreCountry.Designer.cs ├── 20221018211646_ScoreCountry.cs ├── 20221027175120_ScoresIndex.Designer.cs ├── 20221027175120_ScoresIndex.cs ├── 20221030163028_Uinttotalscore.Designer.cs ├── 20221030163028_Uinttotalscore.cs ├── 20221031155944_History2.Designer.cs ├── 20221031155944_History2.cs ├── 20221102041729_LastWeekStats.Designer.cs ├── 20221102041729_LastWeekStats.cs ├── 20221102185211_LastWeekStats2.Designer.cs ├── 20221102185211_LastWeekStats2.cs ├── 20221107022608_OptionalLeaderboard.Designer.cs ├── 20221107022608_OptionalLeaderboard.cs ├── 20221120220208_VRControllers.Designer.cs ├── 20221120220208_VRControllers.cs ├── 20221123070723_MaxComboAndControllers.Designer.cs ├── 20221123070723_MaxComboAndControllers.cs ├── 20221124040647_LeaderboardGroups.Designer.cs ├── 20221124040647_LeaderboardGroups.cs ├── 20221126070918_DurationInDifficulty.Designer.cs ├── 20221126070918_DurationInDifficulty.cs ├── 20221130101051_FCStats.Designer.cs ├── 20221130101051_FCStats.cs ├── 20221206115501_RevertLBOptionality.Designer.cs ├── 20221206115501_RevertLBOptionality.cs ├── 20221225181154_RemoveHistories.Designer.cs ├── 20221225181154_RemoveHistories.cs ├── 20221227090306_TimingInScore.Designer.cs ├── 20221227090306_TimingInScore.cs ├── 20221227144339_IgnoreForStats.Designer.cs ├── 20221227144339_IgnoreForStats.cs ├── 20221228124806_TimesetMigration1.Designer.cs ├── 20221228124806_TimesetMigration1.cs ├── 20230116181132_MaxStreakInStats.Designer.cs ├── 20230116181132_MaxStreakInStats.cs ├── 20230204071510_ProfileCover.Designer.cs ├── 20230204071510_ProfileCover.cs ├── 20230207232205_NoReplayInStats.Designer.cs ├── 20230207232205_NoReplayInStats.cs ├── 20230208135601_ScorePlayCount.Designer.cs ├── 20230208135601_ScorePlayCount.cs ├── 20230212053449_CountryChangeBan.Designer.cs ├── 20230212053449_CountryChangeBan.cs ├── 20230212093429_QualificationCommentary.Designer.cs ├── 20230212093429_QualificationCommentary.cs ├── 20230215135549_NominationsForum.Designer.cs ├── 20230215135549_NominationsForum.cs ├── 20230216063255_DiscordSocials.Designer.cs ├── 20230216063255_DiscordSocials.cs ├── 20230216175920_NominationsForum2.Designer.cs ├── 20230216175920_NominationsForum2.cs ├── 20230219111621_QualityVoting.Designer.cs ├── 20230219111621_QualityVoting.cs ├── 20230219155301_QualityVoting2.Designer.cs ├── 20230219155301_QualityVoting2.cs ├── 20230220191750_MigrationStringID.Designer.cs ├── 20230220191750_MigrationStringID.cs ├── 20230222130155_MapRequirements.Designer.cs ├── 20230222130155_MapRequirements.cs ├── 20230223141005_OPModifier.Designer.cs ├── 20230223141005_OPModifier.cs ├── 20230226213841_SongChecked.Designer.cs ├── 20230226213841_SongChecked.cs ├── 20230306182250_Indexes1.Designer.cs ├── 20230306182250_Indexes1.cs ├── 20230308013908_CriteriaComments.Designer.cs ├── 20230308013908_CriteriaComments.cs ├── 20230311213449_StarredFriends.Designer.cs ├── 20230311213449_StarredFriends.cs ├── 20230314030705_VoteMessageToRT.Designer.cs ├── 20230314030705_VoteMessageToRT.cs ├── 20230322034917_NewRanking.Designer.cs ├── 20230322034917_NewRanking.cs ├── 20230327091712_QualificationUpdate5.Designer.cs ├── 20230327091712_QualificationUpdate5.cs ├── 20230329135938_Oauth.Designer.cs ├── 20230329135938_Oauth.cs ├── 20230404165719_ModifiersStars.Designer.cs ├── 20230404165719_ModifiersStars.cs ├── 20230408154236_TopPPTypes.Designer.cs ├── 20230408154236_TopPPTypes.cs ├── 20230415050327_Achievements1.Designer.cs ├── 20230415050327_Achievements1.cs ├── 20230508144808_FullSongCover.Designer.cs ├── 20230508144808_FullSongCover.cs ├── 20230601110655_BotPlayers.Designer.cs ├── 20230601110655_BotPlayers.cs ├── 20230618205050_ModifierRatingChanges.Designer.cs ├── 20230618205050_ModifierRatingChanges.cs ├── 20230623051326_ShowAllRatingsSetting.Designer.cs ├── 20230623051326_ShowAllRatingsSetting.cs ├── 20230626112920_ReplayLinkInStats.Designer.cs ├── 20230626112920_ReplayLinkInStats.cs ├── 20230705180619_ScorePriorityField.Designer.cs ├── 20230705180619_ScorePriorityField.cs ├── 20230706200331_SongSearchRecords.Designer.cs ├── 20230706200331_SongSearchRecords.cs ├── 20230712140945_NullableMaxStreak.Designer.cs ├── 20230712140945_NullableMaxStreak.cs ├── 20230720221915_FalsePositiveFailedScores.Designer.cs ├── 20230720221915_FalsePositiveFailedScores.cs ├── 20230725125105_Top1ScoreCount.Designer.cs ├── 20230725125105_Top1ScoreCount.cs ├── 20230731122655_ImprovementsInStats.Designer.cs ├── 20230731122655_ImprovementsInStats.cs ├── 20230802163359_AttemptsExpansion.Designer.cs ├── 20230802163359_AttemptsExpansion.cs ├── 20230817030830_BadgesTimeset.Designer.cs ├── 20230817030830_BadgesTimeset.cs ├── 20230827120615_ClanOrder.Designer.cs ├── 20230827120615_ClanOrder.cs ├── 20230913150644_Contexts.Designer.cs ├── 20230913150644_Contexts.cs ├── 20230918141047_ClanRankings.Designer.cs ├── 20230918141047_ClanRankings.cs ├── 20230920215027_ClanCapturedBoards.Designer.cs ├── 20230920215027_ClanCapturedBoards.cs ├── 20230921145831_ContextsBannedBool.Designer.cs ├── 20230921145831_ContextsBannedBool.cs ├── 20230926224830_PlaylistHash.Designer.cs ├── 20230926224830_PlaylistHash.cs ├── 20231002084004_PinnedScoresContexts.Designer.cs ├── 20231002084004_PinnedScoresContexts.cs ├── 20231003041726_PinnedScoresContexts2.Designer.cs ├── 20231003041726_PinnedScoresContexts2.cs ├── 20231013223520_ContextScoresImprovements.Designer.cs ├── 20231013223520_ContextScoresImprovements.cs ├── 20231114123807_SongSuggest.Designer.cs ├── 20231114123807_SongSuggest.cs ├── 20231119205151_RatingsRefresh.Designer.cs ├── 20231119205151_RatingsRefresh.cs ├── 20231122141058_DeveloperProfiles.Designer.cs ├── 20231122141058_DeveloperProfiles.cs ├── 20231126150612_CuratedMaps.Designer.cs ├── 20231126150612_CuratedMaps.cs ├── 20231126152759_TimepostIndexRecreate.Designer.cs ├── 20231126152759_TimepostIndexRecreate.cs ├── 20231127193052_CuratedMaps2.Designer.cs ├── 20231127193052_CuratedMaps2.cs ├── 20231214150902_ReePresets.Designer.cs ├── 20231214150902_ReePresets.cs ├── 20231220153824_ReePresets2.Designer.cs ├── 20231220153824_ReePresets2.cs ├── 20231220172955_ReePresets3.Designer.cs ├── 20231220172955_ReePresets3.cs ├── 20231226143403_SongSuggestCacheSongs.Designer.cs ├── 20231226143403_SongSuggestCacheSongs.cs ├── 20231229221441_OpenIddict5.Designer.cs ├── 20231229221441_OpenIddict5.cs ├── 20240102221915_ClansMap.Designer.cs ├── 20240102221915_ClansMap.cs ├── 20240107011556_Indexes.Designer.cs ├── 20240107011556_Indexes.cs ├── 20240110144729_Indexes2.Designer.cs ├── 20240110144729_Indexes2.cs ├── 20240113155854_NewClanStuff.Designer.cs ├── 20240113155854_NewClanStuff.cs ├── 20240126133731_PlayerPercentiles.Designer.cs ├── 20240126133731_PlayerPercentiles.cs ├── 20240207220313_FeaturedPlaylist.Designer.cs ├── 20240207220313_FeaturedPlaylist.cs ├── 20240209202959_ClanOrderChanges.Designer.cs ├── 20240209202959_ClanOrderChanges.cs ├── 20240212172457_ClanManagers.Designer.cs ├── 20240212172457_ClanManagers.cs ├── 20240213202037_Valentines.Designer.cs ├── 20240213202037_Valentines.cs ├── 20240224175448_PlaylistUpdates.Designer.cs ├── 20240224175448_PlaylistUpdates.cs ├── 20240224224909_MapAwardsStatus.Designer.cs ├── 20240224224909_MapAwardsStatus.cs ├── 20240225154428_FeaturedPlaylistDescription.Designer.cs ├── 20240225154428_FeaturedPlaylistDescription.cs ├── 20240228225749_ClanDiscordInvite.Designer.cs ├── 20240228225749_ClanDiscordInvite.cs ├── 20240304125343_PlayerAndEventNameToEP.Designer.cs ├── 20240304125343_PlayerAndEventNameToEP.cs ├── 20240304175919_EventPlayerClean.Designer.cs ├── 20240304175919_EventPlayerClean.cs ├── 20240305000628_NewMapTags.Designer.cs ├── 20240305000628_NewMapTags.cs ├── 20240306155650_HashPasswords.Designer.cs ├── 20240306155650_HashPasswords.cs ├── 20240307094507_PlayerBioTimeset.Designer.cs ├── 20240307094507_PlayerBioTimeset.cs ├── 20240318220546_WhyINamedItLikeThis.Designer.cs ├── 20240318220546_WhyINamedItLikeThis.cs ├── 20240328124905_UsernameChangesBan.Designer.cs ├── 20240328124905_UsernameChangesBan.cs ├── 20240417173356_WebpAvatarAndPartPPHistory.Designer.cs ├── 20240417173356_WebpAvatarAndPartPPHistory.cs ├── 20240424153040_PredictedLeaderboards.Designer.cs ├── 20240424153040_PredictedLeaderboards.cs ├── 20240425140134_MaxScoreGraph.Designer.cs ├── 20240425140134_MaxScoreGraph.cs ├── 20240429205851_PublicStats.Designer.cs ├── 20240429205851_PublicStats.cs ├── 20240504224421_LastTryTime.Designer.cs ├── 20240504224421_LastTryTime.cs ├── 20240513234449_PublicFollowersAliasesAndModders.Designer.cs ├── 20240513234449_PublicFollowersAliasesAndModders.cs ├── 20240514224410_AliasRequests.Designer.cs ├── 20240514224410_AliasRequests.cs ├── 20240514231241_ClanDBRichBioYeet.Designer.cs ├── 20240514231241_ClanDBRichBioYeet.cs ├── 20240524222319_Speedruns.Designer.cs ├── 20240524222319_Speedruns.cs ├── 20240525174331_YeetTimepost.Designer.cs ├── 20240525174331_YeetTimepost.cs ├── 20240529142139_OtherReplaysIndex.Designer.cs ├── 20240529142139_OtherReplaysIndex.cs ├── 20240607171751_PinnedScoresPlaysPrivacy.Designer.cs ├── 20240607171751_PinnedScoresPlaysPrivacy.cs ├── 20240614044212_HorizontalRichBio.Designer.cs ├── 20240614044212_HorizontalRichBio.cs ├── 20240622065856_SanitizationConfig.Designer.cs ├── 20240622065856_SanitizationConfig.cs ├── 20240623145057_RankedMapperSort.Designer.cs ├── 20240623145057_RankedMapperSort.cs ├── 20240705224945_PlaylistsToInstall.Designer.cs ├── 20240705224945_PlaylistsToInstall.cs ├── 20240706172017_ModVersions.Designer.cs ├── 20240706172017_ModVersions.cs ├── 20240712181428_Week100.Designer.cs ├── 20240712181428_Week100.cs ├── 20240712184538_Week100Filled.Designer.cs ├── 20240712184538_Week100Filled.cs ├── 20240719220513_GitHubOauth.Designer.cs ├── 20240719220513_GitHubOauth.cs ├── 20240726052924_IngameAvatars.Designer.cs ├── 20240726052924_IngameAvatars.cs ├── 20240728052923_Mappers.Designer.cs ├── 20240728052923_Mappers.cs ├── 20240730023419_MapperPlayers1.Designer.cs ├── 20240730023419_MapperPlayers1.cs ├── 20240730034814_MapperPlayers2.Designer.cs ├── 20240730034814_MapperPlayers2.cs ├── 20240803203519_ModNews.Designer.cs ├── 20240803203519_ModNews.cs ├── 20240807232640_BeastiesNominations.Designer.cs ├── 20240807232640_BeastiesNominations.cs ├── 20240815094657_PlayerSearches.Designer.cs ├── 20240815094657_PlayerSearches.cs ├── 20240822132604_BetterSpeed.Designer.cs ├── 20240822132604_BetterSpeed.cs ├── 20240827191617_ClanHistoryExtension.Designer.cs ├── 20240827191617_ClanHistoryExtension.cs ├── 20240830194315_ChainsInDiffs.Designer.cs ├── 20240830194315_ChainsInDiffs.cs ├── 20240831221248_Promotions.Designer.cs ├── 20240831221248_Promotions.cs ├── 20240901203959_Promotions2.Designer.cs ├── 20240901203959_Promotions2.cs ├── 20240919135336_AllHMDsInStats.Designer.cs ├── 20240919135336_AllHMDsInStats.cs ├── 20240923132513_HistoryMigration.Designer.cs ├── 20240923132513_HistoryMigration.cs ├── 20240926131949_AttemptsMigration.Designer.cs ├── 20240926131949_AttemptsMigration.cs ├── 20241018031127_FirstScoreTimes.Designer.cs ├── 20241018031127_FirstScoreTimes.cs ├── 20241030031902_ModifiersInImprovement.Designer.cs ├── 20241030031902_ModifiersInImprovement.cs ├── 20241112014515_AllContextsPp.Designer.cs ├── 20241112014515_AllContextsPp.cs ├── 20241113110913_EventDescription.Designer.cs ├── 20241113110913_EventDescription.cs ├── 20241125105638_SongStatusAndPlays.Designer.cs ├── 20241125105638_SongStatusAndPlays.cs ├── 20241125142212_DifficulyDescriptionOptimization.Designer.cs ├── 20241125142212_DifficulyDescriptionOptimization.cs ├── 20241126073004_PlayerAliasOptimization.Designer.cs ├── 20241126073004_PlayerAliasOptimization.cs ├── 20241126085629_ValidForGeneral.Designer.cs ├── 20241126085629_ValidForGeneral.cs ├── 20241218223940_Tree2024.Designer.cs ├── 20241218223940_Tree2024.cs ├── 20241220125037_ScoresIndexWithTimeset.Designer.cs ├── 20241220125037_ScoresIndexWithTimeset.cs ├── 20241222005934_TreeChampions.Designer.cs ├── 20241222005934_TreeChampions.cs ├── 20241226120002_ScoresIndexWithLeaderboardId.Designer.cs ├── 20241226120002_ScoresIndexWithLeaderboardId.cs ├── 20250105172157_SongExplicityStatus.Designer.cs ├── 20250105172157_SongExplicityStatus.cs ├── 20250106221737_ExplicitCoversSetting.Designer.cs ├── 20250106221737_ExplicitCoversSetting.cs ├── 20250108025047_SongUploadTimeIndex.Designer.cs ├── 20250108025047_SongUploadTimeIndex.cs ├── 20250121054108_ModifiedStars.Designer.cs ├── 20250121054108_ModifiedStars.cs ├── 20250204183038_BotMappers.Designer.cs ├── 20250204183038_BotMappers.cs ├── 20250205194742_MapperStatus.Designer.cs ├── 20250205194742_MapperStatus.cs ├── 20250212131112_HashId.Designer.cs ├── 20250212131112_HashId.cs ├── 20250304214345_SaberOffsetsAndCustomData.Designer.cs ├── 20250304214345_SaberOffsetsAndCustomData.cs ├── 20250314224041_IpBans.Designer.cs ├── 20250314224041_IpBans.cs ├── 20250320202254_MapCountFeaturedPlaylists.Designer.cs ├── 20250320202254_MapCountFeaturedPlaylists.cs ├── 20250406152727_LeaderboardLastScoreTime.Designer.cs ├── 20250406152727_LeaderboardLastScoreTime.cs ├── 20250424183705_EarthDayMaps.Designer.cs ├── 20250424183705_EarthDayMaps.cs ├── 20250507005720_PlayerExperience.Designer.cs ├── 20250507005720_PlayerExperience.cs ├── 20250507151603_ScoreExperience.Designer.cs ├── 20250507151603_ScoreExperience.cs ├── 20250622202910_BlueSky.Designer.cs ├── 20250622202910_BlueSky.cs ├── 20250626171548_WatermarkRequests.Designer.cs ├── 20250626171548_WatermarkRequests.cs ├── 20250701135524_ScoreNominations.Designer.cs ├── 20250701135524_ScoreNominations.cs ├── 20250708121615_ReplayWatchedTotal.Designer.cs ├── 20250708121615_ReplayWatchedTotal.cs ├── 20250708130541_ScoreMistakes.Designer.cs ├── 20250708130541_ScoreMistakes.cs ├── 20250710200741_Playtimes.Designer.cs ├── 20250710200741_Playtimes.cs ├── 20250805172954_BadgePriority.Designer.cs ├── 20250805172954_BadgePriority.cs ├── 20250806173028_MapBools.Designer.cs ├── 20250806173028_MapBools.cs ├── 20250808165601_TempPlayers.Designer.cs ├── 20250808165601_TempPlayers.cs ├── 20250816174307_ReeSabersDownloads.Designer.cs ├── 20250816174307_ReeSabersDownloads.cs ├── 20250923151338_MOTDEvents.Designer.cs ├── 20250923151338_MOTDEvents.cs ├── 20250925085011_MOTDEventsPlayers.Designer.cs ├── 20250925085011_MOTDEventsPlayers.cs ├── 20250926093532_MOTDEventsColors.Designer.cs ├── 20250926093532_MOTDEventsColors.cs ├── 20250928113318_MOTDScheduledMaps.Designer.cs ├── 20250928113318_MOTDScheduledMaps.cs ├── 20250928150423_MOTDEventsPlayers2.Designer.cs ├── 20250928150423_MOTDEventsPlayers2.cs ├── 20250930095917_MOTDEventsPoints.Designer.cs ├── 20250930095917_MOTDEventsPoints.cs ├── 20250930102546_MOTDEventsVideoUrls.Designer.cs ├── 20250930102546_MOTDEventsVideoUrls.cs ├── 20251001100348_MOTDEventsFeatured.Designer.cs ├── 20251001100348_MOTDEventsFeatured.cs ├── 20251026020106_MainClan.Designer.cs ├── 20251026020106_MainClan.cs ├── AppContextModelSnapshot.cs └── Storage │ ├── 20240920225246_History.Designer.cs │ ├── 20240920225246_History.cs │ ├── 20240923130509_HistoryIndex.Designer.cs │ ├── 20240923130509_HistoryIndex.cs │ ├── 20240923215752_LeaderboardStats.Designer.cs │ ├── 20240923215752_LeaderboardStats.cs │ ├── 20240925132627_LeaderboardStatsIndex.Designer.cs │ ├── 20240925132627_LeaderboardStatsIndex.cs │ ├── 20240930143908_AttemptsCount.Designer.cs │ ├── 20240930143908_AttemptsCount.cs │ ├── 20241004023415_StartTime.Designer.cs │ ├── 20241004023415_StartTime.cs │ ├── 20241030034314_ModifiersInImprovement.Designer.cs │ ├── 20241030034314_ModifiersInImprovement.cs │ ├── 20250116212714_ScoreIdIndex.Designer.cs │ ├── 20250116212714_ScoreIdIndex.cs │ ├── 20250121061358_ScoreIdIndex2.Designer.cs │ ├── 20250121061358_ScoreIdIndex2.cs │ ├── 20250226132306_PinnedAttempts.Designer.cs │ ├── 20250226132306_PinnedAttempts.cs │ ├── 20250304214053_SaberOffsetsAndCustomData.Designer.cs │ ├── 20250304214053_SaberOffsetsAndCustomData.cs │ ├── 20250507151709_ScoreExperience.Designer.cs │ ├── 20250507151709_ScoreExperience.cs │ ├── 20250514103943_LeadearboardIdLength.Designer.cs │ ├── 20250514103943_LeadearboardIdLength.cs │ ├── 20250530094714_PracticeSpeed.Designer.cs │ ├── 20250530094714_PracticeSpeed.cs │ ├── 20250712202025_Playtimes.Designer.cs │ ├── 20250712202025_Playtimes.cs │ └── StorageContextModelSnapshot.cs ├── Program.cs ├── Properties ├── launchSettings.json └── serviceDependencies.json ├── README.md ├── Renderer ├── Controllers │ └── ScreenshotController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Renderer.csproj ├── Renderer.csproj.user ├── appsettings.Development.json └── appsettings.json ├── Services ├── ATProtocolService.cs ├── ClanMessageServices.cs ├── ClanTaskService.cs ├── ConstantsService.cs ├── DailyRefresh.cs ├── EveryMinuteRefresh.cs ├── HistoryService.cs ├── HourlyRefresh.cs ├── LeaderboardPlayerStatsService.cs ├── MapRefresh.cs ├── MinuteRefresh.cs ├── OauthService.cs ├── RankingService.cs ├── RefreshTaskService.cs ├── SearchService │ ├── CustomAnalyzer.cs │ ├── PlayerService │ │ ├── PlayerMetadata.cs │ │ └── PlayerSearchService.cs │ ├── ScoreSearch.cs │ ├── SearchService.cs │ └── SongService │ │ ├── SongMetadata.cs │ │ └── SongSearchService.cs ├── SocketService.cs ├── SongService.cs └── SpeedrunService.cs ├── Startup.cs ├── Utils ├── AttemptsListUtils.cs ├── AuthUtils.cs ├── ClanUtils.cs ├── EnumSchemaFilter.cs ├── ExpandantoObject.cs ├── FormatUtils.cs ├── GeneralExtensions.cs ├── HashDiffStarTuple.cs ├── HistogramUtils.cs ├── ImageUtils.cs ├── LeaderboardListUtils │ ├── LeaderboardListUtils.cs │ ├── Search.cs │ ├── Sort.cs │ └── Where.cs ├── LinkUtils.cs ├── MapListUtils │ ├── DifficultySort.cs │ ├── MapListUtils.cs │ ├── Search.cs │ ├── Sort.cs │ └── Where.cs ├── MathUtils.cs ├── PlayerUtils.cs ├── RatingUtils.cs ├── ReBeatUtils.cs ├── ReepresetsUtils.cs ├── ReplayStatisticUtils.cs ├── ReplayUtils.cs ├── S3Helper.cs ├── ScoreListUtils.cs ├── ScoreListUtilsAll.cs ├── SongUtils.cs ├── SpeedrunUtils.cs ├── SteamHelper.cs ├── WebSocketClient.cs └── WebUtils.cs ├── Views └── Authentication │ └── SignIn.cshtml ├── appsettings.Development.json ├── appsettings.json ├── runtimeconfig.template.json ├── web.config └── wwwroot ├── databases └── IP2LOCATION-LITE-DB.BIN ├── fonts ├── Audiowide-Regular.ttf ├── Cyberbit.ttf └── Teko-SemiBold.ttf ├── images ├── 360degree.png ├── 90degree.png ├── AvatarMask.png ├── AvatarShadow.png ├── CoverMask.png ├── FinalMask.png ├── GradientMask.png ├── GradientMaskBlurred.png ├── Star.png ├── background.png ├── backgroundold.png ├── default.jpg ├── lawless.png ├── legacy.png ├── lightshow.png ├── noarrows.png ├── onesaber.png ├── replays.png ├── royale.png └── standard.png └── playlists ├── nominated.bplist ├── qualified.bplist └── ranked.bplist /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/.gitmodules -------------------------------------------------------------------------------- /AppContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/AppContext.cs -------------------------------------------------------------------------------- /Auth/BeatLeader/BeatLeaderAuthenticationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BeatLeader/BeatLeaderAuthenticationConstants.cs -------------------------------------------------------------------------------- /Auth/BeatLeader/BeatLeaderAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BeatLeader/BeatLeaderAuthenticationDefaults.cs -------------------------------------------------------------------------------- /Auth/BeatLeader/BeatLeaderAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BeatLeader/BeatLeaderAuthenticationExtensions.cs -------------------------------------------------------------------------------- /Auth/BeatLeader/BeatLeaderAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BeatLeader/BeatLeaderAuthenticationHandler.cs -------------------------------------------------------------------------------- /Auth/BeatLeader/BeatLeaderAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BeatLeader/BeatLeaderAuthenticationOptions.cs -------------------------------------------------------------------------------- /Auth/BeatSaver/BeatSaverAuthenticationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BeatSaver/BeatSaverAuthenticationConstants.cs -------------------------------------------------------------------------------- /Auth/BeatSaver/BeatSaverAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BeatSaver/BeatSaverAuthenticationDefaults.cs -------------------------------------------------------------------------------- /Auth/BeatSaver/BeatSaverAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BeatSaver/BeatSaverAuthenticationExtensions.cs -------------------------------------------------------------------------------- /Auth/BeatSaver/BeatSaverAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BeatSaver/BeatSaverAuthenticationHandler.cs -------------------------------------------------------------------------------- /Auth/BeatSaver/BeatSaverAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BeatSaver/BeatSaverAuthenticationOptions.cs -------------------------------------------------------------------------------- /Auth/BlueSky/BlueSkyAuthenticationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BlueSky/BlueSkyAuthenticationConstants.cs -------------------------------------------------------------------------------- /Auth/BlueSky/BlueSkyAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BlueSky/BlueSkyAuthenticationDefaults.cs -------------------------------------------------------------------------------- /Auth/BlueSky/BlueSkyAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BlueSky/BlueSkyAuthenticationExtensions.cs -------------------------------------------------------------------------------- /Auth/BlueSky/BlueSkyAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BlueSky/BlueSkyAuthenticationHandler.cs -------------------------------------------------------------------------------- /Auth/BlueSky/BlueSkyAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/BlueSky/BlueSkyAuthenticationOptions.cs -------------------------------------------------------------------------------- /Auth/Oculus/OculusAuthenticationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/Oculus/OculusAuthenticationConstants.cs -------------------------------------------------------------------------------- /Auth/Oculus/OculusAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/Oculus/OculusAuthenticationDefaults.cs -------------------------------------------------------------------------------- /Auth/Oculus/OculusAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/Oculus/OculusAuthenticationExtensions.cs -------------------------------------------------------------------------------- /Auth/Oculus/OculusAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/Oculus/OculusAuthenticationHandler.cs -------------------------------------------------------------------------------- /Auth/Oculus/OculusAuthenticationInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/Oculus/OculusAuthenticationInitializer.cs -------------------------------------------------------------------------------- /Auth/Oculus/OculusAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/Oculus/OculusAuthenticationOptions.cs -------------------------------------------------------------------------------- /Auth/OculusToken/OculusTokenAuthenticationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/OculusToken/OculusTokenAuthenticationConstants.cs -------------------------------------------------------------------------------- /Auth/OculusToken/OculusTokenAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/OculusToken/OculusTokenAuthenticationDefaults.cs -------------------------------------------------------------------------------- /Auth/OculusToken/OculusTokenAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/OculusToken/OculusTokenAuthenticationExtensions.cs -------------------------------------------------------------------------------- /Auth/OculusToken/OculusTokenAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/OculusToken/OculusTokenAuthenticationHandler.cs -------------------------------------------------------------------------------- /Auth/OculusToken/OculusTokenAuthenticationInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/OculusToken/OculusTokenAuthenticationInitializer.cs -------------------------------------------------------------------------------- /Auth/OculusToken/OculusTokenAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/OculusToken/OculusTokenAuthenticationOptions.cs -------------------------------------------------------------------------------- /Auth/SteamTicket/OpenIdAuthenticationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/SteamTicket/OpenIdAuthenticationConstants.cs -------------------------------------------------------------------------------- /Auth/SteamTicket/OpenIdAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/SteamTicket/OpenIdAuthenticationDefaults.cs -------------------------------------------------------------------------------- /Auth/SteamTicket/OpenIdAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/SteamTicket/OpenIdAuthenticationExtensions.cs -------------------------------------------------------------------------------- /Auth/SteamTicket/OpenIdAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/SteamTicket/OpenIdAuthenticationHandler.cs -------------------------------------------------------------------------------- /Auth/SteamTicket/OpenIdAuthenticationInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/SteamTicket/OpenIdAuthenticationInitializer.cs -------------------------------------------------------------------------------- /Auth/SteamTicket/OpenIdAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Auth/SteamTicket/OpenIdAuthenticationOptions.cs -------------------------------------------------------------------------------- /BeatLeader-Server-Sockets/BeatLeader-Server-Sockets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/BeatLeader-Server-Sockets/BeatLeader-Server-Sockets.csproj -------------------------------------------------------------------------------- /BeatLeader-Server-Sockets/BeatLeader-Server-Sockets.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/BeatLeader-Server-Sockets/BeatLeader-Server-Sockets.csproj.user -------------------------------------------------------------------------------- /BeatLeader-Server-Sockets/Controllers/SocketsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/BeatLeader-Server-Sockets/Controllers/SocketsController.cs -------------------------------------------------------------------------------- /BeatLeader-Server-Sockets/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/BeatLeader-Server-Sockets/Program.cs -------------------------------------------------------------------------------- /BeatLeader-Server-Sockets/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/BeatLeader-Server-Sockets/Properties/launchSettings.json -------------------------------------------------------------------------------- /BeatLeader-Server-Sockets/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/BeatLeader-Server-Sockets/appsettings.Development.json -------------------------------------------------------------------------------- /BeatLeader-Server-Sockets/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/BeatLeader-Server-Sockets/appsettings.json -------------------------------------------------------------------------------- /BeatLeader-Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/BeatLeader-Server.csproj -------------------------------------------------------------------------------- /BeatLeader-Server.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/BeatLeader-Server.csproj.user -------------------------------------------------------------------------------- /BeatLeader-Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/BeatLeader-Server.sln -------------------------------------------------------------------------------- /Bot/Bot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Bot/Bot.cs -------------------------------------------------------------------------------- /Bot/RTNominationsForum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Bot/RTNominationsForum.cs -------------------------------------------------------------------------------- /ControllerHelpers/ClanControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/ClanControllerHelper.cs -------------------------------------------------------------------------------- /ControllerHelpers/LeaderboardControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/LeaderboardControllerHelper.cs -------------------------------------------------------------------------------- /ControllerHelpers/LeaderboardRefreshControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/LeaderboardRefreshControllerHelper.cs -------------------------------------------------------------------------------- /ControllerHelpers/PatreonControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/PatreonControllerHelper.cs -------------------------------------------------------------------------------- /ControllerHelpers/PlayerAdminControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/PlayerAdminControllerHelper.cs -------------------------------------------------------------------------------- /ControllerHelpers/PlayerContextRefreshControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/PlayerContextRefreshControllerHelper.cs -------------------------------------------------------------------------------- /ControllerHelpers/PlayerControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/PlayerControllerHelper.cs -------------------------------------------------------------------------------- /ControllerHelpers/PlayerRefreshControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/PlayerRefreshControllerHelper.cs -------------------------------------------------------------------------------- /ControllerHelpers/ScoreControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/ScoreControllerHelper.cs -------------------------------------------------------------------------------- /ControllerHelpers/ScoreRefreshControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/ScoreRefreshControllerHelper.cs -------------------------------------------------------------------------------- /ControllerHelpers/SongControllerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/ControllerHelpers/SongControllerHelper.cs -------------------------------------------------------------------------------- /Controllers/AchievementsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/AchievementsController.cs -------------------------------------------------------------------------------- /Controllers/Admin/AdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/Admin/AdminController.cs -------------------------------------------------------------------------------- /Controllers/Admin/BanAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/Admin/BanAdminController.cs -------------------------------------------------------------------------------- /Controllers/Admin/ClanAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/Admin/ClanAdminController.cs -------------------------------------------------------------------------------- /Controllers/Admin/PlayerAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/Admin/PlayerAdminController.cs -------------------------------------------------------------------------------- /Controllers/Admin/PlayerScoresAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/Admin/PlayerScoresAdminController.cs -------------------------------------------------------------------------------- /Controllers/Admin/StatsAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/Admin/StatsAdminController.cs -------------------------------------------------------------------------------- /Controllers/AliasManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/AliasManagementController.cs -------------------------------------------------------------------------------- /Controllers/AuthenticationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/AuthenticationController.cs -------------------------------------------------------------------------------- /Controllers/BackupController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/BackupController.cs -------------------------------------------------------------------------------- /Controllers/BadgeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/BadgeController.cs -------------------------------------------------------------------------------- /Controllers/BeastSaberController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/BeastSaberController.cs -------------------------------------------------------------------------------- /Controllers/BeatSaverController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/BeatSaverController.cs -------------------------------------------------------------------------------- /Controllers/ClanController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ClanController.cs -------------------------------------------------------------------------------- /Controllers/ClanManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ClanManagementController.cs -------------------------------------------------------------------------------- /Controllers/CurrentUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/CurrentUserController.cs -------------------------------------------------------------------------------- /Controllers/DeveloperController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/DeveloperController.cs -------------------------------------------------------------------------------- /Controllers/EarthDayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/EarthDayController.cs -------------------------------------------------------------------------------- /Controllers/EventsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/EventsController.cs -------------------------------------------------------------------------------- /Controllers/ExperienceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ExperienceController.cs -------------------------------------------------------------------------------- /Controllers/FriendsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/FriendsController.cs -------------------------------------------------------------------------------- /Controllers/LeaderboardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/LeaderboardController.cs -------------------------------------------------------------------------------- /Controllers/LeaderboardManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/LeaderboardManagementController.cs -------------------------------------------------------------------------------- /Controllers/LeaderboardRefreshController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/LeaderboardRefreshController.cs -------------------------------------------------------------------------------- /Controllers/MapperController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/MapperController.cs -------------------------------------------------------------------------------- /Controllers/MiniRankingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/MiniRankingController.cs -------------------------------------------------------------------------------- /Controllers/MiscController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/MiscController.cs -------------------------------------------------------------------------------- /Controllers/ModClanController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ModClanController.cs -------------------------------------------------------------------------------- /Controllers/ModController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ModController.cs -------------------------------------------------------------------------------- /Controllers/ModifiersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ModifiersController.cs -------------------------------------------------------------------------------- /Controllers/PatreonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/PatreonController.cs -------------------------------------------------------------------------------- /Controllers/PinnedScoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/PinnedScoreController.cs -------------------------------------------------------------------------------- /Controllers/PlayerContextRefreshController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/PlayerContextRefreshController.cs -------------------------------------------------------------------------------- /Controllers/PlayerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/PlayerController.cs -------------------------------------------------------------------------------- /Controllers/PlayerRefreshController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/PlayerRefreshController.cs -------------------------------------------------------------------------------- /Controllers/PlayerScoresController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/PlayerScoresController.cs -------------------------------------------------------------------------------- /Controllers/PlaylistController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/PlaylistController.cs -------------------------------------------------------------------------------- /Controllers/PreviewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/PreviewController.cs -------------------------------------------------------------------------------- /Controllers/RankController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/RankController.cs -------------------------------------------------------------------------------- /Controllers/ReeSabersPresetsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ReeSabersPresetsController.cs -------------------------------------------------------------------------------- /Controllers/ReplayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ReplayController.cs -------------------------------------------------------------------------------- /Controllers/ReweightController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ReweightController.cs -------------------------------------------------------------------------------- /Controllers/ScoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ScoreController.cs -------------------------------------------------------------------------------- /Controllers/ScoreRefreshController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ScoreRefreshController.cs -------------------------------------------------------------------------------- /Controllers/ScoresController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ScoresController.cs -------------------------------------------------------------------------------- /Controllers/SocialsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/SocialsController.cs -------------------------------------------------------------------------------- /Controllers/SocketController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/SocketController.cs -------------------------------------------------------------------------------- /Controllers/SongController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/SongController.cs -------------------------------------------------------------------------------- /Controllers/SongSuggestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/SongSuggestController.cs -------------------------------------------------------------------------------- /Controllers/SpeedrunController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/SpeedrunController.cs -------------------------------------------------------------------------------- /Controllers/StatsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/StatsController.cs -------------------------------------------------------------------------------- /Controllers/SuggestionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/SuggestionsController.cs -------------------------------------------------------------------------------- /Controllers/UnicodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/UnicodeController.cs -------------------------------------------------------------------------------- /Controllers/ValentineController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/ValentineController.cs -------------------------------------------------------------------------------- /Controllers/WatermarkManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Controllers/WatermarkManagementController.cs -------------------------------------------------------------------------------- /EmbedGenerator/EmbedGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/EmbedGenerator/EmbedGenerator.cs -------------------------------------------------------------------------------- /EmbedGenerator/EmbedLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/EmbedGenerator/EmbedLayout.cs -------------------------------------------------------------------------------- /EmbedGenerator/EmbedPixelShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/EmbedGenerator/EmbedPixelShader.cs -------------------------------------------------------------------------------- /EmbedGenerator/Utils/DrawingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/EmbedGenerator/Utils/DrawingUtils.cs -------------------------------------------------------------------------------- /EmbedGenerator/Utils/FloatColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/EmbedGenerator/Utils/FloatColor.cs -------------------------------------------------------------------------------- /EmbedGenerator/Utils/ImageTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/EmbedGenerator/Utils/ImageTexture.cs -------------------------------------------------------------------------------- /EmbedGenerator/Utils/LinearGradientTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/EmbedGenerator/Utils/LinearGradientTexture.cs -------------------------------------------------------------------------------- /EmbedGenerator/Utils/Matrix3x3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/EmbedGenerator/Utils/Matrix3x3.cs -------------------------------------------------------------------------------- /EmbedGenerator/Utils/RoundedRectangleTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/EmbedGenerator/Utils/RoundedRectangleTexture.cs -------------------------------------------------------------------------------- /Enums/CustomAuthClaims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Enums/CustomAuthClaims.cs -------------------------------------------------------------------------------- /Enums/MyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Enums/MyType.cs -------------------------------------------------------------------------------- /Enums/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Enums/Operation.cs -------------------------------------------------------------------------------- /Enums/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Enums/Order.cs -------------------------------------------------------------------------------- /Enums/RatingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Enums/RatingType.cs -------------------------------------------------------------------------------- /Enums/SortBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Enums/SortBy.cs -------------------------------------------------------------------------------- /Enums/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Enums/Type.cs -------------------------------------------------------------------------------- /Extensions/HttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/HttpContextExtensions.cs -------------------------------------------------------------------------------- /Extensions/HttpWebRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/HttpWebRequestExtensions.cs -------------------------------------------------------------------------------- /Extensions/JsonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/JsonExtensions.cs -------------------------------------------------------------------------------- /Extensions/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/LinqExtensions.cs -------------------------------------------------------------------------------- /Extensions/ModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/ModelExtensions.cs -------------------------------------------------------------------------------- /Extensions/ObjectToDictionaryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/ObjectToDictionaryHelper.cs -------------------------------------------------------------------------------- /Extensions/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /Extensions/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/StreamExtensions.cs -------------------------------------------------------------------------------- /Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /Extensions/TimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Extensions/TimeExtensions.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Migrations/20220219120259_InitialDb.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220219120259_InitialDb.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220219120259_InitialDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220219120259_InitialDb.cs -------------------------------------------------------------------------------- /Migrations/20220228125623_OculusAuth.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220228125623_OculusAuth.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220228125623_OculusAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220228125623_OculusAuth.cs -------------------------------------------------------------------------------- /Migrations/20220306224446_OculusAuthDumb.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220306224446_OculusAuthDumb.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220306224446_OculusAuthDumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220306224446_OculusAuthDumb.cs -------------------------------------------------------------------------------- /Migrations/20220307150636_AuthIps.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220307150636_AuthIps.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220307150636_AuthIps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220307150636_AuthIps.cs -------------------------------------------------------------------------------- /Migrations/20220310173139_AccountLink.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220310173139_AccountLink.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220310173139_AccountLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220310173139_AccountLink.cs -------------------------------------------------------------------------------- /Migrations/20220314002611_HistoriesTimestamp.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220314002611_HistoriesTimestamp.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220314002611_HistoriesTimestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220314002611_HistoriesTimestamp.cs -------------------------------------------------------------------------------- /Migrations/20220317160314_ScoreStatistic.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220317160314_ScoreStatistic.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220317160314_ScoreStatistic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220317160314_ScoreStatistic.cs -------------------------------------------------------------------------------- /Migrations/20220318160413_JDAndSteamData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220318160413_JDAndSteamData.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220318160413_JDAndSteamData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220318160413_JDAndSteamData.cs -------------------------------------------------------------------------------- /Migrations/20220401233930_Badges.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220401233930_Badges.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220401233930_Badges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220401233930_Badges.cs -------------------------------------------------------------------------------- /Migrations/20220405205401_AuthIds.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220405205401_AuthIds.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220405205401_AuthIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220405205401_AuthIds.cs -------------------------------------------------------------------------------- /Migrations/20220408184646_ScoreError.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220408184646_ScoreError.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220408184646_ScoreError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220408184646_ScoreError.cs -------------------------------------------------------------------------------- /Migrations/20220412213944_StatisticHistory.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220412213944_StatisticHistory.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220412213944_StatisticHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220412213944_StatisticHistory.cs -------------------------------------------------------------------------------- /Migrations/20220413163357_CountryChange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220413163357_CountryChange.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220413163357_CountryChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220413163357_CountryChange.cs -------------------------------------------------------------------------------- /Migrations/20220415140206_CountryChange2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220415140206_CountryChange2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220415140206_CountryChange2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220415140206_CountryChange2.cs -------------------------------------------------------------------------------- /Migrations/20220419002615_FriendsAndClans.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220419002615_FriendsAndClans.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220419002615_FriendsAndClans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220419002615_FriendsAndClans.cs -------------------------------------------------------------------------------- /Migrations/20220420231420_CustomModsAndDailyImprovements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220420231420_CustomModsAndDailyImprovements.cs -------------------------------------------------------------------------------- /Migrations/20220427211908_MaxScoreForSong.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220427211908_MaxScoreForSong.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220427211908_MaxScoreForSong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220427211908_MaxScoreForSong.cs -------------------------------------------------------------------------------- /Migrations/20220429145938_LoginAttempts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220429145938_LoginAttempts.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220429145938_LoginAttempts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220429145938_LoginAttempts.cs -------------------------------------------------------------------------------- /Migrations/20220502100716_LinkRequest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220502100716_LinkRequest.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220502100716_LinkRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220502100716_LinkRequest.cs -------------------------------------------------------------------------------- /Migrations/20220509000948_ClanFixes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220509000948_ClanFixes.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220509000948_ClanFixes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220509000948_ClanFixes.cs -------------------------------------------------------------------------------- /Migrations/20220512112035_FriendsFixes1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220512112035_FriendsFixes1.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220512112035_FriendsFixes1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220512112035_FriendsFixes1.cs -------------------------------------------------------------------------------- /Migrations/20220512112529_FriendsFixes2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220512112529_FriendsFixes2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220512112529_FriendsFixes2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220512112529_FriendsFixes2.cs -------------------------------------------------------------------------------- /Migrations/20220512230702_Patreon.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220512230702_Patreon.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220512230702_Patreon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220512230702_Patreon.cs -------------------------------------------------------------------------------- /Migrations/20220513102909_ClanMoreInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220513102909_ClanMoreInfo.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220513102909_ClanMoreInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220513102909_ClanMoreInfo.cs -------------------------------------------------------------------------------- /Migrations/20220519104041_Timepost.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220519104041_Timepost.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220519104041_Timepost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220519104041_Timepost.cs -------------------------------------------------------------------------------- /Migrations/20220520154806_PatreonFeatures.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220520154806_PatreonFeatures.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220520154806_PatreonFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220520154806_PatreonFeatures.cs -------------------------------------------------------------------------------- /Migrations/20220525175700_ReservedTags.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220525175700_ReservedTags.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220525175700_ReservedTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220525175700_ReservedTags.cs -------------------------------------------------------------------------------- /Migrations/20220620172245_Ban.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220620172245_Ban.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220620172245_Ban.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220620172245_Ban.cs -------------------------------------------------------------------------------- /Migrations/20220622140902_LoginChanges.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220622140902_LoginChanges.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220622140902_LoginChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220622140902_LoginChanges.cs -------------------------------------------------------------------------------- /Migrations/20220622141746_ScoreImprovements.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220622141746_ScoreImprovements.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220622141746_ScoreImprovements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220622141746_ScoreImprovements.cs -------------------------------------------------------------------------------- /Migrations/20220622184918_YoinkOPAv1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220622184918_YoinkOPAv1.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220622184918_YoinkOPAv1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220622184918_YoinkOPAv1.cs -------------------------------------------------------------------------------- /Migrations/20220626164015_AverageRank.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220626164015_AverageRank.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220626164015_AverageRank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220626164015_AverageRank.cs -------------------------------------------------------------------------------- /Migrations/20220628232302_RankVoting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220628232302_RankVoting.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220628232302_RankVoting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220628232302_RankVoting.cs -------------------------------------------------------------------------------- /Migrations/20220706211144_ScoreImprovements2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220706211144_ScoreImprovements2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220706211144_ScoreImprovements2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220706211144_ScoreImprovements2.cs -------------------------------------------------------------------------------- /Migrations/20220715202354_OculusID.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220715202354_OculusID.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220715202354_OculusID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220715202354_OculusID.cs -------------------------------------------------------------------------------- /Migrations/20220720212852_BonusPP.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220720212852_BonusPP.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220720212852_BonusPP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220720212852_BonusPP.cs -------------------------------------------------------------------------------- /Migrations/20220721094204_RankChange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220721094204_RankChange.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220721094204_RankChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220721094204_RankChange.cs -------------------------------------------------------------------------------- /Migrations/20220727192736_Qualification.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220727192736_Qualification.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220727192736_Qualification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220727192736_Qualification.cs -------------------------------------------------------------------------------- /Migrations/20220730190959_MorePlayerStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220730190959_MorePlayerStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220730190959_MorePlayerStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220730190959_MorePlayerStats.cs -------------------------------------------------------------------------------- /Migrations/20220801201649_LeaderboardStatistic.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220801201649_LeaderboardStatistic.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220801201649_LeaderboardStatistic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220801201649_LeaderboardStatistic.cs -------------------------------------------------------------------------------- /Migrations/20220802134910_BeatSaver.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220802134910_BeatSaver.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220802134910_BeatSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220802134910_BeatSaver.cs -------------------------------------------------------------------------------- /Migrations/20220805012928_QualificationUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220805012928_QualificationUpdate.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220805012928_QualificationUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220805012928_QualificationUpdate.cs -------------------------------------------------------------------------------- /Migrations/20220807021629_ScoreRedirect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220807021629_ScoreRedirect.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220807021629_ScoreRedirect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220807021629_ScoreRedirect.cs -------------------------------------------------------------------------------- /Migrations/20220808011956_QualificationUpdate1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220808011956_QualificationUpdate1.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220808011956_QualificationUpdate1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220808011956_QualificationUpdate1.cs -------------------------------------------------------------------------------- /Migrations/20220809230804_QualificationUpdate2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220809230804_QualificationUpdate2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220809230804_QualificationUpdate2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220809230804_QualificationUpdate2.cs -------------------------------------------------------------------------------- /Migrations/20220811135256_QualificationChanges.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220811135256_QualificationChanges.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220811135256_QualificationChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220811135256_QualificationChanges.cs -------------------------------------------------------------------------------- /Migrations/20220818032737_DiffStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220818032737_DiffStatus.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220818032737_DiffStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220818032737_DiffStatus.cs -------------------------------------------------------------------------------- /Migrations/20220818122908_LastScoreTime.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220818122908_LastScoreTime.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220818122908_LastScoreTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220818122908_LastScoreTime.cs -------------------------------------------------------------------------------- /Migrations/20220819164953_Events.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220819164953_Events.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220819164953_Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220819164953_Events.cs -------------------------------------------------------------------------------- /Migrations/20220820165848_SongUpdateTime.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220820165848_SongUpdateTime.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220820165848_SongUpdateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220820165848_SongUpdateTime.cs -------------------------------------------------------------------------------- /Migrations/20220820195703_SongIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220820195703_SongIndex.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220820195703_SongIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220820195703_SongIndex.cs -------------------------------------------------------------------------------- /Migrations/20220823165347_Socials.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220823165347_Socials.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220823165347_Socials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220823165347_Socials.cs -------------------------------------------------------------------------------- /Migrations/20220828123545_ModifiersAndPins.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220828123545_ModifiersAndPins.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220828123545_ModifiersAndPins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220828123545_ModifiersAndPins.cs -------------------------------------------------------------------------------- /Migrations/20220830151114_YoutubeLinks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220830151114_YoutubeLinks.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220830151114_YoutubeLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220830151114_YoutubeLinks.cs -------------------------------------------------------------------------------- /Migrations/20220901183813_CommentaryUpdatesAndBadgeLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220901183813_CommentaryUpdatesAndBadgeLinks.cs -------------------------------------------------------------------------------- /Migrations/20220903223402_Reweights.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220903223402_Reweights.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220903223402_Reweights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220903223402_Reweights.cs -------------------------------------------------------------------------------- /Migrations/20220905235935_Cleanups.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220905235935_Cleanups.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220905235935_Cleanups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220905235935_Cleanups.cs -------------------------------------------------------------------------------- /Migrations/20220907154921_LeaderboardChanges.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220907154921_LeaderboardChanges.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220907154921_LeaderboardChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220907154921_LeaderboardChanges.cs -------------------------------------------------------------------------------- /Migrations/20220907163810_LeaderboardChanges2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220907163810_LeaderboardChanges2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220907163810_LeaderboardChanges2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220907163810_LeaderboardChanges2.cs -------------------------------------------------------------------------------- /Migrations/20220911205658_MapperApproval.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220911205658_MapperApproval.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220911205658_MapperApproval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220911205658_MapperApproval.cs -------------------------------------------------------------------------------- /Migrations/20220913210211_StatisticMigrations.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220913210211_StatisticMigrations.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220913210211_StatisticMigrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220913210211_StatisticMigrations.cs -------------------------------------------------------------------------------- /Migrations/20220914120212_StatisticMigrations2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220914120212_StatisticMigrations2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220914120212_StatisticMigrations2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220914120212_StatisticMigrations2.cs -------------------------------------------------------------------------------- /Migrations/20220915131813_QualificationModifiers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220915131813_QualificationModifiers.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220915131813_QualificationModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220915131813_QualificationModifiers.cs -------------------------------------------------------------------------------- /Migrations/20220916135955_EventPlayerEventName.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220916135955_EventPlayerEventName.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220916135955_EventPlayerEventName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220916135955_EventPlayerEventName.cs -------------------------------------------------------------------------------- /Migrations/20220916143150_StrictAngles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220916143150_StrictAngles.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220916143150_StrictAngles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220916143150_StrictAngles.cs -------------------------------------------------------------------------------- /Migrations/20220922210040_WeightedAcc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220922210040_WeightedAcc.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220922210040_WeightedAcc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220922210040_WeightedAcc.cs -------------------------------------------------------------------------------- /Migrations/20220924180606_ProfileSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220924180606_ProfileSettings.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220924180606_ProfileSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220924180606_ProfileSettings.cs -------------------------------------------------------------------------------- /Migrations/20220927161329_PlayerChanges.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220927161329_PlayerChanges.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220927161329_PlayerChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220927161329_PlayerChanges.cs -------------------------------------------------------------------------------- /Migrations/20220927174856_PlayerChanges2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220927174856_PlayerChanges2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220927174856_PlayerChanges2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220927174856_PlayerChanges2.cs -------------------------------------------------------------------------------- /Migrations/20220927175221_PlayerChanges3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220927175221_PlayerChanges3.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220927175221_PlayerChanges3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220927175221_PlayerChanges3.cs -------------------------------------------------------------------------------- /Migrations/20220929232206_WatchAndPlayedStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220929232206_WatchAndPlayedStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20220929232206_WatchAndPlayedStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20220929232206_WatchAndPlayedStats.cs -------------------------------------------------------------------------------- /Migrations/20221002141427_YeetApproval.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221002141427_YeetApproval.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221002141427_YeetApproval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221002141427_YeetApproval.cs -------------------------------------------------------------------------------- /Migrations/20221004180500_VotesInLeaderboard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221004180500_VotesInLeaderboard.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221004180500_VotesInLeaderboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221004180500_VotesInLeaderboard.cs -------------------------------------------------------------------------------- /Migrations/20221009222414_AverageWeightedRankedRank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221009222414_AverageWeightedRankedRank.cs -------------------------------------------------------------------------------- /Migrations/20221010191544_ScoreStatsReplay.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221010191544_ScoreStatsReplay.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221010191544_ScoreStatsReplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221010191544_ScoreStatsReplay.cs -------------------------------------------------------------------------------- /Migrations/20221010223853_ScoreStatsScore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221010223853_ScoreStatsScore.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221010223853_ScoreStatsScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221010223853_ScoreStatsScore.cs -------------------------------------------------------------------------------- /Migrations/20221011222927_Headsets.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221011222927_Headsets.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221011222927_Headsets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221011222927_Headsets.cs -------------------------------------------------------------------------------- /Migrations/20221016134441_WatchingStatsFixes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221016134441_WatchingStatsFixes.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221016134441_WatchingStatsFixes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221016134441_WatchingStatsFixes.cs -------------------------------------------------------------------------------- /Migrations/20221018211646_ScoreCountry.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221018211646_ScoreCountry.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221018211646_ScoreCountry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221018211646_ScoreCountry.cs -------------------------------------------------------------------------------- /Migrations/20221027175120_ScoresIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221027175120_ScoresIndex.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221027175120_ScoresIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221027175120_ScoresIndex.cs -------------------------------------------------------------------------------- /Migrations/20221030163028_Uinttotalscore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221030163028_Uinttotalscore.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221030163028_Uinttotalscore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221030163028_Uinttotalscore.cs -------------------------------------------------------------------------------- /Migrations/20221031155944_History2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221031155944_History2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221031155944_History2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221031155944_History2.cs -------------------------------------------------------------------------------- /Migrations/20221102041729_LastWeekStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221102041729_LastWeekStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221102041729_LastWeekStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221102041729_LastWeekStats.cs -------------------------------------------------------------------------------- /Migrations/20221102185211_LastWeekStats2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221102185211_LastWeekStats2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221102185211_LastWeekStats2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221102185211_LastWeekStats2.cs -------------------------------------------------------------------------------- /Migrations/20221107022608_OptionalLeaderboard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221107022608_OptionalLeaderboard.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221107022608_OptionalLeaderboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221107022608_OptionalLeaderboard.cs -------------------------------------------------------------------------------- /Migrations/20221120220208_VRControllers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221120220208_VRControllers.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221120220208_VRControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221120220208_VRControllers.cs -------------------------------------------------------------------------------- /Migrations/20221123070723_MaxComboAndControllers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221123070723_MaxComboAndControllers.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221123070723_MaxComboAndControllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221123070723_MaxComboAndControllers.cs -------------------------------------------------------------------------------- /Migrations/20221124040647_LeaderboardGroups.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221124040647_LeaderboardGroups.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221124040647_LeaderboardGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221124040647_LeaderboardGroups.cs -------------------------------------------------------------------------------- /Migrations/20221126070918_DurationInDifficulty.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221126070918_DurationInDifficulty.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221126070918_DurationInDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221126070918_DurationInDifficulty.cs -------------------------------------------------------------------------------- /Migrations/20221130101051_FCStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221130101051_FCStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221130101051_FCStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221130101051_FCStats.cs -------------------------------------------------------------------------------- /Migrations/20221206115501_RevertLBOptionality.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221206115501_RevertLBOptionality.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221206115501_RevertLBOptionality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221206115501_RevertLBOptionality.cs -------------------------------------------------------------------------------- /Migrations/20221225181154_RemoveHistories.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221225181154_RemoveHistories.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221225181154_RemoveHistories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221225181154_RemoveHistories.cs -------------------------------------------------------------------------------- /Migrations/20221227090306_TimingInScore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221227090306_TimingInScore.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221227090306_TimingInScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221227090306_TimingInScore.cs -------------------------------------------------------------------------------- /Migrations/20221227144339_IgnoreForStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221227144339_IgnoreForStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221227144339_IgnoreForStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221227144339_IgnoreForStats.cs -------------------------------------------------------------------------------- /Migrations/20221228124806_TimesetMigration1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221228124806_TimesetMigration1.Designer.cs -------------------------------------------------------------------------------- /Migrations/20221228124806_TimesetMigration1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20221228124806_TimesetMigration1.cs -------------------------------------------------------------------------------- /Migrations/20230116181132_MaxStreakInStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230116181132_MaxStreakInStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230116181132_MaxStreakInStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230116181132_MaxStreakInStats.cs -------------------------------------------------------------------------------- /Migrations/20230204071510_ProfileCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230204071510_ProfileCover.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230204071510_ProfileCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230204071510_ProfileCover.cs -------------------------------------------------------------------------------- /Migrations/20230207232205_NoReplayInStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230207232205_NoReplayInStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230207232205_NoReplayInStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230207232205_NoReplayInStats.cs -------------------------------------------------------------------------------- /Migrations/20230208135601_ScorePlayCount.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230208135601_ScorePlayCount.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230208135601_ScorePlayCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230208135601_ScorePlayCount.cs -------------------------------------------------------------------------------- /Migrations/20230212053449_CountryChangeBan.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230212053449_CountryChangeBan.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230212053449_CountryChangeBan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230212053449_CountryChangeBan.cs -------------------------------------------------------------------------------- /Migrations/20230212093429_QualificationCommentary.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230212093429_QualificationCommentary.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230212093429_QualificationCommentary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230212093429_QualificationCommentary.cs -------------------------------------------------------------------------------- /Migrations/20230215135549_NominationsForum.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230215135549_NominationsForum.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230215135549_NominationsForum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230215135549_NominationsForum.cs -------------------------------------------------------------------------------- /Migrations/20230216063255_DiscordSocials.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230216063255_DiscordSocials.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230216063255_DiscordSocials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230216063255_DiscordSocials.cs -------------------------------------------------------------------------------- /Migrations/20230216175920_NominationsForum2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230216175920_NominationsForum2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230216175920_NominationsForum2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230216175920_NominationsForum2.cs -------------------------------------------------------------------------------- /Migrations/20230219111621_QualityVoting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230219111621_QualityVoting.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230219111621_QualityVoting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230219111621_QualityVoting.cs -------------------------------------------------------------------------------- /Migrations/20230219155301_QualityVoting2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230219155301_QualityVoting2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230219155301_QualityVoting2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230219155301_QualityVoting2.cs -------------------------------------------------------------------------------- /Migrations/20230220191750_MigrationStringID.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230220191750_MigrationStringID.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230220191750_MigrationStringID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230220191750_MigrationStringID.cs -------------------------------------------------------------------------------- /Migrations/20230222130155_MapRequirements.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230222130155_MapRequirements.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230222130155_MapRequirements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230222130155_MapRequirements.cs -------------------------------------------------------------------------------- /Migrations/20230223141005_OPModifier.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230223141005_OPModifier.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230223141005_OPModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230223141005_OPModifier.cs -------------------------------------------------------------------------------- /Migrations/20230226213841_SongChecked.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230226213841_SongChecked.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230226213841_SongChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230226213841_SongChecked.cs -------------------------------------------------------------------------------- /Migrations/20230306182250_Indexes1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230306182250_Indexes1.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230306182250_Indexes1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230306182250_Indexes1.cs -------------------------------------------------------------------------------- /Migrations/20230308013908_CriteriaComments.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230308013908_CriteriaComments.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230308013908_CriteriaComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230308013908_CriteriaComments.cs -------------------------------------------------------------------------------- /Migrations/20230311213449_StarredFriends.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230311213449_StarredFriends.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230311213449_StarredFriends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230311213449_StarredFriends.cs -------------------------------------------------------------------------------- /Migrations/20230314030705_VoteMessageToRT.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230314030705_VoteMessageToRT.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230314030705_VoteMessageToRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230314030705_VoteMessageToRT.cs -------------------------------------------------------------------------------- /Migrations/20230322034917_NewRanking.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230322034917_NewRanking.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230322034917_NewRanking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230322034917_NewRanking.cs -------------------------------------------------------------------------------- /Migrations/20230327091712_QualificationUpdate5.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230327091712_QualificationUpdate5.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230327091712_QualificationUpdate5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230327091712_QualificationUpdate5.cs -------------------------------------------------------------------------------- /Migrations/20230329135938_Oauth.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230329135938_Oauth.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230329135938_Oauth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230329135938_Oauth.cs -------------------------------------------------------------------------------- /Migrations/20230404165719_ModifiersStars.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230404165719_ModifiersStars.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230404165719_ModifiersStars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230404165719_ModifiersStars.cs -------------------------------------------------------------------------------- /Migrations/20230408154236_TopPPTypes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230408154236_TopPPTypes.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230408154236_TopPPTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230408154236_TopPPTypes.cs -------------------------------------------------------------------------------- /Migrations/20230415050327_Achievements1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230415050327_Achievements1.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230415050327_Achievements1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230415050327_Achievements1.cs -------------------------------------------------------------------------------- /Migrations/20230508144808_FullSongCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230508144808_FullSongCover.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230508144808_FullSongCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230508144808_FullSongCover.cs -------------------------------------------------------------------------------- /Migrations/20230601110655_BotPlayers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230601110655_BotPlayers.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230601110655_BotPlayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230601110655_BotPlayers.cs -------------------------------------------------------------------------------- /Migrations/20230618205050_ModifierRatingChanges.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230618205050_ModifierRatingChanges.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230618205050_ModifierRatingChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230618205050_ModifierRatingChanges.cs -------------------------------------------------------------------------------- /Migrations/20230623051326_ShowAllRatingsSetting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230623051326_ShowAllRatingsSetting.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230623051326_ShowAllRatingsSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230623051326_ShowAllRatingsSetting.cs -------------------------------------------------------------------------------- /Migrations/20230626112920_ReplayLinkInStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230626112920_ReplayLinkInStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230626112920_ReplayLinkInStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230626112920_ReplayLinkInStats.cs -------------------------------------------------------------------------------- /Migrations/20230705180619_ScorePriorityField.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230705180619_ScorePriorityField.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230705180619_ScorePriorityField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230705180619_ScorePriorityField.cs -------------------------------------------------------------------------------- /Migrations/20230706200331_SongSearchRecords.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230706200331_SongSearchRecords.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230706200331_SongSearchRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230706200331_SongSearchRecords.cs -------------------------------------------------------------------------------- /Migrations/20230712140945_NullableMaxStreak.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230712140945_NullableMaxStreak.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230712140945_NullableMaxStreak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230712140945_NullableMaxStreak.cs -------------------------------------------------------------------------------- /Migrations/20230720221915_FalsePositiveFailedScores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230720221915_FalsePositiveFailedScores.cs -------------------------------------------------------------------------------- /Migrations/20230725125105_Top1ScoreCount.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230725125105_Top1ScoreCount.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230725125105_Top1ScoreCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230725125105_Top1ScoreCount.cs -------------------------------------------------------------------------------- /Migrations/20230731122655_ImprovementsInStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230731122655_ImprovementsInStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230731122655_ImprovementsInStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230731122655_ImprovementsInStats.cs -------------------------------------------------------------------------------- /Migrations/20230802163359_AttemptsExpansion.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230802163359_AttemptsExpansion.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230802163359_AttemptsExpansion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230802163359_AttemptsExpansion.cs -------------------------------------------------------------------------------- /Migrations/20230817030830_BadgesTimeset.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230817030830_BadgesTimeset.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230817030830_BadgesTimeset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230817030830_BadgesTimeset.cs -------------------------------------------------------------------------------- /Migrations/20230827120615_ClanOrder.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230827120615_ClanOrder.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230827120615_ClanOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230827120615_ClanOrder.cs -------------------------------------------------------------------------------- /Migrations/20230913150644_Contexts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230913150644_Contexts.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230913150644_Contexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230913150644_Contexts.cs -------------------------------------------------------------------------------- /Migrations/20230918141047_ClanRankings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230918141047_ClanRankings.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230918141047_ClanRankings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230918141047_ClanRankings.cs -------------------------------------------------------------------------------- /Migrations/20230920215027_ClanCapturedBoards.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230920215027_ClanCapturedBoards.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230920215027_ClanCapturedBoards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230920215027_ClanCapturedBoards.cs -------------------------------------------------------------------------------- /Migrations/20230921145831_ContextsBannedBool.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230921145831_ContextsBannedBool.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230921145831_ContextsBannedBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230921145831_ContextsBannedBool.cs -------------------------------------------------------------------------------- /Migrations/20230926224830_PlaylistHash.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230926224830_PlaylistHash.Designer.cs -------------------------------------------------------------------------------- /Migrations/20230926224830_PlaylistHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20230926224830_PlaylistHash.cs -------------------------------------------------------------------------------- /Migrations/20231002084004_PinnedScoresContexts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231002084004_PinnedScoresContexts.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231002084004_PinnedScoresContexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231002084004_PinnedScoresContexts.cs -------------------------------------------------------------------------------- /Migrations/20231003041726_PinnedScoresContexts2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231003041726_PinnedScoresContexts2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231003041726_PinnedScoresContexts2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231003041726_PinnedScoresContexts2.cs -------------------------------------------------------------------------------- /Migrations/20231013223520_ContextScoresImprovements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231013223520_ContextScoresImprovements.cs -------------------------------------------------------------------------------- /Migrations/20231114123807_SongSuggest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231114123807_SongSuggest.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231114123807_SongSuggest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231114123807_SongSuggest.cs -------------------------------------------------------------------------------- /Migrations/20231119205151_RatingsRefresh.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231119205151_RatingsRefresh.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231119205151_RatingsRefresh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231119205151_RatingsRefresh.cs -------------------------------------------------------------------------------- /Migrations/20231122141058_DeveloperProfiles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231122141058_DeveloperProfiles.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231122141058_DeveloperProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231122141058_DeveloperProfiles.cs -------------------------------------------------------------------------------- /Migrations/20231126150612_CuratedMaps.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231126150612_CuratedMaps.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231126150612_CuratedMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231126150612_CuratedMaps.cs -------------------------------------------------------------------------------- /Migrations/20231126152759_TimepostIndexRecreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231126152759_TimepostIndexRecreate.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231126152759_TimepostIndexRecreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231126152759_TimepostIndexRecreate.cs -------------------------------------------------------------------------------- /Migrations/20231127193052_CuratedMaps2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231127193052_CuratedMaps2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231127193052_CuratedMaps2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231127193052_CuratedMaps2.cs -------------------------------------------------------------------------------- /Migrations/20231214150902_ReePresets.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231214150902_ReePresets.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231214150902_ReePresets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231214150902_ReePresets.cs -------------------------------------------------------------------------------- /Migrations/20231220153824_ReePresets2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231220153824_ReePresets2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231220153824_ReePresets2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231220153824_ReePresets2.cs -------------------------------------------------------------------------------- /Migrations/20231220172955_ReePresets3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231220172955_ReePresets3.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231220172955_ReePresets3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231220172955_ReePresets3.cs -------------------------------------------------------------------------------- /Migrations/20231226143403_SongSuggestCacheSongs.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231226143403_SongSuggestCacheSongs.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231226143403_SongSuggestCacheSongs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231226143403_SongSuggestCacheSongs.cs -------------------------------------------------------------------------------- /Migrations/20231229221441_OpenIddict5.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231229221441_OpenIddict5.Designer.cs -------------------------------------------------------------------------------- /Migrations/20231229221441_OpenIddict5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20231229221441_OpenIddict5.cs -------------------------------------------------------------------------------- /Migrations/20240102221915_ClansMap.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240102221915_ClansMap.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240102221915_ClansMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240102221915_ClansMap.cs -------------------------------------------------------------------------------- /Migrations/20240107011556_Indexes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240107011556_Indexes.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240107011556_Indexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240107011556_Indexes.cs -------------------------------------------------------------------------------- /Migrations/20240110144729_Indexes2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240110144729_Indexes2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240110144729_Indexes2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240110144729_Indexes2.cs -------------------------------------------------------------------------------- /Migrations/20240113155854_NewClanStuff.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240113155854_NewClanStuff.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240113155854_NewClanStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240113155854_NewClanStuff.cs -------------------------------------------------------------------------------- /Migrations/20240126133731_PlayerPercentiles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240126133731_PlayerPercentiles.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240126133731_PlayerPercentiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240126133731_PlayerPercentiles.cs -------------------------------------------------------------------------------- /Migrations/20240207220313_FeaturedPlaylist.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240207220313_FeaturedPlaylist.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240207220313_FeaturedPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240207220313_FeaturedPlaylist.cs -------------------------------------------------------------------------------- /Migrations/20240209202959_ClanOrderChanges.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240209202959_ClanOrderChanges.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240209202959_ClanOrderChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240209202959_ClanOrderChanges.cs -------------------------------------------------------------------------------- /Migrations/20240212172457_ClanManagers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240212172457_ClanManagers.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240212172457_ClanManagers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240212172457_ClanManagers.cs -------------------------------------------------------------------------------- /Migrations/20240213202037_Valentines.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240213202037_Valentines.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240213202037_Valentines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240213202037_Valentines.cs -------------------------------------------------------------------------------- /Migrations/20240224175448_PlaylistUpdates.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240224175448_PlaylistUpdates.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240224175448_PlaylistUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240224175448_PlaylistUpdates.cs -------------------------------------------------------------------------------- /Migrations/20240224224909_MapAwardsStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240224224909_MapAwardsStatus.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240224224909_MapAwardsStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240224224909_MapAwardsStatus.cs -------------------------------------------------------------------------------- /Migrations/20240225154428_FeaturedPlaylistDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240225154428_FeaturedPlaylistDescription.cs -------------------------------------------------------------------------------- /Migrations/20240228225749_ClanDiscordInvite.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240228225749_ClanDiscordInvite.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240228225749_ClanDiscordInvite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240228225749_ClanDiscordInvite.cs -------------------------------------------------------------------------------- /Migrations/20240304125343_PlayerAndEventNameToEP.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240304125343_PlayerAndEventNameToEP.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240304125343_PlayerAndEventNameToEP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240304125343_PlayerAndEventNameToEP.cs -------------------------------------------------------------------------------- /Migrations/20240304175919_EventPlayerClean.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240304175919_EventPlayerClean.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240304175919_EventPlayerClean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240304175919_EventPlayerClean.cs -------------------------------------------------------------------------------- /Migrations/20240305000628_NewMapTags.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240305000628_NewMapTags.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240305000628_NewMapTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240305000628_NewMapTags.cs -------------------------------------------------------------------------------- /Migrations/20240306155650_HashPasswords.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240306155650_HashPasswords.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240306155650_HashPasswords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240306155650_HashPasswords.cs -------------------------------------------------------------------------------- /Migrations/20240307094507_PlayerBioTimeset.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240307094507_PlayerBioTimeset.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240307094507_PlayerBioTimeset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240307094507_PlayerBioTimeset.cs -------------------------------------------------------------------------------- /Migrations/20240318220546_WhyINamedItLikeThis.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240318220546_WhyINamedItLikeThis.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240318220546_WhyINamedItLikeThis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240318220546_WhyINamedItLikeThis.cs -------------------------------------------------------------------------------- /Migrations/20240328124905_UsernameChangesBan.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240328124905_UsernameChangesBan.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240328124905_UsernameChangesBan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240328124905_UsernameChangesBan.cs -------------------------------------------------------------------------------- /Migrations/20240417173356_WebpAvatarAndPartPPHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240417173356_WebpAvatarAndPartPPHistory.cs -------------------------------------------------------------------------------- /Migrations/20240424153040_PredictedLeaderboards.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240424153040_PredictedLeaderboards.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240424153040_PredictedLeaderboards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240424153040_PredictedLeaderboards.cs -------------------------------------------------------------------------------- /Migrations/20240425140134_MaxScoreGraph.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240425140134_MaxScoreGraph.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240425140134_MaxScoreGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240425140134_MaxScoreGraph.cs -------------------------------------------------------------------------------- /Migrations/20240429205851_PublicStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240429205851_PublicStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240429205851_PublicStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240429205851_PublicStats.cs -------------------------------------------------------------------------------- /Migrations/20240504224421_LastTryTime.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240504224421_LastTryTime.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240504224421_LastTryTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240504224421_LastTryTime.cs -------------------------------------------------------------------------------- /Migrations/20240513234449_PublicFollowersAliasesAndModders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240513234449_PublicFollowersAliasesAndModders.cs -------------------------------------------------------------------------------- /Migrations/20240514224410_AliasRequests.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240514224410_AliasRequests.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240514224410_AliasRequests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240514224410_AliasRequests.cs -------------------------------------------------------------------------------- /Migrations/20240514231241_ClanDBRichBioYeet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240514231241_ClanDBRichBioYeet.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240514231241_ClanDBRichBioYeet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240514231241_ClanDBRichBioYeet.cs -------------------------------------------------------------------------------- /Migrations/20240524222319_Speedruns.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240524222319_Speedruns.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240524222319_Speedruns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240524222319_Speedruns.cs -------------------------------------------------------------------------------- /Migrations/20240525174331_YeetTimepost.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240525174331_YeetTimepost.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240525174331_YeetTimepost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240525174331_YeetTimepost.cs -------------------------------------------------------------------------------- /Migrations/20240529142139_OtherReplaysIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240529142139_OtherReplaysIndex.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240529142139_OtherReplaysIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240529142139_OtherReplaysIndex.cs -------------------------------------------------------------------------------- /Migrations/20240607171751_PinnedScoresPlaysPrivacy.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240607171751_PinnedScoresPlaysPrivacy.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240607171751_PinnedScoresPlaysPrivacy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240607171751_PinnedScoresPlaysPrivacy.cs -------------------------------------------------------------------------------- /Migrations/20240614044212_HorizontalRichBio.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240614044212_HorizontalRichBio.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240614044212_HorizontalRichBio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240614044212_HorizontalRichBio.cs -------------------------------------------------------------------------------- /Migrations/20240622065856_SanitizationConfig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240622065856_SanitizationConfig.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240622065856_SanitizationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240622065856_SanitizationConfig.cs -------------------------------------------------------------------------------- /Migrations/20240623145057_RankedMapperSort.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240623145057_RankedMapperSort.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240623145057_RankedMapperSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240623145057_RankedMapperSort.cs -------------------------------------------------------------------------------- /Migrations/20240705224945_PlaylistsToInstall.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240705224945_PlaylistsToInstall.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240705224945_PlaylistsToInstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240705224945_PlaylistsToInstall.cs -------------------------------------------------------------------------------- /Migrations/20240706172017_ModVersions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240706172017_ModVersions.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240706172017_ModVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240706172017_ModVersions.cs -------------------------------------------------------------------------------- /Migrations/20240712181428_Week100.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240712181428_Week100.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240712181428_Week100.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240712181428_Week100.cs -------------------------------------------------------------------------------- /Migrations/20240712184538_Week100Filled.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240712184538_Week100Filled.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240712184538_Week100Filled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240712184538_Week100Filled.cs -------------------------------------------------------------------------------- /Migrations/20240719220513_GitHubOauth.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240719220513_GitHubOauth.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240719220513_GitHubOauth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240719220513_GitHubOauth.cs -------------------------------------------------------------------------------- /Migrations/20240726052924_IngameAvatars.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240726052924_IngameAvatars.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240726052924_IngameAvatars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240726052924_IngameAvatars.cs -------------------------------------------------------------------------------- /Migrations/20240728052923_Mappers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240728052923_Mappers.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240728052923_Mappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240728052923_Mappers.cs -------------------------------------------------------------------------------- /Migrations/20240730023419_MapperPlayers1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240730023419_MapperPlayers1.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240730023419_MapperPlayers1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240730023419_MapperPlayers1.cs -------------------------------------------------------------------------------- /Migrations/20240730034814_MapperPlayers2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240730034814_MapperPlayers2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240730034814_MapperPlayers2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240730034814_MapperPlayers2.cs -------------------------------------------------------------------------------- /Migrations/20240803203519_ModNews.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240803203519_ModNews.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240803203519_ModNews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240803203519_ModNews.cs -------------------------------------------------------------------------------- /Migrations/20240807232640_BeastiesNominations.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240807232640_BeastiesNominations.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240807232640_BeastiesNominations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240807232640_BeastiesNominations.cs -------------------------------------------------------------------------------- /Migrations/20240815094657_PlayerSearches.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240815094657_PlayerSearches.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240815094657_PlayerSearches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240815094657_PlayerSearches.cs -------------------------------------------------------------------------------- /Migrations/20240822132604_BetterSpeed.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240822132604_BetterSpeed.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240822132604_BetterSpeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240822132604_BetterSpeed.cs -------------------------------------------------------------------------------- /Migrations/20240827191617_ClanHistoryExtension.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240827191617_ClanHistoryExtension.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240827191617_ClanHistoryExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240827191617_ClanHistoryExtension.cs -------------------------------------------------------------------------------- /Migrations/20240830194315_ChainsInDiffs.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240830194315_ChainsInDiffs.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240830194315_ChainsInDiffs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240830194315_ChainsInDiffs.cs -------------------------------------------------------------------------------- /Migrations/20240831221248_Promotions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240831221248_Promotions.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240831221248_Promotions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240831221248_Promotions.cs -------------------------------------------------------------------------------- /Migrations/20240901203959_Promotions2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240901203959_Promotions2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240901203959_Promotions2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240901203959_Promotions2.cs -------------------------------------------------------------------------------- /Migrations/20240919135336_AllHMDsInStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240919135336_AllHMDsInStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240919135336_AllHMDsInStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240919135336_AllHMDsInStats.cs -------------------------------------------------------------------------------- /Migrations/20240923132513_HistoryMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240923132513_HistoryMigration.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240923132513_HistoryMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240923132513_HistoryMigration.cs -------------------------------------------------------------------------------- /Migrations/20240926131949_AttemptsMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240926131949_AttemptsMigration.Designer.cs -------------------------------------------------------------------------------- /Migrations/20240926131949_AttemptsMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20240926131949_AttemptsMigration.cs -------------------------------------------------------------------------------- /Migrations/20241018031127_FirstScoreTimes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241018031127_FirstScoreTimes.Designer.cs -------------------------------------------------------------------------------- /Migrations/20241018031127_FirstScoreTimes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241018031127_FirstScoreTimes.cs -------------------------------------------------------------------------------- /Migrations/20241030031902_ModifiersInImprovement.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241030031902_ModifiersInImprovement.Designer.cs -------------------------------------------------------------------------------- /Migrations/20241030031902_ModifiersInImprovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241030031902_ModifiersInImprovement.cs -------------------------------------------------------------------------------- /Migrations/20241112014515_AllContextsPp.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241112014515_AllContextsPp.Designer.cs -------------------------------------------------------------------------------- /Migrations/20241112014515_AllContextsPp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241112014515_AllContextsPp.cs -------------------------------------------------------------------------------- /Migrations/20241113110913_EventDescription.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241113110913_EventDescription.Designer.cs -------------------------------------------------------------------------------- /Migrations/20241113110913_EventDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241113110913_EventDescription.cs -------------------------------------------------------------------------------- /Migrations/20241125105638_SongStatusAndPlays.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241125105638_SongStatusAndPlays.Designer.cs -------------------------------------------------------------------------------- /Migrations/20241125105638_SongStatusAndPlays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241125105638_SongStatusAndPlays.cs -------------------------------------------------------------------------------- /Migrations/20241125142212_DifficulyDescriptionOptimization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241125142212_DifficulyDescriptionOptimization.cs -------------------------------------------------------------------------------- /Migrations/20241126073004_PlayerAliasOptimization.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241126073004_PlayerAliasOptimization.Designer.cs -------------------------------------------------------------------------------- /Migrations/20241126073004_PlayerAliasOptimization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241126073004_PlayerAliasOptimization.cs -------------------------------------------------------------------------------- /Migrations/20241126085629_ValidForGeneral.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241126085629_ValidForGeneral.Designer.cs -------------------------------------------------------------------------------- /Migrations/20241126085629_ValidForGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241126085629_ValidForGeneral.cs -------------------------------------------------------------------------------- /Migrations/20241218223940_Tree2024.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241218223940_Tree2024.Designer.cs -------------------------------------------------------------------------------- /Migrations/20241218223940_Tree2024.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241218223940_Tree2024.cs -------------------------------------------------------------------------------- /Migrations/20241220125037_ScoresIndexWithTimeset.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241220125037_ScoresIndexWithTimeset.Designer.cs -------------------------------------------------------------------------------- /Migrations/20241220125037_ScoresIndexWithTimeset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241220125037_ScoresIndexWithTimeset.cs -------------------------------------------------------------------------------- /Migrations/20241222005934_TreeChampions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241222005934_TreeChampions.Designer.cs -------------------------------------------------------------------------------- /Migrations/20241222005934_TreeChampions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241222005934_TreeChampions.cs -------------------------------------------------------------------------------- /Migrations/20241226120002_ScoresIndexWithLeaderboardId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20241226120002_ScoresIndexWithLeaderboardId.cs -------------------------------------------------------------------------------- /Migrations/20250105172157_SongExplicityStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250105172157_SongExplicityStatus.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250105172157_SongExplicityStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250105172157_SongExplicityStatus.cs -------------------------------------------------------------------------------- /Migrations/20250106221737_ExplicitCoversSetting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250106221737_ExplicitCoversSetting.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250106221737_ExplicitCoversSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250106221737_ExplicitCoversSetting.cs -------------------------------------------------------------------------------- /Migrations/20250108025047_SongUploadTimeIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250108025047_SongUploadTimeIndex.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250108025047_SongUploadTimeIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250108025047_SongUploadTimeIndex.cs -------------------------------------------------------------------------------- /Migrations/20250121054108_ModifiedStars.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250121054108_ModifiedStars.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250121054108_ModifiedStars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250121054108_ModifiedStars.cs -------------------------------------------------------------------------------- /Migrations/20250204183038_BotMappers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250204183038_BotMappers.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250204183038_BotMappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250204183038_BotMappers.cs -------------------------------------------------------------------------------- /Migrations/20250205194742_MapperStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250205194742_MapperStatus.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250205194742_MapperStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250205194742_MapperStatus.cs -------------------------------------------------------------------------------- /Migrations/20250212131112_HashId.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250212131112_HashId.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250212131112_HashId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250212131112_HashId.cs -------------------------------------------------------------------------------- /Migrations/20250304214345_SaberOffsetsAndCustomData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250304214345_SaberOffsetsAndCustomData.cs -------------------------------------------------------------------------------- /Migrations/20250314224041_IpBans.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250314224041_IpBans.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250314224041_IpBans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250314224041_IpBans.cs -------------------------------------------------------------------------------- /Migrations/20250320202254_MapCountFeaturedPlaylists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250320202254_MapCountFeaturedPlaylists.cs -------------------------------------------------------------------------------- /Migrations/20250406152727_LeaderboardLastScoreTime.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250406152727_LeaderboardLastScoreTime.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250406152727_LeaderboardLastScoreTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250406152727_LeaderboardLastScoreTime.cs -------------------------------------------------------------------------------- /Migrations/20250424183705_EarthDayMaps.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250424183705_EarthDayMaps.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250424183705_EarthDayMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250424183705_EarthDayMaps.cs -------------------------------------------------------------------------------- /Migrations/20250507005720_PlayerExperience.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250507005720_PlayerExperience.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250507005720_PlayerExperience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250507005720_PlayerExperience.cs -------------------------------------------------------------------------------- /Migrations/20250507151603_ScoreExperience.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250507151603_ScoreExperience.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250507151603_ScoreExperience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250507151603_ScoreExperience.cs -------------------------------------------------------------------------------- /Migrations/20250622202910_BlueSky.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250622202910_BlueSky.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250622202910_BlueSky.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250622202910_BlueSky.cs -------------------------------------------------------------------------------- /Migrations/20250626171548_WatermarkRequests.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250626171548_WatermarkRequests.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250626171548_WatermarkRequests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250626171548_WatermarkRequests.cs -------------------------------------------------------------------------------- /Migrations/20250701135524_ScoreNominations.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250701135524_ScoreNominations.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250701135524_ScoreNominations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250701135524_ScoreNominations.cs -------------------------------------------------------------------------------- /Migrations/20250708121615_ReplayWatchedTotal.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250708121615_ReplayWatchedTotal.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250708121615_ReplayWatchedTotal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250708121615_ReplayWatchedTotal.cs -------------------------------------------------------------------------------- /Migrations/20250708130541_ScoreMistakes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250708130541_ScoreMistakes.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250708130541_ScoreMistakes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250708130541_ScoreMistakes.cs -------------------------------------------------------------------------------- /Migrations/20250710200741_Playtimes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250710200741_Playtimes.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250710200741_Playtimes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250710200741_Playtimes.cs -------------------------------------------------------------------------------- /Migrations/20250805172954_BadgePriority.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250805172954_BadgePriority.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250805172954_BadgePriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250805172954_BadgePriority.cs -------------------------------------------------------------------------------- /Migrations/20250806173028_MapBools.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250806173028_MapBools.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250806173028_MapBools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250806173028_MapBools.cs -------------------------------------------------------------------------------- /Migrations/20250808165601_TempPlayers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250808165601_TempPlayers.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250808165601_TempPlayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250808165601_TempPlayers.cs -------------------------------------------------------------------------------- /Migrations/20250816174307_ReeSabersDownloads.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250816174307_ReeSabersDownloads.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250816174307_ReeSabersDownloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250816174307_ReeSabersDownloads.cs -------------------------------------------------------------------------------- /Migrations/20250923151338_MOTDEvents.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250923151338_MOTDEvents.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250923151338_MOTDEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250923151338_MOTDEvents.cs -------------------------------------------------------------------------------- /Migrations/20250925085011_MOTDEventsPlayers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250925085011_MOTDEventsPlayers.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250925085011_MOTDEventsPlayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250925085011_MOTDEventsPlayers.cs -------------------------------------------------------------------------------- /Migrations/20250926093532_MOTDEventsColors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250926093532_MOTDEventsColors.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250926093532_MOTDEventsColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250926093532_MOTDEventsColors.cs -------------------------------------------------------------------------------- /Migrations/20250928113318_MOTDScheduledMaps.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250928113318_MOTDScheduledMaps.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250928113318_MOTDScheduledMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250928113318_MOTDScheduledMaps.cs -------------------------------------------------------------------------------- /Migrations/20250928150423_MOTDEventsPlayers2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250928150423_MOTDEventsPlayers2.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250928150423_MOTDEventsPlayers2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250928150423_MOTDEventsPlayers2.cs -------------------------------------------------------------------------------- /Migrations/20250930095917_MOTDEventsPoints.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250930095917_MOTDEventsPoints.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250930095917_MOTDEventsPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250930095917_MOTDEventsPoints.cs -------------------------------------------------------------------------------- /Migrations/20250930102546_MOTDEventsVideoUrls.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250930102546_MOTDEventsVideoUrls.Designer.cs -------------------------------------------------------------------------------- /Migrations/20250930102546_MOTDEventsVideoUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20250930102546_MOTDEventsVideoUrls.cs -------------------------------------------------------------------------------- /Migrations/20251001100348_MOTDEventsFeatured.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20251001100348_MOTDEventsFeatured.Designer.cs -------------------------------------------------------------------------------- /Migrations/20251001100348_MOTDEventsFeatured.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20251001100348_MOTDEventsFeatured.cs -------------------------------------------------------------------------------- /Migrations/20251026020106_MainClan.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20251026020106_MainClan.Designer.cs -------------------------------------------------------------------------------- /Migrations/20251026020106_MainClan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/20251026020106_MainClan.cs -------------------------------------------------------------------------------- /Migrations/AppContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/AppContextModelSnapshot.cs -------------------------------------------------------------------------------- /Migrations/Storage/20240920225246_History.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20240920225246_History.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20240920225246_History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20240920225246_History.cs -------------------------------------------------------------------------------- /Migrations/Storage/20240923130509_HistoryIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20240923130509_HistoryIndex.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20240923130509_HistoryIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20240923130509_HistoryIndex.cs -------------------------------------------------------------------------------- /Migrations/Storage/20240923215752_LeaderboardStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20240923215752_LeaderboardStats.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20240923215752_LeaderboardStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20240923215752_LeaderboardStats.cs -------------------------------------------------------------------------------- /Migrations/Storage/20240925132627_LeaderboardStatsIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20240925132627_LeaderboardStatsIndex.cs -------------------------------------------------------------------------------- /Migrations/Storage/20240930143908_AttemptsCount.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20240930143908_AttemptsCount.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20240930143908_AttemptsCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20240930143908_AttemptsCount.cs -------------------------------------------------------------------------------- /Migrations/Storage/20241004023415_StartTime.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20241004023415_StartTime.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20241004023415_StartTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20241004023415_StartTime.cs -------------------------------------------------------------------------------- /Migrations/Storage/20241030034314_ModifiersInImprovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20241030034314_ModifiersInImprovement.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250116212714_ScoreIdIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250116212714_ScoreIdIndex.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250116212714_ScoreIdIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250116212714_ScoreIdIndex.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250121061358_ScoreIdIndex2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250121061358_ScoreIdIndex2.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250121061358_ScoreIdIndex2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250121061358_ScoreIdIndex2.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250226132306_PinnedAttempts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250226132306_PinnedAttempts.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250226132306_PinnedAttempts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250226132306_PinnedAttempts.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250304214053_SaberOffsetsAndCustomData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250304214053_SaberOffsetsAndCustomData.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250507151709_ScoreExperience.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250507151709_ScoreExperience.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250507151709_ScoreExperience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250507151709_ScoreExperience.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250514103943_LeadearboardIdLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250514103943_LeadearboardIdLength.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250530094714_PracticeSpeed.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250530094714_PracticeSpeed.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250530094714_PracticeSpeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250530094714_PracticeSpeed.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250712202025_Playtimes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250712202025_Playtimes.Designer.cs -------------------------------------------------------------------------------- /Migrations/Storage/20250712202025_Playtimes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/20250712202025_Playtimes.cs -------------------------------------------------------------------------------- /Migrations/Storage/StorageContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Migrations/Storage/StorageContextModelSnapshot.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/README.md -------------------------------------------------------------------------------- /Renderer/Controllers/ScreenshotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Renderer/Controllers/ScreenshotController.cs -------------------------------------------------------------------------------- /Renderer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Renderer/Program.cs -------------------------------------------------------------------------------- /Renderer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Renderer/Properties/launchSettings.json -------------------------------------------------------------------------------- /Renderer/Renderer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Renderer/Renderer.csproj -------------------------------------------------------------------------------- /Renderer/Renderer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Renderer/Renderer.csproj.user -------------------------------------------------------------------------------- /Renderer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Renderer/appsettings.Development.json -------------------------------------------------------------------------------- /Renderer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Renderer/appsettings.json -------------------------------------------------------------------------------- /Services/ATProtocolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/ATProtocolService.cs -------------------------------------------------------------------------------- /Services/ClanMessageServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/ClanMessageServices.cs -------------------------------------------------------------------------------- /Services/ClanTaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/ClanTaskService.cs -------------------------------------------------------------------------------- /Services/ConstantsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/ConstantsService.cs -------------------------------------------------------------------------------- /Services/DailyRefresh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/DailyRefresh.cs -------------------------------------------------------------------------------- /Services/EveryMinuteRefresh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/EveryMinuteRefresh.cs -------------------------------------------------------------------------------- /Services/HistoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/HistoryService.cs -------------------------------------------------------------------------------- /Services/HourlyRefresh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/HourlyRefresh.cs -------------------------------------------------------------------------------- /Services/LeaderboardPlayerStatsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/LeaderboardPlayerStatsService.cs -------------------------------------------------------------------------------- /Services/MapRefresh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/MapRefresh.cs -------------------------------------------------------------------------------- /Services/MinuteRefresh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/MinuteRefresh.cs -------------------------------------------------------------------------------- /Services/OauthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/OauthService.cs -------------------------------------------------------------------------------- /Services/RankingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/RankingService.cs -------------------------------------------------------------------------------- /Services/RefreshTaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/RefreshTaskService.cs -------------------------------------------------------------------------------- /Services/SearchService/CustomAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/SearchService/CustomAnalyzer.cs -------------------------------------------------------------------------------- /Services/SearchService/PlayerService/PlayerMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/SearchService/PlayerService/PlayerMetadata.cs -------------------------------------------------------------------------------- /Services/SearchService/PlayerService/PlayerSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/SearchService/PlayerService/PlayerSearchService.cs -------------------------------------------------------------------------------- /Services/SearchService/ScoreSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/SearchService/ScoreSearch.cs -------------------------------------------------------------------------------- /Services/SearchService/SearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/SearchService/SearchService.cs -------------------------------------------------------------------------------- /Services/SearchService/SongService/SongMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/SearchService/SongService/SongMetadata.cs -------------------------------------------------------------------------------- /Services/SearchService/SongService/SongSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/SearchService/SongService/SongSearchService.cs -------------------------------------------------------------------------------- /Services/SocketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/SocketService.cs -------------------------------------------------------------------------------- /Services/SongService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/SongService.cs -------------------------------------------------------------------------------- /Services/SpeedrunService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Services/SpeedrunService.cs -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Startup.cs -------------------------------------------------------------------------------- /Utils/AttemptsListUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/AttemptsListUtils.cs -------------------------------------------------------------------------------- /Utils/AuthUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/AuthUtils.cs -------------------------------------------------------------------------------- /Utils/ClanUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/ClanUtils.cs -------------------------------------------------------------------------------- /Utils/EnumSchemaFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/EnumSchemaFilter.cs -------------------------------------------------------------------------------- /Utils/ExpandantoObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/ExpandantoObject.cs -------------------------------------------------------------------------------- /Utils/FormatUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/FormatUtils.cs -------------------------------------------------------------------------------- /Utils/GeneralExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/GeneralExtensions.cs -------------------------------------------------------------------------------- /Utils/HashDiffStarTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/HashDiffStarTuple.cs -------------------------------------------------------------------------------- /Utils/HistogramUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/HistogramUtils.cs -------------------------------------------------------------------------------- /Utils/ImageUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/ImageUtils.cs -------------------------------------------------------------------------------- /Utils/LeaderboardListUtils/LeaderboardListUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/LeaderboardListUtils/LeaderboardListUtils.cs -------------------------------------------------------------------------------- /Utils/LeaderboardListUtils/Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/LeaderboardListUtils/Search.cs -------------------------------------------------------------------------------- /Utils/LeaderboardListUtils/Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/LeaderboardListUtils/Sort.cs -------------------------------------------------------------------------------- /Utils/LeaderboardListUtils/Where.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/LeaderboardListUtils/Where.cs -------------------------------------------------------------------------------- /Utils/LinkUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/LinkUtils.cs -------------------------------------------------------------------------------- /Utils/MapListUtils/DifficultySort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/MapListUtils/DifficultySort.cs -------------------------------------------------------------------------------- /Utils/MapListUtils/MapListUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/MapListUtils/MapListUtils.cs -------------------------------------------------------------------------------- /Utils/MapListUtils/Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/MapListUtils/Search.cs -------------------------------------------------------------------------------- /Utils/MapListUtils/Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/MapListUtils/Sort.cs -------------------------------------------------------------------------------- /Utils/MapListUtils/Where.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/MapListUtils/Where.cs -------------------------------------------------------------------------------- /Utils/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/MathUtils.cs -------------------------------------------------------------------------------- /Utils/PlayerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/PlayerUtils.cs -------------------------------------------------------------------------------- /Utils/RatingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/RatingUtils.cs -------------------------------------------------------------------------------- /Utils/ReBeatUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/ReBeatUtils.cs -------------------------------------------------------------------------------- /Utils/ReepresetsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/ReepresetsUtils.cs -------------------------------------------------------------------------------- /Utils/ReplayStatisticUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/ReplayStatisticUtils.cs -------------------------------------------------------------------------------- /Utils/ReplayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/ReplayUtils.cs -------------------------------------------------------------------------------- /Utils/S3Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/S3Helper.cs -------------------------------------------------------------------------------- /Utils/ScoreListUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/ScoreListUtils.cs -------------------------------------------------------------------------------- /Utils/ScoreListUtilsAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/ScoreListUtilsAll.cs -------------------------------------------------------------------------------- /Utils/SongUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/SongUtils.cs -------------------------------------------------------------------------------- /Utils/SpeedrunUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/SpeedrunUtils.cs -------------------------------------------------------------------------------- /Utils/SteamHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/SteamHelper.cs -------------------------------------------------------------------------------- /Utils/WebSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/WebSocketClient.cs -------------------------------------------------------------------------------- /Utils/WebUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Utils/WebUtils.cs -------------------------------------------------------------------------------- /Views/Authentication/SignIn.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/Views/Authentication/SignIn.cshtml -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/appsettings.json -------------------------------------------------------------------------------- /runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/runtimeconfig.template.json -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/web.config -------------------------------------------------------------------------------- /wwwroot/databases/IP2LOCATION-LITE-DB.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/databases/IP2LOCATION-LITE-DB.BIN -------------------------------------------------------------------------------- /wwwroot/fonts/Audiowide-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/fonts/Audiowide-Regular.ttf -------------------------------------------------------------------------------- /wwwroot/fonts/Cyberbit.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/fonts/Cyberbit.ttf -------------------------------------------------------------------------------- /wwwroot/fonts/Teko-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/fonts/Teko-SemiBold.ttf -------------------------------------------------------------------------------- /wwwroot/images/360degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/360degree.png -------------------------------------------------------------------------------- /wwwroot/images/90degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/90degree.png -------------------------------------------------------------------------------- /wwwroot/images/AvatarMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/AvatarMask.png -------------------------------------------------------------------------------- /wwwroot/images/AvatarShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/AvatarShadow.png -------------------------------------------------------------------------------- /wwwroot/images/CoverMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/CoverMask.png -------------------------------------------------------------------------------- /wwwroot/images/FinalMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/FinalMask.png -------------------------------------------------------------------------------- /wwwroot/images/GradientMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/GradientMask.png -------------------------------------------------------------------------------- /wwwroot/images/GradientMaskBlurred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/GradientMaskBlurred.png -------------------------------------------------------------------------------- /wwwroot/images/Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/Star.png -------------------------------------------------------------------------------- /wwwroot/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/background.png -------------------------------------------------------------------------------- /wwwroot/images/backgroundold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/backgroundold.png -------------------------------------------------------------------------------- /wwwroot/images/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/default.jpg -------------------------------------------------------------------------------- /wwwroot/images/lawless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/lawless.png -------------------------------------------------------------------------------- /wwwroot/images/legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/legacy.png -------------------------------------------------------------------------------- /wwwroot/images/lightshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/lightshow.png -------------------------------------------------------------------------------- /wwwroot/images/noarrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/noarrows.png -------------------------------------------------------------------------------- /wwwroot/images/onesaber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/onesaber.png -------------------------------------------------------------------------------- /wwwroot/images/replays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/replays.png -------------------------------------------------------------------------------- /wwwroot/images/royale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/royale.png -------------------------------------------------------------------------------- /wwwroot/images/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/images/standard.png -------------------------------------------------------------------------------- /wwwroot/playlists/nominated.bplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/playlists/nominated.bplist -------------------------------------------------------------------------------- /wwwroot/playlists/qualified.bplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/playlists/qualified.bplist -------------------------------------------------------------------------------- /wwwroot/playlists/ranked.bplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeatLeader/beatleader-server/HEAD/wwwroot/playlists/ranked.bplist --------------------------------------------------------------------------------