[chusan] Add experimental New Plus support

pull/1/head
Dom Eori 2022-03-16 18:18:13 +09:00
parent 985b3b4a84
commit 74ab021014
4 changed files with 181 additions and 1 deletions

View File

@ -42,12 +42,13 @@ public class ChusanServletController {
private final GetUserRivalDataHandler getUserRivalDataHandler;
private final GetUserRivalMusicHandler getUserRivalMusicHandler;
private final GetUserSymbolChatSettingHandler getUserSymbolChatSettingHandler;
private final GetUserNetBattleDataHandler getUserNetBattleDataHandler;
private final GetUserTeamHandler getUserTeamHandler;
private final UpsertUserAllHandler upsertUserAllHandler;
private final UpsertUserChargelogHandler upsertUserChargelogHandler;
@Autowired
public ChusanServletController(GameLoginHandler gameLoginHandler, GameLogoutHandler gameLogoutHandler, GetGameChargeHandler getGameChargeHandler, GetGameEventHandler getGameEventHandler, GetGameIdlistHandler getGameIdlistHandler, GetGameRankingHandler getGameRankingHandler, GetGameSettingHandler getGameSettingHandler, GetTeamCourseRuleHandler getTeamCourseRuleHandler, GetTeamCourseSettingHandler getTeamCourseSettingHandler, GetUserActivityHandler getUserActivityHandler, GetUserCharacterHandler getUserCharacterHandler, GetUserChargeHandler getUserChargeHandler, GetUserCourseHandler getUserCourseHandler, GetUserDataHandler getUserDataHandler, GetUserDuelHandler getUserDuelHandler, GetUserFavoriteItemHandler getUserFavoriteItemHandler, GetUserItemHandler getUserItemHandler, GetUserLoginBonusHandler getUserLoginBonusHandler, GetUserMapAreaHandler getUserMapAreaHandler, GetUserMusicHandler getUserMusicHandler, GetUserOptionHandler getUserOptionHandler, GetUserPreviewHandler getUserPreviewHandler, GetUserRecentRatingHandler getUserRecentRatingHandler, GetUserRegionHandler getUserRegionHandler, GetUserRivalDataHandler getUserRivalDataHandler, GetUserRivalMusicHandler getUserRivalMusicHandler, GetUserTeamHandler getUserTeamHandler, UpsertUserAllHandler upsertUserAllHandler, UpsertUserChargelogHandler upsertUserChargelogHandler, GetUserSymbolChatSettingHandler getUserSymbolChatSettingHandler) {
public ChusanServletController(GameLoginHandler gameLoginHandler, GameLogoutHandler gameLogoutHandler, GetGameChargeHandler getGameChargeHandler, GetGameEventHandler getGameEventHandler, GetGameIdlistHandler getGameIdlistHandler, GetGameRankingHandler getGameRankingHandler, GetGameSettingHandler getGameSettingHandler, GetTeamCourseRuleHandler getTeamCourseRuleHandler, GetTeamCourseSettingHandler getTeamCourseSettingHandler, GetUserActivityHandler getUserActivityHandler, GetUserCharacterHandler getUserCharacterHandler, GetUserChargeHandler getUserChargeHandler, GetUserCourseHandler getUserCourseHandler, GetUserDataHandler getUserDataHandler, GetUserDuelHandler getUserDuelHandler, GetUserFavoriteItemHandler getUserFavoriteItemHandler, GetUserItemHandler getUserItemHandler, GetUserLoginBonusHandler getUserLoginBonusHandler, GetUserMapAreaHandler getUserMapAreaHandler, GetUserMusicHandler getUserMusicHandler, GetUserOptionHandler getUserOptionHandler, GetUserPreviewHandler getUserPreviewHandler, GetUserRecentRatingHandler getUserRecentRatingHandler, GetUserRegionHandler getUserRegionHandler, GetUserRivalDataHandler getUserRivalDataHandler, GetUserRivalMusicHandler getUserRivalMusicHandler, GetUserTeamHandler getUserTeamHandler, UpsertUserAllHandler upsertUserAllHandler, UpsertUserChargelogHandler upsertUserChargelogHandler, GetUserSymbolChatSettingHandler getUserSymbolChatSettingHandler, GetUserNetBattleDataHandler getUserNetBattleDataHandler) {
this.gameLoginHandler = gameLoginHandler;
this.gameLogoutHandler = gameLogoutHandler;
this.getGameChargeHandler = getGameChargeHandler;
@ -78,6 +79,7 @@ public class ChusanServletController {
this.upsertUserAllHandler = upsertUserAllHandler;
this.upsertUserChargelogHandler = upsertUserChargelogHandler;
this.getUserSymbolChatSettingHandler = getUserSymbolChatSettingHandler;
this.getUserNetBattleDataHandler = getUserNetBattleDataHandler;
}
@PostMapping("GameLoginApi")
@ -220,6 +222,11 @@ public class ChusanServletController {
return getUserSymbolChatSettingHandler.handle(request);
}
@PostMapping("GetUserNetBattleDataApi")
String getUserNetBattleData(@ModelAttribute Map<String, Object> request) throws JsonProcessingException {
return getUserNetBattleDataHandler.handle(request);
}
@PostMapping("UpsertClientBookkeepingApi")
String upsertClientBookkeeping(@ModelAttribute Map<String, Object> request) {
return "{\"returnCode\":\"1\"}";

View File

@ -0,0 +1,43 @@
package icu.samnyan.aqua.sega.chusan.handler.impl;
import com.fasterxml.jackson.core.JsonProcessingException;
import icu.samnyan.aqua.sega.chusan.handler.BaseHandler;
import icu.samnyan.aqua.sega.util.jackson.StringMapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
@Component("ChusanGetUserNetBattleDataHandler")
public class GetUserNetBattleDataHandler implements BaseHandler {
private static final Logger logger = LoggerFactory.getLogger(GetUserNetBattleDataHandler.class);
private final StringMapper mapper;
@Autowired
public GetUserNetBattleDataHandler(StringMapper mapper) {
this.mapper = mapper;
}
@Override
public String handle(Map<String, Object> request) throws JsonProcessingException {
String userId = (String) request.get("userId");
Map<String, Object> resultMap = new LinkedHashMap<>();
resultMap.put("userId", userId);
Map<String, Object> userNetBattleData = new LinkedHashMap<>();
userNetBattleData.put("recentNBSelectMusicList", List.of());
resultMap.put("userNetBattleData", userNetBattleData);
String json = mapper.write(resultMap);
logger.info("Response: " + json);
return json;
}
}

View File

@ -0,0 +1,65 @@
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (12, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',6, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (1000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2204, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2205, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2206, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2207, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2208, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2209, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2210, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11001, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11002, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11003, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11004, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11005, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11006, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11007, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11008, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11009, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11010, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11011, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11012, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11013, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11014, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11015, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11016, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11017, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11018, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11019, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11020, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11021, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11022, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11023, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11024, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11025, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11026, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11027, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11028, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11029, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11030, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11031, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11032, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11033, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11034, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11035, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11036, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11037, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11038, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11039, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11040, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11041, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',9, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11042, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11043, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',10, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11044, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',12, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11045, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11046, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11047, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11048, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11049, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, b'0');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11050, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11051, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11052, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',5, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11053, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',4, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11055, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',11, b'1');
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11057, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, b'1');

View File

@ -0,0 +1,65 @@
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (12, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',6, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (1000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2204, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2205, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2206, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2207, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2208, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2209, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (2210, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',13, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11001, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11002, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11003, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11004, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11005, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11006, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11007, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11008, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11009, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11010, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11011, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11012, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11013, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11014, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11015, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11016, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11017, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11018, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11019, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11020, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11021, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11022, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11023, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11024, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11025, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11026, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11027, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11028, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11029, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11030, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11031, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11032, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11033, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11034, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11035, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11036, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',8, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11037, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11038, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11039, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',2, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11040, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11041, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',9, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11042, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11043, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',10, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11044, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',12, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11045, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11046, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11047, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11048, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11049, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',1, false);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11050, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11051, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',3, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11052, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',5, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11053, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',4, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11055, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',11, true);
INSERT INTO `chusan_game_event` (`id`, `end_date`, `start_date`, `type`, `enable`) VALUES (11057, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000',7, true);