Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[HELP] BAT error

Newbie Spellweaver
Joined
Nov 30, 2012
Messages
44
Reaction score
0
Hello, Ragezone, I've come up on a bat error I can't seem to fix. By reading the error I believe it originates from the sql mode. I've googled everything and I can't seem to find an answer. I've switched up and down through versions of MySQL to Navicat and I keep getting the same bat errors. Thank you kindly

REMOVED
 
That one pokemon thing
Loyal Member
Joined
Apr 3, 2010
Messages
1,766
Reaction score
621
You're trying to use a group function without actually using a GROUP BY clause, which is bad practice.
Quote MySQL: "If you use a group function in a statement containing no GROUP BY clause, it is equivalent to grouping on all rows. For more information, see ."

Could you show us the query itself?

 
Upvote 0
Newbie Spellweaver
Joined
Nov 30, 2012
Messages
44
Reaction score
0
This is the script I put in the SQL.

Code:
SET FOREIGN_KEY_CHECKS=0;


--
-- Create schema v117
--

CREATE DATABASE IF NOT EXISTS v117;
USE v117;

-- ----------------------------
-- Table structure for `accounts`
-- ----------------------------
DROP TABLE IF EXISTS `accounts`;
CREATE TABLE `accounts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(13) NOT NULL DEFAULT '',
  `password` varchar(128) NOT NULL DEFAULT '',
  `salt` varchar(32) DEFAULT NULL,
  `2ndpassword` varchar(134) DEFAULT NULL,
  `salt2` varchar(32) DEFAULT NULL,
  `loggedin` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `lastlogin` timestamp NULL DEFAULT NULL,
  `createdat` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `birthday` date NOT NULL DEFAULT '1979-01-01',
  `banned` tinyint(1) NOT NULL DEFAULT '0',
  `banreason` text,
  `gm` tinyint(1) NOT NULL DEFAULT '0',
  `email` tinytext,
  `macs` tinytext,
  `tempban` timestamp NOT NULL DEFAULT '1979-01-01 00:00:00',
  `greason` tinyint(4) unsigned DEFAULT NULL,
  `ACash` int(11) NOT NULL DEFAULT '0',
  `mPoints` int(11) NOT NULL DEFAULT '0',
  `gender` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `SessionIP` varchar(64) DEFAULT NULL,
  `points` int(11) NOT NULL DEFAULT '0',
  `vpoints` int(11) NOT NULL DEFAULT '0',
  `monthvotes` int(11) NOT NULL DEFAULT '0',
  `totalvotes` int(11) NOT NULL DEFAULT '0',
  `lastvote` int(11) NOT NULL DEFAULT '0',
  `lastvote2` int(11) NOT NULL DEFAULT '0',
  `lastlogon` timestamp NULL DEFAULT NULL,
  `lastvoteip` varchar(64) DEFAULT NULL,
  `webadmin` int(1) DEFAULT '0',
  `rebirths` int(11) NOT NULL DEFAULT '0',
  `ip` text,
  `mainchar` int(6) NOT NULL DEFAULT '0',
  `nxCredit` varchar(45) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `ranking1` (`id`,`banned`,`gm`),
  KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=484 DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

-- ----------------------------
-- Records of accounts
-- ----------------------------

-- ----------------------------
-- Table structure for `achievements`
-- ----------------------------
DROP TABLE IF EXISTS `achievements`;
CREATE TABLE `achievements` (
  `achievementid` int(9) NOT NULL DEFAULT '0',
  `charid` int(9) NOT NULL DEFAULT '0',
  `accountid` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`achievementid`,`charid`),
  KEY `achievementid` (`achievementid`),
  KEY `accountid` (`accountid`),
  KEY `charid` (`charid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of achievements
-- ----------------------------

-- ----------------------------
-- Table structure for `alliances`
-- ----------------------------
DROP TABLE IF EXISTS `alliances`;
CREATE TABLE `alliances` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(13) NOT NULL,
  `leaderid` int(11) NOT NULL,
  `guild1` int(11) NOT NULL,
  `guild2` int(11) NOT NULL,
  `guild3` int(11) NOT NULL DEFAULT '0',
  `guild4` int(11) NOT NULL DEFAULT '0',
  `guild5` int(11) NOT NULL DEFAULT '0',
  `rank1` varchar(13) NOT NULL DEFAULT 'Master',
  `rank2` varchar(13) NOT NULL DEFAULT 'Jr.Master',
  `rank3` varchar(13) NOT NULL DEFAULT 'Member',
  `rank4` varchar(13) NOT NULL DEFAULT 'Member',
  `rank5` varchar(13) NOT NULL DEFAULT 'Member',
  `capacity` int(11) NOT NULL DEFAULT '2',
  `notice` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `id` (`id`),
  KEY `leaderid` (`leaderid`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of alliances
-- ----------------------------

-- ----------------------------
-- Table structure for `androids`
-- ----------------------------
DROP TABLE IF EXISTS `androids`;
CREATE TABLE `androids` (
  `uniqueid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(13) NOT NULL DEFAULT 'Android',
  `hair` int(11) NOT NULL DEFAULT '0',
  `face` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`uniqueid`),
  KEY `uniqueid` (`uniqueid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

-- ----------------------------
-- Records of androids
-- ----------------------------

-- ----------------------------
-- Table structure for `auth_server_channel_ip`
-- ----------------------------
DROP TABLE IF EXISTS `auth_server_channel_ip`;
CREATE TABLE `auth_server_channel_ip` (
  `channelconfigid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `channelid` int(10) unsigned NOT NULL DEFAULT '0',
  `name` tinytext NOT NULL,
  `value` tinytext NOT NULL,
  PRIMARY KEY (`channelconfigid`),
  KEY `channelid` (`channelid`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 ROW_FORMAT=FIXED;

-- ----------------------------
-- Records of auth_server_channel_ip
-- ----------------------------

-- ----------------------------
-- Table structure for `battlelog`
-- ----------------------------
DROP TABLE IF EXISTS `battlelog`;
CREATE TABLE `battlelog` (
  `battlelogid` int(11) NOT NULL AUTO_INCREMENT,
  `accid` int(11) NOT NULL DEFAULT '0',
  `accid_to` int(11) NOT NULL DEFAULT '0',
  `when` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`battlelogid`),
  KEY `accid` (`accid`),
  CONSTRAINT `battlelog_ibfk_1` FOREIGN KEY (`accid`) REFERENCES `accounts` (`id`) ON DELETE CASCADE
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

-- ----------------------------
-- Records of battlelog
-- ----------------------------

-- ----------------------------
-- Table structure for `bbs_replies`
-- ----------------------------
DROP TABLE IF EXISTS `bbs_replies`;
CREATE TABLE `bbs_replies` (
  `replyid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `threadid` int(10) unsigned NOT NULL,
  `postercid` int(10) unsigned NOT NULL,
  `timestamp` bigint(20) unsigned NOT NULL,
  `content` varchar(26) NOT NULL DEFAULT '',
  `guildid` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`replyid`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

-- ----------------------------
-- Records of bbs_replies
-- ----------------------------

-- ----------------------------
-- Table structure for `bbs_threads`
-- ----------------------------
DROP TABLE IF EXISTS `bbs_threads`;
CREATE TABLE `bbs_threads` (
  `threadid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `postercid` int(10) unsigned NOT NULL,
  `name` varchar(26) NOT NULL DEFAULT '',
  `timestamp` bigint(20) unsigned NOT NULL,
  `icon` smallint(5) unsigned NOT NULL,
  `startpost` text NOT NULL,
  `guildid` int(10) unsigned NOT NULL,
  `localthreadid` int(10) unsigned NOT NULL,
  PRIMARY KEY (`threadid`)
) ENGINE=MyISAM AUTO_INCREMENT=67 DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

-- ----------------------------
-- Records of bbs_threads
-- ----------------------------

-- ----------------------------
-- Table structure for `buddies`
-- ----------------------------
DROP TABLE IF EXISTS `buddies`;
CREATE TABLE `buddies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `characterid` int(11) NOT NULL,
  `buddyid` int(11) NOT NULL,
  `pending` tinyint(4) NOT NULL DEFAULT '0',
  `groupname` varchar(16) NOT NULL DEFAULT 'ETC',
  PRIMARY KEY (`id`),
  KEY `buddies_ibfk_1` (`characterid`),
  KEY `buddyid` (`buddyid`),
  KEY `id` (`id`),
  CONSTRAINT `buddies_ibfk_1` FOREIGN KEY (`characterid`) REFERENCES `characters` (`id`) ON DELETE CASCADE
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

-- ----------------------------
-- Records of buddies
-- ----------------------------

-- ----------------------------
-- Table structure for `cashshop_limit_sell`
-- ----------------------------
DROP TABLE IF EXISTS `cashshop_limit_sell`;
CREATE TABLE `cashshop_limit_sell` (
  `serial` int(11) NOT NULL,
  `amount` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`serial`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of cashshop_limit_sell
-- ----------------------------

-- ----------------------------
-- Table structure for `cashshop_modified_items`
-- ----------------------------
DROP TABLE IF EXISTS `cashshop_modified_items`;
CREATE TABLE `cashshop_modified_items` (
  `serial` int(11) NOT NULL,
  `discount_price` int(11) NOT NULL DEFAULT '-1',
  `mark` tinyint(1) NOT NULL DEFAULT '-1',
  `showup` tinyint(1) NOT NULL DEFAULT '0',
  `itemid` int(11) NOT NULL DEFAULT '0',
  `priority` tinyint(3) NOT NULL DEFAULT '0',
  `package` tinyint(1) NOT NULL DEFAULT '0',
  `period` tinyint(3) NOT NULL DEFAULT '0',
  `gender` tinyint(1) NOT NULL DEFAULT '0',
  `count` tinyint(3) NOT NULL DEFAULT '0',
  `meso` int(11) NOT NULL DEFAULT '0',
  `unk_1` tinyint(1) NOT NULL DEFAULT '0',
  `unk_2` tinyint(1) NOT NULL DEFAULT '0',
  `unk_3` tinyint(1) NOT NULL DEFAULT '0',
  `extra_flags` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`serial`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of cashshop_modified_items
-- ----------------------------

-- ----------------------------
-- Table structure for `characters`
-- ----------------------------
DROP TABLE IF EXISTS `characters`;
CREATE TABLE `characters` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `accountid` int(11) NOT NULL DEFAULT '0',
  `world` tinyint(1) NOT NULL DEFAULT '0',
  `name` varchar(13) NOT NULL DEFAULT '',
  `level` int(3) unsigned NOT NULL DEFAULT '0',
  `exp` int(11) NOT NULL DEFAULT '0',
  `str` int(5) NOT NULL DEFAULT '0',
  `dex` int(5) NOT NULL DEFAULT '0',
  `luk` int(5) NOT NULL DEFAULT '0',
  `int` int(5) NOT NULL DEFAULT '0',
  `hp` int(5) NOT NULL DEFAULT '0',
  `mp` int(5) NOT NULL DEFAULT '0',
  `maxhp` int(5) NOT NULL DEFAULT '0',
  `maxmp` int(5) NOT NULL DEFAULT '0',
  `meso` int(11) NOT NULL DEFAULT '0',
  `hpApUsed` int(5) NOT NULL DEFAULT '0',
  `job` int(5) NOT NULL DEFAULT '0',
  `skincolor` tinyint(1) NOT NULL DEFAULT '0',
  `gender` tinyint(1) NOT NULL DEFAULT '0',
  `fame` int(5) NOT NULL DEFAULT '0',
  `hair` int(11) NOT NULL DEFAULT '0',
  `face` int(11) unsigned NOT NULL DEFAULT '0',
  `demonMarking` int(11) NOT NULL DEFAULT '0',
  `ap` int(11) NOT NULL DEFAULT '0',
  `map` int(11) NOT NULL DEFAULT '0',
  `spawnpoint` int(3) NOT NULL DEFAULT '0',
  `gm` int(3) NOT NULL DEFAULT '0',
  `party` int(11) NOT NULL DEFAULT '0',
  `buddyCapacity` int(11) NOT NULL DEFAULT '25',
  `createdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `guildid` int(10) unsigned NOT NULL DEFAULT '0',
  `guildrank` tinyint(1) unsigned NOT NULL DEFAULT '5',
  `allianceRank` tinyint(1) unsigned NOT NULL DEFAULT '5',
  `guildContribution` int(11) NOT NULL DEFAULT '0',
  `pets` varchar(13) NOT NULL DEFAULT '-1,-1,-1',
  `sp` varchar(255) NOT NULL DEFAULT '0,0,0,0,0,0,0,0,0,0',
  `subcategory` int(11) NOT NULL DEFAULT '0',
  `rank` int(11) NOT NULL DEFAULT '1',
  `rankMove` int(11) NOT NULL DEFAULT '0',
  `jobRank` int(11) NOT NULL DEFAULT '1',
  `jobRankMove` int(11) NOT NULL DEFAULT '0',
  `marriageId` int(11) NOT NULL DEFAULT '0',
  `familyid` int(11) NOT NULL DEFAULT '0',
  `seniorid` int(11) NOT NULL DEFAULT '0',
  `junior1` int(11) NOT NULL DEFAULT '0',
  `junior2` int(11) NOT NULL DEFAULT '0',
  `currentrep` int(11) NOT NULL DEFAULT '0',
  `totalrep` int(11) NOT NULL DEFAULT '0',
  `gachexp` int(11) NOT NULL DEFAULT '0',
  `fatigue` tinyint(4) NOT NULL DEFAULT '0',
  `charm` mediumint(7) NOT NULL DEFAULT '0',
  `craft` mediumint(7) NOT NULL DEFAULT '0',
  `charisma` mediumint(7) NOT NULL DEFAULT '0',
  `will` mediumint(7) NOT NULL DEFAULT '0',
  `sense` mediumint(7) NOT NULL DEFAULT '0',
  `insight` mediumint(7) NOT NULL DEFAULT '0',
  `totalWins` int(11) NOT NULL DEFAULT '0',
  `totalLosses` int(11) NOT NULL DEFAULT '0',
  `pvpExp` int(11) NOT NULL DEFAULT '0',
  `pvpPoints` int(11) NOT NULL DEFAULT '0',
  `rebirths` int(11) NOT NULL DEFAULT '0',
  `prefix` varchar(45) DEFAULT NULL,
  `reborns` int(11) NOT NULL DEFAULT '0',
  `apstorage` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `accountid` (`accountid`),
  KEY `id` (`id`),
  KEY `guildid` (`guildid`),
  KEY `familyid` (`familyid`),
  KEY `marriageId` (`marriageId`),
  KEY `seniorid` (`seniorid`)
) ENGINE=MyISAM AUTO_INCREMENT=6275 DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

-- ----------------------------
-- Records of characters
-- ----------------------------

-- ----------------------------
-- Table structure for `character_cards`
-- ----------------------------
DROP TABLE IF EXISTS `character_cards`;
CREATE TABLE `character_cards` (
  `accid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `worldid` int(11) NOT NULL,
  `characterid` int(11) NOT NULL,
  `position` int(11) NOT NULL,
  PRIMARY KEY (`accid`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

-- ----------------------------
-- Records of character_cards
-- ----------------------------

-- ----------------------------
-- Table structure for `character_slots`
-- ----------------------------
DROP TABLE IF EXISTS `character_slots`;
CREATE TABLE `character_slots` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `accid` int(11) NOT NULL DEFAULT '0',
  `worldid` int(11) NOT NULL DEFAULT '0',
  `charslots` int(11) NOT NULL DEFAULT '6',
  PRIMARY KEY (`id`),
  KEY `accid` (`accid`),
  KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2697 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of character_slots
-- ----------------------------

-- ----------------------------
-- Table structure for `cheatlog`
-- ----------------------------
DROP TABLE IF EXISTS `cheatlog`;
CREATE TABLE `cheatlog` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `characterid` int(11) unsigned NOT NULL DEFAULT '0',
  `offense` tinytext NOT NULL,
  `count` int(11) unsigned NOT NULL DEFAULT '0',
  `lastoffensetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `param` tinytext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `cid` (`characterid`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=FIXED;

-- ----------------------------
-- Records of cheatlog
-- ----------------------------

-- ----------------------------
-- Table structure for `chrimg`
-- ----------------------------
DROP TABLE IF EXISTS `chrimg`;
CREATE TABLE `chrimg` (
  `id` int(11) NOT NULL,
  `hash` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of chrimg
-- ----------------------------

-- ----------------------------
-- Table structure for `compensationlog_confirmed`
-- ----------------------------
DROP TABLE IF EXISTS `compensationlog_confirmed`;
CREATE TABLE `compensationlog_confirmed` (
  `chrname` varchar(25) NOT NULL DEFAULT '',
  `donor` tinyint(1) NOT NULL DEFAULT '0',
  `value` int(11) NOT NULL DEFAULT '0',
  `taken` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`chrname`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;

-- ----------------------------
-- Records of compensationlog_confirmed
-- ----------------------------

-- ----------------------------
-- Table structure for `csequipment`
-- ----------------------------
DROP TABLE IF EXISTS `csequipment`;
CREATE TABLE `csequipment` (
  `inventoryequipmentid` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `inventoryitemid` bigint(20) unsigned NOT NULL DEFAULT '0',
  `upgradeslots` int(11) NOT NULL DEFAULT '0',
  `level` int(11) NOT NULL DEFAULT '0',
  `str` int(11) NOT NULL DEFAULT '0',
  `dex` int(11) NOT NULL DEFAULT '0',
  `int` int(11) NOT NULL DEFAULT '0',
  `luk` int(11) NOT NULL DEFAULT '0',
  `hp` int(11) NOT NULL DEFAULT '0',
  `mp` int(11) NOT NULL DEFAULT '0',
  `watk` int(11) NOT NULL DEFAULT '0',
  `matk` int(11) NOT NULL DEFAULT '0',
  `wdef` int(11) NOT NULL DEFAULT '0',
  `mdef` int(11) NOT NULL DEFAULT '0',
  `acc` int(11) NOT NULL DEFAULT '0',
  `avoid` int(11) NOT NULL DEFAULT '0',
  `hands` int(11) NOT NULL DEFAULT '0',
  `speed` int(11) NOT NULL DEFAULT '0',
  `jump` int(11) NOT NULL DEFAULT '0',
  `ViciousHammer` tinyint(2) NOT NULL DEFAULT '0',
  `itemEXP` int(11) NOT NULL DEFAULT '0',
  `durability` int(11) NOT NULL DEFAULT '-1',
  `enhance` tinyint(3) NOT NULL DEFAULT '0',
  `potential1` int(5) NOT NULL DEFAULT '0',
  `potential2` int(5) NOT NULL DEFAULT '0',
  `potential3` int(5) NOT NULL DEFAULT '0',
  `potential4` int(5) NOT NULL DEFAULT '0',
  `potential5` int(5) NOT NULL DEFAULT '0',
  `socket1` int(5) NOT NULL DEFAULT '-1',
  `socket2` int(5) NOT NULL DEFAULT '-1',
  `socket3` int(5) NOT NULL DEFAULT '-1',
  `incSkill` int(11) NOT NULL DEFAULT '-1',
  `charmEXP` int(6) NOT NULL DEFAULT '-1',
  `pvpDamage` int(6) NOT NULL DEFAULT '0',
  PRIMARY KEY (`inventoryequipmentid`),
  KEY `inventoryitemid` (`inventoryitemid`),
  CONSTRAINT `csequipment_ibfk_1` FOREIGN KEY (`inventoryitemid`) REFERENCES `csitems` (`inventoryitemid`) ON DELETE CASCADE
) ENGINE=MyISAM AUTO_INCREMENT=50438 DEFAULT CHARSET=latin1 ROW_FORMAT=FIXED;

-- ----------------------------
-- Records of csequipment
-- ----------------------------
INSERT INTO `csequipment` VALUES ('912', '1030', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('913', '1031', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('914', '1032', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('1069', '1296', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('1070', '1297', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('1071', '1298', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('1072', '1299', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('1073', '1300', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('1074', '1302', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('1075', '1303', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('1076', '1304', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('5138', '7268', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('6020', '8679', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('8928', '12343', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('8929', '12344', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('8930', '12345', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('8931', '12346', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('8932', '12347', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('11550', '15444', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('14748', '19794', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('16516', '22130', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('18890', '25040', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('19910', '26380', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('19911', '26381', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('19912', '26382', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('19913', '26383', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('20284', '26894', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('20285', '26895', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('20286', '26896', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('20287', '26897', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('20503', '27191', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22054', '29023', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22055', '29024', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '50', '0');
INSERT INTO `csequipment` VALUES ('22056', '29025', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22057', '29026', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('22058', '29027', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22059', '29028', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22060', '29029', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22061', '29030', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22062', '29031', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22063', '29032', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '30', '0');
INSERT INTO `csequipment` VALUES ('22064', '29033', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22065', '29034', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22066', '29035', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('22067', '29036', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '30', '0');
INSERT INTO `csequipment` VALUES ('22068', '29037', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '30', '0');
INSERT INTO `csequipment` VALUES ('22069', '29038', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '30', '0');
INSERT INTO `csequipment` VALUES ('22070', '29039', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('22071', '29040', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('23333', '30492', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('23334', '30493', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('26250', '34219', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('26251', '34220', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('26252', '34221', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('26253', '34222', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('26254', '34223', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('27218', '35387', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('32314', '42015', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('32315', '42016', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('32316', '42017', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('32317', '42018', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('33385', '43575', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('33386', '43576', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('33387', '43577', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('33394', '43594', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('34076', '44736', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '60', '0');
INSERT INTO `csequipment` VALUES ('34077', '44739', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('35001', '45883', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('39796', '54841', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('41336', '58327', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('41337', '58328', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('41431', '58482', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('41432', '58483', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('42154', '61161', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('43371', '62992', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('43372', '62993', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('43944', '63613', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('43945', '63614', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('43946', '63615', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('43947', '63616', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('43948', '63617', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('43949', '63618', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('43950', '63619', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44133', '63950', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '30', '0');
INSERT INTO `csequipment` VALUES ('44134', '63951', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44202', '64039', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44203', '64040', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44204', '64041', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44205', '64042', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44524', '64469', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('44525', '64470', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44526', '64471', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44675', '64627', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44676', '64628', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44677', '64629', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44678', '64630', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44679', '64631', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44709', '64666', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44835', '65487', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '50', '0');
INSERT INTO `csequipment` VALUES ('44836', '65488', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '30', '0');
INSERT INTO `csequipment` VALUES ('44837', '65489', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44838', '65491', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44839', '65492', '7', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44840', '65493', '6', '3', '0', '0', '0', '0', '0', '0', '3', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44841', '65494', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44842', '65495', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44843', '65496', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44844', '65501', '7', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44845', '65502', '7', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('44982', '65713', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '30', '0');
INSERT INTO `csequipment` VALUES ('45203', '66399', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('45204', '66400', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('45205', '66401', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('45206', '66402', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('45207', '66403', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('45208', '66404', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('45209', '66405', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46108', '67595', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46214', '67866', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46232', '67885', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46233', '67886', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46234', '67887', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46239', '67892', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '30', '0');
INSERT INTO `csequipment` VALUES ('46240', '67893', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46241', '67894', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46242', '67895', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46243', '67897', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46244', '67898', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46245', '67901', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46246', '67902', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46247', '67903', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('46248', '67904', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46249', '67905', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46250', '67906', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46288', '67953', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46289', '67954', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '10', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46290', '67955', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46291', '67956', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46324', '67993', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46325', '67994', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46326', '67995', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46327', '67996', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46328', '67997', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46329', '67998', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46330', '67999', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46331', '68000', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46332', '68001', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46333', '68002', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46334', '68003', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46335', '68004', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46336', '68005', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46338', '68044', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46339', '68045', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46340', '68046', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46348', '68054', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '50', '0');
INSERT INTO `csequipment` VALUES ('46349', '68055', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46350', '68056', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46351', '68057', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46352', '68058', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46353', '68059', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46354', '68060', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('46880', '69385', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47436', '70108', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47437', '70109', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47438', '70110', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47439', '70111', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47440', '70112', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47513', '70223', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47514', '70224', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47515', '70225', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '50', '0');
INSERT INTO `csequipment` VALUES ('47516', '70226', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47517', '70227', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '50', '0');
INSERT INTO `csequipment` VALUES ('47518', '70228', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '30', '0');
INSERT INTO `csequipment` VALUES ('47564', '70343', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47565', '70345', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('47566', '70346', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48831', '71707', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('48832', '71708', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('48834', '71710', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48933', '71813', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48934', '71814', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48935', '71815', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48936', '71816', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48937', '71817', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48938', '71818', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48939', '71819', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48940', '71820', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48941', '71821', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48942', '71822', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48943', '71823', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48944', '71824', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48945', '71825', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48946', '71826', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48947', '71827', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48948', '71828', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48949', '71829', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48950', '71830', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48951', '71831', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48952', '71832', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('48953', '71833', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49147', '72034', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49148', '72035', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49149', '72036', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49150', '72037', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49151', '72038', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49152', '72039', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49153', '72040', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49154', '72042', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '50', '0');
INSERT INTO `csequipment` VALUES ('49155', '72043', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49282', '72170', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '30', '0');
INSERT INTO `csequipment` VALUES ('49283', '72171', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('49521', '72409', '7', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49522', '72410', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('49525', '72413', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49566', '72454', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('49609', '72497', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49610', '72498', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49611', '72499', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49612', '72500', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49613', '72501', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49614', '72502', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49615', '72503', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49616', '72504', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49617', '72505', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49618', '72506', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49619', '72507', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49620', '72508', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49621', '72509', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49622', '72510', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49668', '72556', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49669', '72557', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49670', '72558', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49676', '72566', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49677', '72567', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49678', '72568', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49679', '72569', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49680', '72570', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49942', '73411', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49943', '73412', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('49944', '73413', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('50148', '74181', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('50231', '74471', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');
INSERT INTO `csequipment` VALUES ('50436', '75305', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '0', '0');
INSERT INTO `csequipment` VALUES ('50437', '75306', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '-1', '0', '0', '0', '0', '0', '0', '-1', '-1', '-1', '-1', '40', '0');

-- ----------------------------
-- Table structure for `csitems`
-- ----------------------------
DROP TABLE IF EXISTS `csitems`;
CREATE TABLE `csitems` (
  `inventoryitemid` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `characterid` int(11) DEFAULT NULL,
  `accountid` int(10) DEFAULT NULL,
  `packageid` int(11) DEFAULT NULL,
  `itemid` int(11) NOT NULL DEFAULT '0',
  `inventorytype` int(11) NOT NULL DEFAULT '0',
  `position` int(11) NOT NULL DEFAULT '0',
  `quantity` int(11) NOT NULL DEFAULT '0',
  `owner` tinytext,
  `GM_Log` tinytext,
  `uniqueid` int(11) NOT NULL DEFAULT '-1',
  `flag` int(2) NOT NULL DEFAULT '0',
  `expiredate` bigint(20) NOT NULL DEFAULT '-1',
  `type` tinyint(1) NOT NULL DEFAULT '0',
  `sender` varchar(13) NOT NULL DEFAULT '',
  PRIMARY KEY (`inventoryitemid`),
  KEY `inventoryitems_ibfk_1` (`characterid`),
  KEY `characterid` (`characterid`),
  KEY `inventorytype` (`inventorytype`),
  KEY `accountid` (`accountid`),
  KEY `packageid` (`packageid`),
  KEY `characterid_2` (`characterid`,`inventorytype`)
) ENGINE=MyISAM AUTO_INCREMENT=75309 DEFAULT CHARSET=latin1 ROW_FORMAT=FIXED;

-- ----------------------------
-- Records of csitems
-- ----------------------------
INSERT INTO `csitems` VALUES ('1030', null, '67', null, '1082231', '1', '0', '1', '', '', '1257', '0', '1349564249226', '2', '123123');
INSERT INTO `csitems` VALUES ('1031', null, '67', null, '1072437', '1', '0', '1', '', '', '1256', '0', '1349564249226', '2', '123123');
INSERT INTO `csitems` VALUES ('1032', null, '67', null, '1012074', '1', '0', '1', '', '', '1248', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('1296', null, '252', null, '1812000', '1', '0', '1', '', '', '1541', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('1297', null, '252', null, '1702168', '1', '0', '1', '', '', '914', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('1298', null, '252', null, '1702345', '1', '0', '1', '', '', '1544', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('1299', null, '252', null, '1812004', '1', '0', '1', '', '', '1542', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('1300', null, '252', null, '1812005', '1', '0', '1', '', '', '1543', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('1301', null, '252', null, '5000083', '5', '0', '1', '', 'Cash Shop: 60000123 on 2012-07-09', '928', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('1302', null, '252', null, '1040132', '1', '0', '1', '', '', '911', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('1303', null, '252', null, '1072153', '1', '0', '1', '', '', '912', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('1304', null, '252', null, '1082102', '1', '0', '1', '', '', '913', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('1708', null, '414', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-11', '1747', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('7098', null, '1679', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-15', '5122', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('7099', null, '1679', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-15', '5121', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('7268', null, '985', null, '1012090', '1', '0', '1', '', '', '2962', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('7400', null, '701', null, '5220000', '5', '0', '1', '', 'Cash Shop: 10103611 on 2012-07-15', '5153', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('8679', null, '859', null, '1002736', '1', '0', '1', '', '', '2628', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('8680', null, '859', null, '5220094', '5', '0', '1', '', 'Cash Shop: 10003367 on 2012-07-14', '4591', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('8681', null, '859', null, '5220094', '5', '0', '1', '', 'Cash Shop: 10003367 on 2012-07-14', '4592', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('8682', null, '859', null, '5220094', '5', '0', '1', '', 'Cash Shop: 10003367 on 2012-07-14', '4593', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('8683', null, '859', null, '5220094', '5', '0', '1', '', 'Cash Shop: 10003367 on 2012-07-14', '4594', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('8684', null, '859', null, '5220094', '5', '0', '1', '', 'Cash Shop: 10003367 on 2012-07-14', '4596', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('8685', null, '859', null, '5220094', '5', '0', '1', '', 'Cash Shop: 10003367 on 2012-07-14', '4595', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('11017', null, '1310', null, '5220094', '5', '0', '1', '', 'Cash Shop: 10003367 on 2012-07-14', '4108', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('11018', null, '1310', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-14', '3831', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('11019', null, '1310', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-14', '3830', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('11570', null, '2061', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-16', '6995', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('11571', null, '2061', null, '5072000', '5', '0', '99', '', 'Received from interaction 9250120 (-1) on 2012-07-16', '6994', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('12343', null, '1215', null, '1102044', '1', '0', '1', '', '', '3735', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('12344', null, '1215', null, '1050084', '1', '0', '1', '', '', '3731', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('12345', null, '1215', null, '1000009', '1', '0', '1', '', '', '3734', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('12346', null, '1215', null, '1052331', '1', '0', '1', '', '', '4774', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('12347', null, '1215', null, '1002605', '1', '0', '1', '', '', '5740', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('12431', null, '1093', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-16', '6977', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('14973', null, '1110', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-16', '7443', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('15444', null, '1935', null, '1812007', '1', '0', '1', '', '', '7951', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('19302', null, '2050', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-17', '9287', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('19794', null, '1972', null, '1702197', '1', '0', '1', '', '', '6510', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('20605', null, '1011', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-14', '3781', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('22130', null, '1258', null, '1012057', '1', '0', '1', '', '', '7092', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('22348', null, '2087', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-16', '8204', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('22985', null, '645', null, '5202000', '5', '0', '1', '', 'Cash Shop: 10102630 on 2012-07-14', '4545', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('25040', null, '1410', null, '1702277', '1', '0', '1', '', '', '11134', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('25851', null, '591', null, '5030006', '5', '0', '1', '', 'Cash Shop: 50100020 on 2012-07-14', '4497', '0', '1349564249226', '2', 'Bishop');
INSERT INTO `csitems` VALUES ('26380', null, '1453', null, '1702295', '1', '0', '1', '', '', '5326', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('26381', null, '1453', null, '1102108', '1', '0', '1', '', '', '5324', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('26382', null, '1453', null, '1052030', '1', '0', '1', '', '', '5327', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('26383', null, '1453', null, '1002952', '1', '0', '1', '', '', '5323', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('26894', null, '2092', null, '1072153', '1', '0', '1', '', '', '10132', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('26895', null, '2092', null, '1062054', '1', '0', '1', '', '', '10135', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('26896', null, '2092', null, '1003221', '1', '0', '1', '', '', '10134', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('26897', null, '2092', null, '1041113', '1', '0', '1', '', '', '10133', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('27191', null, '2182', null, '1812003', '1', '0', '1', '', '', '8503', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('27192', null, '2182', null, '5520000', '5', '0', '1', '', 'Cash Shop: 50200117 on 2012-07-18', '11547', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('27224', null, '962', null, '5000076', '5', '0', '1', '', 'Cash Shop: 60000125 on 2012-07-16', '7079', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29023', null, '590', null, '1040131', '1', '0', '1', '', '', '2515', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29024', null, '590', null, '1002429', '1', '0', '1', '', '', '2554', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29025', null, '590', null, '1072010', '1', '0', '1', '', '', '2523', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29026', null, '590', null, '1072325', '1', '0', '1', '', '', '2522', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29027', null, '590', null, '1060001', '1', '0', '1', '', '', '2521', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29028', null, '590', null, '1082231', '1', '0', '1', '', '', '2533', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29029', null, '590', null, '1102223', '1', '0', '1', '', '', '2547', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29030', null, '590', null, '1072384', '1', '0', '1', '', '', '2532', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29031', null, '590', null, '1002784', '1', '0', '1', '', '', '2556', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29032', null, '590', null, '1040129', '1', '0', '1', '', '', '2516', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29033', null, '590', null, '1072465', '1', '0', '1', '', '', '4312', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29034', null, '590', null, '1102108', '1', '0', '1', '', '', '2543', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29035', null, '590', null, '1012063', '1', '0', '1', '', '', '6103', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29036', null, '590', null, '1042131', '1', '0', '1', '', '', '6108', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29037', null, '590', null, '1042130', '1', '0', '1', '', '', '6109', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29038', null, '590', null, '1042160', '1', '0', '1', '', '', '6111', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29039', null, '590', null, '1102151', '1', '0', '1', '', '', '2544', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29040', null, '590', null, '1072349', '1', '0', '1', '', '', '2529', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('29126', null, '1845', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-18', '11413', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('30492', null, '190', null, '1902011', '1', '0', '1', '', '', '12142', '0', '1350503751836', '2', '');
INSERT INTO `csitems` VALUES ('30493', null, '190', null, '1912007', '1', '0', '1', '', '', '12143', '0', '1350503751836', '2', '');
INSERT INTO `csitems` VALUES ('33374', null, '1667', null, '5000002', '5', '0', '1', '', 'Cash Shop: 60000006 on 2012-07-19', '12159', '0', '1350504355729', '2', '');
INSERT INTO `csitems` VALUES ('34219', null, '1402', null, '1002885', '1', '0', '1', '', '', '5296', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('34220', null, '1402', null, '1012027', '1', '0', '1', '', '', '5295', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('34221', null, '1402', null, '1102108', '1', '0', '1', '', '', '5592', '32', '1349564249226', '2', 'Rurutia');
INSERT INTO `csitems` VALUES ('34222', null, '1402', null, '1082249', '1', '0', '1', '', '', '8125', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('34223', null, '1402', null, '1002952', '1', '0', '1', '', '', '5483', '32', '1349564249226', '2', 'Keshi');
INSERT INTO `csitems` VALUES ('34230', null, '1718', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-18', '10783', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('35387', null, '2616', null, '1802348', '1', '0', '1', '', '', '12087', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('35388', null, '2616', null, '5240052', '5', '0', '5', '', 'Cash Shop: 10103774 on 2012-07-19', '12088', '0', '1350501274396', '2', '');
INSERT INTO `csitems` VALUES ('35389', null, '2616', null, '5000132', '5', '0', '1', '', 'Cash Shop: 10103772 on 2012-07-19', '12086', '0', '3070725274365', '2', '');
INSERT INTO `csitems` VALUES ('36856', null, '916', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-17', '9572', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('36857', null, '916', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-17', '9573', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('38352', null, '1971', null, '5000001', '5', '0', '1', '', 'Cash Shop: 60000001 on 2012-07-15', '6397', '0', '1350150500614', '2', '');
INSERT INTO `csitems` VALUES ('42015', null, '1266', null, '1003136', '1', '0', '1', '', '', '10144', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('42016', null, '1266', null, '1012027', '1', '0', '1', '', '', '10143', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('42017', null, '1266', null, '1022074', '1', '0', '1', '', '', '10152', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('42018', null, '1266', null, '1082231', '1', '0', '1', '', '', '10142', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('43575', null, '973', null, '1812005', '1', '0', '1', '', '', '4617', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('43576', null, '973', null, '1812000', '1', '0', '1', '', '', '4615', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('43577', null, '973', null, '1812004', '1', '0', '1', '', '', '4616', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('43594', null, '2107', null, '1052047', '1', '0', '1', '', '', '9068', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('44465', null, '1445', null, '5530029', '5', '0', '1', '', 'Cash Shop: 50200181 on 2012-07-18', '10756', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('44466', null, '1445', null, '5530030', '5', '0', '1', '', 'Cash Shop: 50200182 on 2012-07-18', '11261', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('44736', null, '613', null, '1060096', '1', '0', '1', '', '', '11177', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('44737', null, '613', null, '5072000', '5', '0', '94', '', 'Received from interaction 9250120 (-1) on 2012-07-13', '2104', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('44738', null, '613', null, '5076000', '5', '0', '98', '', 'Received from interaction 9250120 (-1) on 2012-07-13', '2105', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('44739', null, '613', null, '1102232', '1', '0', '1', '', '', '11179', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('45716', null, '1129', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-19', '12011', '0', '1350496379107', '2', '');
INSERT INTO `csitems` VALUES ('45717', null, '1129', null, '5220084', '5', '0', '1', '', 'Cash Shop: 50200289 on 2012-07-19', '12012', '0', '1350496388935', '2', '');
INSERT INTO `csitems` VALUES ('45883', null, '589', null, '1702043', '1', '0', '1', '', '', '6712', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('46860', null, '1522', null, '5520000', '5', '0', '1', '', 'Cash Shop: 50200117 on 2012-07-18', '11595', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('54841', null, '2112', null, '1003238', '1', '0', '1', '', '', '14487', '32', '1350662212994', '2', '');
INSERT INTO `csitems` VALUES ('54893', null, '1029', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-16', '7301', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('55981', null, '3617', null, '5202001', '5', '0', '1', '', 'Cash Shop: 10102631 on 2012-07-22', '16032', '0', '1350728692541', '2', '');
INSERT INTO `csitems` VALUES ('55982', null, '3617', null, '5202001', '5', '0', '1', '', 'Cash Shop: 10102631 on 2012-07-22', '16033', '0', '1350728694491', '2', '');
INSERT INTO `csitems` VALUES ('55983', null, '3617', null, '5202000', '5', '0', '1', '', 'Cash Shop: 10102630 on 2012-07-22', '16034', '0', '1350728696540', '2', '');
INSERT INTO `csitems` VALUES ('58326', null, '1231', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-21', '14706', '0', '1350669846206', '2', '');
INSERT INTO `csitems` VALUES ('58327', null, '1231', null, '1002485', '1', '0', '1', '', '', '12636', '32', '1350529778876', '2', '');
INSERT INTO `csitems` VALUES ('58328', null, '1231', null, '1112002', '1', '0', '1', '', '', '15144', '32', '1350682487081', '2', '');
INSERT INTO `csitems` VALUES ('58482', null, '1970', null, '1702237', '1', '0', '1', '', '', '16282', '0', '1350768844382', '2', '');
INSERT INTO `csitems` VALUES ('58483', null, '1970', null, '1702344', '1', '0', '1', '', '', '15668', '0', '1350709092252', '2', '');
INSERT INTO `csitems` VALUES ('60909', null, '813', null, '5000209', '5', '0', '1', '', 'Cash Shop: 60000126 on 2012-07-13', '2405', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('61161', null, '1682', null, '1012055', '1', '0', '1', '', '', '12539', '0', '1350523545026', '2', '');
INSERT INTO `csitems` VALUES ('61239', null, '255', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-20', '13223', '0', '1350589050091', '2', '');
INSERT INTO `csitems` VALUES ('61651', null, '677', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-23', '16744', '0', '1350803546659', '2', '');
INSERT INTO `csitems` VALUES ('62425', null, '3463', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-22', '15647', '0', '1350707882733', '2', '');
INSERT INTO `csitems` VALUES ('62978', null, '579', null, '5520001', '5', '0', '1', '', 'Cash Shop: 50200188 on 2012-07-20', '13446', '0', '1350604081528', '2', '');
INSERT INTO `csitems` VALUES ('62992', null, '1786', null, '1112114', '1', '0', '1', '', '', '9781', '32', '1350311688367', '2', 'Adora');
INSERT INTO `csitems` VALUES ('62993', null, '1786', null, '1812001', '1', '0', '1', '', '', '7738', '0', '1350201851032', '2', '');
INSERT INTO `csitems` VALUES ('63613', null, '3102', null, '1812001', '1', '0', '1', '', '', '14157', '0', '1350643222698', '2', 'Otonashi');
INSERT INTO `csitems` VALUES ('63614', null, '3102', null, '1812004', '1', '0', '1', '', '', '14158', '0', '1350643222698', '2', 'Otonashi');
INSERT INTO `csitems` VALUES ('63615', null, '3102', null, '1812002', '1', '0', '1', '', '', '8037', '0', '1350210005712', '2', '');
INSERT INTO `csitems` VALUES ('63616', null, '3102', null, '1802348', '1', '0', '1', '', '', '14160', '0', '-1', '2', 'Otonashi');
INSERT INTO `csitems` VALUES ('63617', null, '3102', null, '1812005', '1', '0', '1', '', '', '8036', '0', '1350210003201', '2', '');
INSERT INTO `csitems` VALUES ('63618', null, '3102', null, '1812007', '1', '0', '1', '', '', '14188', '0', '1350644567041', '2', '');
INSERT INTO `csitems` VALUES ('63619', null, '3102', null, '1812000', '1', '0', '1', '', '', '14156', '0', '1350643222698', '2', 'Otonashi');
INSERT INTO `csitems` VALUES ('63620', null, '3102', null, '5000132', '5', '0', '1', '', 'Cash Shop: 10103772 on 2012-07-21', '14159', '0', '3070867222679', '2', 'Otonashi');
INSERT INTO `csitems` VALUES ('63621', null, '3102', null, '5076000', '5', '0', '95', '', 'Received from interaction 9250120 (-1) on 2012-07-20', '13718', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('63622', null, '3102', null, '5072000', '5', '0', '81', '', 'Received from interaction 9250120 (-1) on 2012-07-20', '13717', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('63623', null, '3102', null, '5240052', '5', '0', '5', '', 'Cash Shop: 10103774 on 2012-07-21', '14161', '0', '1350643222698', '2', 'Otonashi');
INSERT INTO `csitems` VALUES ('63950', null, '2481', null, '1102067', '1', '0', '1', '', '', '10881', '0', '1349564249226', '2', 'EdHardy');
INSERT INTO `csitems` VALUES ('63951', null, '2481', null, '1102072', '1', '0', '1', '', '', '11034', '32', '1350373811082', '2', '');
INSERT INTO `csitems` VALUES ('64039', null, '2007', null, '1102217', '1', '0', '1', '', '', '7339', '32', '1350185326457', '2', '');
INSERT INTO `csitems` VALUES ('64040', null, '2007', null, '1702324', '1', '0', '1', '', '', '9419', '0', '1350294883257', '2', '');
INSERT INTO `csitems` VALUES ('64041', null, '2007', null, '1042213', '1', '0', '1', '', '', '6622', '32', '1350157990466', '2', '');
INSERT INTO `csitems` VALUES ('64042', null, '2007', null, '1112006', '1', '0', '1', '', '', '15813', '32', '1350716120352', '2', 'L0VEMiiaoMii');
INSERT INTO `csitems` VALUES ('64118', null, '1256', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-21', '15373', '0', '1350695807351', '2', '');
INSERT INTO `csitems` VALUES ('64467', null, '1512', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-21', '13790', '0', '1350620791012', '2', '');
INSERT INTO `csitems` VALUES ('64468', null, '1406', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-16', '8094', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('64469', null, '1406', null, '1072437', '1', '0', '1', '', '', '8082', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('64470', null, '3082', null, '1003161', '1', '0', '1', '', '', '15505', '32', '1350702205929', '2', '');
INSERT INTO `csitems` VALUES ('64471', null, '3082', null, '1052294', '1', '0', '1', '', '', '15506', '32', '1350702205930', '2', '');
INSERT INTO `csitems` VALUES ('64627', null, '1547', null, '1061007', '1', '0', '1', '', '', '6739', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('64628', null, '1547', null, '1072259', '1', '0', '1', '', '', '6737', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('64629', null, '1547', null, '1041129', '1', '0', '1', '', '', '6736', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('64630', null, '1547', null, '1042127', '1', '0', '1', '', '', '9993', '32', '1350319868285', '2', '');
INSERT INTO `csitems` VALUES ('64631', null, '1547', null, '1702249', '1', '0', '1', '', '', '6735', '0', '1350162469078', '2', '');
INSERT INTO `csitems` VALUES ('64666', null, '626', null, '1012055', '1', '0', '1', '', '', '3534', '32', '1349564249226', '2', 'dadasd');
INSERT INTO `csitems` VALUES ('64763', null, '1326', null, '5030004', '5', '0', '1', '', 'Cash Shop: 50100029 on 2012-07-21', '14228', '0', '1343476266491', '2', '');
INSERT INTO `csitems` VALUES ('65487', null, '883', null, '1003367', '1', '0', '1', '', '', '7401', '0', '1349564249226', '2', 'Merch2');
INSERT INTO `csitems` VALUES ('65488', null, '883', null, '1051255', '1', '0', '1', '', '', '7402', '0', '1349564249226', '2', 'Merch2');
INSERT INTO `csitems` VALUES ('65489', null, '883', null, '1802343', '1', '0', '1', '', '', '9150', '0', '1349564249226', '2', 'Merch2');
INSERT INTO `csitems` VALUES ('65490', null, '883', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-20', '13387', '0', '1350601585649', '2', '');
INSERT INTO `csitems` VALUES ('65491', null, '883', null, '1812007', '1', '0', '1', '', '', '6279', '0', '1350146474785', '2', 'zSatan');
INSERT INTO `csitems` VALUES ('65492', null, '883', null, '1802346', '1', '0', '1', '', '', '5321', '0', '-1', '2', 'Merch3');
INSERT INTO `csitems` VALUES ('65493', null, '883', null, '1802343', '1', '0', '1', '', '', '7423', '0', '-1', '2', 'Merch2');
INSERT INTO `csitems` VALUES ('65494', null, '883', null, '1812001', '1', '0', '1', '', '', '4877', '0', '1350083102806', '2', '');
INSERT INTO `csitems` VALUES ('65495', null, '883', null, '1812000', '1', '0', '1', '', '', '4876', '0', '1350083097421', '2', '');
INSERT INTO `csitems` VALUES ('65496', null, '883', null, '1812004', '1', '0', '1', '', '', '4878', '0', '1350083105491', '2', '');
INSERT INTO `csitems` VALUES ('65497', null, '883', null, '5000134', '5', '0', '1', '', 'Cash Shop: 10103742 on 2012-07-17', '9149', '0', '3070476018296', '2', 'Merch2');
INSERT INTO `csitems` VALUES ('65498', null, '883', null, '5000132', '5', '0', '1', '', 'Cash Shop: 10103739 on 2012-07-15', '5311', '0', '3070322143437', '2', 'Merch2');
INSERT INTO `csitems` VALUES ('65499', null, '883', null, '5000131', '5', '0', '1', '', 'Cash Shop: 10103738 on 2012-07-15', '5310', '0', '3070322143422', '2', 'Merch1');
INSERT INTO `csitems` VALUES ('65500', null, '883', null, '5000130', '5', '0', '1', '', 'Cash Shop: 10103737 on 2012-07-14', '4211', '0', '3070276382454', '2', '');
INSERT INTO `csitems` VALUES ('65501', null, '883', null, '1802348', '1', '0', '1', '', '', '5385', '0', '-1', '2', 'Merch4');
INSERT INTO `csitems` VALUES ('65502', null, '883', null, '1802347', '1', '0', '1', '', '', '5322', '0', '-1', '2', 'Merch3');
INSERT INTO `csitems` VALUES ('65595', null, '624', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-14', '4429', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('65713', null, '1373', null, '1041090', '1', '0', '1', '', '', '14646', '0', '1350667546903', '2', '');
INSERT INTO `csitems` VALUES ('66399', null, '1259', null, '1102039', '1', '0', '1', '', '', '13014', '32', '1350581276142', '2', '');
INSERT INTO `csitems` VALUES ('66400', null, '1259', null, '1022048', '1', '0', '1', '', '', '13013', '32', '1350581267887', '2', '');
INSERT INTO `csitems` VALUES ('66401', null, '1259', null, '1002186', '1', '0', '1', '', '', '5190', '32', '1350093728216', '2', '');
INSERT INTO `csitems` VALUES ('66402', null, '1259', null, '1032024', '1', '0', '1', '', '', '13021', '32', '1350581582141', '2', '');
INSERT INTO `csitems` VALUES ('66403', null, '1259', null, '1082102', '1', '0', '1', '', '', '5195', '32', '1350093802612', '2', '');
INSERT INTO `csitems` VALUES ('66404', null, '1259', null, '1072153', '1', '0', '1', '', '', '13015', '32', '1350581283069', '2', '');
INSERT INTO `csitems` VALUES ('66405', null, '1259', null, '1042200', '1', '0', '1', '', '', '5191', '32', '1350093769447', '2', '');
INSERT INTO `csitems` VALUES ('66406', null, '1259', null, '5076000', '5', '0', '98', '', 'Received from interaction 9250120 (-1) on 2012-07-22', '15783', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('66407', null, '1259', null, '5072000', '5', '0', '84', '', 'Received from interaction 9250120 (-1) on 2012-07-22', '15782', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('66721', null, '3246', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-22', '16420', '0', '1350779988829', '2', '');
INSERT INTO `csitems` VALUES ('66912', null, '2386', null, '5520001', '5', '0', '1', '', 'Cash Shop: 50200188 on 2012-07-20', '12576', '0', '1350525760979', '2', '');
INSERT INTO `csitems` VALUES ('67514', null, '322', null, '5030001', '5', '0', '1', '', 'Cash Shop: 50100010 on 2012-07-19', '12058', '0', '1342809868552', '2', 'Imported');
INSERT INTO `csitems` VALUES ('67580', null, '1909', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-15', '6298', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('67595', null, '360', null, '1112802', '1', '0', '1', '', '', '15733', '32', '1350712715403', '2', '');
INSERT INTO `csitems` VALUES ('67866', null, '765', null, '1702179', '1', '0', '1', '', '', '4405', '0', '1350060582874', '2', '');
INSERT INTO `csitems` VALUES ('67867', null, '2290', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-22', '16576', '0', '1350791068548', '2', '');
INSERT INTO `csitems` VALUES ('67885', null, '1265', null, '1003233', '1', '0', '1', '', '', '15939', '32', '1350723790590', '2', '');
INSERT INTO `csitems` VALUES ('67886', null, '1265', null, '1022056', '1', '0', '1', '', '', '15940', '32', '1350723812675', '2', '');
INSERT INTO `csitems` VALUES ('67887', null, '1265', null, '1022057', '1', '0', '1', '', '', '12550', '32', '1350524028658', '2', '');
INSERT INTO `csitems` VALUES ('67892', null, '2480', null, '1102039', '1', '0', '1', '', '', '12814', '0', '1350571298457', '2', 'Mercury');
INSERT INTO `csitems` VALUES ('67893', null, '2480', null, '1812000', '1', '0', '1', '', '', '13558', '0', '1350607364559', '2', 'HSlave');
INSERT INTO `csitems` VALUES ('67894', null, '2480', null, '1022050', '1', '0', '1', '', '', '13559', '32', '1350607364559', '2', 'HSlave');
INSERT INTO `csitems` VALUES ('67895', null, '2480', null, '1062034', '1', '0', '1', '', '', '11286', '32', '1350391366282', '2', '');
INSERT INTO `csitems` VALUES ('67896', null, '2687', null, '5530029', '5', '0', '1', '', 'Cash Shop: 50200181 on 2012-07-19', '12217', '0', '1350507105452', '2', '');
INSERT INTO `csitems` VALUES ('67897', null, '865', null, '1002820', '1', '0', '1', '', '', '9552', '32', '1350299562707', '2', '');
INSERT INTO `csitems` VALUES ('67898', null, '865', null, '1042206', '1', '0', '1', '', '', '9073', '32', '1350249797741', '2', '');
INSERT INTO `csitems` VALUES ('67899', null, '865', null, '5021011', '5', '0', '1', '', 'Cash Shop: 20800055 on 2012-07-16', '9081', '0', '1350249974271', '2', '');
INSERT INTO `csitems` VALUES ('67900', null, '865', null, '5010025', '5', '0', '1', '', 'Cash Shop: 50500006 on 2012-07-18', '11619', '0', '1350409416089', '2', '');
INSERT INTO `csitems` VALUES ('67901', null, '2133', null, '1062084', '1', '0', '1', '', '', '15410', '32', '1350696632951', '2', '');
INSERT INTO `csitems` VALUES ('67902', null, '2133', null, '1022037', '1', '0', '1', '', '', '14562', '32', '1350664962884', '2', '');
INSERT INTO `csitems` VALUES ('67903', null, '215', null, '1112801', '1', '0', '1', '', '', '17194', '0', '1350823807992', '2', 'Stefano');
INSERT INTO `csitems` VALUES ('67904', null, '215', null, '1082229', '1', '0', '1', '', '', '1589', '32', '1349740289658', '2', '');
INSERT INTO `csitems` VALUES ('67905', null, '215', null, '1042150', '1', '0', '1', '', '', '1490', '32', '1349711336944', '2', '');
INSERT INTO `csitems` VALUES ('67906', null, '215', null, '1012009', '1', '0', '1', '', '', '4759', '32', '1350078879060', '2', '');
INSERT INTO `csitems` VALUES ('67953', null, '660', null, '1072217', '1', '0', '1', '', '', '2715', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('67954', null, '660', null, '1072631', '1', '0', '1', '', '', '6481', '32', '1350154995621', '2', '');
INSERT INTO `csitems` VALUES ('67955', null, '660', null, '1042203', '1', '0', '1', '', '', '2711', '32', '1349968555467', '2', '');
INSERT INTO `csitems` VALUES ('67956', null, '660', null, '1003136', '1', '0', '1', '', '', '2712', '32', '1349968555500', '2', '');
INSERT INTO `csitems` VALUES ('67993', null, '1311', null, '1102287', '1', '0', '1', '', '', '5054', '32', '1350087563587', '2', '');
INSERT INTO `csitems` VALUES ('67994', null, '1311', null, '1702249', '1', '0', '1', '', '', '5055', '0', '1350087585614', '2', '');
INSERT INTO `csitems` VALUES ('67995', null, '1311', null, '1702238', '1', '0', '1', '', '', '12026', '0', '1350497370629', '2', '');
INSERT INTO `csitems` VALUES ('67996', null, '1311', null, '1042172', '1', '0', '1', '', '', '13854', '32', '1350626419349', '2', '');
INSERT INTO `csitems` VALUES ('67997', null, '1311', null, '1102286', '1', '0', '1', '', '', '12644', '32', '1350529993143', '2', '');
INSERT INTO `csitems` VALUES ('67998', null, '1311', null, '1003214', '1', '0', '1', '', '', '13850', '32', '1350626366074', '2', '');
INSERT INTO `csitems` VALUES ('67999', null, '1311', null, '1702182', '1', '0', '1', '', '', '13870', '0', '1350627086528', '2', '');
INSERT INTO `csitems` VALUES ('68000', null, '1311', null, '1002598', '1', '0', '1', '', '', '13876', '32', '1350627305027', '2', '');
INSERT INTO `csitems` VALUES ('68001', null, '1311', null, '1102285', '1', '0', '1', '', '', '13867', '32', '1350626998385', '2', '');
INSERT INTO `csitems` VALUES ('68002', null, '1311', null, '1002995', '1', '0', '1', '', '', '5048', '32', '1350087456808', '2', '');
INSERT INTO `csitems` VALUES ('68003', null, '3527', null, '1802365', '1', '0', '1', '', '', '17294', '0', '1350828823272', '2', '');
INSERT INTO `csitems` VALUES ('68004', null, '1153', null, '1072258', '1', '0', '1', '', '', '11751', '32', '1350415239244', '2', '');
INSERT INTO `csitems` VALUES ('68005', null, '1153', null, '1042018', '1', '0', '1', '', '', '7373', '32', '1350187193172', '2', '');
INSERT INTO `csitems` VALUES ('68043', null, '1770', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-18', '11586', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('68044', null, '1770', null, '1102039', '1', '0', '1', '', '', '14412', '32', '1350659712639', '2', '');
INSERT INTO `csitems` VALUES ('68045', null, '1770', null, '1022048', '1', '0', '1', '', '', '14447', '32', '1350660952316', '2', 'Autumn');
INSERT INTO `csitems` VALUES ('68046', null, '1770', null, '1082102', '1', '0', '1', '', '', '14408', '32', '1350659680295', '2', '');
INSERT INTO `csitems` VALUES ('68054', null, '376', null, '1003367', '1', '0', '1', '', '', '3310', '0', '1349564249226', '2', 'Mercy');
INSERT INTO `csitems` VALUES ('68055', null, '376', null, '1702330', '1', '0', '1', '', '', '3313', '0', '1349564249226', '2', 'Mercy');
INSERT INTO `csitems` VALUES ('68056', null, '376', null, '1002235', '1', '0', '1', '', '', '2285', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('68057', null, '376', null, '1702211', '1', '0', '1', '', '', '1725', '0', '1349564249226', '2', 'Rattle');
INSERT INTO `csitems` VALUES ('68058', null, '376', null, '1102112', '1', '0', '1', '', '', '1728', '32', '1349771075367', '2', 'Fatility');
INSERT INTO `csitems` VALUES ('68059', null, '376', null, '1112015', '1', '0', '1', '', '', '3308', '32', '1349564249226', '2', 'Mercy');
INSERT INTO `csitems` VALUES ('68060', null, '376', null, '1042036', '1', '0', '1', '', '', '13751', '32', '1350620094290', '2', '');
INSERT INTO `csitems` VALUES ('69243', null, '2787', null, '5620008', '5', '0', '1', '', 'Cash Shop: 50200180 on 2012-07-20', '13023', '0', '1350581584681', '2', '');
INSERT INTO `csitems` VALUES ('69244', null, '2787', null, '5620007', '5', '0', '1', '', 'Cash Shop: 50200177 on 2012-07-20', '13022', '0', '1350581584680', '2', '');
INSERT INTO `csitems` VALUES ('69245', null, '2787', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-21', '15238', '0', '1350687349510', '2', '');
INSERT INTO `csitems` VALUES ('69349', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15026', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69350', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15025', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69351', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15024', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69352', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15023', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69353', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15027', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69354', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15028', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69355', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15022', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69356', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15021', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69357', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15020', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69358', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15019', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69359', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15035', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69360', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15036', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69361', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15037', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69362', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15038', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69363', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15041', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69364', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15040', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69365', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15039', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69366', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15042', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69367', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15043', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69368', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15044', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69369', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15045', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69370', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15046', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69371', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15047', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69372', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15048', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69373', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15049', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69374', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15050', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69375', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15051', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69376', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15052', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69377', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15053', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69378', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15054', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69379', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15056', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69380', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15057', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69381', null, '761', null, '5072000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15062', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69382', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15063', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69383', null, '761', null, '5076000', '5', '0', '100', '', 'Received from interaction 9250120 (-1) on 2012-07-21', '15000', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69384', null, '761', null, '5072000', '5', '0', '88', '', 'Received from interaction 9250120 (-1) on 2012-07-22', '16100', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('69385', null, '761', null, '1092064', '1', '0', '1', '', '', '17255', '0', '1350827134873', '2', '');
INSERT INTO `csitems` VALUES ('70106', null, '125', null, '5620008', '5', '0', '1', '', 'Cash Shop: 50200178 on 2012-07-19', '12024', '0', '1350497370598', '2', '');
INSERT INTO `csitems` VALUES ('70107', null, '125', null, '5620008', '5', '0', '1', '', 'Cash Shop: 50200178 on 2012-07-19', '12027', '0', '1350497374108', '2', '');
INSERT INTO `csitems` VALUES ('70108', null, '125', null, '1040124', '1', '0', '1', '', '', '9996', '32', '1350319931434', '2', '');
INSERT INTO `csitems` VALUES ('70109', null, '125', null, '1102286', '1', '0', '1', '', '', '13151', '32', '1350586664661', '2', '');
INSERT INTO `csitems` VALUES ('70110', null, '125', null, '1102261', '1', '0', '1', '', '', '13362', '32', '1350600511636', '2', '');
INSERT INTO `csitems` VALUES ('70111', null, '125', null, '1702155', '1', '0', '1', '', '', '13360', '0', '1350600472534', '2', '');
INSERT INTO `csitems` VALUES ('70112', null, '125', null, '1702253', '1', '0', '1', '', '', '10483', '0', '1350340943016', '2', '');
INSERT INTO `csitems` VALUES ('70223', null, '11', null, '1702278', '1', '0', '1', '', '', '67', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('70224', null, '11', null, '1092086', '1', '0', '1', '', '', '65', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('70225', null, '11', null, '1003362', '1', '0', '1', '', '', '60', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('70226', null, '11', null, '1702345', '1', '0', '1', '', '', '50', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('70227', null, '11', null, '1001065', '1', '0', '1', '', '', '56', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('70228', null, '11', null, '1052174', '1', '0', '1', '', '', '810', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('70331', null, '18', null, '5510000', '5', '0', '1', '', 'Cash Shop: 50200128 on 2012-07-20', '12855', '0', '1350574005121', '2', '');
INSERT INTO `csitems` VALUES ('70332', null, '18', null, '5510000', '5', '0', '1', '', 'Cash Shop: 50200128 on 2012-07-20', '12853', '0', '1350573996913', '2', '');
INSERT INTO `csitems` VALUES ('70342', null, '10', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-10', '1286', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('70343', null, '10', null, '1012030', '1', '0', '1', '', '', '534', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('70344', null, '10', null, '5021019', '5', '0', '1', '', 'Cash Shop: 20800271 on 2012-07-09', '791', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('70345', null, '10', null, '1052284', '1', '0', '1', '', '', '1338', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('70346', null, '10', null, '1102039', '1', '0', '1', '', '', '1339', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71706', null, '1', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-12', '1897', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71707', null, '1', null, '1012028', '1', '0', '1', '', '', '10873', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71708', null, '1', null, '1012055', '1', '0', '1', '', '', '10874', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71710', null, '102', null, '1022001', '1', '0', '1', '', '', '1909', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71812', null, '97', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-10', '1424', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71813', null, '97', null, '1102156', '1', '0', '1', '', '', '2116', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71814', null, '97', null, '1082312', '1', '0', '1', '', '', '1423', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71815', null, '97', null, '1002849', '1', '0', '1', '', '', '8686', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71816', null, '97', null, '1002575', '1', '0', '1', '', '', '1435', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71817', null, '97', null, '1702299', '1', '0', '1', '', '', '10203', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('71818', null, '97', null, '1012057', '1', '0', '1', '', '', '2054', '32', '1349564249226', '2', 'Shnick');
INSERT INTO `csitems` VALUES ('71819', null, '97', null, '1042168', '1', '0', '1', '', '', '10681', '32', '1350353910032', '2', '');
INSERT INTO `csitems` VALUES ('71820', null, '97', null, '1002576', '1', '0', '1', '', '', '1434', '32', '1349701781966', '2', '');
INSERT INTO `csitems` VALUES ('71821', null, '97', null, '1072331', '1', '0', '1', '', '', '11773', '32', '1350417009924', '2', '');
INSERT INTO `csitems` VALUES ('71822', null, '97', null, '1102273', '1', '0', '1', '', '', '439', '32', '1349562707694', '2', '');
INSERT INTO `csitems` VALUES ('71823', null, '97', null, '1042147', '1', '0', '1', '', '', '11758', '32', '1350415345766', '2', '');
INSERT INTO `csitems` VALUES ('71824', null, '97', null, '1041125', '1', '0', '1', '', '', '10683', '32', '1350353993909', '2', '');
INSERT INTO `csitems` VALUES ('71825', null, '97', null, '1702203', '1', '0', '1', '', '', '10201', '0', '1350329681425', '2', '');
INSERT INTO `csitems` VALUES ('71826', null, '97', null, '1002846', '1', '0', '1', '', '', '2196', '32', '1349928791006', '2', 'Kelss');
INSERT INTO `csitems` VALUES ('71827', null, '97', null, '1002485', '1', '0', '1', '', '', '273', '32', '1349533785861', '2', '');
INSERT INTO `csitems` VALUES ('71828', null, '97', null, '1041137', '1', '0', '1', '', '', '11753', '32', '1350415302276', '2', '');
INSERT INTO `csitems` VALUES ('71829', null, '97', null, '1102039', '1', '0', '1', '', '', '8692', '32', '1350239129148', '2', '');
INSERT INTO `csitems` VALUES ('71830', null, '97', null, '1102223', '1', '0', '1', '', '', '10682', '32', '1350353916848', '2', '');
INSERT INTO `csitems` VALUES ('71831', null, '97', null, '1072334', '1', '0', '1', '', '', '11772', '32', '1350417002909', '2', '');
INSERT INTO `csitems` VALUES ('71832', null, '97', null, '1012006', '1', '0', '1', '', '', '11774', '32', '1350417214352', '2', '');
INSERT INTO `csitems` VALUES ('71833', null, '97', null, '1002343', '1', '0', '1', '', '', '10199', '32', '1350329677759', '2', '');
INSERT INTO `csitems` VALUES ('72034', null, '49', null, '1112801', '1', '0', '1', '', '', '4192', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72035', null, '49', null, '1112800', '1', '0', '1', '', '', '2136', '32', '1349564249226', '2', 'Brooklyn');
INSERT INTO `csitems` VALUES ('72036', null, '49', null, '1002821', '1', '0', '1', '', '', '1872', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72037', null, '49', null, '1003072', '1', '0', '1', '', '', '762', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72038', null, '49', null, '1112816', '1', '0', '1', '', '', '4234', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72039', null, '49', null, '1042064', '1', '0', '1', '', '', '1870', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72040', null, '49', null, '1042187', '1', '0', '1', '', '', '159', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72041', null, '49', null, '5570000', '5', '0', '2', '', 'Cash Shop: 50200126 on 2012-07-23', '16380', '0', '1350818465618', '2', 'DatMerc');
INSERT INTO `csitems` VALUES ('72042', null, '49', null, '1002462', '1', '0', '1', '', '', '17138', '0', '1350819146426', '2', '');
INSERT INTO `csitems` VALUES ('72043', null, '49', null, '1002887', '1', '0', '1', '', '', '12701', '32', '1350563801759', '2', '');
INSERT INTO `csitems` VALUES ('72170', null, '16', null, '1051233', '1', '0', '1', '', '', '16648', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('72171', null, '16', null, '1012009', '1', '0', '1', '', '', '6828', '0', '1350166640263', '2', '');
INSERT INTO `csitems` VALUES ('72409', null, '4', null, '1802346', '1', '0', '1', '', '', '988', '0', '1349564249226', '2', 'Chief');
INSERT INTO `csitems` VALUES ('72410', null, '4', null, '1072536', '1', '0', '1', '', '', '1866', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72413', null, '3', null, '1002186', '1', '0', '1', '', '', '1886', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72454', null, '37', null, '1112802', '1', '0', '1', '', '', '4286', '0', '1349564249226', '2', 'Reese');
INSERT INTO `csitems` VALUES ('72497', null, '63', null, '1042125', '1', '0', '1', '', '', '1812', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72498', null, '63', null, '1112005', '1', '0', '1', '', '', '1327', '32', '1349564249226', '2', 'ItsAmy');
INSERT INTO `csitems` VALUES ('72499', null, '63', null, '1012024', '1', '0', '1', '', '', '1310', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72500', null, '63', null, '1042027', '1', '0', '1', '', '', '2171', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72501', null, '63', null, '1042110', '1', '0', '1', '', '', '2939', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72502', null, '63', null, '1042183', '1', '0', '1', '', '', '1905', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72503', null, '63', null, '1042157', '1', '0', '1', '', '', '1891', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72504', null, '63', null, '1002598', '1', '0', '1', '', '', '727', '32', '1349599348340', '2', '');
INSERT INTO `csitems` VALUES ('72505', null, '63', null, '1002568', '1', '0', '1', '', '', '157', '32', '1349508920542', '2', '');
INSERT INTO `csitems` VALUES ('72506', null, '63', null, '1042127', '1', '0', '1', '', '', '1800', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72507', null, '63', null, '1042018', '1', '0', '1', '', '', '624', '32', '1349580769263', '2', '');
INSERT INTO `csitems` VALUES ('72508', null, '63', null, '1041127', '1', '0', '1', '', '', '1799', '32', '1349821105288', '2', '');
INSERT INTO `csitems` VALUES ('72509', null, '63', null, '1042044', '1', '0', '1', '', '', '1798', '32', '1349820408108', '2', '');
INSERT INTO `csitems` VALUES ('72510', null, '63', null, '1042043', '1', '0', '1', '', '', '1309', '32', '1349667002227', '2', '');
INSERT INTO `csitems` VALUES ('72556', null, '202', null, '1012192', '1', '0', '1', '', '', '478', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72557', null, '202', null, '1052368', '1', '0', '1', '', '', '475', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72558', null, '202', null, '1702215', '1', '0', '1', '', '', '954', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72565', null, '242', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-17', '10125', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72566', null, '242', null, '1003367', '1', '0', '1', '', '', '12255', '32', '1350510024280', '2', '');
INSERT INTO `csitems` VALUES ('72567', null, '242', null, '1702324', '1', '0', '1', '', '', '883', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72568', null, '242', null, '1812000', '1', '0', '1', '', '', '6848', '0', '1350167262946', '2', '');
INSERT INTO `csitems` VALUES ('72569', null, '242', null, '1812001', '1', '0', '1', '', '', '6847', '0', '1350167260785', '2', '');
INSERT INTO `csitems` VALUES ('72570', null, '242', null, '1042200', '1', '0', '1', '', '', '4651', '32', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72571', null, '282', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-14', '3900', '0', '1349564249226', '2', '');
INSERT INTO `csitems` VALUES ('72689', null, '368', null, '5222006', '5', '0', '1', '', 'Cash Shop: 50200295 on 2012-07-21', '14382', '0', '1350657228582', '2', '');
INSERT INTO `csitems` VALUES ('73411', null, '406', null, '1042082', '1', '0', '1', '', '', '18435', '32', '1353341259693', '2', '');
INSERT INTO `csitems` VALUES ('73412', null, '406', null, '1002747', '1', '0', '1', '', '', '18437', '32', '1353341366163', '2', '');
INSERT INTO `csitems` VALUES ('73413', null, '406', null, '1072258', '1', '0', '1', '', '', '18436', '32', '1353341270067', '2', '');
INSERT INTO `csitems` VALUES ('73414', null, '406', null, '5062002', '5', '0', '50', '', 'Received from interaction 9900002 (-1) on 2012-08-21', '18466', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('73415', null, '406', null, '5062002', '5', '0', '100', '', 'Received from interaction 9900002 (-1) on 2012-08-21', '18459', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('73416', null, '406', null, '5530169', '5', '0', '1', '', 'Cash Shop: 10002981 on 2012-08-21', '18447', '0', '1348158017244', '2', '');
INSERT INTO `csitems` VALUES ('74026', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74027', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74028', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74029', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74030', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74031', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74032', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74033', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74034', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74035', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74036', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74037', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74038', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74039', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74040', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74041', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74042', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74043', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74044', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74045', null, '289', null, '5620000', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18890', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74046', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74047', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74048', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74049', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74050', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74051', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74052', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74053', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74054', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74055', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74056', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74057', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74058', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74059', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74060', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74061', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74062', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74063', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74064', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74065', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74066', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74067', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74068', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74069', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74070', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74071', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74072', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74073', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74074', null, '289', null, '5360001', '5', '0', '1', '', 'Received from interaction 9900002 (-1) on 2012-08-22', '18857', '0', '-1', '2', '');
INSERT INTO `csitems` VALUES ('74075', null, '289', null, '5360001', '5',
 
Last edited:
Upvote 0
Back
Top