├── .gitignore ├── LICENSE ├── README.md ├── Theresa3rd-Bot ├── Theresa3rd-Bot.sln ├── TheresaBot.GoCqHttp │ ├── Command │ │ ├── CQFriendCommand.cs │ │ ├── CQGroupCommand.cs │ │ └── CQGroupQuoteCommand.cs │ ├── Common │ │ └── CQConfig.cs │ ├── Helper │ │ └── CQHelper.cs │ ├── Plugin │ │ ├── BasePlugin.cs │ │ ├── FriendApplyPlugin.cs │ │ ├── GroupMemberIncreasePlugin.cs │ │ ├── GroupMessagePlugin.cs │ │ └── PrivateMessagePlugin.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Relay │ │ ├── CQFriendRelay.cs │ │ └── CQGroupRelay.cs │ ├── Reporter │ │ └── CQReporter.cs │ ├── Result │ │ └── CQResult.cs │ ├── Session │ │ └── CQSession.cs │ ├── Startup.cs │ ├── TheresaBot.GoCqHttp.csproj │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ └── 运行TheresaBot-GoCqHttp-8088.ps1 ├── TheresaBot.Main │ ├── BotImg │ │ ├── face │ │ │ ├── emmm.jpg │ │ │ ├── error.jpg │ │ │ ├── shenyuanjiesuan.png │ │ │ └── welcome.gif │ │ ├── localSetu │ │ │ └── 德丽莎 │ │ │ │ └── 71421964_p1.jpg │ │ └── mask │ │ │ ├── mask01.png │ │ │ ├── mask02.png │ │ │ ├── mask03.png │ │ │ └── mask04.png │ ├── Cache │ │ ├── CoolingCache.cs │ │ ├── GameCahce.cs │ │ ├── PixivRankingCache.cs │ │ ├── PixivUserProfileCache.cs │ │ ├── ProcessCache.cs │ │ └── RepeatCache.cs │ ├── Command │ │ ├── BaseCommand.cs │ │ ├── GroupCommand.cs │ │ ├── GroupQuoteCommand.cs │ │ └── PrivateCommand.cs │ ├── Common │ │ ├── BotConfig.cs │ │ ├── DataPath.cs │ │ ├── FilePath.cs │ │ ├── HttpUrl.cs │ │ ├── JwtConfig.cs │ │ └── ResultCode.cs │ ├── Config │ │ ├── Backstage.yml │ │ ├── Game.yml │ │ ├── General.yml │ │ ├── Manage.yml │ │ ├── Menu.yml │ │ ├── Permissions.yml │ │ ├── Pixiv.yml │ │ ├── PixivRanking.yml │ │ ├── Reminder.yml │ │ ├── Repeater.yml │ │ ├── Saucenao.yml │ │ ├── Setu.yml │ │ ├── Subscribe.yml │ │ ├── TimingSetu.yml │ │ ├── Welcome.yml │ │ └── WordCloud.yml │ ├── Controller │ │ ├── BaseController.cs │ │ ├── BlackListController.cs │ │ ├── ConfigController.cs │ │ ├── CookieController.cs │ │ ├── CountController.cs │ │ ├── DictionaryController.cs │ │ ├── GameController.cs │ │ ├── GroupController.cs │ │ ├── OptionController.cs │ │ ├── PathController.cs │ │ ├── SubscribeController.cs │ │ ├── SugarController.cs │ │ └── UserController.cs │ ├── Dao │ │ ├── BanMemberDao.cs │ │ ├── BanPixiverDao.cs │ │ ├── BanTagDao.cs │ │ ├── DBClient.cs │ │ ├── DbContext.cs │ │ ├── DictionaryDao.cs │ │ ├── ImageRecordDao.cs │ │ ├── MessageRecordDao.cs │ │ ├── PixivRecordDao.cs │ │ ├── RequestRecordDao.cs │ │ ├── SubscribeDao.cs │ │ ├── SubscribeGroupDao.cs │ │ ├── SubscribeRecordDao.cs │ │ ├── SugarTagDao.cs │ │ ├── UCWordDao.cs │ │ └── WebsiteDao.cs │ ├── Datas │ │ ├── BanMemberDatas.cs │ │ ├── BanPixiverDatas.cs │ │ ├── BanTagDatas.cs │ │ ├── CountDatas.cs │ │ ├── DataManager.cs │ │ ├── RunningDatas.cs │ │ ├── SubscribeDatas.cs │ │ ├── SugarTagDatas.cs │ │ └── WebsiteDatas.cs │ ├── Drawer │ │ ├── BaseDrawer.cs │ │ ├── BasePreviewDrawer.cs │ │ ├── PixivRankingDrawer.cs │ │ ├── PixivUserWorkDrawer.cs │ │ ├── SubscribeDrawer.cs │ │ └── WordCloudDrawer.cs │ ├── Exceptions │ │ ├── ApiException.cs │ │ ├── BaseException.cs │ │ ├── GameException.cs │ │ ├── GameFailedException.cs │ │ ├── GameFinishedException.cs │ │ ├── GameStopedException.cs │ │ ├── HandleException.cs │ │ ├── NoAnswerException.cs │ │ ├── NoRankingException.cs │ │ ├── PixivException.cs │ │ ├── ProcessException.cs │ │ └── StepTimeoutException.cs │ ├── Font │ │ ├── hywenhei85w.ttf │ │ └── simsun.ttc │ ├── Game │ │ ├── BaseGame.cs │ │ ├── BaseGroupGame.cs │ │ ├── BasePlayer.cs │ │ └── Undercover │ │ │ ├── UCCamp.cs │ │ │ ├── UCGame.cs │ │ │ ├── UCPlayer.cs │ │ │ ├── UCRound.cs │ │ │ ├── UCSpeech.cs │ │ │ ├── UCVote.cs │ │ │ └── UCVoteResult.cs │ ├── Handler │ │ ├── BaseHandler.cs │ │ ├── CookieHandler.cs │ │ ├── DictionaryHandler.cs │ │ ├── GameHandler.cs │ │ ├── LocalSetuHandler.cs │ │ ├── LoliconHandler.cs │ │ ├── LolisukiHandler.cs │ │ ├── ManageHandler.cs │ │ ├── MenuHandler.cs │ │ ├── MiyousheHandler.cs │ │ ├── PixivHandler.cs │ │ ├── PixivPushHandler.cs │ │ ├── PixivRankingHandler.cs │ │ ├── PixivSubscribeHandler.cs │ │ ├── ReminderHandler.cs │ │ ├── SaucenaoHandler.cs │ │ ├── SetuHandler.cs │ │ ├── SubscribeHandler.cs │ │ ├── SugarTagHandler.cs │ │ ├── UndercoverHandler.cs │ │ └── WordCloudHandler.cs │ ├── Helper │ │ ├── AppHelper.cs │ │ ├── BotHelper.cs │ │ ├── BusinessHelper.cs │ │ ├── CommandHelper.cs │ │ ├── ConfigHelper.cs │ │ ├── ContentHelper.cs │ │ ├── DateTimeHelper.cs │ │ ├── EnumHelper.cs │ │ ├── FileHelper.cs │ │ ├── HttpHelper.cs │ │ ├── IPAddressHelper.cs │ │ ├── ImageHelper.cs │ │ ├── JWTHelper.cs │ │ ├── ListHelper.cs │ │ ├── LogHelper.cs │ │ ├── MathHelper.cs │ │ ├── PermissionsHelper.cs │ │ ├── PixivHelper.cs │ │ ├── RandomHelper.cs │ │ ├── RecordHelper.cs │ │ ├── SessionHelper.cs │ │ ├── StringHelper.cs │ │ ├── UrlHelper.cs │ │ └── ZipHelper.cs │ ├── Invoker │ │ └── HandlerInvokers.cs │ ├── Mode │ │ └── PixivRankingMode.cs │ ├── Model │ │ ├── Ascii2d │ │ │ ├── Ascii2dItem.cs │ │ │ └── Ascii2dResult.cs │ │ ├── Base │ │ │ ├── BaseModel.cs │ │ │ ├── BaseSourceItem.cs │ │ │ └── BaseWorkInfo.cs │ │ ├── Bot │ │ │ ├── BotInfos.cs │ │ │ └── GroupInfos.cs │ │ ├── Cache │ │ │ ├── GroupCoolingInfo.cs │ │ │ ├── MemberCoolingInfo.cs │ │ │ ├── PixivRankingHandingInfo.cs │ │ │ ├── PixivRankingInfo.cs │ │ │ ├── PixivUserProfileInfo.cs │ │ │ ├── RepeatInfo.cs │ │ │ └── TimingCoolingInfo.cs │ │ ├── Config │ │ │ ├── BackstageConfig.cs │ │ │ ├── BaseConfig.cs │ │ │ ├── BaseGameConfig.cs │ │ │ ├── BasePluginConfig.cs │ │ │ ├── BaseSubscribeConfig.cs │ │ │ ├── GameConfig.cs │ │ │ ├── GeneralConfig.cs │ │ │ ├── LocalSetuConfig.cs │ │ │ ├── LoliconConfig.cs │ │ │ ├── LolisukiConfig.cs │ │ │ ├── ManageConfig.cs │ │ │ ├── MenuConfig.cs │ │ │ ├── MysUserSubscribeConfig.cs │ │ │ ├── PermissionsConfig.cs │ │ │ ├── PixivConfig.cs │ │ │ ├── PixivRankingConfig.cs │ │ │ ├── PixivTagSubscribeConfig.cs │ │ │ ├── PixivUserConfig.cs │ │ │ ├── PixivUserSubscribeConfig.cs │ │ │ ├── ReminderConfig.cs │ │ │ ├── RepeaterConfig.cs │ │ │ ├── SaucenaoConfig.cs │ │ │ ├── SetuConfig.cs │ │ │ ├── SetuPixivConfig.cs │ │ │ ├── SubscribeConfig.cs │ │ │ ├── TimingSetuConfig.cs │ │ │ ├── WelcomeConfig.cs │ │ │ └── WordCloudConfig.cs │ │ ├── Content │ │ │ ├── BaseContent.cs │ │ │ ├── ForwardContent.cs │ │ │ ├── ImageContent.cs │ │ │ ├── LocalImageContent.cs │ │ │ ├── PixivSetuContent.cs │ │ │ ├── PlainContent.cs │ │ │ ├── SetuContent.cs │ │ │ └── WebImageContent.cs │ │ ├── DTO │ │ │ ├── AddBanMemberDto.cs │ │ │ ├── AddBanPixiverDto.cs │ │ │ ├── AddBanTagDto.cs │ │ │ ├── AddDictionaryDto.cs │ │ │ ├── AddSugarTagDto.cs │ │ │ ├── AddUCWordDto.cs │ │ │ ├── CookieDto.cs │ │ │ ├── IdsDto.cs │ │ │ └── LoginDataDto.cs │ │ ├── Data │ │ │ └── CountData.cs │ │ ├── Drawing │ │ │ ├── BasePixivDrawing.cs │ │ │ ├── PixivPreviewDrawing.cs │ │ │ ├── PixivRankingDrawing.cs │ │ │ └── PixivUserWorkDrawing.cs │ │ ├── Error │ │ │ └── ErrorRecord.cs │ │ ├── Infos │ │ │ └── HttpFileInfo.cs │ │ ├── Invoker │ │ │ └── CommandHandler.cs │ │ ├── Jwt │ │ │ ├── JwtToken.cs │ │ │ └── JwtTokenVo.cs │ │ ├── LocalSetu │ │ │ └── LocalSetuInfo.cs │ │ ├── Lolicon │ │ │ ├── LoliconParamV2.cs │ │ │ └── LoliconResultV2.cs │ │ ├── Lolisuki │ │ │ ├── LolisukiParam.cs │ │ │ └── LolisukiResult.cs │ │ ├── Mys │ │ │ ├── MysPostDataDto.cs │ │ │ ├── MysResult.cs │ │ │ └── MysUserDataDto.cs │ │ ├── PO │ │ │ ├── BanMemberPO.cs │ │ │ ├── BanPixiverPO.cs │ │ │ ├── BanTagPO.cs │ │ │ ├── BasePO.cs │ │ │ ├── DictionaryPO.cs │ │ │ ├── ImageRecordPO.cs │ │ │ ├── MessageRecordPO.cs │ │ │ ├── PixivRecordPO.cs │ │ │ ├── RequestRecordPO.cs │ │ │ ├── SubscribeGroupPO.cs │ │ │ ├── SubscribePO.cs │ │ │ ├── SubscribeRecordPO.cs │ │ │ ├── SugarTagPO.cs │ │ │ ├── UCWordPO.cs │ │ │ └── WebsitePO.cs │ │ ├── Pixiv │ │ │ ├── PixivBookmarks.cs │ │ │ ├── PixivFollow.cs │ │ │ ├── PixivFollowLatest.cs │ │ │ ├── PixivProfileDetail.cs │ │ │ ├── PixivRankingData.cs │ │ │ ├── PixivRankingDetail.cs │ │ │ ├── PixivResult.cs │ │ │ ├── PixivScanReport.cs │ │ │ ├── PixivSearch.cs │ │ │ ├── PixivSearchTask.cs │ │ │ ├── PixivTagScanReport.cs │ │ │ ├── PixivTags.cs │ │ │ ├── PixivUgoiraMeta.cs │ │ │ ├── PixivUserProfileAll.cs │ │ │ ├── PixivUserProfileIllusts.cs │ │ │ ├── PixivUserProfileTop.cs │ │ │ ├── PixivUserScanReport.cs │ │ │ ├── PixivUserWorkInfo.cs │ │ │ ├── PixivWorkInfo.cs │ │ │ └── PixivWorkPath.cs │ │ ├── Process │ │ │ ├── BaseProcess.cs │ │ │ ├── BaseStep.cs │ │ │ ├── FriendProcess.cs │ │ │ ├── FriendStep.cs │ │ │ ├── GroupProcess.cs │ │ │ └── GroupStep.cs │ │ ├── Result │ │ │ ├── ApiResult.cs │ │ │ ├── BaseResult.cs │ │ │ └── UndoResult.cs │ │ ├── Saucenao │ │ │ ├── SaucenaoItem.cs │ │ │ └── SaucenaoResult.cs │ │ ├── Subscribe │ │ │ ├── MysSubscribe.cs │ │ │ ├── PixivSubscribe.cs │ │ │ ├── SubscribeInfo.cs │ │ │ └── SubscribeTask.cs │ │ ├── VO │ │ │ ├── BanMemberVo.cs │ │ │ ├── BanPixiverVo.cs │ │ │ ├── BanTagVo.cs │ │ │ ├── CountDataVo.cs │ │ │ ├── DictionaryVo.cs │ │ │ ├── GroupInfoVo.cs │ │ │ ├── ImagePathVo.cs │ │ │ ├── OptionVo.cs │ │ │ ├── SubscribeDataVo.cs │ │ │ ├── SubscribeInfoVo.cs │ │ │ ├── SugarTagVo.cs │ │ │ └── UCWordVo.cs │ │ └── Yml │ │ │ └── YmlOperater.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Relay │ │ ├── BaseRelay.cs │ │ ├── GroupRelay.cs │ │ └── PrivateRelay.cs │ ├── Reporter │ │ └── BaseReporter.cs │ ├── Resources │ │ ├── char_state_tab.json │ │ ├── cn_synonym.txt │ │ ├── dict.txt │ │ ├── idf.txt │ │ ├── pos_prob_emit.json │ │ ├── pos_prob_start.json │ │ ├── pos_prob_trans.json │ │ ├── prob_emit.json │ │ ├── prob_trans.json │ │ └── stopwords.txt │ ├── Services │ │ ├── Ascii2dService.cs │ │ ├── BanMemberService.cs │ │ ├── BanPixiverService.cs │ │ ├── BanTagService.cs │ │ ├── DictionaryService.cs │ │ ├── LocalSetuService.cs │ │ ├── LoliconService.cs │ │ ├── LolisukiService.cs │ │ ├── MiyousheService.cs │ │ ├── PathService.cs │ │ ├── PixivRankingService.cs │ │ ├── PixivService.cs │ │ ├── RecordService.cs │ │ ├── RequestRecordService.cs │ │ ├── SaucenaoService.cs │ │ ├── SetuService.cs │ │ ├── SubscribeGroupService.cs │ │ ├── SubscribeService.cs │ │ ├── SugarTagService.cs │ │ ├── UCWordService.cs │ │ ├── WebsiteService.cs │ │ └── WordCloudService.cs │ ├── Session │ │ └── BaseSession.cs │ ├── TheresaBot.Main.csproj │ ├── Timers │ │ ├── CookieJob.cs │ │ ├── DownloadClearJob.cs │ │ ├── HeartbeatTimer.cs │ │ ├── MysUserScanTimer.cs │ │ ├── PixivTagScanTimer.cs │ │ ├── PixivUserScanTimer.cs │ │ ├── ReminderJob.cs │ │ ├── SchedulerManager.cs │ │ ├── TempClearJob.cs │ │ ├── TimerManager.cs │ │ ├── TimingRankingJob.cs │ │ ├── TimingSetuJob.cs │ │ └── WordCloudJob.cs │ ├── Type │ │ ├── CommandType.cs │ │ ├── DictionaryType.cs │ │ ├── GameOptions │ │ │ └── UCGameMode.cs │ │ ├── LolisukiLevel.cs │ │ ├── LolisukiTaste.cs │ │ ├── MysSectionType.cs │ │ ├── PixivRandomType.cs │ │ ├── PixivRankingSortType.cs │ │ ├── PixivRankingType.cs │ │ ├── PixivUserScanType.cs │ │ ├── PlatformType.cs │ │ ├── ResendType.cs │ │ ├── SetuSourceType.cs │ │ ├── StepOptions │ │ │ ├── PixivSyncType.cs │ │ │ └── PushType.cs │ │ ├── SubscribeDynamicType.cs │ │ ├── SubscribeType.cs │ │ ├── TagMatchType.cs │ │ ├── TimingSetuSourceType.cs │ │ ├── WebsiteType.cs │ │ ├── WordCloudType.cs │ │ └── YNAType.cs │ └── log4net.config └── TheresaBot.MiraiHttpApi │ ├── Command │ ├── MiraiFriendCommand.cs │ ├── MiraiGroupCommand.cs │ └── MiraiGroupQuoteCommand.cs │ ├── Common │ └── MiraiConfig.cs │ ├── Event │ ├── BaseEvent.cs │ ├── DisconnectedEvent.cs │ ├── FriendApplyEvent.cs │ ├── FriendMessageEvent.cs │ ├── GroupMemberJoinedEvent.cs │ ├── GroupMessageEvent.cs │ └── TempMessageEvent.cs │ ├── Helper │ └── MiraiHelper.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Relay │ ├── MiraiFriendRelay.cs │ ├── MiraiGroupRelay.cs │ └── MiraiTempRelay.cs │ ├── Reporter │ └── MiraiReporter.cs │ ├── Result │ └── MiraiResult.cs │ ├── Session │ └── MiraiSession.cs │ ├── Startup.cs │ ├── TheresaBot.MiraiHttpApi.csproj │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.json │ └── 运行TheresaBot-MiraiHttpApi-8088.ps1 └── docs ├── .nojekyll ├── _coverpage.md ├── _sidebar.md ├── cookie.md ├── css └── vue.css ├── favicon.ico ├── img ├── 73532572_p0.png ├── cookie │ ├── 177747559-168c1377-db4a-49f0-869f-78749f80707e.png │ ├── 177748449-02f59d79-a0bc-4475-80f6-40f0c56e06a6.png │ ├── 177758500-94720035-c11a-4689-bb91-eca1ac95ce7e.png │ ├── 177758915-69de1308-d934-407f-a945-17252124c969.png │ └── 20230325171938.jpg ├── install │ ├── 2023-03-02-18-58-03-758.jpg │ └── 2023-05-08-02-31-47-624.jpg ├── introduction │ ├── 20230323181856.jpg │ ├── 20230324105710.jpg │ ├── 20230805213410.jpg │ ├── 6c0bc3.gif │ ├── 77172327_p2.jpg │ ├── da52ea.gif │ └── fd1f8a.gif ├── manage │ ├── 2023-08-05-17-27-38-481.jpg │ ├── 2023-08-05-17-54-26-340.jpg │ ├── 2023-08-05-19-44-49-706.jpg │ ├── 2023-08-05-20-31-54-936.jpg │ └── 2023-08-05-20-54-26-475.jpg ├── mirai │ ├── 20230214183859.jpg │ ├── 20230214185810.jpg │ ├── 20230214190430.jpg │ ├── 20230214191133.jpg │ ├── 20230214191428.jpg │ ├── 20230214220550.jpg │ ├── 20230214221934.jpg │ ├── 20230214224403.jpg │ ├── 20230214230703.jpg │ ├── 20230214231215.jpg │ ├── 20230214231901.jpg │ └── 20230214233740.jpg ├── mysql │ ├── 161034492-b420439a-f5fb-4bfd-bc3a-d43e63ac9bb5.png │ ├── 161034853-96cc6e51-3a71-4621-8b22-1e066ba3b4c1.png │ ├── 161035483-5c07bc2a-2b0c-4839-97a0-77872064cb50.png │ ├── 161036291-05d4f84d-7d61-470c-b12d-be219bd8e85c.png │ ├── 161036600-0c7eb97c-5c65-4c9f-880f-09f8a8283869.png │ ├── 161037041-b2891423-b1ec-4705-9deb-c94785645760.png │ ├── 161037448-f0ff8f57-68a0-4a56-9d40-aef87be72f02.png │ ├── 161037965-01a850d5-cc5f-484f-b60f-f8e4cb07a7ed.png │ ├── 161039046-bbf3b5de-0d7a-44df-a178-8a4ac53396e7.png │ ├── 161039376-873eac51-2a37-45a2-ad68-91418f1914b2.png │ ├── 161039540-72f1b007-4266-40e8-8ab0-8e0df30ef04f.png │ ├── 161040329-7fde87a3-4268-47dd-92e4-88059add0170.png │ ├── 161040800-bc413e1d-02e2-4b69-9e78-b823d349b75e.png │ └── 161043245-510c6c00-a2f1-4ed1-864c-f420c4795635.png ├── other │ └── 2023-02-12-01-49-34-249.jpg ├── proxy │ ├── 196925024-36ae2507-d93e-4b41-b866-4d488f8562f2.png │ ├── 196925319-d8444f63-4366-42d4-b4ff-fc8596241b27.png │ ├── 196925535-e16a82cb-3434-4483-b693-068754b3115b.png │ ├── 196927461-08de7d53-5457-468c-9434-9f36fb238529.png │ ├── 196928234-9e264520-2098-4103-acbb-290f711c5f61.png │ ├── 196928397-6f60081a-1c39-42b0-8e4b-5e093e05fa5d.png │ ├── 196930014-ef283178-13a9-409c-9376-6ba8cd537c03.png │ ├── 196930240-3f826c25-e093-4640-ad7c-11557ad5f84a.png │ ├── 196931439-52751076-74ff-47b0-ac3d-6795482850c0.png │ ├── 196931830-7c576758-120d-4fe5-bfda-20107d988f0e.png │ ├── 196932086-ecaa0e50-a510-4a37-b164-b3fdfeb00152.png │ ├── 196932566-e0b31824-fa37-444c-87bc-f31ef565667f.png │ ├── 196932907-4e8d0fa2-923c-4eef-8d65-7d88966c2104.png │ ├── 197002724-b6e47bab-7419-4504-bcee-e5f258503e4e.png │ ├── 197003418-4a1decc3-cf8b-48c6-8263-3303753b7d46.png │ ├── 197003827-80f401c7-18ee-40c7-858c-2dd232828745.png │ ├── 197004127-33500081-c969-4461-9df0-39c700cda81f.png │ ├── 197004638-bdf7b4fa-41f1-4b6d-ba02-8a758accd4ad.png │ ├── 197005332-6ee4dd74-c044-40a7-9d37-57fa79a9be9c.png │ ├── 197005511-8409ff0a-b07d-4fab-aa4b-a2f13389b105.png │ ├── 197006789-2de916db-6155-4e43-bc27-b479177915a0.png │ ├── 197007874-96edc6e3-4860-1d4a-f1ef-3e48ca1cd2f5.jpg │ ├── 197007874-ea036065-a833-4f97-b98b-29b8784132a7.png │ ├── 197010554-f110f621-a20e-4955-a439-370efacc8edc.png │ ├── 20240506152231.jpg │ ├── 20240506152439.jpg │ ├── 20240506153328.jpg │ ├── 20240506153438.jpg │ ├── 20240506161632.jpg │ ├── 20240506162432.jpg │ ├── 20240506162827.jpg │ ├── 20240506164443.jpg │ └── 465829cd-f7d2-4d3a-a941-f8e820a9c5c4.png ├── setting │ └── 20230215115916.jpg ├── setu │ ├── 2023-02-12-02-06-43-939.jpg │ ├── 2023-02-12-14-41-20-265.jpg │ ├── 2023-02-12-15-25-02-149.jpg │ ├── 2023-02-12-16-08-57-032.jpg │ ├── 2023-02-12-16-34-08-694.jpg │ ├── 2023-02-12-17-25-23-928.jpg │ ├── 2023-02-12-17-32-03-978.jpg │ ├── 2023-02-12-17-42-11-770.jpg │ ├── 2023-02-13-22-17-36-794.jpg │ ├── 2023-02-13-22-44-31-600.jpg │ ├── 2023-04-18-16-41-00-896.jpg │ ├── 2023-08-05-03-10-01-352.jpg │ └── 2023-08-05-21-15-23-553.jpg ├── subscribe │ ├── 2023-02-12-21-11-26-502.jpg │ ├── 2023-02-12-23-12-57-111.jpg │ ├── 2023-02-12-23-23-00-694.jpg │ ├── 2023-02-12-23-45-44-319.jpg │ ├── 2023-02-12-23-49-18-116.jpg │ ├── 2023-02-13-00-50-25-325.jpg │ ├── 2023-02-13-01-02-43-626.jpg │ ├── 2023-04-18-16-52-09-350.jpg │ └── 2023-04-18-17-05-17-306.jpg ├── undercover │ └── 2023-12-06-12-13-32-639.jpg └── wordCloud │ ├── 2023-08-01-00-37-22-492.jpg │ ├── 2023-08-01-11-46-49-853.jpg │ ├── mask-step-0001.jpg │ ├── mask-step-0002.jpg │ ├── mask-step-0003.jpg │ ├── mask-step-0004.jpg │ ├── mask-step-0005.jpg │ ├── mask-step-0006.jpg │ └── mask-step-0007.jpg ├── imgProxy.md ├── index.html ├── install.md ├── introduction.md ├── js ├── docsify-pagination.min.js ├── docsify@4.js ├── search.min.js └── zoom-image.min.js ├── manage.md ├── other.md ├── problem.md ├── setting.md ├── setu.md ├── subscribe.md ├── undercover.md └── wordCloud.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/README.md -------------------------------------------------------------------------------- /Theresa3rd-Bot/Theresa3rd-Bot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/Theresa3rd-Bot.sln -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Command/CQFriendCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Command/CQFriendCommand.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Command/CQGroupCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Command/CQGroupCommand.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Command/CQGroupQuoteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Command/CQGroupQuoteCommand.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Common/CQConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Common/CQConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Helper/CQHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Helper/CQHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Plugin/BasePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Plugin/BasePlugin.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Plugin/FriendApplyPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Plugin/FriendApplyPlugin.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Plugin/GroupMemberIncreasePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Plugin/GroupMemberIncreasePlugin.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Plugin/GroupMessagePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Plugin/GroupMessagePlugin.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Plugin/PrivateMessagePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Plugin/PrivateMessagePlugin.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Program.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Properties/launchSettings.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Relay/CQFriendRelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Relay/CQFriendRelay.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Relay/CQGroupRelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Relay/CQGroupRelay.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Reporter/CQReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Reporter/CQReporter.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Result/CQResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Result/CQResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Session/CQSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Session/CQSession.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/Startup.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/TheresaBot.GoCqHttp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/TheresaBot.GoCqHttp.csproj -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/appsettings.Development.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/appsettings.Production.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/appsettings.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.GoCqHttp/运行TheresaBot-GoCqHttp-8088.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.GoCqHttp/运行TheresaBot-GoCqHttp-8088.ps1 -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/BotImg/face/emmm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/BotImg/face/emmm.jpg -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/BotImg/face/error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/BotImg/face/error.jpg -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/BotImg/face/shenyuanjiesuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/BotImg/face/shenyuanjiesuan.png -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/BotImg/face/welcome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/BotImg/face/welcome.gif -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/BotImg/localSetu/德丽莎/71421964_p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/BotImg/localSetu/德丽莎/71421964_p1.jpg -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/BotImg/mask/mask01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/BotImg/mask/mask01.png -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/BotImg/mask/mask02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/BotImg/mask/mask02.png -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/BotImg/mask/mask03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/BotImg/mask/mask03.png -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/BotImg/mask/mask04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/BotImg/mask/mask04.png -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Cache/CoolingCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Cache/CoolingCache.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Cache/GameCahce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Cache/GameCahce.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Cache/PixivRankingCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Cache/PixivRankingCache.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Cache/PixivUserProfileCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Cache/PixivUserProfileCache.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Cache/ProcessCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Cache/ProcessCache.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Cache/RepeatCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Cache/RepeatCache.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Command/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Command/BaseCommand.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Command/GroupCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Command/GroupCommand.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Command/GroupQuoteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Command/GroupQuoteCommand.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Command/PrivateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Command/PrivateCommand.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Common/BotConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Common/BotConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Common/DataPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Common/DataPath.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Common/FilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Common/FilePath.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Common/HttpUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Common/HttpUrl.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Common/JwtConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Common/JwtConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Common/ResultCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Common/ResultCode.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Backstage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Backstage.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Game.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Game.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/General.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/General.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Manage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Manage.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Menu.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Permissions.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Pixiv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Pixiv.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/PixivRanking.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/PixivRanking.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Reminder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Reminder.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Repeater.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Repeater.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Saucenao.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Saucenao.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Setu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Setu.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Subscribe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Subscribe.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/TimingSetu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/TimingSetu.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/Welcome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/Welcome.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Config/WordCloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Config/WordCloud.yml -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/BaseController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/BlackListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/BlackListController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/ConfigController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/ConfigController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/CookieController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/CookieController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/CountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/CountController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/DictionaryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/DictionaryController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/GameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/GameController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/GroupController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/GroupController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/OptionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/OptionController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/PathController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/PathController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/SubscribeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/SubscribeController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/SugarController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/SugarController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Controller/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Controller/UserController.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/BanMemberDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/BanMemberDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/BanPixiverDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/BanPixiverDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/BanTagDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/BanTagDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/DBClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/DBClient.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/DbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/DbContext.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/DictionaryDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/DictionaryDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/ImageRecordDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/ImageRecordDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/MessageRecordDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/MessageRecordDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/PixivRecordDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/PixivRecordDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/RequestRecordDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/RequestRecordDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/SubscribeDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/SubscribeDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/SubscribeGroupDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/SubscribeGroupDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/SubscribeRecordDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/SubscribeRecordDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/SugarTagDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/SugarTagDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/UCWordDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/UCWordDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Dao/WebsiteDao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Dao/WebsiteDao.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Datas/BanMemberDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Datas/BanMemberDatas.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Datas/BanPixiverDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Datas/BanPixiverDatas.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Datas/BanTagDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Datas/BanTagDatas.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Datas/CountDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Datas/CountDatas.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Datas/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Datas/DataManager.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Datas/RunningDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Datas/RunningDatas.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Datas/SubscribeDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Datas/SubscribeDatas.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Datas/SugarTagDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Datas/SugarTagDatas.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Datas/WebsiteDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Datas/WebsiteDatas.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Drawer/BaseDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Drawer/BaseDrawer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Drawer/BasePreviewDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Drawer/BasePreviewDrawer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Drawer/PixivRankingDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Drawer/PixivRankingDrawer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Drawer/PixivUserWorkDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Drawer/PixivUserWorkDrawer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Drawer/SubscribeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Drawer/SubscribeDrawer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Drawer/WordCloudDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Drawer/WordCloudDrawer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/ApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/ApiException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/BaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/BaseException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/GameException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/GameException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/GameFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/GameFailedException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/GameFinishedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/GameFinishedException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/GameStopedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/GameStopedException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/HandleException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/HandleException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/NoAnswerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/NoAnswerException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/NoRankingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/NoRankingException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/PixivException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/PixivException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/ProcessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/ProcessException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Exceptions/StepTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Exceptions/StepTimeoutException.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Font/hywenhei85w.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Font/hywenhei85w.ttf -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Font/simsun.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Font/simsun.ttc -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Game/BaseGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Game/BaseGame.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Game/BaseGroupGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Game/BaseGroupGame.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Game/BasePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Game/BasePlayer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCCamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCCamp.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCGame.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCPlayer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCRound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCRound.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCSpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCSpeech.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCVote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCVote.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCVoteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Game/Undercover/UCVoteResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/BaseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/BaseHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/CookieHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/CookieHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/DictionaryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/DictionaryHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/GameHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/GameHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/LocalSetuHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/LocalSetuHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/LoliconHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/LoliconHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/LolisukiHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/LolisukiHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/ManageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/ManageHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/MenuHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/MenuHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/MiyousheHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/MiyousheHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/PixivHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/PixivHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/PixivPushHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/PixivPushHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/PixivRankingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/PixivRankingHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/PixivSubscribeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/PixivSubscribeHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/ReminderHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/ReminderHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/SaucenaoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/SaucenaoHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/SetuHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/SetuHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/SubscribeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/SubscribeHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/SugarTagHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/SugarTagHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/UndercoverHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/UndercoverHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Handler/WordCloudHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Handler/WordCloudHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/AppHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/AppHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/BotHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/BotHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/BusinessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/BusinessHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/CommandHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/CommandHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/ConfigHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/ContentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/ContentHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/DateTimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/DateTimeHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/EnumHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/FileHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/HttpHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/IPAddressHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/IPAddressHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/ImageHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/JWTHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/JWTHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/ListHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/ListHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/LogHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/MathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/MathHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/PermissionsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/PermissionsHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/PixivHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/PixivHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/RandomHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/RandomHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/RecordHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/RecordHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/SessionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/SessionHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/StringHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/UrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/UrlHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Helper/ZipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Helper/ZipHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Invoker/HandlerInvokers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Invoker/HandlerInvokers.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Mode/PixivRankingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Mode/PixivRankingMode.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Ascii2d/Ascii2dItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Ascii2d/Ascii2dItem.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Ascii2d/Ascii2dResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Ascii2d/Ascii2dResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Base/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Base/BaseModel.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Base/BaseSourceItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Base/BaseSourceItem.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Base/BaseWorkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Base/BaseWorkInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Bot/BotInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Bot/BotInfos.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Bot/GroupInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Bot/GroupInfos.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Cache/GroupCoolingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Cache/GroupCoolingInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Cache/MemberCoolingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Cache/MemberCoolingInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Cache/PixivRankingHandingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Cache/PixivRankingHandingInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Cache/PixivRankingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Cache/PixivRankingInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Cache/PixivUserProfileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Cache/PixivUserProfileInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Cache/RepeatInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Cache/RepeatInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Cache/TimingCoolingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Cache/TimingCoolingInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/BackstageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/BackstageConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/BaseConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/BaseConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/BaseGameConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/BaseGameConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/BasePluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/BasePluginConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/BaseSubscribeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/BaseSubscribeConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/GameConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/GameConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/GeneralConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/GeneralConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/LocalSetuConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/LocalSetuConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/LoliconConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/LoliconConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/LolisukiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/LolisukiConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/ManageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/ManageConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/MenuConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/MenuConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/MysUserSubscribeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/MysUserSubscribeConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/PermissionsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/PermissionsConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/PixivConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/PixivConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/PixivRankingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/PixivRankingConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/PixivTagSubscribeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/PixivTagSubscribeConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/PixivUserConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/PixivUserConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/PixivUserSubscribeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/PixivUserSubscribeConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/ReminderConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/ReminderConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/RepeaterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/RepeaterConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/SaucenaoConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/SaucenaoConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/SetuConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/SetuConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/SetuPixivConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/SetuPixivConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/SubscribeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/SubscribeConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/TimingSetuConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/TimingSetuConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/WelcomeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/WelcomeConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Config/WordCloudConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Config/WordCloudConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Content/BaseContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Content/BaseContent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Content/ForwardContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Content/ForwardContent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Content/ImageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Content/ImageContent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Content/LocalImageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Content/LocalImageContent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Content/PixivSetuContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Content/PixivSetuContent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Content/PlainContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Content/PlainContent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Content/SetuContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Content/SetuContent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Content/WebImageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Content/WebImageContent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddBanMemberDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddBanMemberDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddBanPixiverDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddBanPixiverDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddBanTagDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddBanTagDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddDictionaryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddDictionaryDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddSugarTagDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddSugarTagDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddUCWordDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/DTO/AddUCWordDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/DTO/CookieDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/DTO/CookieDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/DTO/IdsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/DTO/IdsDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/DTO/LoginDataDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/DTO/LoginDataDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Data/CountData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Data/CountData.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Drawing/BasePixivDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Drawing/BasePixivDrawing.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Drawing/PixivPreviewDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Drawing/PixivPreviewDrawing.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Drawing/PixivRankingDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Drawing/PixivRankingDrawing.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Drawing/PixivUserWorkDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Drawing/PixivUserWorkDrawing.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Error/ErrorRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Error/ErrorRecord.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Infos/HttpFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Infos/HttpFileInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Invoker/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Invoker/CommandHandler.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Jwt/JwtToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Jwt/JwtToken.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Jwt/JwtTokenVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Jwt/JwtTokenVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/LocalSetu/LocalSetuInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/LocalSetu/LocalSetuInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Lolicon/LoliconParamV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Lolicon/LoliconParamV2.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Lolicon/LoliconResultV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Lolicon/LoliconResultV2.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Lolisuki/LolisukiParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Lolisuki/LolisukiParam.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Lolisuki/LolisukiResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Lolisuki/LolisukiResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Mys/MysPostDataDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Mys/MysPostDataDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Mys/MysResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Mys/MysResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Mys/MysUserDataDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Mys/MysUserDataDto.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/BanMemberPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/BanMemberPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/BanPixiverPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/BanPixiverPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/BanTagPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/BanTagPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/BasePO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/BasePO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/DictionaryPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/DictionaryPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/ImageRecordPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/ImageRecordPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/MessageRecordPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/MessageRecordPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/PixivRecordPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/PixivRecordPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/RequestRecordPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/RequestRecordPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/SubscribeGroupPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/SubscribeGroupPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/SubscribePO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/SubscribePO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/SubscribeRecordPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/SubscribeRecordPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/SugarTagPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/SugarTagPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/UCWordPO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/UCWordPO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/PO/WebsitePO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/PO/WebsitePO.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivBookmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivBookmarks.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivFollow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivFollow.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivFollowLatest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivFollowLatest.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivProfileDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivProfileDetail.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivRankingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivRankingData.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivRankingDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivRankingDetail.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivScanReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivScanReport.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivSearch.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivSearchTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivSearchTask.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivTagScanReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivTagScanReport.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivTags.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUgoiraMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUgoiraMeta.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUserProfileAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUserProfileAll.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUserProfileIllusts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUserProfileIllusts.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUserProfileTop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUserProfileTop.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUserScanReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUserScanReport.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUserWorkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivUserWorkInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivWorkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivWorkInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivWorkPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Pixiv/PixivWorkPath.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Process/BaseProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Process/BaseProcess.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Process/BaseStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Process/BaseStep.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Process/FriendProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Process/FriendProcess.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Process/FriendStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Process/FriendStep.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Process/GroupProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Process/GroupProcess.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Process/GroupStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Process/GroupStep.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Result/ApiResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Result/ApiResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Result/BaseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Result/BaseResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Result/UndoResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Result/UndoResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Saucenao/SaucenaoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Saucenao/SaucenaoItem.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Saucenao/SaucenaoResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Saucenao/SaucenaoResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Subscribe/MysSubscribe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Subscribe/MysSubscribe.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Subscribe/PixivSubscribe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Subscribe/PixivSubscribe.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Subscribe/SubscribeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Subscribe/SubscribeInfo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Subscribe/SubscribeTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Subscribe/SubscribeTask.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/BanMemberVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/BanMemberVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/BanPixiverVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/BanPixiverVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/BanTagVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/BanTagVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/CountDataVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/CountDataVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/DictionaryVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/DictionaryVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/GroupInfoVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/GroupInfoVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/ImagePathVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/ImagePathVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/OptionVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/OptionVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/SubscribeDataVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/SubscribeDataVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/SubscribeInfoVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/SubscribeInfoVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/SugarTagVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/SugarTagVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/VO/UCWordVo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/VO/UCWordVo.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Model/Yml/YmlOperater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Model/Yml/YmlOperater.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Properties/launchSettings.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Relay/BaseRelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Relay/BaseRelay.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Relay/GroupRelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Relay/GroupRelay.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Relay/PrivateRelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Relay/PrivateRelay.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Reporter/BaseReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Reporter/BaseReporter.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Resources/char_state_tab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Resources/char_state_tab.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Resources/cn_synonym.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Resources/cn_synonym.txt -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Resources/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Resources/dict.txt -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Resources/idf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Resources/idf.txt -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Resources/pos_prob_emit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Resources/pos_prob_emit.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Resources/pos_prob_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Resources/pos_prob_start.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Resources/pos_prob_trans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Resources/pos_prob_trans.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Resources/prob_emit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Resources/prob_emit.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Resources/prob_trans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Resources/prob_trans.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Resources/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Resources/stopwords.txt -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/Ascii2dService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/Ascii2dService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/BanMemberService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/BanMemberService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/BanPixiverService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/BanPixiverService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/BanTagService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/BanTagService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/DictionaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/DictionaryService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/LocalSetuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/LocalSetuService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/LoliconService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/LoliconService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/LolisukiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/LolisukiService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/MiyousheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/MiyousheService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/PathService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/PathService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/PixivRankingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/PixivRankingService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/PixivService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/PixivService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/RecordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/RecordService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/RequestRecordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/RequestRecordService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/SaucenaoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/SaucenaoService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/SetuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/SetuService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/SubscribeGroupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/SubscribeGroupService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/SubscribeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/SubscribeService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/SugarTagService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/SugarTagService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/UCWordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/UCWordService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/WebsiteService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/WebsiteService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Services/WordCloudService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Services/WordCloudService.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Session/BaseSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Session/BaseSession.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/TheresaBot.Main.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/TheresaBot.Main.csproj -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/CookieJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/CookieJob.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/DownloadClearJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/DownloadClearJob.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/HeartbeatTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/HeartbeatTimer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/MysUserScanTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/MysUserScanTimer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/PixivTagScanTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/PixivTagScanTimer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/PixivUserScanTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/PixivUserScanTimer.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/ReminderJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/ReminderJob.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/SchedulerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/SchedulerManager.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/TempClearJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/TempClearJob.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/TimerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/TimerManager.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/TimingRankingJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/TimingRankingJob.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/TimingSetuJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/TimingSetuJob.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Timers/WordCloudJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Timers/WordCloudJob.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/CommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/CommandType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/DictionaryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/DictionaryType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/GameOptions/UCGameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/GameOptions/UCGameMode.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/LolisukiLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/LolisukiLevel.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/LolisukiTaste.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/LolisukiTaste.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/MysSectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/MysSectionType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/PixivRandomType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/PixivRandomType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/PixivRankingSortType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/PixivRankingSortType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/PixivRankingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/PixivRankingType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/PixivUserScanType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/PixivUserScanType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/PlatformType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/PlatformType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/ResendType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/ResendType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/SetuSourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/SetuSourceType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/StepOptions/PixivSyncType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/StepOptions/PixivSyncType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/StepOptions/PushType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/StepOptions/PushType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/SubscribeDynamicType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/SubscribeDynamicType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/SubscribeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/SubscribeType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/TagMatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/TagMatchType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/TimingSetuSourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/TimingSetuSourceType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/WebsiteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/WebsiteType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/WordCloudType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/WordCloudType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/Type/YNAType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/Type/YNAType.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.Main/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.Main/log4net.config -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Command/MiraiFriendCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Command/MiraiFriendCommand.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Command/MiraiGroupCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Command/MiraiGroupCommand.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Command/MiraiGroupQuoteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Command/MiraiGroupQuoteCommand.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Common/MiraiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Common/MiraiConfig.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/BaseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/BaseEvent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/DisconnectedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/DisconnectedEvent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/FriendApplyEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/FriendApplyEvent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/FriendMessageEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/FriendMessageEvent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/GroupMemberJoinedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/GroupMemberJoinedEvent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/GroupMessageEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/GroupMessageEvent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/TempMessageEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Event/TempMessageEvent.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Helper/MiraiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Helper/MiraiHelper.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Program.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Relay/MiraiFriendRelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Relay/MiraiFriendRelay.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Relay/MiraiGroupRelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Relay/MiraiGroupRelay.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Relay/MiraiTempRelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Relay/MiraiTempRelay.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Reporter/MiraiReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Reporter/MiraiReporter.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Result/MiraiResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Result/MiraiResult.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Session/MiraiSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Session/MiraiSession.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/Startup.cs -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/TheresaBot.MiraiHttpApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/TheresaBot.MiraiHttpApi.csproj -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/appsettings.Development.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/appsettings.Production.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/appsettings.json -------------------------------------------------------------------------------- /Theresa3rd-Bot/TheresaBot.MiraiHttpApi/运行TheresaBot-MiraiHttpApi-8088.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/运行TheresaBot-MiraiHttpApi-8088.ps1 -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/cookie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/cookie.md -------------------------------------------------------------------------------- /docs/css/vue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/css/vue.css -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/img/73532572_p0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/73532572_p0.png -------------------------------------------------------------------------------- /docs/img/cookie/177747559-168c1377-db4a-49f0-869f-78749f80707e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/cookie/177747559-168c1377-db4a-49f0-869f-78749f80707e.png -------------------------------------------------------------------------------- /docs/img/cookie/177748449-02f59d79-a0bc-4475-80f6-40f0c56e06a6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/cookie/177748449-02f59d79-a0bc-4475-80f6-40f0c56e06a6.png -------------------------------------------------------------------------------- /docs/img/cookie/177758500-94720035-c11a-4689-bb91-eca1ac95ce7e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/cookie/177758500-94720035-c11a-4689-bb91-eca1ac95ce7e.png -------------------------------------------------------------------------------- /docs/img/cookie/177758915-69de1308-d934-407f-a945-17252124c969.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/cookie/177758915-69de1308-d934-407f-a945-17252124c969.png -------------------------------------------------------------------------------- /docs/img/cookie/20230325171938.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/cookie/20230325171938.jpg -------------------------------------------------------------------------------- /docs/img/install/2023-03-02-18-58-03-758.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/install/2023-03-02-18-58-03-758.jpg -------------------------------------------------------------------------------- /docs/img/install/2023-05-08-02-31-47-624.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/install/2023-05-08-02-31-47-624.jpg -------------------------------------------------------------------------------- /docs/img/introduction/20230323181856.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/introduction/20230323181856.jpg -------------------------------------------------------------------------------- /docs/img/introduction/20230324105710.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/introduction/20230324105710.jpg -------------------------------------------------------------------------------- /docs/img/introduction/20230805213410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/introduction/20230805213410.jpg -------------------------------------------------------------------------------- /docs/img/introduction/6c0bc3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/introduction/6c0bc3.gif -------------------------------------------------------------------------------- /docs/img/introduction/77172327_p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/introduction/77172327_p2.jpg -------------------------------------------------------------------------------- /docs/img/introduction/da52ea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/introduction/da52ea.gif -------------------------------------------------------------------------------- /docs/img/introduction/fd1f8a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/introduction/fd1f8a.gif -------------------------------------------------------------------------------- /docs/img/manage/2023-08-05-17-27-38-481.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/manage/2023-08-05-17-27-38-481.jpg -------------------------------------------------------------------------------- /docs/img/manage/2023-08-05-17-54-26-340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/manage/2023-08-05-17-54-26-340.jpg -------------------------------------------------------------------------------- /docs/img/manage/2023-08-05-19-44-49-706.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/manage/2023-08-05-19-44-49-706.jpg -------------------------------------------------------------------------------- /docs/img/manage/2023-08-05-20-31-54-936.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/manage/2023-08-05-20-31-54-936.jpg -------------------------------------------------------------------------------- /docs/img/manage/2023-08-05-20-54-26-475.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/manage/2023-08-05-20-54-26-475.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214183859.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214183859.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214185810.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214185810.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214190430.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214190430.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214191133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214191133.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214191428.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214191428.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214220550.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214220550.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214221934.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214221934.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214224403.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214224403.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214230703.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214230703.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214231215.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214231215.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214231901.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214231901.jpg -------------------------------------------------------------------------------- /docs/img/mirai/20230214233740.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mirai/20230214233740.jpg -------------------------------------------------------------------------------- /docs/img/mysql/161034492-b420439a-f5fb-4bfd-bc3a-d43e63ac9bb5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161034492-b420439a-f5fb-4bfd-bc3a-d43e63ac9bb5.png -------------------------------------------------------------------------------- /docs/img/mysql/161034853-96cc6e51-3a71-4621-8b22-1e066ba3b4c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161034853-96cc6e51-3a71-4621-8b22-1e066ba3b4c1.png -------------------------------------------------------------------------------- /docs/img/mysql/161035483-5c07bc2a-2b0c-4839-97a0-77872064cb50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161035483-5c07bc2a-2b0c-4839-97a0-77872064cb50.png -------------------------------------------------------------------------------- /docs/img/mysql/161036291-05d4f84d-7d61-470c-b12d-be219bd8e85c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161036291-05d4f84d-7d61-470c-b12d-be219bd8e85c.png -------------------------------------------------------------------------------- /docs/img/mysql/161036600-0c7eb97c-5c65-4c9f-880f-09f8a8283869.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161036600-0c7eb97c-5c65-4c9f-880f-09f8a8283869.png -------------------------------------------------------------------------------- /docs/img/mysql/161037041-b2891423-b1ec-4705-9deb-c94785645760.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161037041-b2891423-b1ec-4705-9deb-c94785645760.png -------------------------------------------------------------------------------- /docs/img/mysql/161037448-f0ff8f57-68a0-4a56-9d40-aef87be72f02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161037448-f0ff8f57-68a0-4a56-9d40-aef87be72f02.png -------------------------------------------------------------------------------- /docs/img/mysql/161037965-01a850d5-cc5f-484f-b60f-f8e4cb07a7ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161037965-01a850d5-cc5f-484f-b60f-f8e4cb07a7ed.png -------------------------------------------------------------------------------- /docs/img/mysql/161039046-bbf3b5de-0d7a-44df-a178-8a4ac53396e7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161039046-bbf3b5de-0d7a-44df-a178-8a4ac53396e7.png -------------------------------------------------------------------------------- /docs/img/mysql/161039376-873eac51-2a37-45a2-ad68-91418f1914b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161039376-873eac51-2a37-45a2-ad68-91418f1914b2.png -------------------------------------------------------------------------------- /docs/img/mysql/161039540-72f1b007-4266-40e8-8ab0-8e0df30ef04f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161039540-72f1b007-4266-40e8-8ab0-8e0df30ef04f.png -------------------------------------------------------------------------------- /docs/img/mysql/161040329-7fde87a3-4268-47dd-92e4-88059add0170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161040329-7fde87a3-4268-47dd-92e4-88059add0170.png -------------------------------------------------------------------------------- /docs/img/mysql/161040800-bc413e1d-02e2-4b69-9e78-b823d349b75e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161040800-bc413e1d-02e2-4b69-9e78-b823d349b75e.png -------------------------------------------------------------------------------- /docs/img/mysql/161043245-510c6c00-a2f1-4ed1-864c-f420c4795635.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/mysql/161043245-510c6c00-a2f1-4ed1-864c-f420c4795635.png -------------------------------------------------------------------------------- /docs/img/other/2023-02-12-01-49-34-249.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/other/2023-02-12-01-49-34-249.jpg -------------------------------------------------------------------------------- /docs/img/proxy/196925024-36ae2507-d93e-4b41-b866-4d488f8562f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196925024-36ae2507-d93e-4b41-b866-4d488f8562f2.png -------------------------------------------------------------------------------- /docs/img/proxy/196925319-d8444f63-4366-42d4-b4ff-fc8596241b27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196925319-d8444f63-4366-42d4-b4ff-fc8596241b27.png -------------------------------------------------------------------------------- /docs/img/proxy/196925535-e16a82cb-3434-4483-b693-068754b3115b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196925535-e16a82cb-3434-4483-b693-068754b3115b.png -------------------------------------------------------------------------------- /docs/img/proxy/196927461-08de7d53-5457-468c-9434-9f36fb238529.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196927461-08de7d53-5457-468c-9434-9f36fb238529.png -------------------------------------------------------------------------------- /docs/img/proxy/196928234-9e264520-2098-4103-acbb-290f711c5f61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196928234-9e264520-2098-4103-acbb-290f711c5f61.png -------------------------------------------------------------------------------- /docs/img/proxy/196928397-6f60081a-1c39-42b0-8e4b-5e093e05fa5d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196928397-6f60081a-1c39-42b0-8e4b-5e093e05fa5d.png -------------------------------------------------------------------------------- /docs/img/proxy/196930014-ef283178-13a9-409c-9376-6ba8cd537c03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196930014-ef283178-13a9-409c-9376-6ba8cd537c03.png -------------------------------------------------------------------------------- /docs/img/proxy/196930240-3f826c25-e093-4640-ad7c-11557ad5f84a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196930240-3f826c25-e093-4640-ad7c-11557ad5f84a.png -------------------------------------------------------------------------------- /docs/img/proxy/196931439-52751076-74ff-47b0-ac3d-6795482850c0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196931439-52751076-74ff-47b0-ac3d-6795482850c0.png -------------------------------------------------------------------------------- /docs/img/proxy/196931830-7c576758-120d-4fe5-bfda-20107d988f0e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196931830-7c576758-120d-4fe5-bfda-20107d988f0e.png -------------------------------------------------------------------------------- /docs/img/proxy/196932086-ecaa0e50-a510-4a37-b164-b3fdfeb00152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196932086-ecaa0e50-a510-4a37-b164-b3fdfeb00152.png -------------------------------------------------------------------------------- /docs/img/proxy/196932566-e0b31824-fa37-444c-87bc-f31ef565667f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196932566-e0b31824-fa37-444c-87bc-f31ef565667f.png -------------------------------------------------------------------------------- /docs/img/proxy/196932907-4e8d0fa2-923c-4eef-8d65-7d88966c2104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/196932907-4e8d0fa2-923c-4eef-8d65-7d88966c2104.png -------------------------------------------------------------------------------- /docs/img/proxy/197002724-b6e47bab-7419-4504-bcee-e5f258503e4e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197002724-b6e47bab-7419-4504-bcee-e5f258503e4e.png -------------------------------------------------------------------------------- /docs/img/proxy/197003418-4a1decc3-cf8b-48c6-8263-3303753b7d46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197003418-4a1decc3-cf8b-48c6-8263-3303753b7d46.png -------------------------------------------------------------------------------- /docs/img/proxy/197003827-80f401c7-18ee-40c7-858c-2dd232828745.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197003827-80f401c7-18ee-40c7-858c-2dd232828745.png -------------------------------------------------------------------------------- /docs/img/proxy/197004127-33500081-c969-4461-9df0-39c700cda81f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197004127-33500081-c969-4461-9df0-39c700cda81f.png -------------------------------------------------------------------------------- /docs/img/proxy/197004638-bdf7b4fa-41f1-4b6d-ba02-8a758accd4ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197004638-bdf7b4fa-41f1-4b6d-ba02-8a758accd4ad.png -------------------------------------------------------------------------------- /docs/img/proxy/197005332-6ee4dd74-c044-40a7-9d37-57fa79a9be9c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197005332-6ee4dd74-c044-40a7-9d37-57fa79a9be9c.png -------------------------------------------------------------------------------- /docs/img/proxy/197005511-8409ff0a-b07d-4fab-aa4b-a2f13389b105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197005511-8409ff0a-b07d-4fab-aa4b-a2f13389b105.png -------------------------------------------------------------------------------- /docs/img/proxy/197006789-2de916db-6155-4e43-bc27-b479177915a0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197006789-2de916db-6155-4e43-bc27-b479177915a0.png -------------------------------------------------------------------------------- /docs/img/proxy/197007874-96edc6e3-4860-1d4a-f1ef-3e48ca1cd2f5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197007874-96edc6e3-4860-1d4a-f1ef-3e48ca1cd2f5.jpg -------------------------------------------------------------------------------- /docs/img/proxy/197007874-ea036065-a833-4f97-b98b-29b8784132a7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197007874-ea036065-a833-4f97-b98b-29b8784132a7.png -------------------------------------------------------------------------------- /docs/img/proxy/197010554-f110f621-a20e-4955-a439-370efacc8edc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/197010554-f110f621-a20e-4955-a439-370efacc8edc.png -------------------------------------------------------------------------------- /docs/img/proxy/20240506152231.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/20240506152231.jpg -------------------------------------------------------------------------------- /docs/img/proxy/20240506152439.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/20240506152439.jpg -------------------------------------------------------------------------------- /docs/img/proxy/20240506153328.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/20240506153328.jpg -------------------------------------------------------------------------------- /docs/img/proxy/20240506153438.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/20240506153438.jpg -------------------------------------------------------------------------------- /docs/img/proxy/20240506161632.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/20240506161632.jpg -------------------------------------------------------------------------------- /docs/img/proxy/20240506162432.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/20240506162432.jpg -------------------------------------------------------------------------------- /docs/img/proxy/20240506162827.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/20240506162827.jpg -------------------------------------------------------------------------------- /docs/img/proxy/20240506164443.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/20240506164443.jpg -------------------------------------------------------------------------------- /docs/img/proxy/465829cd-f7d2-4d3a-a941-f8e820a9c5c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/proxy/465829cd-f7d2-4d3a-a941-f8e820a9c5c4.png -------------------------------------------------------------------------------- /docs/img/setting/20230215115916.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setting/20230215115916.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-02-12-02-06-43-939.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-02-12-02-06-43-939.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-02-12-14-41-20-265.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-02-12-14-41-20-265.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-02-12-15-25-02-149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-02-12-15-25-02-149.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-02-12-16-08-57-032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-02-12-16-08-57-032.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-02-12-16-34-08-694.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-02-12-16-34-08-694.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-02-12-17-25-23-928.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-02-12-17-25-23-928.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-02-12-17-32-03-978.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-02-12-17-32-03-978.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-02-12-17-42-11-770.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-02-12-17-42-11-770.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-02-13-22-17-36-794.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-02-13-22-17-36-794.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-02-13-22-44-31-600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-02-13-22-44-31-600.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-04-18-16-41-00-896.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-04-18-16-41-00-896.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-08-05-03-10-01-352.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-08-05-03-10-01-352.jpg -------------------------------------------------------------------------------- /docs/img/setu/2023-08-05-21-15-23-553.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/setu/2023-08-05-21-15-23-553.jpg -------------------------------------------------------------------------------- /docs/img/subscribe/2023-02-12-21-11-26-502.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/subscribe/2023-02-12-21-11-26-502.jpg -------------------------------------------------------------------------------- /docs/img/subscribe/2023-02-12-23-12-57-111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/subscribe/2023-02-12-23-12-57-111.jpg -------------------------------------------------------------------------------- /docs/img/subscribe/2023-02-12-23-23-00-694.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/subscribe/2023-02-12-23-23-00-694.jpg -------------------------------------------------------------------------------- /docs/img/subscribe/2023-02-12-23-45-44-319.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/subscribe/2023-02-12-23-45-44-319.jpg -------------------------------------------------------------------------------- /docs/img/subscribe/2023-02-12-23-49-18-116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/subscribe/2023-02-12-23-49-18-116.jpg -------------------------------------------------------------------------------- /docs/img/subscribe/2023-02-13-00-50-25-325.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/subscribe/2023-02-13-00-50-25-325.jpg -------------------------------------------------------------------------------- /docs/img/subscribe/2023-02-13-01-02-43-626.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/subscribe/2023-02-13-01-02-43-626.jpg -------------------------------------------------------------------------------- /docs/img/subscribe/2023-04-18-16-52-09-350.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/subscribe/2023-04-18-16-52-09-350.jpg -------------------------------------------------------------------------------- /docs/img/subscribe/2023-04-18-17-05-17-306.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/subscribe/2023-04-18-17-05-17-306.jpg -------------------------------------------------------------------------------- /docs/img/undercover/2023-12-06-12-13-32-639.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/undercover/2023-12-06-12-13-32-639.jpg -------------------------------------------------------------------------------- /docs/img/wordCloud/2023-08-01-00-37-22-492.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/wordCloud/2023-08-01-00-37-22-492.jpg -------------------------------------------------------------------------------- /docs/img/wordCloud/2023-08-01-11-46-49-853.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/wordCloud/2023-08-01-11-46-49-853.jpg -------------------------------------------------------------------------------- /docs/img/wordCloud/mask-step-0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/wordCloud/mask-step-0001.jpg -------------------------------------------------------------------------------- /docs/img/wordCloud/mask-step-0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/wordCloud/mask-step-0002.jpg -------------------------------------------------------------------------------- /docs/img/wordCloud/mask-step-0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/wordCloud/mask-step-0003.jpg -------------------------------------------------------------------------------- /docs/img/wordCloud/mask-step-0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/wordCloud/mask-step-0004.jpg -------------------------------------------------------------------------------- /docs/img/wordCloud/mask-step-0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/wordCloud/mask-step-0005.jpg -------------------------------------------------------------------------------- /docs/img/wordCloud/mask-step-0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/wordCloud/mask-step-0006.jpg -------------------------------------------------------------------------------- /docs/img/wordCloud/mask-step-0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/img/wordCloud/mask-step-0007.jpg -------------------------------------------------------------------------------- /docs/imgProxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/imgProxy.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/js/docsify-pagination.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/js/docsify-pagination.min.js -------------------------------------------------------------------------------- /docs/js/docsify@4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/js/docsify@4.js -------------------------------------------------------------------------------- /docs/js/search.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/js/search.min.js -------------------------------------------------------------------------------- /docs/js/zoom-image.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/js/zoom-image.min.js -------------------------------------------------------------------------------- /docs/manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/manage.md -------------------------------------------------------------------------------- /docs/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/other.md -------------------------------------------------------------------------------- /docs/problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/problem.md -------------------------------------------------------------------------------- /docs/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/setting.md -------------------------------------------------------------------------------- /docs/setu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/setu.md -------------------------------------------------------------------------------- /docs/subscribe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/subscribe.md -------------------------------------------------------------------------------- /docs/undercover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/undercover.md -------------------------------------------------------------------------------- /docs/wordCloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GardenHamster/Theresa3rd-Bot/HEAD/docs/wordCloud.md --------------------------------------------------------------------------------