├── .gitattributes ├── .gitignore ├── Instructions ├── English.md ├── Images │ ├── AppScreen1.png │ ├── AppScreen2.png │ ├── AppScreen3.png │ ├── AppScreen4.png │ ├── Web1.png │ ├── Web2.png │ └── Web3.png ├── Japanese.md ├── Korean.md └── zh_Chinese.md ├── LICENSE.txt ├── README.md ├── WaccaMyPageScraper.Console.sln ├── WaccaMyPageScraper.Console ├── OptionHandler.cs ├── Options │ ├── FetchOption.cs │ ├── HelpOption.cs │ ├── IdOption.cs │ ├── InputOption.cs │ ├── Option.cs │ ├── OutputOption.cs │ └── ReadOption.cs ├── Program.cs ├── Properties │ └── launchSettings.json └── WaccaMyPageScraper.Console.csproj ├── WaccaMyPageScraper.Wpf ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Converters │ ├── LanguageConverter.cs │ ├── SeasonConverter.cs │ ├── SortRecordByConverter.cs │ ├── StringColorKeyValueBrushConverter.cs │ └── StringColorKeyValueTextConverter.cs ├── Enums │ ├── Language.cs │ └── SortRecordBy.cs ├── Events │ ├── LoginSuccessEvent.cs │ └── OpenRecordDetailEvent.cs ├── Localization │ ├── Language.Designer.cs │ ├── Language.resx │ ├── UI.Designer.cs │ ├── UI.ja.resx │ ├── UI.ko.resx │ └── UI.resx ├── Models │ ├── PlayerModel.cs │ ├── RecordDetailModel.cs │ ├── RecordModel.cs │ ├── StageModel.cs │ └── TrophyModel.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── AchievePaints.cs │ ├── DifficultyColors.cs │ ├── Files │ │ └── stageup.json │ ├── Icon.ico │ ├── ImageLocator.cs │ ├── Images │ │ ├── AchieveIcons │ │ │ ├── achieve1.png │ │ │ ├── achieve2.png │ │ │ ├── achieve3.png │ │ │ ├── achieve4.png │ │ │ └── no_achieve.png │ │ ├── RateIcons │ │ │ ├── no_rate.png │ │ │ ├── rate_1.png │ │ │ ├── rate_10.png │ │ │ ├── rate_11.png │ │ │ ├── rate_12.png │ │ │ ├── rate_13.png │ │ │ ├── rate_2.png │ │ │ ├── rate_3.png │ │ │ ├── rate_4.png │ │ │ ├── rate_5.png │ │ │ ├── rate_6.png │ │ │ ├── rate_7.png │ │ │ ├── rate_8.png │ │ │ └── rate_9.png │ │ ├── StageIcons │ │ │ ├── stage_icon_10_1.png │ │ │ ├── stage_icon_10_2.png │ │ │ ├── stage_icon_10_3.png │ │ │ ├── stage_icon_11_1.png │ │ │ ├── stage_icon_11_2.png │ │ │ ├── stage_icon_11_3.png │ │ │ ├── stage_icon_12_1.png │ │ │ ├── stage_icon_12_2.png │ │ │ ├── stage_icon_12_3.png │ │ │ ├── stage_icon_13_1.png │ │ │ ├── stage_icon_13_2.png │ │ │ ├── stage_icon_13_3.png │ │ │ ├── stage_icon_14_1.png │ │ │ ├── stage_icon_14_2.png │ │ │ ├── stage_icon_14_3.png │ │ │ ├── stage_icon_1_1.png │ │ │ ├── stage_icon_1_2.png │ │ │ ├── stage_icon_1_3.png │ │ │ ├── stage_icon_2_1.png │ │ │ ├── stage_icon_2_2.png │ │ │ ├── stage_icon_2_3.png │ │ │ ├── stage_icon_3_1.png │ │ │ ├── stage_icon_3_2.png │ │ │ ├── stage_icon_3_3.png │ │ │ ├── stage_icon_4_1.png │ │ │ ├── stage_icon_4_2.png │ │ │ ├── stage_icon_4_3.png │ │ │ ├── stage_icon_5_1.png │ │ │ ├── stage_icon_5_2.png │ │ │ ├── stage_icon_5_3.png │ │ │ ├── stage_icon_6_1.png │ │ │ ├── stage_icon_6_2.png │ │ │ ├── stage_icon_6_3.png │ │ │ ├── stage_icon_7_1.png │ │ │ ├── stage_icon_7_2.png │ │ │ ├── stage_icon_7_3.png │ │ │ ├── stage_icon_8_1.png │ │ │ ├── stage_icon_8_2.png │ │ │ ├── stage_icon_8_3.png │ │ │ ├── stage_icon_9_1.png │ │ │ ├── stage_icon_9_2.png │ │ │ ├── stage_icon_9_3.png │ │ │ └── stage_icon_null.png │ │ └── TrophyIcons │ │ │ ├── 1_1.png │ │ │ ├── 1_2.png │ │ │ ├── 1_3.png │ │ │ ├── 1_4.png │ │ │ ├── 2_1.png │ │ │ ├── 2_2.png │ │ │ ├── 2_3.png │ │ │ ├── 2_4.png │ │ │ ├── 3_1.png │ │ │ ├── 3_2.png │ │ │ ├── 3_3.png │ │ │ ├── 3_4.png │ │ │ ├── 4_1.png │ │ │ ├── 4_2.png │ │ │ ├── 4_3.png │ │ │ ├── 4_4.png │ │ │ ├── 5_1.png │ │ │ ├── 5_2.png │ │ │ ├── 5_3.png │ │ │ ├── 5_4.png │ │ │ ├── 6_1.png │ │ │ ├── 6_2.png │ │ │ ├── 6_3.png │ │ │ ├── 6_4.png │ │ │ ├── bronze.png │ │ │ ├── gold.png │ │ │ ├── platinum.png │ │ │ └── silver.png │ ├── PlayerRateColors.cs │ ├── RankingColors.cs │ ├── RatePaints.cs │ └── StageDataMap.cs ├── ViewModels │ ├── FetcherViewModel.cs │ ├── LoginViewModel.cs │ ├── MainWindowViewModel.cs │ ├── PlayerViewModel.cs │ ├── RecordDetailWindowViewModel.cs │ ├── RecordViewModel.cs │ ├── SettingsWindowViewModel.cs │ ├── StageViewModel.cs │ └── TrophyViewModel.cs ├── Views │ ├── ConsoleWindow.xaml │ ├── ConsoleWindow.xaml.cs │ ├── LoginView.xaml │ ├── LoginView.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── PlayerView.xaml │ ├── PlayerView.xaml.cs │ ├── RecordDetailWindow.xaml │ ├── RecordDetailWindow.xaml.cs │ ├── RecordView.xaml │ ├── RecordView.xaml.cs │ ├── SettingsWindow.xaml │ ├── SettingsWindow.xaml.cs │ ├── StageView.xaml │ ├── StageView.xaml.cs │ ├── TrophyView.xaml │ └── TrophyView.xaml.cs └── WaccaMyPageScraper.Wpf.csproj └── WaccaMyPageScraper ├── Converter ├── EnumArrayConverter.cs ├── EnumConverter.cs ├── Int32ArrayConverter.cs ├── StageConverter.cs └── StringArrayConverter.cs ├── CsvHandler.cs ├── Data ├── Music.cs ├── MusicMetadata.cs ├── MusicRankings.cs ├── Player.cs ├── Stage.cs ├── StageMetadata.cs ├── StageRanking.cs ├── TotalRpRanking.cs ├── TotalScoreRankings.cs └── Trophy.cs ├── Enums ├── Achieve.cs ├── Difficulty.cs ├── Genre.cs ├── LoginStatus.cs ├── Rate.cs └── StageGrade.cs ├── Fetcher.cs ├── FetcherActions ├── AchieveIconsFetcherAction.cs ├── FetcherAction.cs ├── MusicFetcherAction.cs ├── MusicImageFetcherAction.cs ├── MusicMetadataFetcherAction.cs ├── MusicRankingsFetcherAction.cs ├── PlayerFetcherAction.cs ├── PlayerIconFetcherAction.cs ├── RateIconsFetcherAction.cs ├── StageFetcherAction.cs ├── StageIconsFetcherAction.cs ├── StageMetadataFetcherAction.cs ├── StageRankingFetcherAction.cs ├── TotalRpRankingFetcherAction.cs ├── TotalScoreRankingsFetcherAction.cs ├── TrophiesFetcherAction.cs └── TrophyIconsFetcherAction.cs ├── Localization ├── Converter.Designer.cs ├── Converter.ja.resx ├── Converter.ko.resx ├── Converter.resx ├── Data.Designer.cs ├── Data.ja.resx ├── Data.ko.resx ├── Data.resx ├── Fetcher.Designer.cs ├── Fetcher.ja.resx ├── Fetcher.ko.resx ├── Fetcher.resx └── RateTextParser.cs ├── Properties └── launchSettings.json ├── Resources ├── Directories.Designer.cs └── Directories.resx └── WaccaMyPageScraper.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/.gitignore -------------------------------------------------------------------------------- /Instructions/English.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/English.md -------------------------------------------------------------------------------- /Instructions/Images/AppScreen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/Images/AppScreen1.png -------------------------------------------------------------------------------- /Instructions/Images/AppScreen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/Images/AppScreen2.png -------------------------------------------------------------------------------- /Instructions/Images/AppScreen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/Images/AppScreen3.png -------------------------------------------------------------------------------- /Instructions/Images/AppScreen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/Images/AppScreen4.png -------------------------------------------------------------------------------- /Instructions/Images/Web1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/Images/Web1.png -------------------------------------------------------------------------------- /Instructions/Images/Web2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/Images/Web2.png -------------------------------------------------------------------------------- /Instructions/Images/Web3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/Images/Web3.png -------------------------------------------------------------------------------- /Instructions/Japanese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/Japanese.md -------------------------------------------------------------------------------- /Instructions/Korean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/Korean.md -------------------------------------------------------------------------------- /Instructions/zh_Chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/Instructions/zh_Chinese.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/README.md -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console.sln -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/OptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/OptionHandler.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/Options/FetchOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/Options/FetchOption.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/Options/HelpOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/Options/HelpOption.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/Options/IdOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/Options/IdOption.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/Options/InputOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/Options/InputOption.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/Options/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/Options/Option.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/Options/OutputOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/Options/OutputOption.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/Options/ReadOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/Options/ReadOption.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/Program.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/Properties/launchSettings.json -------------------------------------------------------------------------------- /WaccaMyPageScraper.Console/WaccaMyPageScraper.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Console/WaccaMyPageScraper.Console.csproj -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/App.xaml -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/App.xaml.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/AssemblyInfo.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Converters/LanguageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Converters/LanguageConverter.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Converters/SeasonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Converters/SeasonConverter.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Converters/SortRecordByConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Converters/SortRecordByConverter.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Converters/StringColorKeyValueBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Converters/StringColorKeyValueBrushConverter.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Converters/StringColorKeyValueTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Converters/StringColorKeyValueTextConverter.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Enums/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Enums/Language.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Enums/SortRecordBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Enums/SortRecordBy.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Events/LoginSuccessEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Events/LoginSuccessEvent.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Events/OpenRecordDetailEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Events/OpenRecordDetailEvent.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Localization/Language.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Localization/Language.Designer.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Localization/Language.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Localization/Language.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Localization/UI.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Localization/UI.Designer.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Localization/UI.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Localization/UI.ja.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Localization/UI.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Localization/UI.ko.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Localization/UI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Localization/UI.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Models/PlayerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Models/PlayerModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Models/RecordDetailModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Models/RecordDetailModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Models/RecordModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Models/RecordModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Models/StageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Models/StageModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Models/TrophyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Models/TrophyModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Properties/Resources.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Properties/Settings.settings -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/AchievePaints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/AchievePaints.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/DifficultyColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/DifficultyColors.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Files/stageup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Files/stageup.json -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Icon.ico -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/ImageLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/ImageLocator.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/AchieveIcons/achieve1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/AchieveIcons/achieve1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/AchieveIcons/achieve2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/AchieveIcons/achieve2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/AchieveIcons/achieve3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/AchieveIcons/achieve3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/AchieveIcons/achieve4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/AchieveIcons/achieve4.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/AchieveIcons/no_achieve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/AchieveIcons/no_achieve.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/no_rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/no_rate.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_10.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_11.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_12.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_13.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_4.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_5.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_6.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_7.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_8.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/RateIcons/rate_9.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_10_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_10_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_10_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_10_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_10_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_10_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_11_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_11_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_11_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_11_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_11_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_11_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_12_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_12_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_12_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_12_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_12_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_12_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_13_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_13_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_13_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_13_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_13_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_13_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_14_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_14_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_14_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_14_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_14_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_14_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_1_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_1_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_1_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_2_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_2_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_2_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_3_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_3_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_3_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_4_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_4_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_4_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_5_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_5_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_5_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_5_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_5_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_6_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_6_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_6_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_7_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_7_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_7_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_7_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_7_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_7_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_8_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_8_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_8_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_8_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_8_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_8_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_9_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_9_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_9_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_9_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_9_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_9_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/StageIcons/stage_icon_null.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/1_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/1_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/1_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/1_4.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/2_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/2_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/2_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/2_4.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/3_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/3_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/3_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/3_4.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/4_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/4_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/4_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/4_4.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/5_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/5_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/5_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/5_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/5_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/5_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/5_4.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/6_1.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/6_2.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/6_3.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/6_4.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/bronze.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/gold.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/platinum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/platinum.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/Images/TrophyIcons/silver.png -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/PlayerRateColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/PlayerRateColors.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/RankingColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/RankingColors.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/RatePaints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/RatePaints.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Resources/StageDataMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Resources/StageDataMap.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/ViewModels/FetcherViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/ViewModels/FetcherViewModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/ViewModels/PlayerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/ViewModels/PlayerViewModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/ViewModels/RecordDetailWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/ViewModels/RecordDetailWindowViewModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/ViewModels/RecordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/ViewModels/RecordViewModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/ViewModels/SettingsWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/ViewModels/SettingsWindowViewModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/ViewModels/StageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/ViewModels/StageViewModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/ViewModels/TrophyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/ViewModels/TrophyViewModel.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/ConsoleWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/ConsoleWindow.xaml -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/ConsoleWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/ConsoleWindow.xaml.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/LoginView.xaml -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/MainWindow.xaml -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/PlayerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/PlayerView.xaml -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/PlayerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/PlayerView.xaml.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/RecordDetailWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/RecordDetailWindow.xaml -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/RecordDetailWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/RecordDetailWindow.xaml.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/RecordView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/RecordView.xaml -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/RecordView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/RecordView.xaml.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/SettingsWindow.xaml -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/StageView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/StageView.xaml -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/StageView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/StageView.xaml.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/TrophyView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/TrophyView.xaml -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/Views/TrophyView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/Views/TrophyView.xaml.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper.Wpf/WaccaMyPageScraper.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper.Wpf/WaccaMyPageScraper.Wpf.csproj -------------------------------------------------------------------------------- /WaccaMyPageScraper/Converter/EnumArrayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Converter/EnumArrayConverter.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Converter/EnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Converter/EnumConverter.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Converter/Int32ArrayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Converter/Int32ArrayConverter.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Converter/StageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Converter/StageConverter.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Converter/StringArrayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Converter/StringArrayConverter.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/CsvHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/CsvHandler.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Data/Music.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Data/Music.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Data/MusicMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Data/MusicMetadata.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Data/MusicRankings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Data/MusicRankings.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Data/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Data/Player.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Data/Stage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Data/Stage.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Data/StageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Data/StageMetadata.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Data/StageRanking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Data/StageRanking.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Data/TotalRpRanking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Data/TotalRpRanking.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Data/TotalScoreRankings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Data/TotalScoreRankings.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Data/Trophy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Data/Trophy.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Enums/Achieve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Enums/Achieve.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Enums/Difficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Enums/Difficulty.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Enums/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Enums/Genre.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Enums/LoginStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Enums/LoginStatus.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Enums/Rate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Enums/Rate.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Enums/StageGrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Enums/StageGrade.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Fetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Fetcher.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/AchieveIconsFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/AchieveIconsFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/FetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/FetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/MusicFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/MusicFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/MusicImageFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/MusicImageFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/MusicMetadataFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/MusicMetadataFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/MusicRankingsFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/MusicRankingsFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/PlayerFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/PlayerFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/PlayerIconFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/PlayerIconFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/RateIconsFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/RateIconsFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/StageFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/StageFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/StageIconsFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/StageIconsFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/StageMetadataFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/StageMetadataFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/StageRankingFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/StageRankingFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/TotalRpRankingFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/TotalRpRankingFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/TotalScoreRankingsFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/TotalScoreRankingsFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/TrophiesFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/TrophiesFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/FetcherActions/TrophyIconsFetcherAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/FetcherActions/TrophyIconsFetcherAction.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Converter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Converter.Designer.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Converter.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Converter.ja.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Converter.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Converter.ko.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Converter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Converter.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Data.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Data.Designer.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Data.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Data.ja.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Data.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Data.ko.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Data.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Data.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Fetcher.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Fetcher.Designer.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Fetcher.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Fetcher.ja.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Fetcher.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Fetcher.ko.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/Fetcher.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/Fetcher.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper/Localization/RateTextParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Localization/RateTextParser.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Properties/launchSettings.json -------------------------------------------------------------------------------- /WaccaMyPageScraper/Resources/Directories.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Resources/Directories.Designer.cs -------------------------------------------------------------------------------- /WaccaMyPageScraper/Resources/Directories.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/Resources/Directories.resx -------------------------------------------------------------------------------- /WaccaMyPageScraper/WaccaMyPageScraper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XezolesS/WaccaMyPageScraper/HEAD/WaccaMyPageScraper/WaccaMyPageScraper.csproj --------------------------------------------------------------------------------