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!

Import Db error

Newbie Spellweaver
Joined
Apr 22, 2014
Messages
12
Reaction score
1
Hello Guys


I am trying to create a retro with IIS I have performed all the necessary configurations and everything is working correctly the problem is when I import the db with Navicat I receive this error:



I use this DB:

PHP:
/*Navicat MySQL Data Transfer
Source Server         : Boon dediSource Server Version : 50525Source Host           : 63.143.52.163:2206Source Database       : test
Target Server Type    : MYSQLTarget Server Version : 50525File Encoding         : 65001
Date: 2012-12-16 23:10:20*/
SET FOREIGN_KEY_CHECKS=0;-- ------------------------------ Table structure for `achievements`-- ----------------------------DROP TABLE IF EXISTS `achievements`;CREATE TABLE `achievements` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `type` varchar(100) NOT NULL DEFAULT '',  `levels` int(11) NOT NULL DEFAULT '1',  `dynamic_badgelevel` enum('0','1') NOT NULL DEFAULT '1',  `badge` varchar(100) NOT NULL,  `pixels_base` int(5) NOT NULL DEFAULT '50',  `score_base` int(5) NOT NULL DEFAULT '10',  `pixels_multiplier` double NOT NULL DEFAULT '1.25',  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=cp1251;
-- ------------------------------ Records of achievements-- ----------------------------INSERT INTO `achievements` VALUES ('1', 'identity', '1', '0', 'ACH_AvatarLooks1', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('2', 'identity', '1', '0', 'ACH_EmailVerification1', '2500', '10', '0.5');INSERT INTO `achievements` VALUES ('3', 'identity', '1', '0', 'ACH_Graduate1', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('4', 'identity', '1', '0', 'ACH_HappyHour1', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('5', 'identity', '1', '0', 'ACH_Motto1', '100', '10', '0.5');INSERT INTO `achievements` VALUES ('6', 'identity', '1', '0', 'ACH_Student1', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('7', 'identity', '1', '0', 'ACH_AvatarTags1', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('8', 'social', '1', '0', 'ACH_RespectGiven1', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('9', 'identity', '1', '0', 'ACH_Name1', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('10', 'identity', '10', '1', 'ACH_RegistrationDuration', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('11', 'identity', '10', '1', 'ACH_Login', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('13', 'explore', '10', '1', 'ACH_RoomEntry', '5', '10', '0.5');INSERT INTO `achievements` VALUES ('14', 'social', '10', '1', 'ACH_RespectEarned', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('15', 'social', '10', '1', 'ACH_MGM', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('16', 'identity', '10', '1', 'ACH_AllTimeHotelPresence', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('17', 'identity', '1', '0', 'ACH_TraderPass', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('18', 'identity', '1', '0', 'ACH_AIPerformanceVote', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('19', 'pets', '10', '1', 'ACH_PetFeeding', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('20', 'pets', '10', '1', 'ACH_PetLevelUp', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('21', 'pets', '10', '1', 'ACH_PetLover', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('22', 'pets', '10', '1', 'ACH_PetRespectGiver', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('23', 'pets', '10', '1', 'ACH_PetRespectReceiver', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('24', 'social', '10', '1', 'ACH_GiftGiver', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('25', 'social', '10', '1', 'ACH_GiftReceiver', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('26', 'identity', '5', '1', 'ACH_BasicClub', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('27', 'identity', '5', '1', 'ACH_VipClub', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('28', 'games', '20', '1', 'ACH_BattleBallTilesLocked', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('29', 'games', '20', '1', 'ACH_GamePlayerExperience', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('30', 'games', '20', '1', 'ACH_GameAuthorExperience', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('31', 'identity', '1', '0', 'Z64', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('32', 'identity', '1', '0', 'XXX', '0', '10', '0.5');INSERT INTO `achievements` VALUES ('33', 'identity', '1', '0', 'RLX01', '200', '10', '0.5');INSERT INTO `achievements` VALUES ('34', 'identity', '1', '0', 'AC5', '200', '10', '0.5');INSERT INTO `achievements` VALUES ('35', 'identity', '1', '0', 'IT5', '200', '10', '0.5');INSERT INTO `achievements` VALUES ('36', 'identity', '1', '0', 'ACH_Forum1', '50', '10', '0.5');INSERT INTO `achievements` VALUES ('37', 'identity', '1', '0', 'RU3', '200', '10', '0.5');INSERT INTO `achievements` VALUES ('38', 'identity', '1', '0', 'VA2', '200', '10', '0.5');
-- ------------------------------ Table structure for `achievements_owed`-- ----------------------------DROP TABLE IF EXISTS `achievements_owed`;CREATE TABLE `achievements_owed` (  `user` int(6) unsigned NOT NULL,  `achievement` int(3) unsigned NOT NULL,  `achlevel` int(3) NOT NULL DEFAULT '1') ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ------------------------------ Records of achievements_owed-- ----------------------------
-- ------------------------------ Table structure for `badges`-- ----------------------------DROP TABLE IF EXISTS `badges`;CREATE TABLE `badges` (  `id` int(5) unsigned NOT NULL AUTO_INCREMENT,  `badge` varchar(100) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=3741 DEFAULT CHARSET=utf8;
-- ------------------------------ Records of badges-- ----------------------------INSERT INTO `badges` VALUES ('1', 'ACH_Valentines12QuestCompleted');INSERT INTO `badges` VALUES ('2', 'fb_ACH_Valentines12QuestCompleted');INSERT INTO `badges` VALUES ('3', 'notifications.text.achievement_facebook_title');INSERT INTO `badges` VALUES ('4', 'ACH_GamePlayed6_HHCA');INSERT INTO `badges` VALUES ('5', 'IT029');INSERT INTO `badges` VALUES ('6', 'fb_ACH_CostumeHopper');INSERT INTO `badges` VALUES ('7', 'ACH_Login8_HHCA');INSERT INTO `badges` VALUES ('8', 'ACH_HappyHour1');INSERT INTO `badges` VALUES ('9', 'MD2_HHUK');INSERT INTO `badges` VALUES ('10', 'MRG00_HHSG');INSERT INTO `badges` VALUES ('11', 'ACH_BasicClub4_HHCA');INSERT INTO `badges` VALUES ('12', 'fb_VipParties1_Top10');INSERT INTO `badges` VALUES ('13', 'KIR');INSERT INTO `badges` VALUES ('14', 'SWB06');INSERT INTO `badges` VALUES ('15', 'ACH_RoomEntry10_HHCA');INSERT INTO `badges` VALUES ('16', 'SWB07');INSERT INTO `badges` VALUES ('17', 'AC1_HHUK');INSERT INTO `badges` VALUES ('18', 'SWB08');INSERT INTO `badges` VALUES ('19', 'SWB09');INSERT INTO `badges` VALUES ('20', 'ACH_Graduate1_HHCA');INSERT INTO `badges` VALUES ('21', 'al_ACH_NewUserBadgeReceiver');INSERT INTO `badges` VALUES ('22', 'SWB01');INSERT INTO `badges` VALUES ('23', 'MRG00_HHUK');INSERT INTO `badges` VALUES ('24', 'SGR_HHCA');INSERT INTO `badges` VALUES ('25', 'USE_HHCA');INSERT INTO `badges` VALUES ('26', 'ACH_CostumeHopper');INSERT INTO `badges` VALUES ('27', 'Z71_HHUK');INSERT INTO `badges` VALUES ('28', 'KO1');INSERT INTO `badges` VALUES ('29', 'KO2');INSERT INTO `badges` VALUES ('30', 'fb_ACH_SnowWarWeeklyBest');INSERT INTO `badges` VALUES ('31', 'VA012');INSERT INTO `badges` VALUES ('32', 'VA013');INSERT INTO `badges` VALUES ('33', 'VA010');INSERT INTO `badges` VALUES ('34', 'VA011');INSERT INTO `badges` VALUES ('35', 'Z02_HHCA');INSERT INTO `badges` VALUES ('36', 'QUZ05');INSERT INTO `badges` VALUES ('37', 'VA018');INSERT INTO `badges` VALUES ('38', 'VA017');INSERT INTO `badges` VALUES ('39', 'VA016');INSERT INTO `badges` VALUES ('40', 'VA015');INSERT INTO `badges` VALUES ('41', 'ACH_LympixSecretService');INSERT INTO `badges` VALUES ('42', 'VA014');INSERT INTO `badges` VALUES ('43', 'PET07');INSERT INTO `badges` VALUES ('44', 'DN1_HHUK');INSERT INTO `badges` VALUES ('45', 'PET06');INSERT INTO `badges` VALUES ('46', 'PET05');INSERT INTO `badges` VALUES ('47', 'PET03');INSERT INTO `badges` VALUES ('48', 'PET02');INSERT INTO `badges` VALUES ('49', 'PET01');INSERT INTO `badges` VALUES ('50', 'ACH_PetRespectReceiver10');INSERT INTO `badges` VALUES ('51', 'VA7_HHSG');INSERT INTO `badges` VALUES ('52', 'PET13');INSERT INTO `badges` VALUES ('53', 'PET12');INSERT INTO `badges` VALUES ('54', 'PET15');INSERT INTO `badges` VALUES ('55', 'PET14');INSERT INTO `badges` VALUES ('56', 'KR1');INSERT INTO `badges` VALUES ('57', 'PET11');INSERT INTO `badges` VALUES ('58', 'PET10');INSERT INTO `badges` VALUES ('59', 'UK061_HHUK');INSERT INTO `badges` VALUES ('60', 'UK015_HHUK');INSERT INTO `badges` VALUES ('61', 'HQ003_HHCA');INSERT INTO `badges` VALUES ('62', 'ACH_RespectEarned9_HHCA');INSERT INTO `badges` VALUES ('63', 'fb_VipParties3_Top100');INSERT INTO `badges` VALUES ('64', 'HQ003_HHAU');INSERT INTO `badges` VALUES ('65', 'fb_ACH_BaseJumpBigParachute');INSERT INTO `badges` VALUES ('66', 'ACH_PetLevelUp5_HHCA');INSERT INTO `badges` VALUES ('67', 'AC7_HHSG');INSERT INTO `badges` VALUES ('68', 'AC1_HHSG');INSERT INTO `badges` VALUES ('69', 'UKF_HHUK');INSERT INTO `badges` VALUES ('70', 'ACH_PetLover9_HHCA');INSERT INTO `badges` VALUES ('71', 'HW09C_HHCA');INSERT INTO `badges` VALUES ('72', 'SF1_HHCA');INSERT INTO `badges` VALUES ('73', 'IT079');INSERT INTO `badges` VALUES ('74', 'HW09C_HHAU');INSERT INTO `badges` VALUES ('75', 'SF1_HHAU');INSERT INTO `badges` VALUES ('76', 'VA7_HHUK');INSERT INTO `badges` VALUES ('77', 'Z20_HHUK');INSERT INTO `badges` VALUES ('78', 'AC7_HHUK');INSERT INTO `badges` VALUES ('79', 'DN1_HHSG');INSERT INTO `badges` VALUES ('80', 'ACH_Login5_HHCA');INSERT INTO `badges` VALUES ('81', 'SU3_HHUK');INSERT INTO `badges` VALUES ('82', 'MRG00_HHAU');INSERT INTO `badges` VALUES ('83', 'MOM01');INSERT INTO `badges` VALUES ('84', 'fb_ACH_RespectEarned10');INSERT INTO `badges` VALUES ('85', 'ACH_GiftReceiver10');INSERT INTO `badges` VALUES ('86', 'ACH_RoomEntry7_HHCA');INSERT INTO `badges` VALUES ('87', 'ACH_PetLevelUp4_HHCA');INSERT INTO `badges` VALUES ('88', 'ACH_PetFeeding6_HHCA');INSERT INTO `badges` VALUES ('89', 'ACH_GamePlayed8_HHCA');INSERT INTO `badges` VALUES ('90', 'JF5_HHCA');INSERT INTO `badges` VALUES ('91', 'LAT');INSERT INTO `badges` VALUES ('92', 'HW09B_HHCA');INSERT INTO `badges` VALUES ('93', 'X1124');INSERT INTO `badges` VALUES ('94', 'al_ACH_NotesLeft');INSERT INTO `badges` VALUES ('95', 'X1130');INSERT INTO `badges` VALUES ('96', 'LBB');INSERT INTO `badges` VALUES ('97', 'NLC_HHSG');INSERT INTO `badges` VALUES ('98', 'UKB_HHUK');INSERT INTO `badges` VALUES ('99', 'HJ5_HHUK');INSERT INTO `badges` VALUES ('100', 'HW09B_HHAU');INSERT INTO `badges` VALUES ('101', 'SGR_HHSG');INSERT INTO `badges` VALUES ('102', 'X1115');INSERT INTO `badges` VALUES ('103', 'ACH_GuideOnDutyPresence5');INSERT INTO `badges` VALUES ('104', 'ACH_GuideOnDutyPresence6');INSERT INTO `badges` VALUES ('105', 'ACH_GuideOnDutyPresence3');INSERT INTO `badges` VALUES ('106', 'ACH_GuideOnDutyPresence4');INSERT INTO `badges` VALUES ('107', 'ACH_GuideOnDutyPresence9');INSERT INTO `badges` VALUES ('108', 'ACH_GuideOnDutyPresence7');INSERT INTO `badges` VALUES ('109', 'ACH_GuideOnDutyPresence8');INSERT INTO `badges` VALUES ('110', 'fb_ACH_MGM10');INSERT INTO `badges` VALUES ('111', 'ACH_GuideOnDutyPresence1');INSERT INTO `badges` VALUES ('112', 'ACH_GuideOnDutyPresence2');INSERT INTO `badges` VALUES ('113', 'VIP_HHAU');INSERT INTO `badges` VALUES ('114', 'ACH_GiftGiver7_HHCA');INSERT INTO `badges` VALUES ('115', 'SU3_HHSG');INSERT INTO `badges` VALUES ('116', 'VipParties3_Top100');INSERT INTO `badges` VALUES ('117', 'DS4_HHCA');INSERT INTO `badges` VALUES ('118', 'DS4_HHAU');INSERT INTO `badges` VALUES ('119', 'al_ACH_MusicCollector');INSERT INTO `badges` VALUES ('120', 'VIP_HHCA');INSERT INTO `badges` VALUES ('121', 'RADZZ');INSERT INTO `badges` VALUES ('122', 'UK082_HHUK');INSERT INTO `badges` VALUES ('123', 'ADM_HHUK');INSERT INTO `badges` VALUES ('124', 'ACH_BasicClub2');INSERT INTO `badges` VALUES ('125', 'ACH_BasicClub1');INSERT INTO `badges` VALUES ('126', 'GLA_HHAU');INSERT INTO `badges` VALUES ('127', 'NEB_HHAU');INSERT INTO `badges` VALUES ('128', 'ACH_BasicClub5');INSERT INTO `badges` VALUES ('129', 'ACH_BasicClub3');INSERT INTO `badges` VALUES ('130', 'ACH_BasicClub4');INSERT INTO `badges` VALUES ('131', 'LE1');INSERT INTO `badges` VALUES ('132', 'LE2');INSERT INTO `badges` VALUES ('133', 'SFG_HHUK');INSERT INTO `badges` VALUES ('134', 'SF1_HHUK');INSERT INTO `badges` VALUES ('135', 'HQ003_HHSG');INSERT INTO `badges` VALUES ('136', 'NEB_HHCA');INSERT INTO `badges` VALUES ('137', 'ACH_TagA10');INSERT INTO `badges` VALUES ('138', 'WH3_HHAU');INSERT INTO `badges` VALUES ('139', 'ADM_HHSG');INSERT INTO `badges` VALUES ('140', 'UK044_HHUK');INSERT INTO `badges` VALUES ('141', 'fb_ACH_RbBunnyTag');INSERT INTO `badges` VALUES ('142', 'GLA_HHCA');INSERT INTO `badges` VALUES ('143', 'HW09D_HHUK');INSERT INTO `badges` VALUES ('144', 'fb_ACH_PetRespectGiver10');INSERT INTO `badges` VALUES ('145', 'ACH_PetLevelUp3_HHCA');INSERT INTO `badges` VALUES ('146', 'LC7');INSERT INTO `badges` VALUES ('147', 'UKBD1_HHUK');INSERT INTO `badges` VALUES ('148', 'LC8');INSERT INTO `badges` VALUES ('149', 'LC3');INSERT INTO `badges` VALUES ('150', 'LC6');INSERT INTO `badges` VALUES ('151', 'LC1');INSERT INTO `badges` VALUES ('152', 'ST6_HHUK');INSERT INTO `badges` VALUES ('153', 'HOP03_HHAU');INSERT INTO `badges` VALUES ('154', 'SF1_HHSG');INSERT INTO `badges` VALUES ('155', 'HW09D_HHSG');INSERT INTO `badges` VALUES ('156', 'WH3_HHCA');INSERT INTO `badges` VALUES ('157', 'DN1_HHAU');INSERT INTO `badges` VALUES ('158', 'fb_ACH_FootballGoalScored');INSERT INTO `badges` VALUES ('159', 'ACH_RoomEntry1_HHCA');INSERT INTO `badges` VALUES ('160', 'DN1_HHCA');INSERT INTO `badges` VALUES ('161', 'fb_ACH_BattleBallWinner');INSERT INTO `badges` VALUES ('162', 'ACH_GiftGiver8_HHCA');INSERT INTO `badges` VALUES ('163', 'fb_ACH_MonsterPlantGardenOfDeath');INSERT INTO `badges` VALUES ('164', 'HOP03_HHCA');INSERT INTO `badges` VALUES ('165', 'ACH_PetLevelUp2_HHCA');INSERT INTO `badges` VALUES ('166', 'ACH_BasicClub2_HHCA');INSERT INTO `badges` VALUES ('167', 'ACH_RoomEntry9_HHCA');INSERT INTO `badges` VALUES ('168', 'ACH_GuideTourTaker1');INSERT INTO `badges` VALUES ('169', 'ACH_GuideTourTaker2');INSERT INTO `badges` VALUES ('170', 'ACH_GuideTourTaker3');INSERT INTO `badges` VALUES ('171', 'SG1_HHSG');INSERT INTO `badges` VALUES ('172', 'XM2_HHAU');INSERT INTO `badges` VALUES ('173', 'RU3_HHSG');INSERT INTO `badges` VALUES ('174', 'ACH_GamePlayed4_HHCA');INSERT INTO `badges` VALUES ('175', 'HOP02_HHAU');INSERT INTO `badges` VALUES ('176', 'COM66');INSERT INTO `badges` VALUES ('177', 'COM65');INSERT INTO `badges` VALUES ('178', 'COM67');INSERT INTO `badges` VALUES ('179', 'COM62');INSERT INTO `badges` VALUES ('180', 'COM61');INSERT INTO `badges` VALUES ('181', 'COM64');INSERT INTO `badges` VALUES ('182', 'COM63');INSERT INTO `badges` VALUES ('183', 'COM60');INSERT INTO `badges` VALUES ('184', 'poop1');INSERT INTO `badges` VALUES ('185', 'SFE_HHSG');INSERT INTO `badges` VALUES ('186', 'Z28_HHUK');INSERT INTO `badges` VALUES ('187', 'COM57');INSERT INTO `badges` VALUES ('188', 'COM56');INSERT INTO `badges` VALUES ('189', 'COM55');INSERT INTO `badges` VALUES ('190', 'COM54');INSERT INTO `badges` VALUES ('191', 'COM58');INSERT INTO `badges` VALUES ('192', 'UK075_HHUK');INSERT INTO `badges` VALUES ('193', 'COM53');INSERT INTO `badges` VALUES ('194', 'COM52');INSERT INTO `badges` VALUES ('195', 'COM51');INSERT INTO `badges` VALUES ('196', 'UK083_HHUK');INSERT INTO `badges` VALUES ('197', 'COM50');INSERT INTO `badges` VALUES ('198', 'COM44');INSERT INTO `badges` VALUES ('199', 'COM43');INSERT INTO `badges` VALUES ('200', 'COM46');INSERT INTO `badges` VALUES ('201', 'COM45');INSERT INTO `badges` VALUES ('202', 'COM48');INSERT INTO `badges` VALUES ('203', 'COM47');INSERT INTO `badges` VALUES ('204', 'COM49');INSERT INTO `badges` VALUES ('205', 'fb_ACH_PetLevelUp1');INSERT INTO `badges` VALUES ('206', 'fb_ACH_PetLevelUp2');INSERT INTO `badges` VALUES ('207', 'fb_ACH_PetLevelUp3');INSERT INTO `badges` VALUES ('208', 'COM40');INSERT INTO `badges` VALUES ('209', 'GLI_HHUK');INSERT INTO `badges` VALUES ('210', 'COM42');INSERT INTO `badges` VALUES ('211', 'COM41');INSERT INTO `badges` VALUES ('212', 'fb_ACH_PetLevelUp9');INSERT INTO `badges` VALUES ('213', 'fb_ACH_PetLevelUp8');INSERT INTO `badges` VALUES ('214', 'HOP02_HHCA');INSERT INTO `badges` VALUES ('215', 'fb_ACH_PetLevelUp5');INSERT INTO `badges` VALUES ('216', 'fb_ACH_PetLevelUp4');INSERT INTO `badges` VALUES ('217', 'SFE_HHUK');INSERT INTO `badges` VALUES ('218', 'fb_ACH_PetLevelUp7');INSERT INTO `badges` VALUES ('219', 'fb_ACH_PetLevelUp6');INSERT INTO `badges` VALUES ('220', 'PIR_HHUK');INSERT INTO `badges` VALUES ('221', 'NEE_HHCA');INSERT INTO `badges` VALUES ('222', 'VIP_HHSG');INSERT INTO `badges` VALUES ('223', 'CNL01');INSERT INTO `badges` VALUES ('224', 'JKR');INSERT INTO `badges` VALUES ('225', 'ACH_PetFeeding7_HHCA');INSERT INTO `badges` VALUES ('226', 'Z46_HHUK');INSERT INTO `badges` VALUES ('227', 'SU3_HHCA');INSERT INTO `badges` VALUES ('228', 'fb_ACH_SkateBoardSlide');INSERT INTO `badges` VALUES ('229', 'DS4_HHSG');INSERT INTO `badges` VALUES ('230', 'HW09B_HHUK');INSERT INTO `badges` VALUES ('231', 'GLI_HHSG');INSERT INTO `badges` VALUES ('232', 'HUB_HHAU');INSERT INTO `badges` VALUES ('233', 'RUN06_HHAU');INSERT INTO `badges` VALUES ('234', 'RU3_HHUK');INSERT INTO `badges` VALUES ('235', 'COL_HHAU');INSERT INTO `badges` VALUES ('236', 'SU3_HHAU');INSERT INTO `badges` VALUES ('237', 'MD1_HHUK');INSERT INTO `badges` VALUES ('238', 'ACH_FreezeQuestCompleted1');INSERT INTO `badges` VALUES ('239', 'ACH_FreezeQuestCompleted2');INSERT INTO `badges` VALUES ('240', 'ACH_FreezeQuestCompleted3');INSERT INTO `badges` VALUES ('241', 'HX2_HHSG');INSERT INTO `badges` VALUES ('242', 'ACH_FreezeQuestCompleted4');INSERT INTO `badges` VALUES ('243', 'ACH_FreezeQuestCompleted5');INSERT INTO `badges` VALUES ('244', 'ACH_FreezeQuestCompleted6');INSERT INTO `badges` VALUES ('245', 'ACH_FreezeQuestCompleted7');INSERT INTO `badges` VALUES ('246', 'ACH_FreezeQuestCompleted8');INSERT INTO `badges` VALUES ('247', 'ACH_FreezeQuestCompleted9');INSERT INTO `badges` VALUES ('248', 'HW09B_HHSG');INSERT INTO `badges` VALUES ('249', 'ACH_RespectEarned4_HHCA');INSERT INTO `badges` VALUES ('250', 'UK088_HHUK');INSERT INTO `badges` VALUES ('251', 'OL2_HHUK');INSERT INTO `badges` VALUES ('252', 'COL_HHCA');INSERT INTO `badges` VALUES ('253', 'UK047_HHUK');INSERT INTO `badges` VALUES ('254', 'fb_ACH_FreezeQuestCompleted10');INSERT INTO `badges` VALUES ('255', 'ACH_GamePlayed10_HHCA');INSERT INTO `badges` VALUES ('256', 'GLA_HHSG');INSERT INTO `badges` VALUES ('257', 'fb_ACH_MonsterPlantTreater');INSERT INTO `badges` VALUES ('258', 'TWIV3_HHUK');INSERT INTO `badges` VALUES ('259', 'OL2_HHSG');INSERT INTO `badges` VALUES ('260', 'JF1_HHUK');INSERT INTO `badges` VALUES ('261', 'GRR_HHUK');INSERT INTO `badges` VALUES ('262', 'ACH_PetRespectReceiver10_HHCA');INSERT INTO `badges` VALUES ('263', 'Z35_HHUK');INSERT INTO `badges` VALUES ('264', 'UKI_HHUK');INSERT INTO `badges` VALUES ('265', 'ACH_RespectEarned10');INSERT INTO `badges` VALUES ('266', 'ACH_VipClub12');INSERT INTO `badges` VALUES ('267', 'COM30');INSERT INTO `badges` VALUES ('268', 'COM31');INSERT INTO `badges` VALUES ('269', 'WH3_HHUK');INSERT INTO `badges` VALUES ('270', 'HW09D_HHAU');INSERT INTO `badges` VALUES ('271', 'COM36');INSERT INTO `badges` VALUES ('272', 'COM37');INSERT INTO `badges` VALUES ('273', 'COM38');INSERT INTO `badges` VALUES ('274', 'COM39');INSERT INTO `badges` VALUES ('275', 'COM32');INSERT INTO `badges` VALUES ('276', 'COM33');INSERT INTO `badges` VALUES ('277', 'COM35');INSERT INTO `badges` VALUES ('278', 'COM29');INSERT INTO `badges` VALUES ('279', 'UK093_HHUK');INSERT INTO `badges` VALUES ('280', 'GRR_HHSG');INSERT INTO `badges` VALUES ('281', 'HQ002_HHSG');INSERT INTO `badges` VALUES ('282', 'COM20');INSERT INTO `badges` VALUES ('283', 'ACH_SpendPeanuts');INSERT INTO `badges` VALUES ('284', 'COM27');INSERT INTO `badges` VALUES ('285', 'COM28');INSERT INTO `badges` VALUES ('286', 'COM25');INSERT INTO `badges` VALUES ('287', 'COM26');INSERT INTO `badges` VALUES ('288', 'COM23');INSERT INTO `badges` VALUES ('289', 'COM24');INSERT INTO `badges` VALUES ('290', 'COM21');INSERT INTO `badges` VALUES ('291', 'COM22');INSERT INTO `badges` VALUES ('292', 'COM19');INSERT INTO `badges` VALUES ('293', 'COM18');INSERT INTO `badges` VALUES ('294', 'Z07_HHUK');INSERT INTO `badges` VALUES ('295', 'GLA_HHUK');INSERT INTO `badges` VALUES ('296', 'HW09D_HHCA');INSERT INTO `badges` VALUES ('297', 'WH3_HHSG');INSERT INTO `badges` VALUES ('298', 'UKS_HHUK');INSERT INTO `badges` VALUES ('299', 'ADM_HHAU');INSERT INTO `badges` VALUES ('300', 'COM10');INSERT INTO `badges` VALUES ('301', 'COM11');INSERT INTO `badges` VALUES ('302', 'COM12');INSERT INTO `badges` VALUES ('303', 'MTV01_HHSG');INSERT INTO `badges` VALUES ('304', 'COM13');INSERT INTO `badges` VALUES ('305', 'COM14');INSERT INTO `badges` VALUES ('306', 'COM15');INSERT INTO `badges` VALUES ('307', 'COM16');INSERT INTO `badges` VALUES ('308', 'COM17');INSERT INTO `badges` VALUES ('309', 'COM09');INSERT INTO `badges` VALUES ('310', 'COM08');INSERT INTO `badges` VALUES ('311', 'COM07');INSERT INTO `badges` VALUES ('312', 'TWIV3_HHSG');INSERT INTO `badges` VALUES ('313', 'ACH_BattleBallQuestCompleted10');INSERT INTO `badges` VALUES ('314', 'ACH_Login6_HHCA');INSERT INTO `badges` VALUES ('315', 'JF1_HHSG');INSERT INTO `badges` VALUES ('316', 'COM02');INSERT INTO `badges` VALUES ('317', 'COM00');INSERT INTO `badges` VALUES ('318', 'COM05');INSERT INTO `badges` VALUES ('319', 'COM06');INSERT INTO `badges` VALUES ('320', 'COM03');INSERT INTO `badges` VALUES ('321', 'COM04');INSERT INTO `badges` VALUES ('322', 'ACH_GamePlayed10');INSERT INTO `badges` VALUES ('323', 'RU3_HHAU');INSERT INTO `badges` VALUES ('324', 'COL_HHUK');INSERT INTO `badges` VALUES ('325', 'HW09C_HHUK');INSERT INTO `badges` VALUES ('326', 'CAG_HHUK');INSERT INTO `badges` VALUES ('327', 'MTV01_HHUK');INSERT INTO `badges` VALUES ('328', 'ACH_GuideRequester1');INSERT INTO `badges` VALUES ('329', 'ACH_GuideRequester2');INSERT INTO `badges` VALUES ('330', 'ACH_PetRespectGiver4_HHCA');INSERT INTO `badges` VALUES ('331', 'SFE_HHCA');INSERT INTO `badges` VALUES ('332', 'GLG_HHSG');INSERT INTO `badges` VALUES ('333', 'NEE_HHSG');INSERT INTO `badges` VALUES ('334', 'GLI_HHCA');INSERT INTO `badges` VALUES ('335', 'RUN06_HHSG');INSERT INTO `badges` VALUES ('336', 'COL_HHSG');INSERT INTO `badges` VALUES ('337', 'Z08_HHUK');INSERT INTO `badges` VALUES ('338', 'GLG_HHUK');INSERT INTO `badges` VALUES ('339', 'HX2_HHCA');INSERT INTO `badges` VALUES ('340', 'RU3_HHCA');INSERT INTO `badges` VALUES ('341', 'OL2_HHCA');INSERT INTO `badges` VALUES ('342', 'HX2_HHAU');INSERT INTO `badges` VALUES ('343', 'ACH_VipParties3_Entry');INSERT INTO `badges` VALUES ('344', 'GLI_HHAU');INSERT INTO `badges` VALUES ('345', 'UK006_HHUK');INSERT INTO `badges` VALUES ('346', 'HOR03');INSERT INTO `badges` VALUES ('347', 'HOR01');INSERT INTO `badges` VALUES ('348', 'HOR02');INSERT INTO `badges` VALUES ('349', 'HOR09');INSERT INTO `badges` VALUES ('350', 'HOR08');INSERT INTO `badges` VALUES ('351', 'HOR05');INSERT INTO `badges` VALUES ('352', 'ACH_PetRespectGiver9_HHCA');INSERT INTO `badges` VALUES ('353', 'ACH_BadMonkeyLevelUp');INSERT INTO `badges` VALUES ('354', 'SFI_HHSG');INSERT INTO `badges` VALUES ('355', 'HOR13');INSERT INTO `badges` VALUES ('356', 'NI5_HHUK');INSERT INTO `badges` VALUES ('357', 'JF1_HHCA');INSERT INTO `badges` VALUES ('358', 'OL2_HHAU');INSERT INTO `badges` VALUES ('359', 'fb_StarsRoom2_Top10');INSERT INTO `badges` VALUES ('360', 'ACH_TagB19');INSERT INTO `badges` VALUES ('361', 'ACH_TagB18');INSERT INTO `badges` VALUES ('362', 'ACH_TagB20');INSERT INTO `badges` VALUES ('363', 'majesty_rcr_3');INSERT INTO `badges` VALUES ('364', 'majesty_rcr_2');INSERT INTO `badges` VALUES ('365', 'majesty_rcr_1');INSERT INTO `badges` VALUES ('366', 'ACH_BasicClub3_HHCA');INSERT INTO `badges` VALUES ('367', 'ACH_TagB12');INSERT INTO `badges` VALUES ('368', 'ACH_TagB13');INSERT INTO `badges` VALUES ('369', 'ACH_TagB10');INSERT INTO `badges` VALUES ('370', 'ACH_TagB11');INSERT INTO `badges` VALUES ('371', 'ACH_TagB16');INSERT INTO `badges` VALUES ('372', 'ACH_TagB17');INSERT INTO `badges` VALUES ('373', 'HUB_HHCA');INSERT INTO `badges` VALUES ('374', 'ACH_TagB14');INSERT INTO `badges` VALUES ('375', 'ACH_TagB15');INSERT INTO `badges` VALUES ('376', 'ACH_RespectEarned6_HHCA');INSERT INTO `badges` VALUES ('377', 'SFI_HHUK');INSERT INTO `badges` VALUES ('378', 'ACH_RegistrationDuration6_HHCA');INSERT INTO `badges` VALUES ('379', 'VA7_HHCA');INSERT INTO `badges` VALUES ('380', 'VIP_HHUK');INSERT INTO `badges` VALUES ('381', 'ACH_MGM4_HHCA');INSERT INTO `badges` VALUES ('382', 'GRR_HHCA');INSERT INTO `badges` VALUES ('383', 'HQ002_HHCA');INSERT INTO `badges` VALUES ('384', 'ACH_AllTimeHotelPresence4');INSERT INTO `badges` VALUES ('385', 'ACH_AllTimeHotelPresence5');INSERT INTO `badges` VALUES ('386', 'ACH_GamePlayerExperience20');INSERT INTO `badges` VALUES ('387', 'ACH_AllTimeHotelPresence2');INSERT INTO `badges` VALUES ('388', 'ACH_AllTimeHotelPresence3');INSERT INTO `badges` VALUES ('389', 'ACH_AllTimeHotelPresence8');INSERT INTO `badges` VALUES ('390', 'ACH_AllTimeHotelPresence9');INSERT INTO `badges` VALUES ('391', 'ACH_AllTimeHotelPresence6');INSERT INTO `badges` VALUES ('392', 'ACH_AllTimeHotelPresence7');INSERT INTO `badges` VALUES ('393', 'ACH_GamePlayerExperience18');INSERT INTO `badges` VALUES ('394', 'HQ002_HHAU');INSERT INTO `badges` VALUES ('395', 'ACH_GamePlayerExperience17');INSERT INTO `badges` VALUES ('396', 'GRR_HHAU');INSERT INTO `badges` VALUES ('397', 'ACH_GamePlayerExperience19');INSERT INTO `badges` VALUES ('398', 'ACH_GamePlayerExperience14');INSERT INTO `badges` VALUES ('399', 'ACH_GamePlayerExperience13');INSERT INTO `badges` VALUES ('400', 'ACH_GamePlayerExperience16');INSERT INTO `badges` VALUES ('401', 'ACH_AllTimeHotelPresence1');INSERT INTO `badges` VALUES ('402', 'ACH_GamePlayerExperience15');INSERT INTO `badges` VALUES ('403', 'ACH_GamePlayerExperience10');INSERT INTO `badges` VALUES ('404', 'ACH_GamePlayerExperience11');INSERT INTO `badges` VALUES ('405', 'ACH_GamePlayerExperience12');INSERT INTO `badges` VALUES ('406', 'Z02_HHUK');INSERT INTO `badges` VALUES ('407', 'AC7_HHCA');INSERT INTO `badges` VALUES ('408', 'HW09C_HHSG');INSERT INTO `badges` VALUES ('409', 'UK032_HHUK');INSERT INTO `badges` VALUES ('410', 'USP_HHUK');INSERT INTO `badges` VALUES ('411', 'KH2');INSERT INTO `badges` VALUES ('412', 'ACH_PetLevelUp8_HHCA');INSERT INTO `badges` VALUES ('413', 'JF1_HHAU');INSERT INTO `badges` VALUES ('414', 'GH001');INSERT INTO `badges` VALUES ('415', 'GH002');INSERT INTO `badges` VALUES ('416', 'GH003');INSERT INTO `badges` VALUES ('417', 'GH004');INSERT INTO `badges` VALUES ('418', 'JF2_HHCA');INSERT INTO `badges` VALUES ('419', 'GH005');INSERT INTO `badges` VALUES ('420', 'Z32_HHUK');INSERT INTO `badges` VALUES ('421', 'GH006');INSERT INTO `badges` VALUES ('422', 'EAS03_HHAU');INSERT INTO `badges` VALUES ('423', 'GH007');INSERT INTO `badges` VALUES ('424', 'GH008');INSERT INTO `badges` VALUES ('425', 'GH000');INSERT INTO `badges` VALUES ('426', 'DK035');INSERT INTO `badges` VALUES ('427', 'SNW_HHCA');INSERT INTO `badges` VALUES ('428', 'RLX03_HHCA');INSERT INTO `badges` VALUES ('429', 'ACH_MonsterPlantUnluckyGardener');INSERT INTO `badges` VALUES ('430', 'SNW_HHAU');INSERT INTO `badges` VALUES ('431', 'ACH_BasicClub1_HHCA');INSERT INTO `badges` VALUES ('432', 'TWIC3_HHSG');INSERT INTO `badges` VALUES ('433', 'GH010');INSERT INTO `badges` VALUES ('434', 'GH011');INSERT INTO `badges` VALUES ('435', 'DK041');INSERT INTO `badges` VALUES ('436', 'ACH_RoomEntry6_HHCA');INSERT INTO `badges` VALUES ('437', 'GH009');INSERT INTO `badges` VALUES ('438', 'fb_ACH_BaseJumpShield');INSERT INTO `badges` VALUES ('439', 'fb_ACH_RoomCompetitionVoter');INSERT INTO `badges` VALUES ('440', 'UK056_HHUK');INSERT INTO `badges` VALUES ('441', 'WAR_HHCA');INSERT INTO `badges` VALUES ('442', 'TWIC3_HHUK');INSERT INTO `badges` VALUES ('443', 'al_ACH_RoomDecoLandscape');INSERT INTO `badges` VALUES ('444', 'USJ_HHAU');INSERT INTO `badges` VALUES ('445', 'ACH_PetRespectReceiver9_HHCA');INSERT INTO `badges` VALUES ('446', 'US8_HHSG');INSERT INTO `badges` VALUES ('447', 'VA5_HHUK');INSERT INTO `badges` VALUES ('448', 'DU1_HHAU');INSERT INTO `badges` VALUES ('449', 'ancients_jungle_rcr_3');INSERT INTO `badges` VALUES ('450', 'ancients_jungle_rcr_2');INSERT INTO `badges` VALUES ('451', 'ancients_jungle_rcr_1');INSERT INTO `badges` VALUES ('452', 'UK074_HHUK');INSERT INTO `badges` VALUES ('453', 'COM6');INSERT INTO `badges` VALUES ('454', 'COM5');INSERT INTO `badges` VALUES ('455', 'COM4');INSERT INTO `badges` VALUES ('456', 'VA5_HHSG');INSERT INTO `badges` VALUES ('457', 'EAS03_HHCA');INSERT INTO `badges` VALUES ('458', 'ACH_TagB4');INSERT INTO `badges` VALUES ('459', 'ACH_TagB3');INSERT INTO `badges` VALUES ('460', 'ACH_TagB2');INSERT INTO `badges` VALUES ('461', 'IT2');INSERT INTO `badges` VALUES ('462', 'ACH_TagB1');INSERT INTO `badges` VALUES ('463', 'ACH_TagB8');INSERT INTO `badges` VALUES ('464', 'al_ACH_RoomDecoHosting');INSERT INTO `badges` VALUES ('465', 'ACH_TagB7');INSERT INTO `badges` VALUES ('466', 'ACH_TagB6');INSERT INTO `badges` VALUES ('467', 'ACH_TagB5');INSERT INTO `badges` VALUES ('468', 'IT8');INSERT INTO `badges` VALUES ('469', 'ACH_TagA8');INSERT INTO `badges` VALUES ('470', 'ACH_TagA9');INSERT INTO `badges` VALUES ('471', 'IT3');INSERT INTO `badges` VALUES ('472', 'IT4');INSERT INTO `badges` VALUES ('473', 'IT6');INSERT INTO `badges` VALUES ('474', 'ACH_TagA1');INSERT INTO `badges` VALUES ('475', 'ACH_TagA3');INSERT INTO `badges` VALUES ('476', 'ACH_TagA2');INSERT INTO `badges` VALUES ('477', 'ACH_TagA5');INSERT INTO `badges` VALUES ('478', 'ACH_TagA4');INSERT INTO `badges` VALUES ('479', 'ACH_TagA7');INSERT INTO `badges` VALUES ('480', 'ACH_TagA6');INSERT INTO `badges` VALUES ('481', 'STU05');INSERT INTO `badges` VALUES ('482', 'STU07');INSERT INTO `badges` VALUES ('483', 'STU06');INSERT INTO `badges` VALUES ('484', 'STU08');INSERT INTO `badges` VALUES ('485', 'LC8_HHCA');INSERT INTO `badges` VALUES ('486', 'Z01');INSERT INTO `badges` VALUES ('487', 'Z02');INSERT INTO `badges` VALUES ('488', 'Z03');INSERT INTO `badges` VALUES ('489', 'Z04');INSERT INTO `badges` VALUES ('490', 'Z05');INSERT INTO `badges` VALUES ('491', 'Z06');INSERT INTO `badges` VALUES ('492', 'Z07');INSERT INTO `badges` VALUES ('493', 'Z08');INSERT INTO `badges` VALUES ('494', 'Z09');INSERT INTO `badges` VALUES ('495', 'MH2_HHCA');INSERT INTO `badges` VALUES ('496', 'Z44_HHUK');INSERT INTO `badges` VALUES ('497', 'Z11');INSERT INTO `badges` VALUES ('498', 'Z12');INSERT INTO `badges` VALUES ('499', 'Z10');INSERT INTO `badges` VALUES ('500', 'Z15');INSERT INTO `badges` VALUES ('501', 'Z16');INSERT INTO `badges` VALUES ('502', 'Z13');INSERT INTO `badges` VALUES ('503', 'Z14');INSERT INTO `badges` VALUES ('504', 'Z19');INSERT INTO `badges` VALUES ('505', 'Z17');INSERT INTO `badges` VALUES ('506', 'Z18');INSERT INTO `badges` VALUES ('507', 'HOT_HHSG');INSERT INTO `badges` VALUES ('508', 'Z29');INSERT INTO `badges` VALUES ('509', 'Z28');INSERT INTO `badges` VALUES ('510', 'Z25');INSERT INTO `badges` VALUES ('511', 'Z24');INSERT INTO `badges` VALUES ('512', 'Z27');INSERT INTO `badges` VALUES ('513', 'PET15_TURTLE');INSERT INTO `badges` VALUES ('514', 'Z26');INSERT INTO `badges` VALUES ('515', 'Z21');INSERT INTO `badges` VALUES ('516', 'Z20');INSERT INTO `badges` VALUES ('517', 'Z23');INSERT INTO `badges` VALUES ('518', 'Z22');INSERT INTO `badges` VALUES ('519', 'ACH_PetLover5_HHCA');INSERT INTO `badges` VALUES ('520', 'Z30');INSERT INTO `badges` VALUES ('521', 'HUB_HHSG');INSERT INTO `badges` VALUES ('522', 'SF002_HHUK');INSERT INTO `badges` VALUES ('523', 'Z39');INSERT INTO `badges` VALUES ('524', 'Z38');INSERT INTO `badges` VALUES ('525', 'Z37');INSERT INTO `badges` VALUES ('526', 'Z36');INSERT INTO `badges` VALUES ('527', 'Z35');INSERT INTO `badges` VALUES ('528', 'Z33');INSERT INTO `badges` VALUES ('529', 'Z32');INSERT INTO `badges` VALUES ('530', 'Z31');INSERT INTO `badges` VALUES ('531', 'Z40');INSERT INTO `badges` VALUES ('532', 'Z41');INSERT INTO `badges` VALUES ('533', 'STU01');INSERT INTO `badges` VALUES ('534', 'Z43');INSERT INTO `badges` VALUES ('535', 'Z42');INSERT INTO `badges` VALUES ('536', 'Z45');INSERT INTO `badges` VALUES ('537', 'Z44');INSERT INTO `badges` VALUES ('538', 'Z47');INSERT INTO `badges` VALUES ('539', 'Z46');INSERT INTO `badges` VALUES ('540', 'Z49');INSERT INTO `badges` VALUES ('541', 'Z48');INSERT INTO `badges` VALUES ('542', 'HUB_HHUK');INSERT INTO `badges` VALUES ('543', 'Z51');INSERT INTO `badges` VALUES ('544', 'BOU03');INSERT INTO `badges` VALUES ('545', 'BOU02');INSERT INTO `badges` VALUES ('546', 'BOU01');INSERT INTO `badges` VALUES ('547', 'BOU07');INSERT INTO `badges` VALUES ('548', 'BOU06');INSERT INTO `badges` VALUES ('549', 'UK085_HHUK');INSERT INTO `badges` VALUES ('550', 'BOU04');INSERT INTO `badges` VALUES ('551', 'ACH_TagC6');INSERT INTO `badges` VALUES ('552', 'ACH_TagC7');INSERT INTO `badges` VALUES ('553', 'ACH_TagC8');INSERT INTO `badges` VALUES ('554', 'ACH_TagC9');INSERT INTO `badges` VALUES ('555', 'ACH_TagC2');INSERT INTO `badges` VALUES ('556', 'ACH_TagC3');INSERT INTO `badges` VALUES ('557', 'ACH_TagC4');INSERT INTO `badges` VALUES ('558', 'BOU10');INSERT INTO `badges` VALUES ('559', 'ACH_TagC5');INSERT INTO `badges` VALUES ('560', 'Z56');INSERT INTO `badges` VALUES ('561', 'ACH_TagC1');INSERT INTO `badges` VALUES ('562', 'SFI_HHCA');INSERT INTO `badges` VALUES ('563', 'Z59');INSERT INTO `badges` VALUES ('564', 'Z58');INSERT INTO `badges` VALUES ('565', 'Z57');INSERT INTO `badges` VALUES ('566', 'ACH_VipParties2_Entry');INSERT INTO `badges` VALUES ('567', 'ACH_EmailVerification1_HHCA');INSERT INTO `badges` VALUES ('568', 'JF2_HHAU');INSERT INTO `badges` VALUES ('569', 'Z63');INSERT INTO `badges` VALUES ('570', 'Z60');INSERT INTO `badges` VALUES ('571', 'XMAS1_HHCA');INSERT INTO `badges` VALUES ('572', 'ACH_TagB9');INSERT INTO `badges` VALUES ('573', 'CY1_HHSG');INSERT INTO `badges` VALUES ('574', 'WAR_HHUK');INSERT INTO `badges` VALUES ('575', 'TWIC3_HHCA');INSERT INTO `badges` VALUES ('576', 'Z85');INSERT INTO `badges` VALUES ('577', 'Z84');INSERT INTO `badges` VALUES ('578', 'Z75');INSERT INTO `badges` VALUES ('579', 'Z76');INSERT INTO `badges` VALUES ('580', 'Z77');INSERT INTO `badges` VALUES ('581', 'Z78');INSERT INTO `badges` VALUES ('582', 'UKV_HHUK');INSERT INTO `badges` VALUES ('583', 'SNW_HHSG');INSERT INTO `badges` VALUES ('584', 'RLX03_HHSG');INSERT INTO `badges` VALUES ('585', 'Z70');INSERT INTO `badges` VALUES ('586', 'Z74');INSERT INTO `badges` VALUES ('587', 'JF2_HHSG');INSERT INTO `badges` VALUES ('588', 'Z73');INSERT INTO `badges` VALUES ('589', 'Z72');INSERT INTO `badges` VALUES ('590', 'Z71');INSERT INTO `badges` VALUES ('591', 'Z66');INSERT INTO `badges` VALUES ('592', 'USH_HHCA');INSERT INTO `badges` VALUES ('593', 'Z67');INSERT INTO `badges` VALUES ('594', 'Z64');INSERT INTO `badges` VALUES ('595', 'Z65');INSERT INTO `badges` VALUES ('596', 'Z68');INSERT INTO `badges` VALUES ('597', 'Z69');INSERT INTO `badges` VALUES ('598', 'WAR_HHSG');INSERT INTO `badges` VALUES ('599', 'al_ACH_FireworksCharger');INSERT INTO `badges` VALUES ('600', 'NEA_HHSG');INSERT INTO `badges` VALUES ('601', 'ACH_GiftGiver6_HHCA');INSERT INTO `badges` VALUES ('602', 'ACH_GiftGiver9_HHCA');INSERT INTO `badges` VALUES ('603', 'fb_HabboFameComp_Top100');INSERT INTO `badges` VALUES ('604', 'BE2_HHUK');INSERT INTO `badges` VALUES ('605', 'JF2_HHUK');INSERT INTO `badges` VALUES ('606', 'FMATIC_COMP_TOP10');INSERT INTO `badges` VALUES ('607', 'US8_HHAU');INSERT INTO `badges` VALUES ('608', 'Z39_HHUK');INSERT INTO `badges` VALUES ('609', 'HC3_HHSG');INSERT INTO `badges` VALUES ('610', 'VipParties1_Top10');INSERT INTO `badges` VALUES ('611', 'ACH_GiftReceiver5_HHCA');INSERT INTO `badges` VALUES ('612', 'Z58_HHUK');INSERT INTO `badges` VALUES ('613', 'fb_ACH_RoomDecoHoleFurniCount');INSERT INTO `badges` VALUES ('614', 'Z11_HHUK');INSERT INTO `badges` VALUES ('615', 'EAS03_HHSG');INSERT INTO `badges` VALUES ('616', 'VA5_HHAU');INSERT INTO `badges` VALUES ('617', 'ACH_MonsterPlantShapeCollector');INSERT INTO `badges` VALUES ('618', 'LC8_HHUK');INSERT INTO `badges` VALUES ('619', 'HC3_HHUK');INSERT INTO `badges` VALUES ('620', 'TWIC3_HHAU');INSERT INTO `badges` VALUES ('621', 'ACH_HorseJumping');INSERT INTO `badges` VALUES ('622', 'U05_HHSG');INSERT INTO `badges` VALUES ('623', 'VA5_HHCA');INSERT INTO `badges` VALUES ('624', 'AC6_HHUK');INSERT INTO `badges` VALUES ('625', 'UK042_HHUK');INSERT INTO `badges` VALUES ('626', 'JF5');INSERT INTO `badges` VALUES ('627', 'JF4');INSERT INTO `badges` VALUES ('628', 'LC8_HHSG');INSERT INTO `badges` VALUES ('629', 'JFF');INSERT INTO `badges` VALUES ('630', 'CAL_HHCA');INSERT INTO `badges` VALUES ('631', 'SGN_HHSG');INSERT INTO `badges` VALUES ('632', 'fb_ACH_Student1');INSERT INTO `badges` VALUES ('633', 'SFA_HHSG');INSERT INTO `badges` VALUES ('634', 'IT029_HHCA');INSERT INTO `badges` VALUES ('635', 'SMC_HHCA');INSERT INTO `badges` VALUES ('636', 'HOT_HHCA');INSERT INTO `badges` VALUES ('637', 'HW09E_HHAU');INSERT INTO `badges` VALUES ('638', 'U05_HHUK');INSERT INTO `badges` VALUES ('639', 'fb_VipParties2_Top100');INSERT INTO `badges` VALUES ('640', 'SB5_HHUK');INSERT INTO `badges` VALUES ('641', 'JF1');INSERT INTO `badges` VALUES ('642', 'JF2');INSERT INTO `badges` VALUES ('643', 'JF3');INSERT INTO `badges` VALUES ('644', 'ACH_NewUserBadgeReceiver');INSERT INTO `badges` VALUES ('645', 'DKA_HHUK');INSERT INTO `badges` VALUES ('646', 'BE1_HHUK');INSERT INTO `badges` VALUES ('647', 'SFA_HHUK');INSERT INTO `badges` VALUES ('648', 'fb_HabboFameComp_Top10');INSERT INTO `badges` VALUES ('649', 'fb_ACH_MonsterPlantHealer');INSERT INTO `badges` VALUES ('650', 'TER01');INSERT INTO `badges` VALUES ('651', 'fb_FMATIC');INSERT INTO `badges` VALUES ('652', 'HOT_HHAU');INSERT INTO `badges` VALUES ('653', 'GM1_HHCA');INSERT INTO `badges` VALUES ('654', 'Z59_HHUK');INSERT INTO `badges` VALUES ('655', 'ACH_TraderPass1');INSERT INTO `badges` VALUES ('656', 'EC3_HHUK');INSERT INTO `badges` VALUES ('657', 'CY1_HHCA');INSERT INTO `badges` VALUES ('658', 'DK6_HHUK');INSERT INTO `badges` VALUES ('659', 'Z06_HHUK');INSERT INTO `badges` VALUES ('660', 'SF002_HHAU');INSERT INTO `badges` VALUES ('661', 'EC3_HHSG');INSERT INTO `badges` VALUES ('662', 'SFG_HHSG');INSERT INTO `badges` VALUES ('663', 'Z64_HHAU');INSERT INTO `badges` VALUES ('664', 'OL1_HHCA');INSERT INTO `badges` VALUES ('665', 'HHL');INSERT INTO `badges` VALUES ('666', 'SU2_HHUK');INSERT INTO `badges` VALUES ('667', 'BR015');INSERT INTO `badges` VALUES ('668', 'BR011');INSERT INTO `badges` VALUES ('669', 'BR012');INSERT INTO `badges` VALUES ('670', 'BR013');INSERT INTO `badges` VALUES ('671', 'SF8_HHUK');INSERT INTO `badges` VALUES ('672', 'Z64_HHCA');INSERT INTO `badges` VALUES ('673', 'HJ6');INSERT INTO `badges` VALUES ('674', 'UK018_HHUK');INSERT INTO `badges` VALUES ('675', 'HJ4');INSERT INTO `badges` VALUES ('676', 'HJ5');INSERT INTO `badges` VALUES ('677', 'HJ2');INSERT INTO `badges` VALUES ('678', 'HJ3');INSERT INTO `badges` VALUES ('679', 'HJ1');INSERT INTO `badges` VALUES ('680', 'OL1_HHAU');INSERT INTO `badges` VALUES ('681', 'XM4_HHSG');INSERT INTO `badges` VALUES ('682', 'ACH_PetLevelUp10');INSERT INTO `badges` VALUES ('683', 'HX6_HHSG');INSERT INTO `badges` VALUES ('684', 'SU2_HHSG');INSERT INTO `badges` VALUES ('685', 'SF8_HHSG');INSERT INTO `badges` VALUES ('686', 'HW09E_HHCA');INSERT INTO `badges` VALUES ('687', 'HC5');INSERT INTO `badges` VALUES ('688', 'HC3');INSERT INTO `badges` VALUES ('689', 'HC4');INSERT INTO `badges` VALUES ('690', 'OL3_HHSG');INSERT INTO `badges` VALUES ('691', 'BR045');INSERT INTO `badges` VALUES ('692', 'AC6_HHCA');INSERT INTO `badges` VALUES ('693', 'HX6_HHUK');INSERT INTO `badges` VALUES ('694', 'XM4_HHUK');INSERT INTO `badges` VALUES ('695', 'BR056');INSERT INTO `badges` VALUES ('696', 'BR058');INSERT INTO `badges` VALUES ('697', 'UK066_HHUK');INSERT INTO `badges` VALUES ('698', 'ACH_AIPerformanceVote10_HHCA');INSERT INTO `badges` VALUES ('699', 'HF2');INSERT INTO `badges` VALUES ('700', 'HF1');INSERT INTO `badges` VALUES ('701', 'HC3_HHAU');INSERT INTO `badges` VALUES ('702', 'OL3_HHUK');INSERT INTO `badges` VALUES ('703', 'fb_ACH_FreezePlayer');INSERT INTO `badges` VALUES ('704', 'BR026');INSERT INTO `badges` VALUES ('705', 'GLE_HHSG');INSERT INTO `badges` VALUES ('706', 'HG1');INSERT INTO `badges` VALUES ('707', 'HFAN1');INSERT INTO `badges` VALUES ('708', 'HF7');INSERT INTO `badges` VALUES ('709', 'HF8');INSERT INTO `badges` VALUES ('710', 'HF9');INSERT INTO `badges` VALUES ('711', 'HC3_HHCA');INSERT INTO `badges` VALUES ('712', 'fb_ACH_FurnimaticQuest');INSERT INTO `badges` VALUES ('713', 'SFA_HHCA');INSERT INTO `badges` VALUES ('714', 'ACH_GuideChatReviewer5');INSERT INTO `badges` VALUES ('715', 'ACH_GuideChatReviewer4');INSERT INTO `badges` VALUES ('716', 'ACH_GuideChatReviewer7');INSERT INTO `badges` VALUES ('717', 'ACH_GuideChatReviewer6');INSERT INTO `badges` VALUES ('718', 'ACH_GuideChatReviewer1');INSERT INTO `badges` VALUES ('719', 'ACH_GuideChatReviewer3');INSERT INTO `badges` VALUES ('720', 'ACH_GuideChatReviewer2');INSERT INTO `badges` VALUES ('721', 'ACH_GuideChatReviewer8');INSERT INTO `badges` VALUES ('722', 'HOP03_HHSG');INSERT INTO `badges` VALUES ('723', 'HOT');INSERT INTO `badges` VALUES ('724', 'Z05_HHSG');INSERT INTO `badges` VALUES ('725', 'HQ001_HHCA');INSERT INTO `badges` VALUES ('726', 'ancients_savannah_rcr_3');INSERT INTO `badges` VALUES ('727', 'ancients_savannah_rcr_2');INSERT INTO `badges` VALUES ('728', 'ancients_savannah_rcr_1');INSERT INTO `badges` VALUES ('729', 'ACH_HorseConsecutiveJumpsCount');INSERT INTO `badges` VALUES ('730', 'ACH_GiftGiver10');INSERT INTO `badges` VALUES ('731', 'AC6_HHSG');INSERT INTO `badges` VALUES ('732', 'UK068_HHUK');INSERT INTO `badges` VALUES ('733', 'SFA_HHAU');INSERT INTO `badges` VALUES ('734', 'HQ001_HHAU');INSERT INTO `badges` VALUES ('735', 'HW09E_HHSG');INSERT INTO `badges` VALUES ('736', 'Z18_HHUK');INSERT INTO `badges` VALUES ('737', 'EC3_HHAU');INSERT INTO `badges` VALUES ('738', 'SUM05');INSERT INTO `badges` VALUES ('739', 'SUM01');INSERT INTO `badges` VALUES ('740', 'SUM04');INSERT INTO `badges` VALUES ('741', 'SMC_HHSG');INSERT INTO `badges` VALUES ('742', 'SNW_HHUK');INSERT INTO `badges` VALUES ('743', 'ACH_GiftReceiver2');INSERT INTO `badges` VALUES ('744', 'ACH_GiftReceiver3');INSERT INTO `badges` VALUES ('745', 'ACH_GiftReceiver1');INSERT INTO `badges` VALUES ('746', 'ACH_GiftReceiver6');INSERT INTO `badges` VALUES ('747', 'ACH_GiftReceiver7');INSERT INTO `badges` VALUES ('748', 'ACH_GiftReceiver4');INSERT INTO `badges` VALUES ('749', 'ACH_GiftReceiver5');INSERT INTO `badges` VALUES ('750', 'ACH_GiftReceiver8');INSERT INTO `badges` VALUES ('751', 'ACH_GiftReceiver9');INSERT INTO `badges` VALUES ('752', 'Z74_HHUK');INSERT INTO `badges` VALUES ('753', 'ACH_AvatarLooks1');INSERT INTO `badges` VALUES ('754', 'LC6_HHSG');INSERT INTO `badges` VALUES ('755', 'X1105');INSERT INTO `badges` VALUES ('756', 'HM1');INSERT INTO `badges` VALUES ('757', 'EC3_HHCA');INSERT INTO `badges` VALUES ('758', 'UK030_HHUK');INSERT INTO `badges` VALUES ('759', 'Z05_HHUK');INSERT INTO `badges` VALUES ('760', 'Z48_HHUK');INSERT INTO `badges` VALUES ('761', 'HOP03_HHUK');INSERT INTO `badges` VALUES ('762', 'UKL_HHUK');INSERT INTO `badges` VALUES ('763', 'HQ008_HHSG');INSERT INTO `badges` VALUES ('764', 'HO1');INSERT INTO `badges` VALUES ('765', 'SFG_HHCA');INSERT INTO `badges` VALUES ('766', 'ACH_GuideEnrollmentLifetime12');INSERT INTO `badges` VALUES ('767', 'ACH_GuideEnrollmentLifetime11');INSERT INTO `badges` VALUES ('768', 'ACH_GuideEnrollmentLifetime14');INSERT INTO `badges` VALUES ('769', 'ACH_GuideEnrollmentLifetime13');INSERT INTO `badges` VALUES ('770', 'ACH_GuideEnrollmentLifetime16');INSERT INTO `badges` VALUES ('771', 'ACH_GuideEnrollmentLifetime15');INSERT INTO `badges` VALUES ('772', 'ACH_GuideEnrollmentLifetime18');INSERT INTO `badges` VALUES ('773', 'ACH_GuideEnrollmentLifetime17');INSERT INTO `badges` VALUES ('774', 'HOP04');INSERT INTO `badges` VALUES ('775', 'HOP03');INSERT INTO `badges` VALUES ('776', 'ACH_GuideEnrollmentLifetime10');INSERT INTO `badges` VALUES ('777', 'HOP02');INSERT INTO `badges` VALUES ('778', 'OL1_HHSG');INSERT INTO `badges` VALUES ('779', 'UKW_HHUK');INSERT INTO `badges` VALUES ('780', 'HOP01');INSERT INTO `badges` VALUES ('781', 'SFG_HHAU');INSERT INTO `badges` VALUES ('782', 'Z64_HHSG');INSERT INTO `badges` VALUES ('783', 'XM4_HHAU');INSERT INTO `badges` VALUES ('784', 'Z63_HHAU');INSERT INTO `badges` VALUES ('785', 'Z70_HHUK');INSERT INTO `badges` VALUES ('786', 'ACH_GuideEnrollmentLifetime20');INSERT INTO `badges` VALUES ('787', 'HX8');INSERT INTO `badges` VALUES ('788', 'HX9');INSERT INTO `badges` VALUES ('789', 'HX7');INSERT INTO `badges` VALUES ('790', 'SU2_HHCA');INSERT INTO `badges` VALUES ('791', 'HX6');INSERT INTO `badges` VALUES ('792', 'HX5');INSERT INTO `badges` VALUES ('793', 'HX4');INSERT INTO `badges` VALUES ('794', 'HX3');INSERT INTO `badges` VALUES ('795', 'HX2');INSERT INTO `badges` VALUES ('796', 'HX1');INSERT INTO `badges` VALUES ('797', 'UKFB1_HHUK');INSERT INTO `badges` VALUES ('798', 'ACH_GuideEnrollmentLifetime19');INSERT INTO `badges` VALUES ('799', 'Hween12_Top100');INSERT INTO `badges` VALUES ('800', 'CAH_HHCA');INSERT INTO `badges` VALUES ('801', 'SF8_HHCA');INSERT INTO `badges` VALUES ('802', 'HX6_HHCA');INSERT INTO `badges` VALUES ('803', 'CNY02_HHCA');INSERT INTO `badges` VALUES ('804', 'Z64_HHUK');INSERT INTO `badges` VALUES ('805', 'ACH_PetRespectReceiver6_HHCA');INSERT INTO `badges` VALUES ('806', 'OL3_HHAU');INSERT INTO `badges` VALUES ('807', 'XM4_HHCA');INSERT INTO `badges` VALUES ('808', 'fb_ACH_AIPerformanceVote1');INSERT INTO `badges` VALUES ('809', 'fb_ACH_AIPerformanceVote2');INSERT INTO `badges` VALUES ('810', 'fb_ACH_AIPerformanceVote3');INSERT INTO `badges` VALUES ('811', 'AP2_HHUK');INSERT INTO `badges` VALUES ('812', 'fb_ACH_AIPerformanceVote4');INSERT INTO `badges` VALUES ('813', 'fb_ACH_AIPerformanceVote5');INSERT INTO `badges` VALUES ('814', 'fb_ACH_AIPerformanceVote6');INSERT INTO `badges` VALUES ('815', 'fb_ACH_AIPerformanceVote7');INSERT INTO `badges` VALUES ('816', 'fb_ACH_AIPerformanceVote8');INSERT INTO `badges` VALUES ('817', 'SU2_HHAU');INSERT INTO `badges` VALUES ('818', 'fb_ACH_AIPerformanceVote9');INSERT INTO `badges` VALUES ('819', 'HX6_HHAU');INSERT INTO `badges` VALUES ('820', 'HX4_HHSG');INSERT INTO `badges` VALUES ('821', 'FBLL2');INSERT INTO `badges` VALUES ('822', 'fb_ACH_BattleBallQuestCompleted3');INSERT INTO `badges` VALUES ('823', 'fb_ACH_BattleBallQuestCompleted2');INSERT INTO `badges` VALUES ('824', 'FBLL0');INSERT INTO `badges` VALUES ('825', 'fb_ACH_BattleBallQuestCompleted1');INSERT INTO `badges` VALUES ('826', 'HUB');INSERT INTO `badges` VALUES ('827', 'fb_ACH_BattleBallQuestCompleted6');INSERT INTO `badges` VALUES ('828', 'fb_ACH_BattleBallQuestCompleted7');INSERT INTO `badges` VALUES ('829', 'fb_ACH_BattleBallQuestCompleted4');INSERT INTO `badges` VALUES ('830', 'fb_ACH_BattleBallQuestCompleted5');INSERT INTO `badges` VALUES ('831', 'fb_ACH_BattleBallQuestCompleted8');INSERT INTO `badges` VALUES ('832', 'fb_ACH_BattleBallQuestCompleted9');INSERT INTO `badges` VALUES ('833', 'GLE_HHAU');INSERT INTO `badges` VALUES ('834', 'al_ACH_Spr');INSERT INTO `badges` VALUES ('835', 'FBLL5');INSERT INTO `badges` VALUES ('836', 'FBLL4');INSERT INTO `badges` VALUES ('837', 'OL3_HHCA');INSERT INTO `badges` VALUES ('838', 'HX4_HHUK');INSERT INTO `badges` VALUES ('839', 'ACH_PetRespectGiver1_HHCA');INSERT INTO `badges` VALUES ('840', 'HWB');INSERT INTO `badges` VALUES ('841', 'OL1_HHUK');INSERT INTO `badges` VALUES ('842', 'UK073_HHUK');INSERT INTO `badges` VALUES ('843', 'Z63_HHCA');INSERT INTO `badges` VALUES ('844', 'HW1');INSERT INTO `badges` VALUES ('845', 'GLE_HHCA');INSERT INTO `badges` VALUES ('846', 'HW09E_HHUK');INSERT INTO `badges` VALUES ('847', 'ACH_Motto1_HHCA');INSERT INTO `badges` VALUES ('848', 'HUG');INSERT INTO `badges` VALUES ('849', 'ZZZ');INSERT INTO `badges` VALUES ('850', 'Z68_HHUK');INSERT INTO `badges` VALUES ('851', 'peg01');INSERT INTO `badges` VALUES ('852', 'Z05_HHCA');INSERT INTO `badges` VALUES ('853', 'HQ001_HHSG');INSERT INTO `badges` VALUES ('854', 'HQ008_HHAU');INSERT INTO `badges` VALUES ('855', 'ACH_HabbosVsWildQuestCompleted');INSERT INTO `badges` VALUES ('856', 'MDMWW');INSERT INTO `badges` VALUES ('857', 'ancients_jungle');INSERT INTO `badges` VALUES ('858', 'ACH_Login4_HHCA');INSERT INTO `badges` VALUES ('859', 'fb_ACH_MusicCollector');INSERT INTO `badges` VALUES ('860', 'ACH_PetRespectReceiver8_HHCA');INSERT INTO `badges` VALUES ('861', 'SG001_HHSG');INSERT INTO `badges` VALUES ('862', 'Z05_HHAU');INSERT INTO `badges` VALUES ('863', 'XMAS1_HHSG');INSERT INTO `badges` VALUES ('864', 'CNY02_HHSG');INSERT INTO `badges` VALUES ('865', 'ACH_AllTimeHotelPresence6_HHCA');INSERT INTO `badges` VALUES ('866', 'DE012_HHUK');INSERT INTO `badges` VALUES ('867', 'ACH_ValentinesBadgeReceived2');INSERT INTO `badges` VALUES ('868', 'ACH_ValentinesBadgeReceived3');INSERT INTO `badges` VALUES ('869', 'ACH_ValentinesBadgeReceived4');INSERT INTO `badges` VALUES ('870', 'ACH_ValentinesBadgeReceived5');INSERT INTO `badges` VALUES ('871', 'HQ001_HHUK');INSERT INTO `badges` VALUES ('872', 'StarsRoom_Top10');INSERT INTO `badges` VALUES ('873', 'ACH_ValentinesBadgeReceived1');INSERT INTO `badges` VALUES ('874', 'ancients_start');INSERT INTO `badges` VALUES ('875', 'ACH_ValentinesBadgeReceived9');INSERT INTO `badges` VALUES ('876', 'ACH_ValentinesBadgeReceived8');INSERT INTO `badges` VALUES ('877', 'ACH_ValentinesBadgeReceived7');INSERT INTO `badges` VALUES ('878', 'ACH_ValentinesBadgeReceived6');INSERT INTO `badges` VALUES ('879', 'HQ008_HHCA');INSERT INTO `badges` VALUES ('880', 'HX5_HHUK');INSERT INTO `badges` VALUES ('881', 'CAC_HHCA');INSERT INTO `badges` VALUES ('882', 'ACH_GamePlayed3_HHCA');INSERT INTO `badges` VALUES ('883', 'UK057_HHUK');INSERT INTO `badges` VALUES ('884', 'NO84');INSERT INTO `badges` VALUES ('885', 'HabboFameComp');INSERT INTO `badges` VALUES ('886', 'ACH_MGM7_HHCA');INSERT INTO `badges` VALUES ('887', 'PX000');INSERT INTO `badges` VALUES ('888', 'PX001');INSERT INTO `badges` VALUES ('889', 'XXX_HHSG');INSERT INTO `badges` VALUES ('890', 'VA010_HHCA');INSERT INTO `badges` VALUES ('891', 'ACH_BunnyDepressed');INSERT INTO `badges` VALUES ('892', 'fb_ACH_RespectEarned9');INSERT INTO `badges` VALUES ('893', 'ACH_RoomDecoFurniCount');INSERT INTO `badges` VALUES ('894', 'TC3_HHCA');INSERT INTO `badges` VALUES ('895', 'fb_ACH_VipParties1_Entry');INSERT INTO `badges` VALUES ('896', 'Z73_HHUK');INSERT INTO `badges` VALUES ('897', 'fb_ACH_RoomEntry10');INSERT INTO `badges` VALUES ('898', 'TC3_HHAU');INSERT INTO `badges` VALUES ('899', 'fb_ACH_RespectEarned7');INSERT INTO `badges` VALUES ('900', 'fb_ACH_RespectEarned8');INSERT INTO `badges` VALUES ('901', 'fb_ACH_RespectEarned5');INSERT INTO `badges` VALUES ('902', 'fb_ACH_RespectEarned6');INSERT INTO `badges` VALUES ('903', 'fb_ACH_RespectEarned3');INSERT INTO `badges` VALUES ('904', 'fb_ACH_RespectEarned4');INSERT INTO `badges` VALUES ('905', 'fb_ACH_RespectEarned1');INSERT INTO `badges` VALUES ('906', 'fb_ACH_RespectEarned2');INSERT INTO `badges` VALUES ('907', 'DS2_HHSG');INSERT INTO `badges` VALUES ('908', 'LBB_HHAU');INSERT INTO `badges` VALUES ('909', 'PB1');INSERT INTO `badges` VALUES ('910', 'PB2');INSERT INTO `badges` VALUES ('911', 'FMATIC_COMP');INSERT INTO `badges` VALUES ('912', 'AU004_HHAU');INSERT INTO `badges` VALUES ('913', 'VA010_HHAU');INSERT INTO `badges` VALUES ('914', 'AU004_HHCA');INSERT INTO `badges` VALUES ('915', 'CY2_HHCA');INSERT INTO `badges` VALUES ('916', 'fb_ACH_MysteryBox');INSERT INTO `badges` VALUES ('917', 'LBB_HHCA');INSERT INTO `badges` VALUES ('918', 'ACH_NotSpottedAsNinja3');INSERT INTO `badges` VALUES ('919', 'ACH_NotSpottedAsNinja2');INSERT INTO `badges` VALUES ('920', 'ACH_NotSpottedAsNinja1');INSERT INTO `badges` VALUES ('921', 'XXX_HHUK');INSERT INTO `badges` VALUES ('922', 'SFD_HHAU');INSERT INTO `badges` VALUES ('923', 'UK037_HHUK');INSERT INTO `badges` VALUES ('924', 'ACH_RoomDecoWallpaper');INSERT INTO `badges` VALUES ('925', 'DT1_HHUK');INSERT INTO `badges` VALUES ('926', 'ACH_MonsterPlantTreater');INSERT INTO `badges` VALUES ('927', 'AC4_HHCA');INSERT INTO `badges` VALUES ('928', 'KO2_HHSG');INSERT INTO `badges` VALUES ('929', 'SF9_HHCA');INSERT INTO `badges` VALUES ('930', 'UKH_HHUK');INSERT INTO `badges` VALUES ('931', 'Z63_HHSG');INSERT INTO `badges` VALUES ('932', 'UK094_HHUK');INSERT INTO `badges` VALUES ('933', 'GLB_HHUK');INSERT INTO `badges` VALUES ('934', 'Z63_HHUK');INSERT INTO `badges` VALUES ('935', 'VA013_HHAU');INSERT INTO `badges` VALUES ('936', 'ACH_RoomEntry4_HHCA');INSERT INTO `badges` VALUES ('937', 'UK003_HHUK');INSERT INTO `badges` VALUES ('938', 'NL008');INSERT INTO `badges` VALUES ('939', 'WAC01');INSERT INTO `badges` VALUES ('940', 'fb_ACH_GamePlayed9');INSERT INTO `badges` VALUES ('941', 'ACH_VipClub1_HHCA');INSERT INTO `badges` VALUES ('942', 'HNL01');INSERT INTO `badges` VALUES ('943', 'HNL09');INSERT INTO `badges` VALUES ('944', 'HNL08');INSERT INTO `badges` VALUES ('945', 'HNL07');INSERT INTO `badges` VALUES ('946', 'UK014_HHUK');INSERT INTO `badges` VALUES ('947', 'HNL06');INSERT INTO `badges` VALUES ('948', 'HNL05');INSERT INTO `badges` VALUES ('949', 'ACH_PetLover1_HHCA');INSERT INTO `badges` VALUES ('950', 'HNL04');INSERT INTO `badges` VALUES ('951', 'HNL03');INSERT INTO `badges` VALUES ('952', 'HNL02');INSERT INTO `badges` VALUES ('953', 'fb_ACH_GamePlayed4');INSERT INTO `badges` VALUES ('954', 'ACH_MGM8_HHCA');INSERT INTO `badges` VALUES ('955', 'fb_ACH_GamePlayed3');INSERT INTO `badges` VALUES ('956', 'fb_ACH_GamePlayed2');INSERT INTO `badges` VALUES ('957', 'NL002');INSERT INTO `badges` VALUES ('958', 'fb_ACH_GamePlayed1');INSERT INTO `badges` VALUES ('959', '50S_HHUK');INSERT INTO `badges` VALUES ('960', 'fb_ACH_GamePlayed8');INSERT INTO `badges` VALUES ('961', 'fb_ACH_GamePlayed7');INSERT INTO `badges` VALUES ('962', 'ACH_AllTimeHotelPresence9_HHCA');INSERT INTO `badges` VALUES ('963', 'fb_ACH_GamePlayed6');INSERT INTO `badges` VALUES ('964', 'fb_ACH_GamePlayed5');INSERT INTO `badges` VALUES ('965', 'PN1');INSERT INTO `badges` VALUES ('966', 'ACH_MonsterPlantBreeder');INSERT INTO `badges` VALUES ('967', 'fb_ACH_BaseJumpWins');INSERT INTO `badges` VALUES ('968', 'TC3_HHUK');INSERT INTO `badges` VALUES ('969', 'DS3_HHAU');INSERT INTO `badges` VALUES ('970', 'UK069_HHUK');INSERT INTO `badges` VALUES ('971', 'fb_ACH_SummerQuestCompleted');INSERT INTO `badges` VALUES ('972', 'DS3_HHCA');INSERT INTO `badges` VALUES ('973', 'TC3_HHSG');INSERT INTO `badges` VALUES ('974', 'PR1');INSERT INTO `badges` VALUES ('975', 'PR3');INSERT INTO `badges` VALUES ('976', 'PR2');INSERT INTO `badges` VALUES ('977', 'NEI_HHSG');INSERT INTO `badges` VALUES ('978', 'CO1_HHSG');INSERT INTO `badges` VALUES ('979', 'ESD_HHCA');INSERT INTO `badges` VALUES ('980', 'GLB_HHSG');INSERT INTO `badges` VALUES ('981', 'AC4_HHSG');INSERT INTO `badges` VALUES ('982', 'ACH_SnowWarTotalScore');INSERT INTO `badges` VALUES ('983', 'ACH_RoomEntry2_HHCA');INSERT INTO `badges` VALUES ('984', 'PRE');INSERT INTO `badges` VALUES ('985', 'al_ACH_RbTagC');INSERT INTO `badges` VALUES ('986', 'al_ACH_RbTagB');INSERT INTO `badges` VALUES ('987', 'al_ACH_RbTagA');INSERT INTO `badges` VALUES ('988', 'ACH_Xm10QuestCompleted1');INSERT INTO `badges` VALUES ('989', 'ACH_Xm10QuestCompleted3');INSERT INTO `badges` VALUES ('990', 'ACH_Xm10QuestCompleted2');INSERT INTO `badges` VALUES ('991', 'ACH_Xm10QuestCompleted5');INSERT INTO `badges` VALUES ('992', 'ACH_Xm10QuestCompleted4');INSERT INTO `badges` VALUES ('993', 'ACH_Xm10QuestCompleted7');INSERT INTO `badges` VALUES ('994', 'ACH_Xm10QuestCompleted6');INSERT INTO `badges` VALUES ('995', 'ACH_Xm10QuestCompleted9');INSERT INTO `badges` VALUES ('996', 'EXE_HHAU');INSERT INTO `badges` VALUES ('997', 'ACH_Xm10QuestCompleted8');INSERT INTO `badges` VALUES ('998', 'NEI_HHUK');INSERT INTO `badges` VALUES ('999', 'POP');INSERT INTO `badges` VALUES ('1000', 'ACH_PetRespectGiver10_HHCA');INSERT INTO `badges` VALUES ('1001', 'GLE_HHUK');INSERT INTO `badges` VALUES ('1002', 'ancients_savannah');INSERT INTO `badges` VALUES ('1003', 'AC4_HHUK');INSERT INTO `badges` VALUES ('1004', 'CAC_HHUK');INSERT INTO `badges` VALUES ('1005', 'ACH_AIPerformanceVote5_HHCA');INSERT INTO `badges` VALUES ('1006', 'CY2_HHSG');INSERT INTO `badges` VALUES ('1007', 'RUN09_HHAU');INSERT INTO `badges` VALUES ('1008', 'SB3_HHUK');INSERT INTO `badges` VALUES ('1009', 'ACH_GiftGiver5_HHCA');INSERT INTO `badges` VALUES ('1010', 'EXE_HHCA');INSERT INTO `badges` VALUES ('1011', 'UK051_HHUK');INSERT INTO `badges` VALUES ('1012', 'US0L_HHCA');INSERT INTO `badges` VALUES ('1013', 'SF9_HHSG');INSERT INTO `badges` VALUES ('1014', 'UK094_HHCA');INSERT INTO `badges` VALUES ('1015', 'ACH_PetFeeding2_HHCA');INSERT INTO `badges` VALUES ('1016', 'CY2_HHUK');INSERT INTO `badges` VALUES ('1017', 'fb_ACH_BattleBallTilesLocked12');INSERT INTO `badges` VALUES ('1018', 'fb_ACH_BattleBallTilesLocked11');INSERT INTO `badges` VALUES ('1019', 'fb_ACH_BattleBallTilesLocked14');INSERT INTO `badges` VALUES ('1020', 'fb_ACH_BattleBallTilesLocked13');INSERT INTO `badges` VALUES ('1021', 'fb_ACH_BattleBallTilesLocked10');INSERT INTO `badges` VALUES ('1022', 'ACH_PetRespectGiver7_HHCA');INSERT INTO `badges` VALUES ('1023', 'fb_ACH_BattleBallTilesLocked19');INSERT INTO `badges` VALUES ('1024', 'fb_ACH_BattleBallTilesLocked16');INSERT INTO `badges` VALUES ('1025', 'fb_ACH_BattleBallTilesLocked15');INSERT INTO `badges` VALUES ('1026', 'fb_ACH_BattleBallTilesLocked18');INSERT INTO `badges` VALUES ('1027', 'fb_ACH_BattleBallTilesLocked17');INSERT INTO `badges` VALUES ('1028', 'UK071_HHUK');INSERT INTO `badges` VALUES ('1029', 'fb_ACH_BattleBallTilesLocked20');INSERT INTO `badges` VALUES ('1030', 'VA013_HHSG');INSERT INTO `badges` VALUES ('1031', 'HBA_HHAU');INSERT INTO `badges` VALUES ('1032', 'PIR');INSERT INTO `badges` VALUES ('1033', 'HQ006_HHCA');INSERT INTO `badges` VALUES ('1034', 'WD1_HHSG');INSERT INTO `badges` VALUES ('1035', 'HJ3_HHUK');INSERT INTO `badges` VALUES ('1036', 'SB2_HHUK');INSERT INTO `badges` VALUES ('1037', 'ICEA3');INSERT INTO `badges` VALUES ('1038', 'ICEA2');INSERT INTO `badges` VALUES ('1039', 'HBA_HHCA');INSERT INTO `badges` VALUES ('1040', 'UKA_HHUK');INSERT INTO `badges` VALUES ('1041', 'RUN09_HHCA');INSERT INTO `badges` VALUES ('1042', 'fb_ACH_TagC5');INSERT INTO `badges` VALUES ('1043', 'fb_ACH_TagC6');INSERT INTO `badges` VALUES ('1044', 'fb_ACH_TagC7');INSERT INTO `badges` VALUES ('1045', 'Dino_Egg_Black');INSERT INTO `badges` VALUES ('1046', 'fb_ACH_TagC8');INSERT INTO `badges` VALUES ('1047', 'fb_ACH_TagC9');INSERT INTO `badges` VALUES ('1048', 'fb_ACH_FreezeQuestCompleted5');INSERT INTO `badges` VALUES ('1049', 'fb_ACH_FreezeQuestCompleted4');INSERT INTO `badges` VALUES ('1050', 'fb_ACH_FreezeQuestCompleted7');INSERT INTO `badges` VALUES ('1051', 'fb_ACH_FreezeQuestCompleted6');INSERT INTO `badges` VALUES ('1052', 'SF9_HHUK');INSERT INTO `badges` VALUES ('1053', 'fb_ACH_FreezeQuestCompleted9');INSERT INTO `badges` VALUES ('1054', 'fb_ACH_TagC1');INSERT INTO `badges` VALUES ('1055', 'fb_ACH_FreezeQuestCompleted8');INSERT INTO `badges` VALUES ('1056', 'fb_ACH_TagC2');INSERT INTO `badges` VALUES ('1057', 'fb_ACH_TagC3');INSERT INTO `badges` VALUES ('1058', 'fb_ACH_TagC4');INSERT INTO `badges` VALUES ('1059', 'ACH_Student1_HHCA');INSERT INTO `badges` VALUES ('1060', 'PHF');INSERT INTO `badges` VALUES ('1061', 'HX5_HHSG');INSERT INTO `badges` VALUES ('1062', 'fb_ACH_FreezeQuestCompleted1');INSERT INTO `badges` VALUES ('1063', 'fb_ACH_FreezeQuestCompleted2');INSERT INTO `badges` VALUES ('1064', 'fb_ACH_FreezeQuestCompleted3');INSERT INTO `badges` VALUES ('1065', 'ACA_HHAU');INSERT INTO `badges` VALUES ('1066', 'UK050_HHUK');INSERT INTO `badges` VALUES ('1067', 'ACH_RespectEarned2_HHCA');INSERT INTO `badges` VALUES ('1068', 'HabboFameComp_Top10');INSERT INTO `badges` VALUES ('1069', 'NEI_HHAU');INSERT INTO `badges` VALUES ('1070', 'fb_StarsRoom_Top100');INSERT INTO `badges` VALUES ('1071', 'MDMWW_HHSG');INSERT INTO `badges` VALUES ('1072', 'NWB');INSERT INTO `badges` VALUES ('1073', 'DS3_HHSG');INSERT INTO `badges` VALUES ('1074', 'fb_ACH_TagA6');INSERT INTO `badges` VALUES ('1075', 'HC1_HHSG');INSERT INTO `badges` VALUES ('1076', 'fb_ACH_TagA5');INSERT INTO `badges` VALUES ('1077', 'fb_ACH_TagA4');INSERT INTO `badges` VALUES ('1078', 'fb_ACH_TagA3');INSERT INTO `badges` VALUES ('1079', 'fb_ACH_TagA9');INSERT INTO `badges` VALUES ('1080', 'fb_ACH_TagA8');INSERT INTO `badges` VALUES ('1081', 'fb_ACH_SpeedwayWins');INSERT INTO `badges` VALUES ('1082', 'fb_ACH_TagA7');INSERT INTO `badges` VALUES ('1083', 'HC2_HHCA');INSERT INTO `badges` VALUES ('1084', 'RUN10');INSERT INTO `badges` VALUES ('1085', 'fb_ACH_TagA2');INSERT INTO `badges` VALUES ('1086', 'fb_ACH_TagA1');INSERT INTO `badges` VALUES ('1087', 'ACH_BearBreeder');INSERT INTO `badges` VALUES ('1088', 'MDMWW_HHUK');INSERT INTO `badges` VALUES ('1089', 'NZB');INSERT INTO `badges` VALUES ('1090', 'UK062_HHUK');INSERT INTO `badges` VALUES ('1091', 'RUN08');INSERT INTO `badges` VALUES ('1092', 'fb_ACH_TagB5');INSERT INTO `badges` VALUES ('1093', 'RUN07');INSERT INTO `badges` VALUES ('1094', 'fb_ACH_TagB4');INSERT INTO `badges` VALUES ('1095', 'RUN06');INSERT INTO `badges` VALUES ('1096', 'fb_ACH_TagB7');INSERT INTO `badges` VALUES ('1097', 'RUN05');INSERT INTO `badges` VALUES ('1098', 'fb_ACH_TagB6');INSERT INTO `badges` VALUES ('1099', 'fb_ACH_TagB9');INSERT INTO `badges` VALUES ('1100', 'ACH_AIPerformanceVote9_HHCA');INSERT INTO `badges` VALUES ('1101', 'fb_ACH_TagB8');INSERT INTO `badges` VALUES ('1102', 'RUN09');INSERT INTO `badges` VALUES ('1103', 'RUN04');INSERT INTO `badges` VALUES ('1104', 'fb_ACH_TagB1');INSERT INTO `badges` VALUES ('1105', 'RUN03');INSERT INTO `badges` VALUES ('1106', 'RUN02');INSERT INTO `badges` VALUES ('1107', 'fb_ACH_TagB3');INSERT INTO `badges` VALUES ('1108', 'ACA_HHCA');INSERT INTO `badges` VALUES ('1109', 'RUN01');INSERT INTO `badges` VALUES ('1110', 'fb_ACH_TagB2');INSERT INTO `badges` VALUES ('1111', 'KO1_HHUK');INSERT INTO `badges` VALUES ('1112', 'ACH_RoomDecoFurniTypeCount');INSERT INTO `badges` VALUES ('1113', 'DU1_HHSG');INSERT INTO `badges` VALUES ('1114', 'HC2_HHAU');INSERT INTO `badges` VALUES ('1115', 'fb_ACH_MonsterPlantQuestCompleted');INSERT INTO `badges` VALUES ('1116', 'ACH_PetRespectGiver10');INSERT INTO `badges` VALUES ('1117', 'NEI_HHCA');INSERT INTO `badges` VALUES ('1118', 'GLB_HHCA');INSERT INTO `badges` VALUES ('1119', 'KO1_HHSG');INSERT INTO `badges` VALUES ('1120', 'DU1_HHUK');INSERT INTO `badges` VALUES ('1121', 'GLB_HHAU');INSERT INTO `badges` VALUES ('1122', 'FR005_HHUK');INSERT INTO `badges` VALUES ('1123', 'HQ006_HHUK');INSERT INTO `badges` VALUES ('1124', 'ACH_AIPerformanceVote3_HHCA');INSERT INTO `badges` VALUES ('1125', 'Z43_HHUK');INSERT INTO `badges` VALUES ('1126', 'fb_ACH_RoomDecoFurniCount');INSERT INTO `badges` VALUES ('1127', 'SFD_HHUK');INSERT INTO `badges` VALUES ('1128', 'fb_ACH_MonsterPlantUnluckyGardener');INSERT INTO `badges` VALUES ('1129', 'fb_ACH_MonsterPlantBreeder');INSERT INTO `badges` VALUES ('1130', 'ANN01');INSERT INTO `badges` VALUES ('1131', 'fb_ACH_RoomRank');INSERT INTO `badges` VALUES ('1132', 'SB5_HHSG');INSERT INTO `badges` VALUES ('1133', 'SFD_HHSG');INSERT INTO `badges` VALUES ('1134', 'EXE_HHSG');INSERT INTO `badges` VALUES ('1135', 'Z13_HHUK');INSERT INTO `badges` VALUES ('1136', 'HC1_HHUK');INSERT INTO `badges` VALUES ('1137', 'ACH_RespectGiven1_HHCA');INSERT INTO `badges` VALUES ('1138', 'UK091_HHUK');INSERT INTO `badges` VALUES ('1139', 'HF2_HHAU');INSERT INTO `badges` VALUES ('1140', 'SF001_HHSG');INSERT INTO `badges` VALUES ('1141', 'fb_ACH_SkateBoardJump');INSERT INTO `badges` VALUES ('1142', 'HQ006_HHSG');INSERT INTO `badges` VALUES ('1143', 'FRG_HHUK');INSERT INTO `badges` VALUES ('1144', 'UK002_HHUK');INSERT INTO `badges` VALUES ('1145', 'ACH_PetLover7');INSERT INTO `badges` VALUES ('1146', 'ACH_PetLover6');INSERT INTO `badges` VALUES ('1147', 'bbbh2');INSERT INTO `badges` VALUES ('1148', 'ACH_PetLover9');INSERT INTO `badges` VALUES ('1149', 'HX3_HHSG');INSERT INTO `badges` VALUES ('1150', 'USM_HHAU');INSERT INTO `badges` VALUES ('1151', 'ACH_PetLover8');INSERT INTO `badges` VALUES ('1152', 'ACH_PetLover3');INSERT INTO `badges` VALUES ('1153', 'ACH_PetLover2');INSERT INTO `badges` VALUES ('1154', 'ACH_PetLover5');INSERT INTO `badges` VALUES ('1155', 'bbbh1');INSERT INTO `badges` VALUES ('1156', 'ACH_PetLover4');INSERT INTO `badges` VALUES ('1157', 'fb_ACH_VipParties2_Entry');INSERT INTO `badges` VALUES ('1158', 'VA014_HHSG');INSERT INTO `badges` VALUES ('1159', 'ACH_PetRespectGiver4');INSERT INTO `badges` VALUES ('1160', 'ACH_PetRespectGiver3');INSERT INTO `badges` VALUES ('1161', 'ACH_PetLover1');INSERT INTO `badges` VALUES ('1162', 'ACH_PetRespectGiver2');INSERT INTO `badges` VALUES ('1163', 'ACH_PetRespectGiver1');INSERT INTO `badges` VALUES ('1164', 'ACH_PetRespectGiver8');INSERT INTO `badges` VALUES ('1165', 'ACH_PetRespectGiver7');INSERT INTO `badges` VALUES ('1166', 'ACH_PetRespectGiver6');INSERT INTO `badges` VALUES ('1167', 'ACH_PetRespectGiver5');INSERT INTO `badges` VALUES ('1168', 'VA1_HHUK');INSERT INTO `badges` VALUES ('1169', 'ACH_PetRespectGiver9');INSERT INTO `badges` VALUES ('1170', 'HC2_HHUK');INSERT INTO `badges` VALUES ('1171', 'PAT2');INSERT INTO `badges` VALUES ('1172', 'ACA_HHSG');INSERT INTO `badges` VALUES ('1173', 'VA010_HHSG');INSERT INTO `badges` VALUES ('1174', 'WAR_HHAU');INSERT INTO `badges` VALUES ('1175', 'OL1');INSERT INTO `badges` VALUES ('1176', 'OL2');INSERT INTO `badges` VALUES ('1177', 'XXX_HHCA');INSERT INTO `badges` VALUES ('1178', 'OL3');INSERT INTO `badges` VALUES ('1179', 'ACH_RoomDecoFloor');INSERT INTO `badges` VALUES ('1180', 'HX3_HHUK');INSERT INTO `badges` VALUES ('1181', 'HC1_HHAU');INSERT INTO `badges` VALUES ('1182', 'XXX_HHAU');INSERT INTO `badges` VALUES ('1183', 'VA1_HHSG');INSERT INTO `badges` VALUES ('1184', 'HC2_HHSG');INSERT INTO `badges` VALUES ('1185', 'HNL10');INSERT INTO `badges` VALUES ('1186', 'HC1_HHCA');INSERT INTO `badges` VALUES ('1187', 'FBC06');INSERT INTO `badges` VALUES ('1188', 'FBC09');INSERT INTO `badges` VALUES ('1189', 'DU1_HHCA');INSERT INTO `badges` VALUES ('1190', 'HLA01');INSERT INTO `badges` VALUES ('1191', 'UK090_HHUK');INSERT INTO `badges` VALUES ('1192', 'fb_ACH_RespectGiven1');INSERT INTO `badges` VALUES ('1193', 'ACH_HHCA');INSERT INTO `badges` VALUES ('1194', 'fb_ACH_GiftReceiver10');INSERT INTO `badges` VALUES ('1195', 'FBC27');INSERT INTO `badges` VALUES ('1196', 'FBC26');INSERT INTO `badges` VALUES ('1197', 'fb_ACH_EsA10');INSERT INTO `badges` VALUES ('1198', 'FBC25');INSERT INTO `badges` VALUES ('1199', 'fb_ACH_EsA11');INSERT INTO `badges` VALUES ('1200', 'FBC23');INSERT INTO `badges` VALUES ('1201', 'DS2_HHAU');INSERT INTO `badges` VALUES ('1202', 'ACH_MonsterPlantGardenOfDeath');INSERT INTO `badges` VALUES ('1203', 'FBC21');INSERT INTO `badges` VALUES ('1204', 'fb_ACH_EsA15');INSERT INTO `badges` VALUES ('1205', 'FBC22');INSERT INTO `badges` VALUES ('1206', 'fb_ACH_EsA14');INSERT INTO `badges` VALUES ('1207', 'fb_ACH_EsA13');INSERT INTO `badges` VALUES ('1208', 'FBC20');INSERT INTO `badges` VALUES ('1209', 'fb_ACH_EsA12');INSERT INTO `badges` VALUES ('1210', 'fb_ACH_EsA19');INSERT INTO `badges` VALUES ('1211', 'fb_ACH_EsA18');INSERT INTO `badges` VALUES ('1212', 'fb_ACH_EsA17');INSERT INTO `badges` VALUES ('1213', 'fb_ACH_EsA16');INSERT INTO `badges` VALUES ('1214', 'FBC17');INSERT INTO `badges` VALUES ('1215', 'FBC16');INSERT INTO `badges` VALUES ('1216', 'FBC18');INSERT INTO `badges` VALUES ('1217', 'FBC13');INSERT INTO `badges` VALUES ('1218', 'FBC12');INSERT INTO `badges` VALUES ('1219', 'fb_ACH_EsA20');INSERT INTO `badges` VALUES ('1220', 'FBC15');INSERT INTO `badges` VALUES ('1221', 'FBC14');INSERT INTO `badges` VALUES ('1222', 'DS2_HHCA');INSERT INTO `badges` VALUES ('1223', 'FBC10');INSERT INTO `badges` VALUES ('1224', 'FBC11');INSERT INTO `badges` VALUES ('1225', 'U0004');INSERT INTO `badges` VALUES ('1226', 'fb_ACH_MusicPlayer');INSERT INTO `badges` VALUES ('1227', 'EAS01_HHSG');INSERT INTO `badges` VALUES ('1228', 'FR033');INSERT INTO `badges` VALUES ('1229', 'BR011_HHCA');INSERT INTO `badges` VALUES ('1230', 'Z56_HHUK');INSERT INTO `badges` VALUES ('1231', 'SFD_HHCA');INSERT INTO `badges` VALUES ('1232', 'ACH_Graduate1');INSERT INTO `badges` VALUES ('1233', 'EHR00');INSERT INTO `badges` VALUES ('1234', 'EHR01');INSERT INTO `badges` VALUES ('1235', 'EHR02');INSERT INTO `badges` VALUES ('1236', 'SB5_HHAU');INSERT INTO `badges` VALUES ('1237', 'ACH_RespectEarned1_HHCA');INSERT INTO `badges` VALUES ('1238', 'ACA_HHUK');INSERT INTO `badges` VALUES ('1239', 'U01_HHUK');INSERT INTO `badges` VALUES ('1240', 'XM5_HHSG');INSERT INTO `badges` VALUES ('1241', 'ACH_PetLevelUp1_HHCA');INSERT INTO `badges` VALUES ('1242', 'FR005');INSERT INTO `badges` VALUES ('1243', 'MB2_HHUK');INSERT INTO `badges` VALUES ('1244', 'Z49_HHUK');INSERT INTO `badges` VALUES ('1245', 'FR019');INSERT INTO `badges` VALUES ('1246', 'USOW');INSERT INTO `badges` VALUES ('1247', 'XM2_HHSG');INSERT INTO `badges` VALUES ('1248', 'HX3_HHAU');INSERT INTO `badges` VALUES ('1249', 'SF5_HHCA');INSERT INTO `badges` VALUES ('1250', 'FRT_HHUK');INSERT INTO `badges` VALUES ('1251', 'HW09A_HHUK');INSERT INTO `badges` VALUES ('1252', 'BOT_HHAU');INSERT INTO `badges` VALUES ('1253', 'UK029_HHUK');INSERT INTO `badges` VALUES ('1254', 'ACB_HHSG');INSERT INTO `badges` VALUES ('1255', 'fb_ACH_EsA2');INSERT INTO `badges` VALUES ('1256', 'HC5_HHCA');INSERT INTO `badges` VALUES ('1257', 'fb_ACH_EsA1');INSERT INTO `badges` VALUES ('1258', 'fb_ACH_EsA4');INSERT INTO `badges` VALUES ('1259', 'fb_ACH_EsA3');INSERT INTO `badges` VALUES ('1260', 'fb_ACH_EsA6');INSERT INTO `badges` VALUES ('1261', 'fb_ACH_EsA5');INSERT INTO `badges` VALUES ('1262', 'fb_ACH_EsA8');INSERT INTO `badges` VALUES ('1263', 'fb_ACH_EsA7');INSERT INTO `badges` VALUES ('1264', 'fb_ACH_EsA9');INSERT INTO `badges` VALUES ('1265', 'PIR_HHCA');INSERT INTO `badges` VALUES ('1266', 'fb_ACH_LympixSecretService');INSERT INTO `badges` VALUES ('1267', 'GA1_HHSG');INSERT INTO `badges` VALUES ('1268', 'EC5_HHUK');INSERT INTO `badges` VALUES ('1269', 'XM2_HHUK');INSERT INTO `badges` VALUES ('1270', 'MYF');INSERT INTO `badges` VALUES ('1271', 'HW09A_HHSG');INSERT INTO `badges` VALUES ('1272', 'HC5_HHAU');INSERT INTO `badges` VALUES ('1273', 'ACH_GuideTourGiver2');INSERT INTO `badges` VALUES ('1274', 'ACH_GuideTourGiver3');INSERT INTO `badges` VALUES ('1275', 'ACH_GuideTourGiver4');INSERT INTO `badges` VALUES ('1276', 'ACH_GuideTourGiver5');INSERT INTO `badges` VALUES ('1277', 'ACH_GuideTourGiver1');INSERT INTO `badges` VALUES ('1278', 'SFB_HHUK');INSERT INTO `badges` VALUES ('1279', 'ACH_GuideTourGiver6');INSERT INTO `badges` VALUES ('1280', 'ACH_GuideTourGiver7');INSERT INTO `badges` VALUES ('1281', 'ACH_GuideTourGiver8');INSERT INTO `badges` VALUES ('1282', 'ACH_GuideTourGiver9');INSERT INTO `badges` VALUES ('1283', 'ACH_GiftReceiver9_HHCA');INSERT INTO `badges` VALUES ('1284', 'fb_VipParties1_Top100');INSERT INTO `badges` VALUES ('1285', 'thx');INSERT INTO `badges` VALUES ('1286', 'ACH_PetFeeding9_HHCA');INSERT INTO `badges` VALUES ('1287', 'fb_ACH_LympixTorchBearer');INSERT INTO `badges` VALUES ('1288', 'VA1_HHCA');INSERT INTO `badges` VALUES ('1289', 'Z40_HHUK');INSERT INTO `badges` VALUES ('1290', 'VA1_HHAU');INSERT INTO `badges` VALUES ('1291', 'AR2_HHCA');INSERT INTO `badges` VALUES ('1292', 'BOT_HHCA');INSERT INTO `badges` VALUES ('1293', 'AR2_HHAU');INSERT INTO `badges` VALUES ('1294', 'fb_VipParties1');INSERT INTO `badges` VALUES ('1295', 'fb_ACH_TraderPass1');INSERT INTO `badges` VALUES ('1296', 'ACH_RespectEarned8');INSERT INTO `badges` VALUES ('1297', 'ACH_RespectEarned9');INSERT INTO `badges` VALUES ('1298', 'ACH_RespectEarned4');INSERT INTO `badges` VALUES ('1299', 'ACH_RespectEarned5');INSERT INTO `badges` VALUES ('1300', 'ACH_RespectEarned6');INSERT INTO `badges` VALUES ('1301', 'ACH_RespectEarned7');INSERT INTO `badges` VALUES ('1302', 'ACH_RespectEarned1');INSERT INTO `badges` VALUES ('1303', 'ACH_RespectEarned2');INSERT INTO `badges` VALUES ('1304', 'ACH_RespectEarned3');INSERT INTO `badges` VALUES ('1305', 'fb_VipParties2');INSERT INTO `badges` VALUES ('1306', 'fb_VipParties3');INSERT INTO `badges` VALUES ('1307', 'HX3_HHCA');INSERT INTO `badges` VALUES ('1308', 'SG009');INSERT INTO `badges` VALUES ('1309', 'SG008');INSERT INTO `badges` VALUES ('1310', 'SG005');INSERT INTO `badges` VALUES ('1311', 'SG004');INSERT INTO `badges` VALUES ('1312', 'SG007');INSERT INTO `badges` VALUES ('1313', 'SG006');INSERT INTO `badges` VALUES ('1314', 'SG001');INSERT INTO `badges` VALUES ('1315', 'SG003');INSERT INTO `badges` VALUES ('1316', 'SG002');INSERT INTO `badges` VALUES ('1317', 'MT3');INSERT INTO `badges` VALUES ('1318', 'MT2');INSERT INTO `badges` VALUES ('1319', 'MT1');INSERT INTO `badges` VALUES ('1320', 'ACH_snowBoardBuild');INSERT INTO `badges` VALUES ('1321', 'ACH_Login2_HHCA');INSERT INTO `badges` VALUES ('1322', 'SG018');INSERT INTO `badges` VALUES ('1323', 'USC_HHCA');INSERT INTO `badges` VALUES ('1324', 'ACH_EmailVerification1');INSERT INTO `badges` VALUES ('1325', 'HJ4_HHUK');INSERT INTO `badges` VALUES ('1326', 'MS4');INSERT INTO `badges` VALUES ('1327', 'MS6');INSERT INTO `badges` VALUES ('1328', 'Z22_HHUK');INSERT INTO `badges` VALUES ('1329', 'MB2_HHCA');INSERT INTO `badges` VALUES ('1330', 'HQ007_HHAU');INSERT INTO `badges` VALUES ('1331', 'CO2_HHSG');INSERT INTO `badges` VALUES ('1332', 'EC5_HHSG');INSERT INTO `badges` VALUES ('1333', 'SFB_HHSG');INSERT INTO `badges` VALUES ('1334', 'SFC_HHCA');INSERT INTO `badges` VALUES ('1335', 'DN2_HHCA');INSERT INTO `badges` VALUES ('1336', 'ACH_AllTimeHotelPresence10_HHCA');INSERT INTO `badges` VALUES ('1337', 'UKT_HHCA');INSERT INTO `badges` VALUES ('1338', 'EAS01_HHCA');INSERT INTO `badges` VALUES ('1339', 'UKD_HHUK');INSERT INTO `badges` VALUES ('1340', 'fb_ACH_HorseConsecutiveJumpsCount');INSERT INTO `badges` VALUES ('1341', 'DN2_HHAU');INSERT INTO `badges` VALUES ('1342', 'MMC');INSERT INTO `badges` VALUES ('1343', 'ACH_NotesReceived');INSERT INTO `badges` VALUES ('1344', 'DS5_HHSG');INSERT INTO `badges` VALUES ('1345', 'ACH_HappyHour1_HHCA');INSERT INTO `badges` VALUES ('1346', 'ACB_HHCA');INSERT INTO `badges` VALUES ('1347', 'ACH_PetRespectGiver3_HHCA');INSERT INTO `badges` VALUES ('1348', 'ACH_GameAuthorExperience7');INSERT INTO `badges` VALUES ('1349', 'UK005_HHUK');INSERT INTO `badges` VALUES ('1350', 'ACH_PetFeeding10');INSERT INTO `badges` VALUES ('1351', 'ACH_GameAuthorExperience6');INSERT INTO `badges` VALUES ('1352', 'ACH_GameAuthorExperience5');INSERT INTO `badges` VALUES ('1353', 'ACH_GameAuthorExperience4');INSERT INTO `badges` VALUES ('1354', 'ACH_GameAuthorExperience3');INSERT INTO `badges` VALUES ('1355', 'ACH_GameAuthorExperience2');INSERT INTO `badges` VALUES ('1356', 'ACH_GameAuthorExperience1');INSERT INTO `badges` VALUES ('1357', 'TWIV3_HHAU');INSERT INTO `badges` VALUES ('1358', 'Z84_HHUK');INSERT INTO `badges` VALUES ('1359', 'TWIV3_HHCA');INSERT INTO `badges` VALUES ('1360', 'fb_FMATIC_COMP_TOP10');INSERT INTO `badges` VALUES ('1361', 'ACH_GameAuthorExperience8');INSERT INTO `badges` VALUES ('1362', 'ACH_GameAuthorExperience9');INSERT INTO `badges` VALUES ('1363', 'KO1_HHCA');INSERT INTO `badges` VALUES ('1364', 'XM2_HHCA');INSERT INTO `badges` VALUES ('1365', 'ACB_HHAU');INSERT INTO `badges` VALUES ('1366', 'NO2');INSERT INTO `badges` VALUES ('1367', 'ACH_GuideGroupMember1');INSERT INTO `badges` VALUES ('1368', 'AR2_HHUK');INSERT INTO `badges` VALUES ('1369', 'HW09A_HHCA');INSERT INTO `badges` VALUES ('1370', 'ACH_GuideAdvertisementReader');INSERT INTO `badges` VALUES ('1371', 'ACH_AIPerformanceVote8_HHCA');INSERT INTO `badges` VALUES ('1372', 'NLD');INSERT INTO `badges` VALUES ('1373', 'NLE');INSERT INTO `badges` VALUES ('1374', 'NLC');INSERT INTO `badges` VALUES ('1375', 'fb_ACH_FriendListSize');INSERT INTO `badges` VALUES ('1376', 'GA1_HHCA');INSERT INTO `badges` VALUES ('1377', 'ACH_RecyclePlastos2');INSERT INTO `badges` VALUES ('1378', 'ACH_RecyclePlastos3');INSERT INTO `badges` VALUES ('1379', 'ACH_RecyclePlastos1');INSERT INTO `badges` VALUES ('1380', 'DDC0');INSERT INTO `badges` VALUES ('1381', 'XMAS2_HHCA');INSERT INTO `badges` VALUES ('1382', 'AR2_HHSG');INSERT INTO `badges` VALUES ('1383', 'NI5');INSERT INTO `badges` VALUES ('1384', 'HC4_HHUK');INSERT INTO `badges` VALUES ('1385', 'HQ005_HHSG');INSERT INTO `badges` VALUES ('1386', 'GA1_HHAU');INSERT INTO `badges` VALUES ('1387', 'XMAS2_HHAU');INSERT INTO `badges` VALUES ('1388', 'FAN_HHSG');INSERT INTO `badges` VALUES ('1389', 'BOT_HHUK');INSERT INTO `badges` VALUES ('1390', 'UKFB1');INSERT INTO `badges` VALUES ('1391', 'HW09A_HHAU');INSERT INTO `badges` VALUES ('1392', 'fb_ACH_BattleBallPlayer');INSERT INTO `badges` VALUES ('1393', 'ACH_BaseJumpBigParachute');INSERT INTO `badges` VALUES ('1394', 'WAA00');INSERT INTO `badges` VALUES ('1395', 'FAN_HHUK');INSERT INTO `badges` VALUES ('1396', 'HJ2_HHUK');INSERT INTO `badges` VALUES ('1397', 'HX2_HHUK');INSERT INTO `badges` VALUES ('1398', 'fb_ACH_FreezePowerUp');INSERT INTO `badges` VALUES ('1399', 'BOT_HHSG');INSERT INTO `badges` VALUES ('1400', 'KO1_HHAU');INSERT INTO `badges` VALUES ('1401', 'NEB');INSERT INTO `badges` VALUES ('1402', 'US09');INSERT INTO `badges` VALUES ('1403', 'NEA');INSERT INTO `badges` VALUES ('1404', 'US08');INSERT INTO `badges` VALUES ('1405', 'US07');INSERT INTO `badges` VALUES ('1406', 'US06');INSERT INTO `badges` VALUES ('1407', 'DDC02');INSERT INTO `badges` VALUES ('1408', 'NEF');INSERT INTO `badges` VALUES ('1409', 'US05');INSERT INTO `badges` VALUES ('1410', 'DDC01');INSERT INTO `badges` VALUES ('1411', 'NEE');INSERT INTO `badges` VALUES ('1412', 'US04');INSERT INTO `badges` VALUES ('1413', 'DDC04');INSERT INTO `badges` VALUES ('1414', 'NED');INSERT INTO `badges` VALUES ('1415', 'US03');INSERT INTO `badges` VALUES ('1416', 'DDC03');INSERT INTO `badges` VALUES ('1417', 'NEC');INSERT INTO `badges` VALUES ('1418', 'US02');INSERT INTO `badges` VALUES ('1419', 'NEJ');INSERT INTO `badges` VALUES ('1420', 'US01');INSERT INTO `badges` VALUES ('1421', 'NEI');INSERT INTO `badges` VALUES ('1422', 'US00');INSERT INTO `badges` VALUES ('1423', 'NEH');INSERT INTO `badges` VALUES ('1424', 'fb_ACH_RoomDecoFloor');INSERT INTO `badges` VALUES ('1425', 'NEG');INSERT INTO `badges` VALUES ('1426', 'DDC05');INSERT INTO `badges` VALUES ('1427', 'HQ005_HHUK');INSERT INTO `badges` VALUES ('1428', 'NCD');INSERT INTO `badges` VALUES ('1429', 'HC4_HHSG');INSERT INTO `badges` VALUES ('1430', 'US0Z');INSERT INTO `badges` VALUES ('1431', 'US0S');INSERT INTO `badges` VALUES ('1432', 'US0R');INSERT INTO `badges` VALUES ('1433', 'US0U');INSERT INTO `badges` VALUES ('1434', 'US0T');INSERT INTO `badges` VALUES ('1435', 'US0W');INSERT INTO `badges` VALUES ('1436', 'US0V');INSERT INTO `badges` VALUES ('1437', 'US0Y');INSERT INTO `badges` VALUES ('1438', 'US0X');INSERT INTO `badges` VALUES ('1439', 'US0K');INSERT INTO `badges` VALUES ('1440', 'US0J');INSERT INTO `badges` VALUES ('1441', 'US0M');INSERT INTO `badges` VALUES ('1442', 'US0L');INSERT INTO `badges` VALUES ('1443', 'NDG');INSERT INTO `badges` VALUES ('1444', 'US0O');INSERT INTO `badges` VALUES ('1445', 'US0N');INSERT INTO `badges` VALUES ('1446', 'US0Q');INSERT INTO `badges` VALUES ('1447', 'US0P');INSERT INTO `badges` VALUES ('1448', 'US0B');INSERT INTO `badges` VALUES ('1449', 'US0C');INSERT INTO `badges` VALUES ('1450', 'US0D');INSERT INTO `badges` VALUES ('1451', 'US0F');INSERT INTO `badges` VALUES ('1452', 'US0G');INSERT INTO `badges` VALUES ('1453', 'US0H');INSERT INTO `badges` VALUES ('1454', 'US0I');INSERT INTO `badges` VALUES ('1455', 'fb_ACH_RoomDecoWallpaper');INSERT INTO `badges` VALUES ('1456', 'US0A');INSERT INTO `badges` VALUES ('1457', 'ACH_FreezePlayer');INSERT INTO `badges` VALUES ('1458', 'fb_ACH_BattleBallQuestCompleted10');INSERT INTO `badges` VALUES ('1459', 'ACH_BunnyEvil');INSERT INTO `badges` VALUES ('1460', 'CO2_HHCA');INSERT INTO `badges` VALUES ('1461', 'EC5_HHCA');INSERT INTO `badges` VALUES ('1462', 'fb_ACH_RoomHorseJumpCount');INSERT INTO `badges` VALUES ('1463', 'UKT_HHUK');INSERT INTO `badges` VALUES ('1464', 'UK052_HHUK');INSERT INTO `badges` VALUES ('1465', 'EC5_HHAU');INSERT INTO `badges` VALUES ('1466', 'ACH_AIPerformanceVote7_HHCA');INSERT INTO `badges` VALUES ('1467', 'DS5_HHCA');INSERT INTO `badges` VALUES ('1468', 'FMATIC');INSERT INTO `badges` VALUES ('1469', 'al_ACH_RoomDecoFurniCount');INSERT INTO `badges` VALUES ('1470', 'DN2_HHSG');INSERT INTO `badges` VALUES ('1471', 'ACH_BunnyCollector');INSERT INTO `badges` VALUES ('1472', 'ACH_Habboween12');INSERT INTO `badges` VALUES ('1473', 'TWIQ2_HHUK');INSERT INTO `badges` VALUES ('1474', 'UK039_HHUK');INSERT INTO `badges` VALUES ('1475', 'ACH_Name1_HHCA');INSERT INTO `badges` VALUES ('1476', 'ACH_ValentinesQuestCompleted');INSERT INTO `badges` VALUES ('1477', 'ACH_RegistrationDuration8_HHCA');INSERT INTO `badges` VALUES ('1478', 'ICEA3_HHUK');INSERT INTO `badges` VALUES ('1479', 'XMAS2_HHSG');INSERT INTO `badges` VALUES ('1480', 'ACH_SpeedwayWins');INSERT INTO `badges` VALUES ('1481', 'U02_HHUK');INSERT INTO `badges` VALUES ('1482', 'fb_ACH_VipClub5');INSERT INTO `badges` VALUES ('1483', 'fb_ACH_PetLevelUp10');INSERT INTO `badges` VALUES ('1484', 'fb_ACH_VipClub4');INSERT INTO `badges` VALUES ('1485', 'fb_ACH_VipClub3');INSERT INTO `badges` VALUES ('1486', 'fb_ACH_VipClub2');INSERT INTO `badges` VALUES ('1487', 'fb_ACH_VipClub1');INSERT INTO `badges` VALUES ('1488', 'DS5_HHAU');INSERT INTO `badges` VALUES ('1489', 'GWA_HHAU');INSERT INTO `badges` VALUES ('1490', 'TWIQ2_HHSG');INSERT INTO `badges` VALUES ('1491', 'ACH_SafetyQuizGraduate1 Level');INSERT INTO `badges` VALUES ('1492', 'ACH_RoomDecoHoleFurniCount');INSERT INTO `badges` VALUES ('1493', 'ACH_Login8');INSERT INTO `badges` VALUES ('1494', 'ACH_Login9');INSERT INTO `badges` VALUES ('1495', 'USK_HHCA');INSERT INTO `badges` VALUES ('1496', 'DN2_HHUK');INSERT INTO `badges` VALUES ('1497', 'ACH_RoomEntry10');INSERT INTO `badges` VALUES ('1498', 'ACH_Login5');INSERT INTO `badges` VALUES ('1499', 'ACH_Login4');INSERT INTO `badges` VALUES ('1500', 'ACH_Login7');INSERT INTO `badges` VALUES ('1501', 'ACH_Login6');INSERT INTO `badges` VALUES ('1502', 'ACH_Login1');INSERT INTO `badges` VALUES ('1503', 'ACH_Login3');INSERT INTO `badges` VALUES ('1504', 'ACH_Login2');INSERT INTO `badges` VALUES ('1505', 'NIK03');INSERT INTO `badges` VALUES ('1506', 'NIK02');INSERT INTO `badges` VALUES ('1507', 'NIK01');INSERT INTO `badges` VALUES ('1508', 'NIK05');INSERT INTO `badges` VALUES ('1509', 'NIK04');INSERT INTO `badges` VALUES ('1510', 'ACH_RoomRank9');INSERT INTO `badges` VALUES ('1511', 'ACH_RoomRank8');INSERT INTO `badges` VALUES ('1512', 'ACH_RegistrationDuration5_HHCA');INSERT INTO `badges` VALUES ('1513', 'SB7_HHSG');INSERT INTO `badges` VALUES ('1514', 'FAN_HHCA');INSERT INTO `badges` VALUES ('1515', 'HQ005_HHCA');INSERT INTO `badges` VALUES ('1516', 'LTU');INSERT INTO `badges` VALUES ('1517', 'ACH_GuideFeedbackGiver2');INSERT INTO `badges` VALUES ('1518', 'ACH_GuideFeedbackGiver1');INSERT INTO `badges` VALUES ('1519', 'fb_ACH_BasicClub1');INSERT INTO `badges` VALUES ('1520', 'fb_ACH_BasicClub3');INSERT INTO `badges` VALUES ('1521', 'fb_ACH_BasicClub2');INSERT INTO `badges` VALUES ('1522', 'fb_ACH_BasicClub5');INSERT INTO `badges` VALUES ('1523', 'fb_ACH_BasicClub4');INSERT INTO `badges` VALUES ('1524', 'MB1_HHUK');INSERT INTO `badges` VALUES ('1525', 'ACH_RoomRank1');INSERT INTO `badges` VALUES ('1526', 'ACH_RoomRank2');INSERT INTO `badges` VALUES ('1527', 'ACH_RoomRank3');INSERT INTO `badges` VALUES ('1528', 'ACH_RoomRank4');INSERT INTO `badges` VALUES ('1529', 'ACH_RoomRank5');INSERT INTO `badges` VALUES ('1530', 'ACH_RoomRank6');INSERT INTO `badges` VALUES ('1531', 'ACH_RoomRank7');INSERT INTO `badges` VALUES ('1532', 'UK8_HHUK');INSERT INTO `badges` VALUES ('1533', 'SB7_HHUK');INSERT INTO `badges` VALUES ('1534', 'FAN_HHAU');INSERT INTO `badges` VALUES ('1535', 'fb_ACH_HabboWayGraduate1');INSERT INTO `badges` VALUES ('1536', 'ESW_HHCA');INSERT INTO `badges` VALUES ('1537', 'HBA_HHUK');INSERT INTO `badges` VALUES ('1538', 'RUN09_HHSG');INSERT INTO `badges` VALUES ('1539', 'DNY02');INSERT INTO `badges` VALUES ('1540', 'DNY01');INSERT INTO `badges` VALUES ('1541', 'ACH_Login1_HHCA');INSERT INTO `badges` VALUES ('1542', 'DNY03');INSERT INTO `badges` VALUES ('1543', 'HX5_HHCA');INSERT INTO `badges` VALUES ('1544', 'UK076_HHUK');INSERT INTO `badges` VALUES ('1545', 'fb_ACH_PetFeeding10');INSERT INTO `badges` VALUES ('1546', 'HC4_HHCA');INSERT INTO `badges` VALUES ('1547', 'fb_ACH_SnowWarWeeklyTopTen');INSERT INTO `badges` VALUES ('1548', 'HBA_HHSG');INSERT INTO `badges` VALUES ('1549', 'IT111');INSERT INTO `badges` VALUES ('1550', 'EAS04');INSERT INTO `badges` VALUES ('1551', 'EAS03');INSERT INTO `badges` VALUES ('1552', 'EAS02');INSERT INTO `badges` VALUES ('1553', 'ACH_PetFeeding10_HHCA');INSERT INTO `badges` VALUES ('1554', 'EAS01');INSERT INTO `badges` VALUES ('1555', 'HC4_HHAU');INSERT INTO `badges` VALUES ('1556', 'EAS07');INSERT INTO `badges` VALUES ('1557', 'EAS06');INSERT INTO `badges` VALUES ('1558', 'EAS05');INSERT INTO `badges` VALUES ('1559', 'Z30_HHUK');INSERT INTO `badges` VALUES ('1560', 'CNY01_HHSG');INSERT INTO `badges` VALUES ('1561', 'HX5_HHAU');INSERT INTO `badges` VALUES ('1562', 'UK025_HHUK');INSERT INTO `badges` VALUES ('1563', 'UK033_HHUK');INSERT INTO `badges` VALUES ('1564', 'GWA_HHCA');INSERT INTO `badges` VALUES ('1565', 'fb_ACH_Login10');INSERT INTO `badges` VALUES ('1566', 'ACH_VipClub3');INSERT INTO `badges` VALUES ('1567', 'ACH_VipClub2');INSERT INTO `badges` VALUES ('1568', 'ACH_VipClub5');INSERT INTO `badges` VALUES ('1569', 'fb_ACH_GameAuthorExperience1');INSERT INTO `badges` VALUES ('1570', 'ACH_VipClub4');INSERT INTO `badges` VALUES ('1571', 'fb_ACH_GameAuthorExperience2');INSERT INTO `badges` VALUES ('1572', 'CNY01_HHUK');INSERT INTO `badges` VALUES ('1573', 'fb_ACH_GameAuthorExperience7');INSERT INTO `badges` VALUES ('1574', 'fb_ACH_GameAuthorExperience8');INSERT INTO `badges` VALUES ('1575', 'fb_ACH_GameAuthorExperience9');INSERT INTO `badges` VALUES ('1576', 'fb_ACH_GameAuthorExperience3');INSERT INTO `badges` VALUES ('1577', 'fb_ACH_GameAuthorExperience4');INSERT INTO `badges` VALUES ('1578', 'fb_ACH_GameAuthorExperience5');INSERT INTO `badges` VALUES ('1579', 'fb_ACH_GameAuthorExperience6');INSERT INTO `badges` VALUES ('1580', 'IT120');INSERT INTO `badges` VALUES ('1581', 'ACH_VipClub1');INSERT INTO `badges` VALUES ('1582', 'PATRL');INSERT INTO `badges` VALUES ('1583', 'ACH_VipParties1_Entry');INSERT INTO `badges` VALUES ('1584', 'ACH_AvatarTags1_HHCA');INSERT INTO `badges` VALUES ('1585', 'ACH_GamePlayed1_HHCA');INSERT INTO `badges` VALUES ('1586', 'Z27_HHCA');INSERT INTO `badges` VALUES ('1587', 'IT140');INSERT INTO `badges` VALUES ('1588', 'CO4_HHUK');INSERT INTO `badges` VALUES ('1589', 'CAK_HHCA');INSERT INTO `badges` VALUES ('1590', 'HOSP0');INSERT INTO `badges` VALUES ('1591', 'HOSP1');INSERT INTO `badges` VALUES ('1592', 'HOSP2');INSERT INTO `badges` VALUES ('1593', 'HC5_HHSG');INSERT INTO `badges` VALUES ('1594', 'RA10');INSERT INTO `badges` VALUES ('1595', 'ACH_RespectGiven8');INSERT INTO `badges` VALUES ('1596', 'ACH_RespectGiven9');INSERT INTO `badges` VALUES ('1597', 'ACH_GamePlayerExperience9');INSERT INTO `badges` VALUES ('1598', 'ACH_GamePlayerExperience8');INSERT INTO `badges` VALUES ('1599', 'ACH_GamePlayerExperience7');INSERT INTO `badges` VALUES ('1600', 'ACH_GamePlayerExperience6');INSERT INTO `badges` VALUES ('1601', 'ACH_RespectGiven7');INSERT INTO `badges` VALUES ('1602', 'ACH_GamePlayerExperience5');INSERT INTO `badges` VALUES ('1603', 'ACH_RespectGiven6');INSERT INTO `badges` VALUES ('1604', 'ACH_GamePlayerExperience4');INSERT INTO `badges` VALUES ('1605', 'ACH_RespectGiven5');INSERT INTO `badges` VALUES ('1606', 'ACH_GamePlayerExperience3');INSERT INTO `badges` VALUES ('1607', 'ACH_RespectGiven4');INSERT INTO `badges` VALUES ('1608', 'ACH_GamePlayerExperience2');INSERT INTO `badges` VALUES ('1609', 'ACH_RespectGiven3');INSERT INTO `badges` VALUES ('1610', 'ACH_GamePlayerExperience1');INSERT INTO `badges` VALUES ('1611', 'ACH_RespectGiven2');INSERT INTO `badges` VALUES ('1612', 'ACH_RespectGiven1');INSERT INTO `badges` VALUES ('1613', 'CO4_HHSG');INSERT INTO `badges` VALUES ('1614', 'UK087_HHUK');INSERT INTO `badges` VALUES ('1615', 'fb_ACH_GiftGiver9');INSERT INTO `badges` VALUES ('1616', 'fb_ACH_GiftGiver7');INSERT INTO `badges` VALUES ('1617', 'fb_ACH_GiftGiver8');INSERT INTO `badges` VALUES ('1618', 'fb_ACH_GiftGiver5');INSERT INTO `badges` VALUES ('1619', 'fb_ACH_GiftGiver6');INSERT INTO `badges` VALUES ('1620', 'TWIQ2_HHCA');INSERT INTO `badges` VALUES ('1621', 'fb_ACH_GiftGiver3');INSERT INTO `badges` VALUES ('1622', 'fb_ACH_GiftGiver4');INSERT INTO `badges` VALUES ('1623', 'fb_ACH_GiftGiver1');INSERT INTO `badges` VALUES ('1624', 'fb_ACH_GiftGiver2');INSERT INTO `badges` VALUES ('1625', 'ACH_GiftReceiver7_HHCA');INSERT INTO `badges` VALUES ('1626', 'SF5_HHSG');INSERT INTO `badges` VALUES ('1627', 'TWIQ2_HHAU');INSERT INTO `badges` VALUES ('1628', 'UK067_HHUK');INSERT INTO `badges` VALUES ('1629', 'JFF_HHAU');INSERT INTO `badges` VALUES ('1630', 'PEG01');INSERT INTO `badges` VALUES ('1631', 'CO3_HHSG');INSERT INTO `badges` VALUES ('1632', 'ACH_FurnimaticQuest');INSERT INTO `badges` VALUES ('1633', 'HQ007_HHCA');INSERT INTO `badges` VALUES ('1634', 'ACH_PetLover7_HHCA');INSERT INTO `badges` VALUES ('1635', 'MH1');INSERT INTO `badges` VALUES ('1636', 'NinjaDragon');INSERT INTO `badges` VALUES ('1637', 'MH2');INSERT INTO `badges` VALUES ('1638', 'HC5_HHUK');INSERT INTO `badges` VALUES ('1639', 'PB2_HHUK');INSERT INTO `badges` VALUES ('1640', 'HQ007_HHSG');INSERT INTO `badges` VALUES ('1641', 'MB1');INSERT INTO `badges` VALUES ('1642', 'MB2');INSERT INTO `badges` VALUES ('1643', 'CAJ_HHCA');INSERT INTO `badges` VALUES ('1644', 'fb_VipParties2_Top10');INSERT INTO `badges` VALUES ('1645', 'Z23_HHUK');INSERT INTO `badges` VALUES ('1646', 'ACH_GiftGiver2_HHCA');INSERT INTO `badges` VALUES ('1647', 'SFC_HHSG');INSERT INTO `badges` VALUES ('1648', 'MDI');INSERT INTO `badges` VALUES ('1649', 'MD1');INSERT INTO `badges` VALUES ('1650', 'MD2');INSERT INTO `badges` VALUES ('1651', 'UK001_HHUK');INSERT INTO `badges` VALUES ('1652', 'Z27_HHUK');INSERT INTO `badges` VALUES ('1653', 'ACH_MGM10_HHCA');INSERT INTO `badges` VALUES ('1654', 'SFC_HHUK');INSERT INTO `badges` VALUES ('1655', 'ACH_PetFeeding1_HHCA');INSERT INTO `badges` VALUES ('1656', 'TOR01');INSERT INTO `badges` VALUES ('1657', 'Z16_HHUK');INSERT INTO `badges` VALUES ('1658', 'TOR02');INSERT INTO `badges` VALUES ('1659', 'UK3_HHUK');INSERT INTO `badges` VALUES ('1660', 'SF5_HHUK');INSERT INTO `badges` VALUES ('1661', 'ACH_VipClub4_HHCA');INSERT INTO `badges` VALUES ('1662', 'ACH_RespectEarned5_HHCA');INSERT INTO `badges` VALUES ('1663', 'ACH_PetRespectGiver8_HHCA');INSERT INTO `badges` VALUES ('1664', 'UK080_HHUK');INSERT INTO `badges` VALUES ('1665', 'ACH_BattleBallWinner');INSERT INTO `badges` VALUES ('1666', 'UK058_HHUK');INSERT INTO `badges` VALUES ('1667', 'NEF_HHSG');INSERT INTO `badges` VALUES ('1668', 'UKR_HHUK');INSERT INTO `badges` VALUES ('1669', 'SFB_HHCA');INSERT INTO `badges` VALUES ('1670', 'U06_HHUK');INSERT INTO `badges` VALUES ('1671', 'fb_ACH_AllTimeHotelPresence20');INSERT INTO `badges` VALUES ('1672', 'UK065');INSERT INTO `badges` VALUES ('1673', 'UK067');INSERT INTO `badges` VALUES ('1674', 'UK066');INSERT INTO `badges` VALUES ('1675', 'UK069');INSERT INTO `badges` VALUES ('1676', 'UK068');INSERT INTO `badges` VALUES ('1677', 'UK070');INSERT INTO `badges` VALUES ('1678', 'UK071');INSERT INTO `badges` VALUES ('1679', 'UK072');INSERT INTO `badges` VALUES ('1680', 'UK073');INSERT INTO `badges` VALUES ('1681', 'UK074');INSERT INTO `badges` VALUES ('1682', 'TLB');INSERT INTO `badges` VALUES ('1683', 'WD2_HHSG');INSERT INTO `badges` VALUES ('1684', 'UK078');INSERT INTO `badges` VALUES ('1685', 'UK077');INSERT INTO `badges` VALUES ('1686', 'UK076');INSERT INTO `badges` VALUES ('1687', 'UK075');INSERT INTO `badges` VALUES ('1688', 'ACH_Student1');INSERT INTO `badges` VALUES ('1689', 'fb_ACH_Xm10QuestCompleted10');INSERT INTO `badges` VALUES ('1690', 'UK079');INSERT INTO `badges` VALUES ('1691', 'UK080');INSERT INTO `badges` VALUES ('1692', 'UK081');INSERT INTO `badges` VALUES ('1693', 'US0G_HHCA');INSERT INTO `badges` VALUES ('1694', 'UK084');INSERT INTO `badges` VALUES ('1695', 'UK085');INSERT INTO `badges` VALUES ('1696', 'UK082');INSERT INTO `badges` VALUES ('1697', 'UK083');INSERT INTO `badges` VALUES ('1698', 'COC04');INSERT INTO `badges` VALUES ('1699', 'COC02');INSERT INTO `badges` VALUES ('1700', 'UK087');INSERT INTO `badges` VALUES ('1701', 'UK086');INSERT INTO `badges` VALUES ('1702', 'UK089');INSERT INTO `badges` VALUES ('1703', 'UK088');INSERT INTO `badges` VALUES ('1704', 'UK093');INSERT INTO `badges` VALUES ('1705', 'UK094');INSERT INTO `badges` VALUES ('1706', 'UK095');INSERT INTO `badges` VALUES ('1707', 'UK096');INSERT INTO `badges` VALUES ('1708', 'U02');INSERT INTO `badges` VALUES ('1709', 'U01');INSERT INTO `badges` VALUES ('1710', 'UK090');INSERT INTO `badges` VALUES ('1711', 'UK091');INSERT INTO `badges` VALUES ('1712', 'UK092');INSERT INTO `badges` VALUES ('1713', 'SHA_HHUK');INSERT INTO `badges` VALUES ('1714', 'fb_ACH_AllTimeHotelPresence11');INSERT INTO `badges` VALUES ('1715', 'fb_ACH_AllTimeHotelPresence10');INSERT INTO `badges` VALUES ('1716', 'fb_ACH_AllTimeHotelPresence13');INSERT INTO `badges` VALUES ('1717', 'fb_ACH_AllTimeHotelPresence12');INSERT INTO `badges` VALUES ('1718', 'fb_ACH_AllTimeHotelPresence19');INSERT INTO `badges` VALUES ('1719', 'fb_ACH_AllTimeHotelPresence18');INSERT INTO `badges` VALUES ('1720', 'fb_ACH_AllTimeHotelPresence15');INSERT INTO `badges` VALUES ('1721', 'PIG01_HHSG');INSERT INTO `badges` VALUES ('1722', 'UK099');INSERT INTO `badges` VALUES ('1723', 'fb_ACH_AllTimeHotelPresence14');INSERT INTO `badges` VALUES ('1724', 'UK098');INSERT INTO `badges` VALUES ('1725', 'fb_ACH_AllTimeHotelPresence17');INSERT INTO `badges` VALUES ('1726', 'patrl');INSERT INTO `badges` VALUES ('1727', 'UK097');INSERT INTO `badges` VALUES ('1728', 'fb_ACH_AllTimeHotelPresence16');INSERT INTO `badges` VALUES ('1729', 'fb_ACH_RbTagB');INSERT INTO `badges` VALUES ('1730', 'fb_ACH_RbTagC');INSERT INTO `badges` VALUES ('1731', 'fb_ACH_RbTagA');INSERT INTO `badges` VALUES ('1732', 'ACH_EsA1');INSERT INTO `badges` VALUES ('1733', 'ACH_EsA5');INSERT INTO `badges` VALUES ('1734', 'ACH_EsA4');INSERT INTO `badges` VALUES ('1735', 'ACH_EsA3');INSERT INTO `badges` VALUES ('1736', 'ACH_EsA2');INSERT INTO `badges` VALUES ('1737', 'ACH_EsA9');INSERT INTO `badges` VALUES ('1738', 'ACH_EsA8');INSERT INTO `badges` VALUES ('1739', 'KO2_HHCA');INSERT INTO `badges` VALUES ('1740', 'ACH_EsA7');INSERT INTO `badges` VALUES ('1741', 'ACH_EsA6');INSERT INTO `badges` VALUES ('1742', 'U04');INSERT INTO `badges` VALUES ('1743', 'U03');INSERT INTO `badges` VALUES ('1744', 'U06');INSERT INTO `badges` VALUES ('1745', 'U05');INSERT INTO `badges` VALUES ('1746', 'ACH_RoomDecoLandscape');INSERT INTO `badges` VALUES ('1747', 'KO2_HHAU');INSERT INTO `badges` VALUES ('1748', 'ACH_PetFeeding5_HHCA');INSERT INTO `badges` VALUES ('1749', 'SB7_HHAU');INSERT INTO `badges` VALUES ('1750', 'UK078_HHCA');INSERT INTO `badges` VALUES ('1751', 'fb_ACH_ValentinesBadgeReceived');INSERT INTO `badges` VALUES ('1752', 'ACH_PetRespectReceiver1_HHCA');INSERT INTO `badges` VALUES ('1753', 'EAS04_HHCA');INSERT INTO `badges` VALUES ('1754', 'UK031_HHUK');INSERT INTO `badges` VALUES ('1755', 'HX9_HHUK');INSERT INTO `badges` VALUES ('1756', 'EAS04_HHAU');INSERT INTO `badges` VALUES ('1757', 'ACH_RegistrationDuration2_HHCA');INSERT INTO `badges` VALUES ('1758', 'XMAS0_HHCA');INSERT INTO `badges` VALUES ('1759', 'VA012_HHCA');INSERT INTO `badges` VALUES ('1760', '1goal_HHSG');INSERT INTO `badges` VALUES ('1761', 'VA9_HHCA');INSERT INTO `badges` VALUES ('1762', 'SF7_HHAU');INSERT INTO `badges` VALUES ('1763', 'VA012_HHAU');INSERT INTO `badges` VALUES ('1764', 'XM9_HHSG');INSERT INTO `badges` VALUES ('1765', 'DRA02');INSERT INTO `badges` VALUES ('1766', 'DRA01');INSERT INTO `badges` VALUES ('1767', 'fb_ACH_TagA10');INSERT INTO `badges` VALUES ('1768', 'DRA03');INSERT INTO `badges` VALUES ('1769', 'ACH_PetFeeding4_HHCA');INSERT INTO `badges` VALUES ('1770', 'ACH_AllTimeHotelPresence1_HHCA');INSERT INTO `badges` VALUES ('1771', 'fb_ACH_Habboween');INSERT INTO `badges` VALUES ('1772', 'XM9_HHUK');INSERT INTO `badges` VALUES ('1773', 'UK013_HHUK');INSERT INTO `badges` VALUES ('1774', 'ACH_MysteryBox');INSERT INTO `badges` VALUES ('1775', 'StarsRoom');INSERT INTO `badges` VALUES ('1776', 'UK046_HHCA');INSERT INTO `badges` VALUES ('1777', 'HX9_HHSG');INSERT INTO `badges` VALUES ('1778', 'RLX01_HHAU');INSERT INTO `badges` VALUES ('1779', 'ACH_AllTimeHotelPresence3_HHCA');INSERT INTO `badges` VALUES ('1780', 'SHA_HHSG');INSERT INTO `badges` VALUES ('1781', 'WH7_HHUK');INSERT INTO `badges` VALUES ('1782', 'SFH_HHCA');INSERT INTO `badges` VALUES ('1783', 'WD2_HHCA');INSERT INTO `badges` VALUES ('1784', 'UK070_HHUK');INSERT INTO `badges` VALUES ('1785', 'PIG01_HHCA');INSERT INTO `badges` VALUES ('1786', 'UK046_HHUK');INSERT INTO `badges` VALUES ('1787', 'WH7_HHSG');INSERT INTO `badges` VALUES ('1788', 'StarsRoom2_Top10');INSERT INTO `badges` VALUES ('1789', 'BGWV1');INSERT INTO `badges` VALUES ('1790', 'BGWV0');INSERT INTO `badges` VALUES ('1791', 'BGWV5');INSERT INTO `badges` VALUES ('1792', 'BGWV7');INSERT INTO `badges` VALUES ('1793', 'BGWV6');INSERT INTO `badges` VALUES ('1794', 'PIG01_HHAU');INSERT INTO `badges` VALUES ('1795', 'ACH_Xmas11QuestCompleted');INSERT INTO `badges` VALUES ('1796', 'VA011_HHAU');INSERT INTO `badges` VALUES ('1797', 'ACH_AIPerformanceVote6_HHCA');INSERT INTO `badges` VALUES ('1798', 'XM8_HHSG');INSERT INTO `badges` VALUES ('1799', 'fb_ACH_PetRespectReceiver1');INSERT INTO `badges` VALUES ('1800', 'fb_ACH_PetRespectReceiver6');INSERT INTO `badges` VALUES ('1801', 'fb_ACH_PetRespectReceiver7');INSERT INTO `badges` VALUES ('1802', 'fb_ACH_PetRespectReceiver8');INSERT INTO `badges` VALUES ('1803', 'fb_ACH_PetRespectReceiver9');INSERT INTO `badges` VALUES ('1804', 'fb_ACH_PetRespectReceiver2');INSERT INTO `badges` VALUES ('1805', 'fb_ACH_PetRespectReceiver3');INSERT INTO `badges` VALUES ('1806', 'fb_ACH_PetRespectReceiver4');INSERT INTO `badges` VALUES ('1807', 'fb_ACH_PetRespectReceiver5');INSERT INTO `badges` VALUES ('1808', 'neja1');INSERT INTO `badges` VALUES ('1809', 'MRG04');INSERT INTO `badges` VALUES ('1810', 'MRG05');INSERT INTO `badges` VALUES ('1811', 'MRG02');INSERT INTO `badges` VALUES ('1812', 'MRG03');INSERT INTO `badges` VALUES ('1813', 'MRG00');INSERT INTO `badges` VALUES ('1814', 'MRG01');INSERT INTO `badges` VALUES ('1815', 'VA011_HHCA');INSERT INTO `badges` VALUES ('1816', 'horse');INSERT INTO `badges` VALUES ('1817', 'ACH_GuideRequestHandler10');INSERT INTO `badges` VALUES ('1818', 'Z01_HHUK');INSERT INTO `badges` VALUES ('1819', 'ACH_RegistrationDuration7_HHCA');INSERT INTO `badges` VALUES ('1820', 'ACH_PetLevelUp10_HHCA');INSERT INTO `badges` VALUES ('1821', 'ACH_GiftGiver4_HHCA');INSERT INTO `badges` VALUES ('1822', 'AC8_HHCA');INSERT INTO `badges` VALUES ('1823', 'ACH_BaseJumpShield');INSERT INTO `badges` VALUES ('1824', 'al_ACH_NotesReceived');INSERT INTO `badges` VALUES ('1825', 'TC1');INSERT INTO `badges` VALUES ('1826', 'TC2');INSERT INTO `badges` VALUES ('1827', 'UK117');INSERT INTO `badges` VALUES ('1828', 'UK116');INSERT INTO `badges` VALUES ('1829', 'TC3');INSERT INTO `badges` VALUES ('1830', 'UK119');INSERT INTO `badges` VALUES ('1831', 'UK118');INSERT INTO `badges` VALUES ('1832', 'UK113');INSERT INTO `badges` VALUES ('1833', 'UK112');INSERT INTO `badges` VALUES ('1834', 'UK115');INSERT INTO `badges` VALUES ('1835', 'UK114');INSERT INTO `badges` VALUES ('1836', 'UK111');INSERT INTO `badges` VALUES ('1837', 'Z24_HHUK');INSERT INTO `badges` VALUES ('1838', 'UK110');INSERT INTO `badges` VALUES ('1839', 'EAS04_HHSG');INSERT INTO `badges` VALUES ('1840', 'UK109');INSERT INTO `badges` VALUES ('1841', 'UK108');INSERT INTO `badges` VALUES ('1842', 'UK107');INSERT INTO `badges` VALUES ('1843', 'UK106');INSERT INTO `badges` VALUES ('1844', 'UK105');INSERT INTO `badges` VALUES ('1845', 'UK104');INSERT INTO `badges` VALUES ('1846', 'UK103');INSERT INTO `badges` VALUES ('1847', 'UK102');INSERT INTO `badges` VALUES ('1848', 'UK101');INSERT INTO `badges` VALUES ('1849', 'UK100');INSERT INTO `badges` VALUES ('1850', 'UK140');INSERT INTO `badges` VALUES ('1851', 'FRE_HHUK');INSERT INTO `badges` VALUES ('1852', 'UK139');INSERT INTO `badges` VALUES ('1853', 'UK138');INSERT INTO `badges` VALUES ('1854', 'UK131');INSERT INTO `badges` VALUES ('1855', 'UK130');INSERT INTO `badges` VALUES ('1856', 'UK133');INSERT INTO `badges` VALUES ('1857', 'UK132');INSERT INTO `badges` VALUES ('1858', 'UK135');INSERT INTO `badges` VALUES ('1859', 'UK134');INSERT INTO `badges` VALUES ('1860', 'XM9_HHAU');INSERT INTO `badges` VALUES ('1861', 'UK137');INSERT INTO `badges` VALUES ('1862', 'UK136');INSERT INTO `badges` VALUES ('1863', 'XM9_HHCA');INSERT INTO `badges` VALUES ('1864', 'UK129');INSERT INTO `badges` VALUES ('1865', 'UK128');INSERT INTO `badges` VALUES ('1866', 'UK127');INSERT INTO `badges` VALUES ('1867', 'UK122');INSERT INTO `badges` VALUES ('1868', 'UK121');INSERT INTO `badges` VALUES ('1869', 'TEO');INSERT INTO `badges` VALUES ('1870', 'UK120');INSERT INTO `badges` VALUES ('1871', 'TLB_HHSG');INSERT INTO `badges` VALUES ('1872', 'UK126');INSERT INTO `badges` VALUES ('1873', 'UK125');INSERT INTO `badges` VALUES ('1874', 'UK124');INSERT INTO `badges` VALUES ('1875', 'UK123');INSERT INTO `badges` VALUES ('1876', 'UK160');INSERT INTO `badges` VALUES ('1877', 'UK162');INSERT INTO `badges` VALUES ('1878', 'UK161');INSERT INTO `badges` VALUES ('1879', 'UK156');INSERT INTO `badges` VALUES ('1880', 'UK157');INSERT INTO `badges` VALUES ('1881', 'UK158');INSERT INTO `badges` VALUES ('1882', 'UK152');INSERT INTO `badges` VALUES ('1883', 'UK154');INSERT INTO `badges` VALUES ('1884', 'UK155');INSERT INTO `badges` VALUES ('1885', 'HF1_HHCA');INSERT INTO `badges` VALUES ('1886', 'THA');INSERT INTO `badges` VALUES ('1887', 'UK151');INSERT INTO `badges` VALUES ('1888', 'UK150');INSERT INTO `badges` VALUES ('1889', 'SHA_HHCA');INSERT INTO `badges` VALUES ('1890', 'UK147');INSERT INTO `badges` VALUES ('1891', 'UK145');INSERT INTO `badges` VALUES ('1892', 'UK146');INSERT INTO `badges` VALUES ('1893', 'TLB_HHUK');INSERT INTO `badges` VALUES ('1894', 'UK143');INSERT INTO `badges` VALUES ('1895', 'UK144');INSERT INTO `badges` VALUES ('1896', 'UK141');INSERT INTO `badges` VALUES ('1897', 'UK142');INSERT INTO `badges` VALUES ('1898', 'UK149');INSERT INTO `badges` VALUES ('1899', 'UK182');INSERT INTO `badges` VALUES ('1900', 'UK183');INSERT INTO `badges` VALUES ('1901', 'UK174');INSERT INTO `badges` VALUES ('1902', 'UK175');INSERT INTO `badges` VALUES ('1903', 'ACH_TerrierBreeder');INSERT INTO `badges` VALUES ('1904', 'UK176');INSERT INTO `badges` VALUES ('1905', 'UK177');INSERT INTO `badges` VALUES ('1906', 'UK178');INSERT INTO `badges` VALUES ('1907', 'GLH_HHCA');INSERT INTO `badges` VALUES ('1908', 'GLH_HHAU');INSERT INTO `badges` VALUES ('1909', 'UK173');INSERT INTO `badges` VALUES ('1910', 'UK172');INSERT INTO `badges` VALUES ('1911', 'UK171');INSERT INTO `badges` VALUES ('1912', 'UK170');INSERT INTO `badges` VALUES ('1913', 'UK165');INSERT INTO `badges` VALUES ('1914', 'UK166');INSERT INTO `badges` VALUES ('1915', 'UK163');INSERT INTO `badges` VALUES ('1916', 'UK164');INSERT INTO `badges` VALUES ('1917', 'UK169');INSERT INTO `badges` VALUES ('1918', 'ACH_NotesLeft');INSERT INTO `badges` VALUES ('1919', 'UK167');INSERT INTO `badges` VALUES ('1920', 'UK168');INSERT INTO `badges` VALUES ('1921', 'SHA_HHAU');INSERT INTO `badges` VALUES ('1922', 'HM1_HHUK');INSERT INTO `badges` VALUES ('1923', 'HF1_HHAU');INSERT INTO `badges` VALUES ('1924', 'ACH_GuideRecommendation7');INSERT INTO `badges` VALUES ('1925', 'ACH_GuideRecommendation6');INSERT INTO `badges` VALUES ('1926', 'ACH_GuideRecommendation5');INSERT INTO `badges` VALUES ('1927', 'ACH_GuideRecommendation4');INSERT INTO `badges` VALUES ('1928', 'fb_ACH_PetRespectGiver1');INSERT INTO `badges` VALUES ('1929', 'fb_ACH_PetRespectGiver4');INSERT INTO `badges` VALUES ('1930', 'fb_ACH_PetRespectGiver5');INSERT INTO `badges` VALUES ('1931', 'fb_ACH_PetRespectGiver2');INSERT INTO `badges` VALUES ('1932', 'fb_ACH_PetRespectGiver3');INSERT INTO `badges` VALUES ('1933', 'ACH_SpeedwayRaces');INSERT INTO `badges` VALUES ('1934', 'ACH_GuideRecommendation2');INSERT INTO `badges` VALUES ('1935', 'ACH_GuideRecommendation3');INSERT INTO `badges` VALUES ('1936', 'ACH_GuideRecommendation1');INSERT INTO `badges` VALUES ('1937', 'HHL_HHCA');INSERT INTO `badges` VALUES ('1938', 'ACH_RegistrationDuration9_HHCA');INSERT INTO `badges` VALUES ('1939', 'fb_ACH_ValentinesQuestCompleted');INSERT INTO `badges` VALUES ('1940', 'StarsRoom_Top100');INSERT INTO `badges` VALUES ('1941', 'fb_ACH_HappyHour1');INSERT INTO `badges` VALUES ('1942', 'VA3_HHUK');INSERT INTO `badges` VALUES ('1943', 'AU015');INSERT INTO `badges` VALUES ('1944', 'TWIV2_HHUK');INSERT INTO `badges` VALUES ('1945', 'AU016');INSERT INTO `badges` VALUES ('1946', 'XMA_HHSG');INSERT INTO `badges` VALUES ('1947', 'AU019');INSERT INTO `badges` VALUES ('1948', 'ACH_Spr');INSERT INTO `badges` VALUES ('1949', 'AU010');INSERT INTO `badges` VALUES ('1950', 'AU011');INSERT INTO `badges` VALUES ('1951', 'AU012');INSERT INTO `badges` VALUES ('1952', 'AU013');INSERT INTO `badges` VALUES ('1953', 'AU014');INSERT INTO `badges` VALUES ('1954', 'fb_ACH_HorseRent');INSERT INTO `badges` VALUES ('1955', 'RUN08_HHSG');INSERT INTO `badges` VALUES ('1956', 'Z47_HHUK');INSERT INTO `badges` VALUES ('1957', 'AU021');INSERT INTO `badges` VALUES ('1958', 'AU024');INSERT INTO `badges` VALUES ('1959', 'AP1');INSERT INTO `badges` VALUES ('1960', 'AU025');INSERT INTO `badges` VALUES ('1961', 'AP2');INSERT INTO `badges` VALUES ('1962', 'AU022');INSERT INTO `badges` VALUES ('1963', 'AU023');INSERT INTO `badges` VALUES ('1964', 'fb_ACH_PetRespectGiver7');INSERT INTO `badges` VALUES ('1965', 'UK045_HHUK');INSERT INTO `badges` VALUES ('1966', 'fb_ACH_PetRespectGiver6');INSERT INTO `badges` VALUES ('1967', 'fb_ACH_PetRespectGiver9');INSERT INTO `badges` VALUES ('1968', 'fb_ACH_PetRespectGiver8');INSERT INTO `badges` VALUES ('1969', 'ACH_RoomEntry2');INSERT INTO `badges` VALUES ('1970', 'ACH_RoomEntry3');INSERT INTO `badges` VALUES ('1971', 'ACH_RoomEntry4');INSERT INTO `badges` VALUES ('1972', 'ACH_RoomEntry5');INSERT INTO `badges` VALUES ('1973', 'HX8_HHAU');INSERT INTO `badges` VALUES ('1974', 'RA3_HHAU');INSERT INTO `badges` VALUES ('1975', 'ACH_RoomEntry1');INSERT INTO `badges` VALUES ('1976', 'HWD07');INSERT INTO `badges` VALUES ('1977', 'UK026_HHUK');INSERT INTO `badges` VALUES ('1978', 'HWD08');INSERT INTO `badges` VALUES ('1979', 'ACH_RoomEntry7');INSERT INTO `badges` VALUES ('1980', 'HWD05');INSERT INTO `badges` VALUES ('1981', 'ACH_RoomEntry6');INSERT INTO `badges` VALUES ('1982', 'HWD06');INSERT INTO `badges` VALUES ('1983', 'ACH_RoomEntry9');INSERT INTO `badges` VALUES ('1984', 'HWD03');INSERT INTO `badges` VALUES ('1985', 'ACH_RoomEntry8');INSERT INTO `badges` VALUES ('1986', 'HWD04');INSERT INTO `badges` VALUES ('1987', 'HWN25');INSERT INTO `badges` VALUES ('1988', 'HWN24');INSERT INTO `badges` VALUES ('1989', 'HWN29');INSERT INTO `badges` VALUES ('1990', 'HWN27');INSERT INTO `badges` VALUES ('1991', 'USG_HHCA');INSERT INTO `badges` VALUES ('1992', 'AC8_HHSG');INSERT INTO `badges` VALUES ('1993', 'HWN28');INSERT INTO `badges` VALUES ('1994', 'HJ6_HHUK');INSERT INTO `badges` VALUES ('1995', 'HX8_HHCA');INSERT INTO `badges` VALUES ('1996', 'AR2');INSERT INTO `badges` VALUES ('1997', 'AR1');INSERT INTO `badges` VALUES ('1998', 'BTB_HHUK');INSERT INTO `badges` VALUES ('1999', 'NEC_HHUK');INSERT INTO `badges` VALUES ('2000', 'SNW');INSERT INTO `badges` VALUES ('2001', 'XMA_HHUK');INSERT INTO `badges` VALUES ('2002', 'HWN30');INSERT INTO `badges` VALUES ('2003', 'SF7_HHUK');INSERT INTO `badges` VALUES ('2004', 'HWN31');INSERT INTO `badges` VALUES ('2005', 'HWN32');INSERT INTO `badges` VALUES ('2006', 'SOS');INSERT INTO `badges` VALUES ('2007', 'RA3_HHCA');INSERT INTO `badges` VALUES ('2008', 'ATW');INSERT INTO `badges` VALUES ('2009', 'AU5');INSERT INTO `badges` VALUES ('2010', 'AU4');INSERT INTO `badges` VALUES ('2011', 'VA011_HHSG');INSERT INTO `badges` VALUES ('2012', 'AU1');INSERT INTO `badges` VALUES ('2013', 'AU3');INSERT INTO `badges` VALUES ('2014', 'AU2');INSERT INTO `badges` VALUES ('2015', 'AC8_HHUK');INSERT INTO `badges` VALUES ('2016', 'AUB');INSERT INTO `badges` VALUES ('2017', 'BTB_HHSG');INSERT INTO `badges` VALUES ('2018', 'HWD00');INSERT INTO `badges` VALUES ('2019', 'HWD02');INSERT INTO `badges` VALUES ('2020', 'HWD01');INSERT INTO `badges` VALUES ('2021', 'Z31_HHUK');INSERT INTO `badges` VALUES ('2022', 'SMC');INSERT INTO `badges` VALUES ('2023', 'SF7_HHSG');INSERT INTO `badges` VALUES ('2024', 'BBBH1_HHSG');INSERT INTO `badges` VALUES ('2025', 'RUN07_HHSG');INSERT INTO `badges` VALUES ('2026', 'SU1');INSERT INTO `badges` VALUES ('2027', 'ACH_AIPerformanceVote1_HHCA');INSERT INTO `badges` VALUES ('2028', 'SU3');INSERT INTO `badges` VALUES ('2029', 'SU2');INSERT INTO `badges` VALUES ('2030', 'AC3_HHUK');INSERT INTO `badges` VALUES ('2031', 'STA');INSERT INTO `badges` VALUES ('2032', 'EC4_HHAU');INSERT INTO `badges` VALUES ('2033', 'AF1');INSERT INTO `badges` VALUES ('2034', 'GLC_HHUK');INSERT INTO `badges` VALUES ('2035', 'DU3_HHAU');INSERT INTO `badges` VALUES ('2036', 'ST4');INSERT INTO `badges` VALUES ('2037', 'fb_ACH_BattleBallTilesLocked5');INSERT INTO `badges` VALUES ('2038', 'ST3');INSERT INTO `badges` VALUES ('2039', 'fb_ACH_BattleBallTilesLocked4');INSERT INTO `badges` VALUES ('2040', 'ST2');INSERT INTO `badges` VALUES ('2041', 'fb_ACH_BattleBallTilesLocked7');INSERT INTO `badges` VALUES ('2042', 'ST1');INSERT INTO `badges` VALUES ('2043', 'fb_ACH_BattleBallTilesLocked6');INSERT INTO `badges` VALUES ('2044', 'fb_ACH_BattleBallTilesLocked9');INSERT INTO `badges` VALUES ('2045', 'fb_ACH_BattleBallTilesLocked8');INSERT INTO `badges` VALUES ('2046', 'ST6');INSERT INTO `badges` VALUES ('2047', 'ST5');INSERT INTO `badges` VALUES ('2048', 'HX7_HHUK');INSERT INTO `badges` VALUES ('2049', 'EC4_HHCA');INSERT INTO `badges` VALUES ('2050', 'ACH_BattleBallQuestCompleted9');INSERT INTO `badges` VALUES ('2051', 'ACH_BattleBallQuestCompleted7');INSERT INTO `badges` VALUES ('2052', 'ACH_BattleBallQuestCompleted8');INSERT INTO `badges` VALUES ('2053', 'ACH_BattleBallQuestCompleted5');INSERT INTO `badges` VALUES ('2054', 'ACH_BattleBallQuestCompleted6');INSERT INTO `badges` VALUES ('2055', 'ACH_BattleBallQuestCompleted3');INSERT INTO `badges` VALUES ('2056', 'ACH_BattleBallQuestCompleted4');INSERT INTO `badges` VALUES ('2057', 'ACH_BattleBallQuestCompleted1');INSERT INTO `badges` VALUES ('2058', 'ACH_BattleBallQuestCompleted2');INSERT INTO `badges` VALUES ('2059', 'HWN06');INSERT INTO `badges` VALUES ('2060', 'AI6');INSERT INTO `badges` VALUES ('2061', 'HWN05');INSERT INTO `badges` VALUES ('2062', 'AI5');INSERT INTO `badges` VALUES ('2063', 'HWN08');INSERT INTO `badges` VALUES ('2064', 'AI4');INSERT INTO `badges` VALUES ('2065', 'HWN07');INSERT INTO `badges` VALUES ('2066', 'AI3');INSERT INTO `badges` VALUES ('2067', 'HWN02');INSERT INTO `badges` VALUES ('2068', 'AI2');INSERT INTO `badges` VALUES ('2069', 'HWN01');INSERT INTO `badges` VALUES ('2070', 'AI1');INSERT INTO `badges` VALUES ('2071', 'HWN04');INSERT INTO `badges` VALUES ('2072', 'AI0');INSERT INTO `badges` VALUES ('2073', 'HWN03');INSERT INTO `badges` VALUES ('2074', 'HWN00');INSERT INTO `badges` VALUES ('2075', 'USL_HHCA');INSERT INTO `badges` VALUES ('2076', 'SS2');INSERT INTO `badges` VALUES ('2077', 'fb_VipParties3_Top10');INSERT INTO `badges` VALUES ('2078', 'DU3_HHCA');INSERT INTO `badges` VALUES ('2079', 'HWN09');INSERT INTO `badges` VALUES ('2080', 'GLC_HHSG');INSERT INTO `badges` VALUES ('2081', 'HWN19');INSERT INTO `badges` VALUES ('2082', 'ACH_PetLevelUp6_HHCA');INSERT INTO `badges` VALUES ('2083', 'HWN11');INSERT INTO `badges` VALUES ('2084', 'Z01_HHCA');INSERT INTO `badges` VALUES ('2085', 'HX7_HHSG');INSERT INTO `badges` VALUES ('2086', 'RUN08_HHCA');INSERT INTO `badges` VALUES ('2087', 'WH5_HHCA');INSERT INTO `badges` VALUES ('2088', 'HWB_HHUK');INSERT INTO `badges` VALUES ('2089', 'AU001');INSERT INTO `badges` VALUES ('2090', 'AU000');INSERT INTO `badges` VALUES ('2091', 'AU003');INSERT INTO `badges` VALUES ('2092', 'AU002');INSERT INTO `badges` VALUES ('2093', 'AU009');INSERT INTO `badges` VALUES ('2094', 'XMB_HHAU');INSERT INTO `badges` VALUES ('2095', 'AU008');INSERT INTO `badges` VALUES ('2096', 'BBBH2_HHCA');INSERT INTO `badges` VALUES ('2097', 'AU005');INSERT INTO `badges` VALUES ('2098', 'AU004');INSERT INTO `badges` VALUES ('2099', 'AU007');INSERT INTO `badges` VALUES ('2100', 'AU006');INSERT INTO `badges` VALUES ('2101', 'Z69_HHUK');INSERT INTO `badges` VALUES ('2102', 'TWIV1_HHCA');INSERT INTO `badges` VALUES ('2103', 'SW1');INSERT INTO `badges` VALUES ('2104', 'RUN07_HHUK');INSERT INTO `badges` VALUES ('2105', 'AM6');INSERT INTO `badges` VALUES ('2106', 'BBBH1_HHUK');INSERT INTO `badges` VALUES ('2107', 'AM4');INSERT INTO `badges` VALUES ('2108', 'WH6_HHCA');INSERT INTO `badges` VALUES ('2109', 'AM5');INSERT INTO `badges` VALUES ('2110', 'AM3');INSERT INTO `badges` VALUES ('2111', 'AM2');INSERT INTO `badges` VALUES ('2112', 'AM1');INSERT INTO `badges` VALUES ('2113', 'ACH_MGM10');INSERT INTO `badges` VALUES ('2114', 'ACH_MGM5_HHCA');INSERT INTO `badges` VALUES ('2115', 'fb_ACH_BattleBallTilesLocked3');INSERT INTO `badges` VALUES ('2116', 'fb_ACH_BattleBallTilesLocked2');INSERT INTO `badges` VALUES ('2117', 'fb_ACH_MonsterPlantColorCollector');INSERT INTO `badges` VALUES ('2118', 'fb_ACH_BattleBallTilesLocked1');INSERT INTO `badges` VALUES ('2119', 'fb_ACH_RoomDecoLandscape');INSERT INTO `badges` VALUES ('2120', 'HQ009_HHSG');INSERT INTO `badges` VALUES ('2121', 'HWB_HHSG');INSERT INTO `badges` VALUES ('2122', 'BBBH2_HHAU');INSERT INTO `badges` VALUES ('2123', 'HF1_HHUK');INSERT INTO `badges` VALUES ('2124', 'ACH_MonsterPlantQuestCompleted');INSERT INTO `badges` VALUES ('2125', 'TWIV1_HHAU');INSERT INTO `badges` VALUES ('2126', 'WH6_HHAU');INSERT INTO `badges` VALUES ('2127', 'RareDemonicDragon');INSERT INTO `badges` VALUES ('2128', 'ACH_GameAuthorExperience20');INSERT INTO `badges` VALUES ('2129', 'ACH_GuideChatReviewRequester2');INSERT INTO `badges` VALUES ('2130', 'ACH_GuideChatReviewRequester1');INSERT INTO `badges` VALUES ('2131', 'ACH_AllTimeHotelPresence7_HHCA');INSERT INTO `badges` VALUES ('2132', 'ACH_GameAuthorExperience19');INSERT INTO `badges` VALUES ('2133', 'fb_ACH_PetFeeding9');INSERT INTO `badges` VALUES ('2134', 'BTB_HHAU');INSERT INTO `badges` VALUES ('2135', 'al_ACH_RoomDecoFurniTypeCount');INSERT INTO `badges` VALUES ('2136', 'SHB_HHSG');INSERT INTO `badges` VALUES ('2137', 'JF3_HHCA');INSERT INTO `badges` VALUES ('2138', 'fb_ACH_PetFeeding2');INSERT INTO `badges` VALUES ('2139', 'fb_ACH_PetFeeding1');INSERT INTO `badges` VALUES ('2140', 'fb_ACH_PetFeeding4');INSERT INTO `badges` VALUES ('2141', 'fb_ACH_PetFeeding3');INSERT INTO `badges` VALUES ('2142', 'fb_ACH_PetFeeding6');INSERT INTO `badges` VALUES ('2143', 'fb_ACH_PetFeeding5');INSERT INTO `badges` VALUES ('2144', 'fb_ACH_PetFeeding8');INSERT INTO `badges` VALUES ('2145', 'fb_ACH_PetFeeding7');INSERT INTO `badges` VALUES ('2146', 'WH5_HHUK');INSERT INTO `badges` VALUES ('2147', 'XMA_HHCA');INSERT INTO `badges` VALUES ('2148', 'TWIC2_HHAU');INSERT INTO `badges` VALUES ('2149', 'XMB_HHCA');INSERT INTO `badges` VALUES ('2150', 'RUN08_HHAU');INSERT INTO `badges` VALUES ('2151', 'UK095_HHUK');INSERT INTO `badges` VALUES ('2152', 'CAA_HHCA');INSERT INTO `badges` VALUES ('2153', 'RA3_HHSG');INSERT INTO `badges` VALUES ('2154', 'HX8_HHSG');INSERT INTO `badges` VALUES ('2155', 'fb_ACH_PetRespectReceiver10');INSERT INTO `badges` VALUES ('2156', 'NO032');INSERT INTO `badges` VALUES ('2157', 'ACH_FreezeWinner');INSERT INTO `badges` VALUES ('2158', 'HX7_HHAU');INSERT INTO `badges` VALUES ('2159', 'AC6');INSERT INTO `badges` VALUES ('2160', 'AC7');INSERT INTO `badges` VALUES ('2161', 'AC8');INSERT INTO `badges` VALUES ('2162', 'AC9');INSERT INTO `badges` VALUES ('2163', 'AC2');INSERT INTO `badges` VALUES ('2164', 'AC3');INSERT INTO `badges` VALUES ('2165', 'ACH_HabboWayGraduate1');INSERT INTO `badges` VALUES ('2166', 'AC4');INSERT INTO `badges` VALUES ('2167', 'AC5');INSERT INTO `badges` VALUES ('2168', 'NO047');INSERT INTO `badges` VALUES ('2169', 'AC1');INSERT INTO `badges` VALUES ('2170', 'UK049_HHUK');INSERT INTO `badges` VALUES ('2171', 'ACC');INSERT INTO `badges` VALUES ('2172', 'ACB');INSERT INTO `badges` VALUES ('2173', 'HX8_HHUK');INSERT INTO `badges` VALUES ('2174', 'ACA');INSERT INTO `badges` VALUES ('2175', 'SF7_HHCA');INSERT INTO `badges` VALUES ('2176', 'ACH_GameAuthorExperience10');INSERT INTO `badges` VALUES ('2177', 'ACH_GameAuthorExperience15');INSERT INTO `badges` VALUES ('2178', 'ACH_GameAuthorExperience16');INSERT INTO `badges` VALUES ('2179', 'ACH_GameAuthorExperience17');INSERT INTO `badges` VALUES ('2180', 'ACH_GameAuthorExperience18');INSERT INTO `badges` VALUES ('2181', 'ACH_GameAuthorExperience11');INSERT INTO `badges` VALUES ('2182', 'ACH_GameAuthorExperience12');INSERT INTO `badges` VALUES ('2183', 'ACH_GameAuthorExperience13');INSERT INTO `badges` VALUES ('2184', 'ACH_GameAuthorExperience14');INSERT INTO `badges` VALUES ('2185', 'ACH_NinjasNotSpotted1');INSERT INTO `badges` VALUES ('2186', 'ACH_NinjasNotSpotted2');INSERT INTO `badges` VALUES ('2187', 'BTB_HHCA');INSERT INTO `badges` VALUES ('2188', 'ACH_NinjasNotSpotted3');INSERT INTO `badges` VALUES ('2189', 'ADM');INSERT INTO `badges` VALUES ('2190', 'ACH_PetRespectReceiver4_HHCA');INSERT INTO `badges` VALUES ('2191', 'Z12_HHUK');INSERT INTO `badges` VALUES ('2192', 'NO070');INSERT INTO `badges` VALUES ('2193', 'AR1_HHAU');INSERT INTO `badges` VALUES ('2194', 'KCKRP');INSERT INTO `badges` VALUES ('2195', 'RLX01_HHUK');INSERT INTO `badges` VALUES ('2196', 'EC4_HHSG');INSERT INTO `badges` VALUES ('2197', 'SB4_HHUK');INSERT INTO `badges` VALUES ('2198', 'VA2_HHCA');INSERT INTO `badges` VALUES ('2199', 'AR1_HHCA');INSERT INTO `badges` VALUES ('2200', 'ACH_MusicPlayer');INSERT INTO `badges` VALUES ('2201', 'WH6_HHUK');INSERT INTO `badges` VALUES ('2202', 'ACH_AvatarLooks1_HHCA');INSERT INTO `badges` VALUES ('2203', 'VA2_HHAU');INSERT INTO `badges` VALUES ('2204', 'XMAS0_HHSG');INSERT INTO `badges` VALUES ('2205', 'HX7_HHCA');INSERT INTO `badges` VALUES ('2206', 'VA012_HHSG');INSERT INTO `badges` VALUES ('2207', 'EC4_HHUK');INSERT INTO `badges` VALUES ('2208', 'GLC_HHCA');INSERT INTO `badges` VALUES ('2209', 'SB7');INSERT INTO `badges` VALUES ('2210', 'AP1_HHUK');INSERT INTO `badges` VALUES ('2211', 'fb_StarsRoom_Top10');INSERT INTO `badges` VALUES ('2212', 'DU3_HHSG');INSERT INTO `badges` VALUES ('2213', 'NEC_HHSG');INSERT INTO `badges` VALUES ('2214', 'SB1');INSERT INTO `badges` VALUES ('2215', 'SB2');INSERT INTO `badges` VALUES ('2216', 'SB3');INSERT INTO `badges` VALUES ('2217', 'SB4');INSERT INTO `badges` VALUES ('2218', 'SB5');INSERT INTO `badges` VALUES ('2219', 'SB6');INSERT INTO `badges` VALUES ('2220', 'HQ009_HHCA');INSERT INTO `badges` VALUES ('2221', 'SGF');INSERT INTO `badges` VALUES ('2222', 'SGD');INSERT INTO `badges` VALUES ('2223', 'SGB');INSERT INTO `badges` VALUES ('2224', 'SGC');INSERT INTO `badges` VALUES ('2225', 'SGA');INSERT INTO `badges` VALUES ('2226', 'PUR01');INSERT INTO `badges` VALUES ('2227', 'WH5_HHSG');INSERT INTO `badges` VALUES ('2228', 'SG9');INSERT INTO `badges` VALUES ('2229', 'SG8');INSERT INTO `badges` VALUES ('2230', 'SG7');INSERT INTO `badges` VALUES ('2231', 'SG6');INSERT INTO `badges` VALUES ('2232', 'SG5');INSERT INTO `badges` VALUES ('2233', 'SG4');INSERT INTO `badges` VALUES ('2234', 'SG3');INSERT INTO `badges` VALUES ('2235', 'SG2');INSERT INTO `badges` VALUES ('2236', 'SG1');INSERT INTO `badges` VALUES ('2237', 'SFM');INSERT INTO `badges` VALUES ('2238', 'SFL');INSERT INTO `badges` VALUES ('2239', 'SFK');INSERT INTO `badges` VALUES ('2240', 'DU3_HHUK');INSERT INTO `badges` VALUES ('2241', 'SHA');INSERT INTO `badges` VALUES ('2242', 'SHB');INSERT INTO `badges` VALUES ('2243', 'U03_HHUK');INSERT INTO `badges` VALUES ('2244', 'GLC_HHAU');INSERT INTO `badges` VALUES ('2245', 'ACH_BattleBallTilesLocked20');INSERT INTO `badges` VALUES ('2246', 'HX9_HHCA');INSERT INTO `badges` VALUES ('2247', 'SGU');INSERT INTO `badges` VALUES ('2248', 'SGQ');INSERT INTO `badges` VALUES ('2249', 'SGR');INSERT INTO `badges` VALUES ('2250', 'VipParties2_Top100');INSERT INTO `badges` VALUES ('2251', 'TWIV1_HHUK');INSERT INTO `badges` VALUES ('2252', 'XMB_HHSG');INSERT INTO `badges` VALUES ('2253', 'SGN');INSERT INTO `badges` VALUES ('2254', 'fb_Hween12');INSERT INTO `badges` VALUES ('2255', 'ACH_BattleBallTilesLocked18');INSERT INTO `badges` VALUES ('2256', 'ACH_BattleBallTilesLocked19');INSERT INTO `badges` VALUES ('2257', 'ACH_BattleBallTilesLocked16');INSERT INTO `badges` VALUES ('2258', 'ACH_BattleBallTilesLocked17');INSERT INTO `badges` VALUES ('2259', 'ACH_BattleBallTilesLocked14');INSERT INTO `badges` VALUES ('2260', 'ACH_BattleBallTilesLocked15');INSERT INTO `badges` VALUES ('2261', 'ACH_BattleBallTilesLocked12');INSERT INTO `badges` VALUES ('2262', 'ACH_BattleBallTilesLocked13');INSERT INTO `badges` VALUES ('2263', 'VA3_HHSG');INSERT INTO `badges` VALUES ('2264', 'ACH_BattleBallTilesLocked10');INSERT INTO `badges` VALUES ('2265', 'ACH_BattleBallTilesLocked11');INSERT INTO `badges` VALUES ('2266', 'CL3_HHUK');INSERT INTO `badges` VALUES ('2267', 'HQ009_HHAU');INSERT INTO `badges` VALUES ('2268', 'RLX01_HHSG');INSERT INTO `badges` VALUES ('2269', 'HX9_HHAU');INSERT INTO `badges` VALUES ('2270', 'GLF_HHCA');INSERT INTO `badges` VALUES ('2271', 'fb_ACH_AprilFools12QuestCompleted');INSERT INTO `badges` VALUES ('2272', 'SFC');INSERT INTO `badges` VALUES ('2273', 'SFD');INSERT INTO `badges` VALUES ('2274', 'SFE');INSERT INTO `badges` VALUES ('2275', 'SFF');INSERT INTO `badges` VALUES ('2276', 'ACH_SkateBoardSlide');INSERT INTO `badges` VALUES ('2277', 'SFG');INSERT INTO `badges` VALUES ('2278', 'SFH');INSERT INTO `badges` VALUES ('2279', 'GLF_HHAU');INSERT INTO `badges` VALUES ('2280', 'SFI');INSERT INTO `badges` VALUES ('2281', 'ACH_PetRespectReceiver9');INSERT INTO `badges` VALUES ('2282', 'ACH_PetRespectReceiver7');INSERT INTO `badges` VALUES ('2283', 'SFA');INSERT INTO `badges` VALUES ('2284', 'ACH_PetRespectReceiver8');INSERT INTO `badges` VALUES ('2285', 'SFB');INSERT INTO `badges` VALUES ('2286', 'ACH_PetRespectReceiver6');INSERT INTO `badges` VALUES ('2287', 'SF4');INSERT INTO `badges` VALUES ('2288', 'ACH_PetRespectReceiver5');INSERT INTO `badges` VALUES ('2289', 'SF3');INSERT INTO `badges` VALUES ('2290', 'ACH_PetRespectReceiver4');INSERT INTO `badges` VALUES ('2291', 'SF6');INSERT INTO `badges` VALUES ('2292', 'ACH_PetRespectReceiver3');INSERT INTO `badges` VALUES ('2293', 'SF5');INSERT INTO `badges` VALUES ('2294', 'ACH_PetRespectReceiver2');INSERT INTO `badges` VALUES ('2295', 'SF8');INSERT INTO `badges` VALUES ('2296', 'ACH_PetRespectReceiver1');INSERT INTO `badges` VALUES ('2297', 'SF7');INSERT INTO `badges` VALUES ('2298', 'SF9');INSERT INTO `badges` VALUES ('2299', 'TWIV1_HHSG');INSERT INTO `badges` VALUES ('2300', 'WH6_HHSG');INSERT INTO `badges` VALUES ('2301', 'SF2');INSERT INTO `badges` VALUES ('2302', 'SF1');INSERT INTO `badges` VALUES ('2303', 'ACH_GiftGiver3_HHCA');INSERT INTO `badges` VALUES ('2304', 'EC2_HHCA');INSERT INTO `badges` VALUES ('2305', 'RM1');INSERT INTO `badges` VALUES ('2306', 'RM2');INSERT INTO `badges` VALUES ('2307', 'CO5_HHCA');INSERT INTO `badges` VALUES ('2308', 'RM0');INSERT INTO `badges` VALUES ('2309', 'fb_Hween12_Top10');INSERT INTO `badges` VALUES ('2310', 'CHF_HHCA');INSERT INTO `badges` VALUES ('2311', 'ACH_GuideEnrollmentLifetime9');INSERT INTO `badges` VALUES ('2312', 'ACH_GuideEnrollmentLifetime8');INSERT INTO `badges` VALUES ('2313', 'TC2_HHAU');INSERT INTO `badges` VALUES ('2314', 'ACH_AprilFools12QuestCompleted');INSERT INTO `badges` VALUES ('2315', 'ACH_Login9_HHCA');INSERT INTO `badges` VALUES ('2316', 'AF1_HHCA');INSERT INTO `badges` VALUES ('2317', 'UK2_HHUK');INSERT INTO `badges` VALUES ('2318', 'Z76_HHUK');INSERT INTO `badges` VALUES ('2319', 'SFM_HHCA');INSERT INTO `badges` VALUES ('2320', 'Z14_HHUK');INSERT INTO `badges` VALUES ('2321', 'ACH_GuideEnrollmentLifetime6');INSERT INTO `badges` VALUES ('2322', 'ACH_GuideEnrollmentLifetime7');INSERT INTO `badges` VALUES ('2323', 'ACH_GuideEnrollmentLifetime4');INSERT INTO `badges` VALUES ('2324', 'ACH_GuideEnrollmentLifetime5');INSERT INTO `badges` VALUES ('2325', 'ACH_GuideEnrollmentLifetime2');INSERT INTO `badges` VALUES ('2326', 'ACH_GuideEnrollmentLifetime3');INSERT INTO `badges` VALUES ('2327', 'ACH_GuideEnrollmentLifetime1');INSERT INTO `badges` VALUES ('2328', 'ACH_AIPerformanceVote2_HHCA');INSERT INTO `badges` VALUES ('2329', 'BTB');INSERT INTO `badges` VALUES ('2330', 'RM4');INSERT INTO `badges` VALUES ('2331', 'RM3');INSERT INTO `badges` VALUES ('2332', 'ACH_GiftReceiver3_HHCA');INSERT INTO `badges` VALUES ('2333', 'SFM_HHAU');INSERT INTO `badges` VALUES ('2334', 'ACH_GamePlayed9_HHCA');INSERT INTO `badges` VALUES ('2335', 'UKBD1');INSERT INTO `badges` VALUES ('2336', 'fb_ACH_Xm10QuestCompleted9');INSERT INTO `badges` VALUES ('2337', 'fb_ACH_Xm10QuestCompleted6');INSERT INTO `badges` VALUES ('2338', 'CL2_HHUK');INSERT INTO `badges` VALUES ('2339', 'fb_ACH_Xm10QuestCompleted5');INSERT INTO `badges` VALUES ('2340', 'fb_ACH_Xm10QuestCompleted8');INSERT INTO `badges` VALUES ('2341', 'fb_ACH_Xm10QuestCompleted7');INSERT INTO `badges` VALUES ('2342', 'fb_ACH_Xm10QuestCompleted2');INSERT INTO `badges` VALUES ('2343', 'fb_ACH_Xm10QuestCompleted1');INSERT INTO `badges` VALUES ('2344', 'fb_ACH_Xm10QuestCompleted4');INSERT INTO `badges` VALUES ('2345', 'fb_ACH_Xm10QuestCompleted3');INSERT INTO `badges` VALUES ('2346', 'ACH_VipClub2_HHCA');INSERT INTO `badges` VALUES ('2347', 'ACH_HorseRent');INSERT INTO `badges` VALUES ('2348', 'YAK_HHUK');INSERT INTO `badges` VALUES ('2349', 'BOT');INSERT INTO `badges` VALUES ('2350', 'fb_ACH_FreezeWinner');INSERT INTO `badges` VALUES ('2351', 'Z33_HHUK');INSERT INTO `badges` VALUES ('2352', 'CAE_HHCA');INSERT INTO `badges` VALUES ('2353', 'RU1');INSERT INTO `badges` VALUES ('2354', 'C06');INSERT INTO `badges` VALUES ('2355', 'VA3_HHAU');INSERT INTO `badges` VALUES ('2356', 'Hween12');INSERT INTO `badges` VALUES ('2357', 'RU3');INSERT INTO `badges` VALUES ('2358', 'RTS');INSERT INTO `badges` VALUES ('2359', 'NLD_HHSG');INSERT INTO `badges` VALUES ('2360', 'TWIV2_HHAU');INSERT INTO `badges` VALUES ('2361', 'ACH_PetLover8_HHCA');INSERT INTO `badges` VALUES ('2362', 'RS9');INSERT INTO `badges` VALUES ('2363', 'ancients_ssahara');INSERT INTO `badges` VALUES ('2364', 'NWB_HHCA');INSERT INTO `badges` VALUES ('2365', 'VA3_HHCA');INSERT INTO `badges` VALUES ('2366', 'GLF_HHSG');INSERT INTO `badges` VALUES ('2367', 'SF6_HHCA');INSERT INTO `badges` VALUES ('2368', 'NWB_HHAU');INSERT INTO `badges` VALUES ('2369', 'TWIV2_HHCA');INSERT INTO `badges` VALUES ('2370', 'ACH_ValentinesBadgeReceived');INSERT INTO `badges` VALUES ('2371', 'AR1_HHUK');INSERT INTO `badges` VALUES ('2372', 'ACH_GiftGiver1_HHCA');INSERT INTO `badges` VALUES ('2373', 'TWIC1');INSERT INTO `badges` VALUES ('2374', 'TWIC2');INSERT INTO `badges` VALUES ('2375', 'TWIC3');INSERT INTO `badges` VALUES ('2376', 'NEC_HHCA');INSERT INTO `badges` VALUES ('2377', 'fb_ACH_SafetyQuizGraduate1');INSERT INTO `badges` VALUES ('2378', 'S10');INSERT INTO `badges` VALUES ('2379', 'UK081_HHUK');INSERT INTO `badges` VALUES ('2380', 'EC2_HHAU');INSERT INTO `badges` VALUES ('2381', 'RR9');INSERT INTO `badges` VALUES ('2382', 'AR1_HHSG');INSERT INTO `badges` VALUES ('2383', 'GLF_HHUK');INSERT INTO `badges` VALUES ('2384', 'NEC_HHAU');INSERT INTO `badges` VALUES ('2385', 'ACH_RoomHorseJumpCount');INSERT INTO `badges` VALUES ('2386', 'CUB00');INSERT INTO `badges` VALUES ('2387', 'CUB01');INSERT INTO `badges` VALUES ('2388', 'HQ004_HHUK');INSERT INTO `badges` VALUES ('2389', 'YAK_HHCA');INSERT INTO `badges` VALUES ('2390', 'fb_ACH_HorseQuestCompleted');INSERT INTO `badges` VALUES ('2391', 'VIPP3');INSERT INTO `badges` VALUES ('2392', 'AF1_HHSG');INSERT INTO `badges` VALUES ('2393', 'VIPP1');INSERT INTO `badges` VALUES ('2394', 'VIPP2');INSERT INTO `badges` VALUES ('2395', 'CAD_HHCA');INSERT INTO `badges` VALUES ('2396', 'AF1_HHUK');INSERT INTO `badges` VALUES ('2397', 'ACH_EsA20');INSERT INTO `badges` VALUES ('2398', 'HQ004_HHSG');INSERT INTO `badges` VALUES ('2399', 'BE1');INSERT INTO `badges` VALUES ('2400', 'UK027_HHUK');INSERT INTO `badges` VALUES ('2401', 'ACH_SafetyQuizGraduate1');INSERT INTO `badges` VALUES ('2402', 'ACH_GamePlayed5_HHCA');INSERT INTO `badges` VALUES ('2403', 'SFM_HHSG');INSERT INTO `badges` VALUES ('2404', 'ACH_Login10_HHCA');INSERT INTO `badges` VALUES ('2405', 'al_ACH_MusicPlayer');INSERT INTO `badges` VALUES ('2406', 'ATW_HHUK');INSERT INTO `badges` VALUES ('2407', 'ACH_FootballGoalScoredInRoom');INSERT INTO `badges` VALUES ('2408', 'WBK02');INSERT INTO `badges` VALUES ('2409', 'XM7_HHSG');INSERT INTO `badges` VALUES ('2410', 'fb_ACH_BaseJumpMissile');INSERT INTO `badges` VALUES ('2411', 'NWB_HHSG');INSERT INTO `badges` VALUES ('2412', 'ACH_RbTagC');INSERT INTO `badges` VALUES ('2413', 'ACH_RbTagB');INSERT INTO `badges` VALUES ('2414', 'ACH_RbTagA');INSERT INTO `badges` VALUES ('2415', 'RTS01');INSERT INTO `badges` VALUES ('2416', 'RTS02');INSERT INTO `badges` VALUES ('2417', 'UK019_HHUK');INSERT INTO `badges` VALUES ('2418', 'RTS05');INSERT INTO `badges` VALUES ('2419', 'RTS06');INSERT INTO `badges` VALUES ('2420', 'RTS03');INSERT INTO `badges` VALUES ('2421', 'SF4_HHSG');INSERT INTO `badges` VALUES ('2422', 'RTS04');INSERT INTO `badges` VALUES ('2423', 'UKK_HHUK');INSERT INTO `badges` VALUES ('2424', 'WH1_HHUK');INSERT INTO `badges` VALUES ('2425', 'ACH_PetRespectReceiver3_HHCA');INSERT INTO `badges` VALUES ('2426', 'RE2');INSERT INTO `badges` VALUES ('2427', 'RE1');INSERT INTO `badges` VALUES ('2428', 'ACH_PetFeeding2');INSERT INTO `badges` VALUES ('2429', 'fb_ACH_RoomEntry8');INSERT INTO `badges` VALUES ('2430', 'ACH_PetFeeding3');INSERT INTO `badges` VALUES ('2431', 'fb_ACH_RoomEntry7');INSERT INTO `badges` VALUES ('2432', 'ACH_PetFeeding4');INSERT INTO `badges` VALUES ('2433', 'ACH_PetFeeding5');INSERT INTO `badges` VALUES ('2434', 'fb_ACH_RoomEntry9');INSERT INTO `badges` VALUES ('2435', 'fb_ACH_RoomEntry4');INSERT INTO `badges` VALUES ('2436', 'fb_ACH_RoomEntry3');INSERT INTO `badges` VALUES ('2437', 'fb_ACH_RoomEntry6');INSERT INTO `badges` VALUES ('2438', 'ACH_PetFeeding1');INSERT INTO `badges` VALUES ('2439', 'fb_ACH_RoomEntry5');INSERT INTO `badges` VALUES ('2440', 'ACH_AllTimeHotelPresence2_HHCA');INSERT INTO `badges` VALUES ('2441', 'TWIV2_HHSG');INSERT INTO `badges` VALUES ('2442', 'SF4_HHUK');INSERT INTO `badges` VALUES ('2443', 'fb_ACH_RoomEntry1');INSERT INTO `badges` VALUES ('2444', 'fb_ACH_RoomEntry2');INSERT INTO `badges` VALUES ('2445', 'ACH_PetFeeding9');INSERT INTO `badges` VALUES ('2446', 'ACH_PetFeeding8');INSERT INTO `badges` VALUES ('2447', 'ACH_PetFeeding7');INSERT INTO `badges` VALUES ('2448', 'ACH_PetFeeding6');INSERT INTO `badges` VALUES ('2449', 'TWIV2');INSERT INTO `badges` VALUES ('2450', 'TWIV3');INSERT INTO `badges` VALUES ('2451', 'TWIV1');INSERT INTO `badges` VALUES ('2452', 'KCK03');INSERT INTO `badges` VALUES ('2453', 'KCK04');INSERT INTO `badges` VALUES ('2454', 'KCK01');INSERT INTO `badges` VALUES ('2455', 'KCK02');INSERT INTO `badges` VALUES ('2456', 'ConcurrentUsersReward');INSERT INTO `badges` VALUES ('2457', 'BBBH1_HHAU');INSERT INTO `badges` VALUES ('2458', 'UST_HHSG');INSERT INTO `badges` VALUES ('2459', 'ACH_EsA19');INSERT INTO `badges` VALUES ('2460', 'ACH_EsA17');INSERT INTO `badges` VALUES ('2461', 'ACH_EsA18');INSERT INTO `badges` VALUES ('2462', 'ICEA2_HHUK');INSERT INTO `badges` VALUES ('2463', 'ACH_EsA11');INSERT INTO `badges` VALUES ('2464', 'KCK12');INSERT INTO `badges` VALUES ('2465', 'ACH_EsA12');INSERT INTO `badges` VALUES ('2466', 'KCK13');INSERT INTO `badges` VALUES ('2467', 'KCK14');INSERT INTO `badges` VALUES ('2468', 'ACH_EsA10');INSERT INTO `badges` VALUES ('2469', 'KCK15');INSERT INTO `badges` VALUES ('2470', 'ACH_EsA15');INSERT INTO `badges` VALUES ('2471', 'ACH_EsA16');INSERT INTO `badges` VALUES ('2472', 'ACH_EsA13');INSERT INTO `badges` VALUES ('2473', 'KCK10');INSERT INTO `badges` VALUES ('2474', 'ACH_EsA14');INSERT INTO `badges` VALUES ('2475', 'KCK11');INSERT INTO `badges` VALUES ('2476', 'KCK09');INSERT INTO `badges` VALUES ('2477', 'KCK06');INSERT INTO `badges` VALUES ('2478', 'KCK05');INSERT INTO `badges` VALUES ('2479', 'KCK08');INSERT INTO `badges` VALUES ('2480', 'KCK07');INSERT INTO `badges` VALUES ('2481', 'StarsRoom2_Top100');INSERT INTO `badges` VALUES ('2482', 'RA5');INSERT INTO `badges` VALUES ('2483', 'Z36_HHUK');INSERT INTO `badges` VALUES ('2484', 'RA6');INSERT INTO `badges` VALUES ('2485', 'RA3');INSERT INTO `badges` VALUES ('2486', 'RA4');INSERT INTO `badges` VALUES ('2487', 'ACH_RegistrationDuration3_HHCA');INSERT INTO `badges` VALUES ('2488', 'RA2');INSERT INTO `badges` VALUES ('2489', 'AUW');INSERT INTO `badges` VALUES ('2490', 'TWIQ3');INSERT INTO `badges` VALUES ('2491', 'RTS07');INSERT INTO `badges` VALUES ('2492', 'RTS08');INSERT INTO `badges` VALUES ('2493', 'TWIQ2');INSERT INTO `badges` VALUES ('2494', 'TWIQ1');INSERT INTO `badges` VALUES ('2495', 'BR015_HHSG');INSERT INTO `badges` VALUES ('2496', 'RA7');INSERT INTO `badges` VALUES ('2497', 'WH1_HHSG');INSERT INTO `badges` VALUES ('2498', 'RTS25');INSERT INTO `badges` VALUES ('2499', 'RTS18');INSERT INTO `badges` VALUES ('2500', 'BBBH1_HHCA');INSERT INTO `badges` VALUES ('2501', 'ACH_RegistrationDuration14');INSERT INTO `badges` VALUES ('2502', 'ACH_RegistrationDuration13');INSERT INTO `badges` VALUES ('2503', 'ACH_RegistrationDuration16');INSERT INTO `badges` VALUES ('2504', 'ACH_RegistrationDuration15');INSERT INTO `badges` VALUES ('2505', 'ACH_RegistrationDuration18');INSERT INTO `badges` VALUES ('2506', 'ACH_RegistrationDuration17');INSERT INTO `badges` VALUES ('2507', 'ACH_RegistrationDuration19');INSERT INTO `badges` VALUES ('2508', 'Z03_HHUK');INSERT INTO `badges` VALUES ('2509', 'HQ004_HHAU');INSERT INTO `badges` VALUES ('2510', 'ACH_RegistrationDuration20');INSERT INTO `badges` VALUES ('2511', 'BNZI0');INSERT INTO `badges` VALUES ('2512', 'BNZI2');INSERT INTO `badges` VALUES ('2513', 'BNZI1');INSERT INTO `badges` VALUES ('2514', 'AWSM3');INSERT INTO `badges` VALUES ('2515', 'AWSM1');INSERT INTO `badges` VALUES ('2516', 'RUN01_HHAU');INSERT INTO `badges` VALUES ('2517', 'CY3');INSERT INTO `badges` VALUES ('2518', 'CY2');INSERT INTO `badges` VALUES ('2519', 'RUN04_HHSG');INSERT INTO `badges` VALUES ('2520', 'CY1');INSERT INTO `badges` VALUES ('2521', 'ACH_RegistrationDuration4_HHCA');INSERT INTO `badges` VALUES ('2522', 'ACH_PetLover10');INSERT INTO `badges` VALUES ('2523', 'UKZ_HHUK');INSERT INTO `badges` VALUES ('2524', 'UK059_HHUK');INSERT INTO `badges` VALUES ('2525', 'UKO_HHUK');INSERT INTO `badges` VALUES ('2526', 'ACH_PetLevelUp7_HHCA');INSERT INTO `badges` VALUES ('2527', 'RUN04_HHUK');INSERT INTO `badges` VALUES ('2528', 'RUN01_HHCA');INSERT INTO `badges` VALUES ('2529', 'ACH_BaseJumpWins');INSERT INTO `badges` VALUES ('2530', 'LC1_HHCA');INSERT INTO `badges` VALUES ('2531', 'ACH_GiftReceiver6_HHCA');INSERT INTO `badges` VALUES ('2532', 'GLJ_HHSG');INSERT INTO `badges` VALUES ('2533', 'TWIQ1_HHSG');INSERT INTO `badges` VALUES ('2534', 'BNZI6');INSERT INTO `badges` VALUES ('2535', 'BNZI5');INSERT INTO `badges` VALUES ('2536', 'BNZI4');INSERT INTO `badges` VALUES ('2537', 'BNZI3');INSERT INTO `badges` VALUES ('2538', 'NWB_HHUK');INSERT INTO `badges` VALUES ('2539', 'BNZI9');INSERT INTO `badges` VALUES ('2540', 'BNZI8');INSERT INTO `badges` VALUES ('2541', 'BNZI7');INSERT INTO `badges` VALUES ('2542', 'WH7_HHCA');INSERT INTO `badges` VALUES ('2543', 'KIR_HHCA');INSERT INTO `badges` VALUES ('2544', 'SF001_HHCA');INSERT INTO `badges` VALUES ('2545', 'BR071_HHUK');INSERT INTO `badges` VALUES ('2546', 'SMR04');INSERT INTO `badges` VALUES ('2547', 'SMR01');INSERT INTO `badges` VALUES ('2548', 'UK9_HHUK');INSERT INTO `badges` VALUES ('2549', 'ACH_PetRespectReceiver5_HHCA');INSERT INTO `badges` VALUES ('2550', 'SMR02');INSERT INTO `badges` VALUES ('2551', 'CO3');INSERT INTO `badges` VALUES ('2552', 'CO2');INSERT INTO `badges` VALUES ('2553', 'CO1');INSERT INTO `badges` VALUES ('2554', 'DS1_HHUK');INSERT INTO `badges` VALUES ('2555', 'AU1_HHCA');INSERT INTO `badges` VALUES ('2556', 'CO6');INSERT INTO `badges` VALUES ('2557', 'CNV');INSERT INTO `badges` VALUES ('2558', 'CO4');INSERT INTO `badges` VALUES ('2559', 'CO5');INSERT INTO `badges` VALUES ('2560', 'DU2_HHSG');INSERT INTO `badges` VALUES ('2561', 'AU1_HHAU');INSERT INTO `badges` VALUES ('2562', 'CN2');INSERT INTO `badges` VALUES ('2563', 'SCU02');INSERT INTO `badges` VALUES ('2564', 'SCU01');INSERT INTO `badges` VALUES ('2565', 'SCU03');INSERT INTO `badges` VALUES ('2566', 'WD0_HHSG');INSERT INTO `badges` VALUES ('2567', 'GLH_HHSG');INSERT INTO `badges` VALUES ('2568', 'DS1_HHSG');INSERT INTO `badges` VALUES ('2569', 'WH8_HHAU');INSERT INTO `badges` VALUES ('2570', 'al_ACH_ValentinesQuestCompleted');INSERT INTO `badges` VALUES ('2571', 'SF4_HHCA');INSERT INTO `badges` VALUES ('2572', 'DE002_HHCA');INSERT INTO `badges` VALUES ('2573', 'DU2_HHUK');INSERT INTO `badges` VALUES ('2574', 'COL');INSERT INTO `badges` VALUES ('2575', 'WH8_HHCA');INSERT INTO `badges` VALUES ('2576', 'SF4_HHAU');INSERT INTO `badges` VALUES ('2577', 'ACH_Xm10QuestCompleted10');INSERT INTO `badges` VALUES ('2578', 'TWIQ1_HHUK');INSERT INTO `badges` VALUES ('2579', 'Z72_HHUK');INSERT INTO `badges` VALUES ('2580', 'UK4_HHUK');INSERT INTO `badges` VALUES ('2581', 'GLH_HHUK');INSERT INTO `badges` VALUES ('2582', 'GLJ_HHUK');INSERT INTO `badges` VALUES ('2583', 'DS6_HHCA');INSERT INTO `badges` VALUES ('2584', 'WH1_HHCA');INSERT INTO `badges` VALUES ('2585', 'Z26_HHCA');INSERT INTO `badges` VALUES ('2586', 'DS6_HHAU');INSERT INTO `badges` VALUES ('2587', 'TC2_HHSG');INSERT INTO `badges` VALUES ('2588', 'VA18');INSERT INTO `badges` VALUES ('2589', 'TC2_HHUK');INSERT INTO `badges` VALUES ('2590', 'WH1_HHAU');INSERT INTO `badges` VALUES ('2591', 'CL2');INSERT INTO `badges` VALUES ('2592', 'CL1');INSERT INTO `badges` VALUES ('2593', 'CL3');INSERT INTO `badges` VALUES ('2594', 'UK078_HHUK');INSERT INTO `badges` VALUES ('2595', 'fb_ACH_AllTimeHotelPresence2');INSERT INTO `badges` VALUES ('2596', 'fb_ACH_AllTimeHotelPresence1');INSERT INTO `badges` VALUES ('2597', 'fb_ACH_AllTimeHotelPresence4');INSERT INTO `badges` VALUES ('2598', 'fb_ACH_AllTimeHotelPresence3');INSERT INTO `badges` VALUES ('2599', 'CO5_HHUK');INSERT INTO `badges` VALUES ('2600', 'fb_ACH_AllTimeHotelPresence5');INSERT INTO `badges` VALUES ('2601', 'fb_ACH_AllTimeHotelPresence6');INSERT INTO `badges` VALUES ('2602', 'fb_ACH_AllTimeHotelPresence7');INSERT INTO `badges` VALUES ('2603', 'fb_ACH_AllTimeHotelPresence8');INSERT INTO `badges` VALUES ('2604', 'VipParties1_Top100');INSERT INTO `badges` VALUES ('2605', 'fb_ACH_AllTimeHotelPresence9');INSERT INTO `badges` VALUES ('2606', 'PX0');INSERT INTO `badges` VALUES ('2607', 'PX1');INSERT INTO `badges` VALUES ('2608', 'PX2');INSERT INTO `badges` VALUES ('2609', 'PX3');INSERT INTO `badges` VALUES ('2610', 'PX4');INSERT INTO `badges` VALUES ('2611', 'PX5');INSERT INTO `badges` VALUES ('2612', 'PX6');INSERT INTO `badges` VALUES ('2613', 'UK008_HHUK');INSERT INTO `badges` VALUES ('2614', 'EC2_HHUK');INSERT INTO `badges` VALUES ('2615', 'SG5_HHSG');INSERT INTO `badges` VALUES ('2616', 'CO5_HHSG');INSERT INTO `badges` VALUES ('2617', 'CI1');INSERT INTO `badges` VALUES ('2618', 'CI2');INSERT INTO `badges` VALUES ('2619', 'CHF');INSERT INTO `badges` VALUES ('2620', 'CAL');INSERT INTO `badges` VALUES ('2621', 'CAK');INSERT INTO `badges` VALUES ('2622', 'CAJ');INSERT INTO `badges` VALUES ('2623', 'TWIQ1_HHCA');INSERT INTO `badges` VALUES ('2624', 'CAI');INSERT INTO `badges` VALUES ('2625', 'CAH');INSERT INTO `badges` VALUES ('2626', 'CAG');INSERT INTO `badges` VALUES ('2627', 'RUN01_HHSG');INSERT INTO `badges` VALUES ('2628', 'ACH_AIPerformanceVote4_HHCA');INSERT INTO `badges` VALUES ('2629', 'CAD');INSERT INTO `badges` VALUES ('2630', 'CAE');INSERT INTO `badges` VALUES ('2631', 'UK092_HHUK');INSERT INTO `badges` VALUES ('2632', 'VipParties2');INSERT INTO `badges` VALUES ('2633', 'CAC');INSERT INTO `badges` VALUES ('2634', 'VipParties1');INSERT INTO `badges` VALUES ('2635', 'CAA');INSERT INTO `badges` VALUES ('2636', 'VipParties3');INSERT INTO `badges` VALUES ('2637', 'GLJ_HHCA');INSERT INTO `badges` VALUES ('2638', 'GLJ_HHAU');INSERT INTO `badges` VALUES ('2639', 'TWIQ1_HHAU');INSERT INTO `badges` VALUES ('2640', 'LC1_HHSG');INSERT INTO `badges` VALUES ('2641', 'ACH_BaseJumpDaysPlayed');INSERT INTO `badges` VALUES ('2642', 'PT1');INSERT INTO `badges` VALUES ('2643', 'PT2');INSERT INTO `badges` VALUES ('2644', 'ACH_BunnyLove');INSERT INTO `badges` VALUES ('2645', 'ACH_PetRespectReceiver2_HHCA');INSERT INTO `badges` VALUES ('2646', 'ACH_PetLevelUp9');INSERT INTO `badges` VALUES ('2647', 'HW09H');INSERT INTO `badges` VALUES ('2648', 'ACH_PetLevelUp5');INSERT INTO `badges` VALUES ('2649', 'HW09G');INSERT INTO `badges` VALUES ('2650', 'ACH_PetLevelUp6');INSERT INTO `badges` VALUES ('2651', 'HW09F');INSERT INTO `badges` VALUES ('2652', 'ACH_PetLevelUp7');INSERT INTO `badges` VALUES ('2653', 'HW09E');INSERT INTO `badges` VALUES ('2654', 'ACH_PetLevelUp8');INSERT INTO `badges` VALUES ('2655', 'HW09D');INSERT INTO `badges` VALUES ('2656', 'ACH_PetLevelUp1');INSERT INTO `badges` VALUES ('2657', 'HW09C');INSERT INTO `badges` VALUES ('2658', 'ACH_PetLevelUp2');INSERT INTO `badges` VALUES ('2659', 'HW09B');INSERT INTO `badges` VALUES ('2660', 'ACH_PetLevelUp3');INSERT INTO `badges` VALUES ('2661', 'HW09A');INSERT INTO `badges` VALUES ('2662', 'ACH_PetLevelUp4');INSERT INTO `badges` VALUES ('2663', 'WD0_HHCA');INSERT INTO `badges` VALUES ('2664', 'DU2_HHAU');INSERT INTO `badges` VALUES ('2665', 'Z60_HHUK');INSERT INTO `badges` VALUES ('2666', 'fb_ACH_MGM3');INSERT INTO `badges` VALUES ('2667', 'fb_ACH_MGM4');INSERT INTO `badges` VALUES ('2668', 'fb_ACH_MGM5');INSERT INTO `badges` VALUES ('2669', 'fb_ACH_MGM6');INSERT INTO `badges` VALUES ('2670', 'DU2_HHCA');INSERT INTO `badges` VALUES ('2671', 'fb_ACH_MGM1');INSERT INTO `badges` VALUES ('2672', 'fb_ACH_MGM2');INSERT INTO `badges` VALUES ('2673', 'ACH_GiftReceiver4_HHCA');INSERT INTO `badges` VALUES ('2674', 'fb_ACH_MGM7');INSERT INTO `badges` VALUES ('2675', 'fb_ACH_MGM8');INSERT INTO `badges` VALUES ('2676', 'fb_ACH_MGM9');INSERT INTO `badges` VALUES ('2677', 'THE01');INSERT INTO `badges` VALUES ('2678', 'ACH_VipClub3_HHCA');INSERT INTO `badges` VALUES ('2679', 'GLO01');INSERT INTO `badges` VALUES ('2680', 'fb_ACH_Habboween12');INSERT INTO `badges` VALUES ('2681', 'SF6_HHSG');INSERT INTO `badges` VALUES ('2682', '1goal_HHAU');INSERT INTO `badges` VALUES ('2683', 'ACH_PetLover4_HHCA');INSERT INTO `badges` VALUES ('2684', 'UK096_HHUK');INSERT INTO `badges` VALUES ('2685', 'fb_ACH_GiftReceiver6');INSERT INTO `badges` VALUES ('2686', 'fb_ACH_GiftReceiver5');INSERT INTO `badges` VALUES ('2687', 'fb_ACH_GiftReceiver4');INSERT INTO `badges` VALUES ('2688', 'fb_ACH_GiftReceiver3');INSERT INTO `badges` VALUES ('2689', 'fb_ACH_GiftReceiver9');INSERT INTO `badges` VALUES ('2690', 'fb_ACH_GiftReceiver8');INSERT INTO `badges` VALUES ('2691', 'fb_ACH_GiftReceiver7');INSERT INTO `badges` VALUES ('2692', 'WH7_HHAU');INSERT INTO `badges` VALUES ('2693', 'Z26_HHUK');INSERT INTO `badges` VALUES ('2694', 'DS1_HHCA');INSERT INTO `badges` VALUES ('2695', 'ACH_Login10');INSERT INTO `badges` VALUES ('2696', 'fb_ACH_GiftReceiver1');INSERT INTO `badges` VALUES ('2697', 'fb_ACH_GiftReceiver2');INSERT INTO `badges` VALUES ('2698', 'uk170');INSERT INTO `badges` VALUES ('2699', 'DS1_HHAU');INSERT INTO `badges` VALUES ('2700', 'SF6_HHUK');INSERT INTO `badges` VALUES ('2701', 'EC2_HHSG');INSERT INTO `badges` VALUES ('2702', 'TC2_HHCA');INSERT INTO `badges` VALUES ('2703', 'Z65_HHUK');INSERT INTO `badges` VALUES ('2704', 'ACH_BattleBallTilesLocked1');INSERT INTO `badges` VALUES ('2705', 'DS6_HHSG');INSERT INTO `badges` VALUES ('2706', 'ACH_BattleBallTilesLocked2');INSERT INTO `badges` VALUES ('2707', 'ACH_BattleBallTilesLocked5');INSERT INTO `badges` VALUES ('2708', 'ACH_BattleBallTilesLocked6');INSERT INTO `badges` VALUES ('2709', 'ACH_BattleBallTilesLocked3');INSERT INTO `badges` VALUES ('2710', 'ACH_BattleBallTilesLocked4');INSERT INTO `badges` VALUES ('2711', 'ACH_BattleBallTilesLocked9');INSERT INTO `badges` VALUES ('2712', 'ACH_BattleBallTilesLocked8');INSERT INTO `badges` VALUES ('2713', 'ACH_BattleBallTilesLocked7');INSERT INTO `badges` VALUES ('2714', 'Z09_HHUK');INSERT INTO `badges` VALUES ('2715', 'ACH_PetRespectGiver5_HHCA');INSERT INTO `badges` VALUES ('2716', 'ACH_RegistrationDuration10');INSERT INTO `badges` VALUES ('2717', 'ACH_RegistrationDuration12');INSERT INTO `badges` VALUES ('2718', 'ACH_RegistrationDuration11');INSERT INTO `badges` VALUES ('2719', 'ACH_GamePlayed2');INSERT INTO `badges` VALUES ('2720', 'ACH_GamePlayed3');INSERT INTO `badges` VALUES ('2721', 'ACH_GamePlayed4');INSERT INTO `badges` VALUES ('2722', 'ACH_GamePlayed5');INSERT INTO `badges` VALUES ('2723', 'ACH_GamePlayed1');INSERT INTO `badges` VALUES ('2724', 'fb_ACH_SnowWarTotalScore');INSERT INTO `badges` VALUES ('2725', 'ACH_GamePlayed9');INSERT INTO `badges` VALUES ('2726', 'ACH_GamePlayed8');INSERT INTO `badges` VALUES ('2727', 'ACH_GamePlayed7');INSERT INTO `badges` VALUES ('2728', 'ACH_GamePlayed6');INSERT INTO `badges` VALUES ('2729', 'fb_ACH_VipParties3_Entry');INSERT INTO `badges` VALUES ('2730', 'GLD_HHUK');INSERT INTO `badges` VALUES ('2731', 'DN2');INSERT INTO `badges` VALUES ('2732', 'DN3');INSERT INTO `badges` VALUES ('2733', 'GRPAC');INSERT INTO `badges` VALUES ('2734', 'DN4');INSERT INTO `badges` VALUES ('2735', 'DN5');INSERT INTO `badges` VALUES ('2736', 'DN1');INSERT INTO `badges` VALUES ('2737', 'UKX_HHCA');INSERT INTO `badges` VALUES ('2738', 'fb_ACH_HorseJumping');INSERT INTO `badges` VALUES ('2739', '50S');INSERT INTO `badges` VALUES ('2740', 'DK009_HHCA');INSERT INTO `badges` VALUES ('2741', 'SU1_HHAU');INSERT INTO `badges` VALUES ('2742', 'DE159');INSERT INTO `badges` VALUES ('2743', 'MPS02');INSERT INTO `badges` VALUES ('2744', 'DE156');INSERT INTO `badges` VALUES ('2745', 'MPS01');INSERT INTO `badges` VALUES ('2746', 'HO1_HHUK');INSERT INTO `badges` VALUES ('2747', 'ACC_HHSG');INSERT INTO `badges` VALUES ('2748', 'UKE_HHUK');INSERT INTO `badges` VALUES ('2749', 'GLD_HHSG');INSERT INTO `badges` VALUES ('2750', 'ACH_AllTimeHotelPresence4_HHCA');INSERT INTO `badges` VALUES ('2751', 'BER01');INSERT INTO `badges` VALUES ('2752', 'DKA');INSERT INTO `badges` VALUES ('2753', 'UK7_HHUK');INSERT INTO `badges` VALUES ('2754', 'ACH_PetFeeding8_HHCA');INSERT INTO `badges` VALUES ('2755', 'RAR03');INSERT INTO `badges` VALUES ('2756', 'RAR04');INSERT INTO `badges` VALUES ('2757', 'WBL_HHAU');INSERT INTO `badges` VALUES ('2758', 'RAR01');INSERT INTO `badges` VALUES ('2759', 'RAR02');INSERT INTO `badges` VALUES ('2760', ' HWN09');INSERT INTO `badges` VALUES ('2761', 'HO1_HHSG');INSERT INTO `badges` VALUES ('2762', 'WBL_HHCA');INSERT INTO `badges` VALUES ('2763', 'SG002_HHSG');INSERT INTO `badges` VALUES ('2764', 'DE127');INSERT INTO `badges` VALUES ('2765', 'XM1_HHAU');INSERT INTO `badges` VALUES ('2766', 'YAP');INSERT INTO `badges` VALUES ('2767', 'DS7');INSERT INTO `badges` VALUES ('2768', 'XM1_HHCA');INSERT INTO `badges` VALUES ('2769', 'DS5');INSERT INTO `badges` VALUES ('2770', 'DS6');INSERT INTO `badges` VALUES ('2771', 'DK007');INSERT INTO `badges` VALUES ('2772', 'DS3');INSERT INTO `badges` VALUES ('2773', 'DS4');INSERT INTO `badges` VALUES ('2774', 'DK009');INSERT INTO `badges` VALUES ('2775', 'DS1');INSERT INTO `badges` VALUES ('2776', 'DS2');INSERT INTO `badges` VALUES ('2777', 'DS0');INSERT INTO `badges` VALUES ('2778', 'YAK');INSERT INTO `badges` VALUES ('2779', 'ACH_AvatarTags1');INSERT INTO `badges` VALUES ('2780', 'PIG01');INSERT INTO `badges` VALUES ('2781', 'NY124');INSERT INTO `badges` VALUES ('2782', 'TC1_HHCA');INSERT INTO `badges` VALUES ('2783', 'UK012_HHUK');INSERT INTO `badges` VALUES ('2784', 'TC1_HHAU');INSERT INTO `badges` VALUES ('2785', 'SF2_HHCA');INSERT INTO `badges` VALUES ('2786', ' AU012');INSERT INTO `badges` VALUES ('2787', 'HW1_HHUK');INSERT INTO `badges` VALUES ('2788', 'ACH_GiftReceiver10_HHCA');INSERT INTO `badges` VALUES ('2789', 'VA4_HHSG');INSERT INTO `badges` VALUES ('2790', 'ACH_MGM6_HHCA');INSERT INTO `badges` VALUES ('2791', 'UK034_HHUK');INSERT INTO `badges` VALUES ('2792', 'Z77_HHUK');INSERT INTO `badges` VALUES ('2793', 'DSX_HHUK');INSERT INTO `badges` VALUES ('2794', 'VipParties3_Top10');INSERT INTO `badges` VALUES ('2795', 'EUR03');INSERT INTO `badges` VALUES ('2796', 'EUR02');INSERT INTO `badges` VALUES ('2797', 'EUR01');INSERT INTO `badges` VALUES ('2798', 'HS01');INSERT INTO `badges` VALUES ('2799', 'SFF_HHSG');INSERT INTO `badges` VALUES ('2800', 'HS02');INSERT INTO `badges` VALUES ('2801', 'UK086_HHUK');INSERT INTO `badges` VALUES ('2802', 'CY3_HHSG');INSERT INTO `badges` VALUES ('2803', 'DT1');INSERT INTO `badges` VALUES ('2804', 'HW1_HHSG');INSERT INTO `badges` VALUES ('2805', 'NEJ_HHCA');INSERT INTO `badges` VALUES ('2806', 'CNV_HHSG');INSERT INTO `badges` VALUES ('2807', 'VA4_HHUK');INSERT INTO `badges` VALUES ('2808', 'ACH_GiftReceiver8_HHCA');INSERT INTO `badges` VALUES ('2809', 'MH1_HHCA');INSERT INTO `badges` VALUES ('2810', 'DSX');INSERT INTO `badges` VALUES ('2811', 'Z15_HHUK');INSERT INTO `badges` VALUES ('2812', 'DU2');INSERT INTO `badges` VALUES ('2813', 'DU1');INSERT INTO `badges` VALUES ('2814', 'DU3');INSERT INTO `badges` VALUES ('2815', 'UKC_HHUK');INSERT INTO `badges` VALUES ('2816', 'CY3_HHUK');INSERT INTO `badges` VALUES ('2817', 'WOM01');INSERT INTO `badges` VALUES ('2818', 'ACH_RoomDecoHosting');INSERT INTO `badges` VALUES ('2819', 'SG003_HHSG');INSERT INTO `badges` VALUES ('2820', 'DE013_HHUK');INSERT INTO `badges` VALUES ('2821', 'ACH_FreezePowerUp');INSERT INTO `badges` VALUES ('2822', 'USD_HHCA');INSERT INTO `badges` VALUES ('2823', 'MH1_HHAU');INSERT INTO `badges` VALUES ('2824', 'XXX');INSERT INTO `badges` VALUES ('2825', 'DN5_HHUK');INSERT INTO `badges` VALUES ('2826', 'HOT_HHUK');INSERT INTO `badges` VALUES ('2827', 'RA5_HHAU');INSERT INTO `badges` VALUES ('2828', 'UK038_HHUK');INSERT INTO `badges` VALUES ('2829', 'SAF04');INSERT INTO `badges` VALUES ('2830', 'SAF05');INSERT INTO `badges` VALUES ('2831', 'SAF02');INSERT INTO `badges` VALUES ('2832', 'SAF03');INSERT INTO `badges` VALUES ('2833', 'SAF01');INSERT INTO `badges` VALUES ('2834', 'SU1_HHCA');INSERT INTO `badges` VALUES ('2835', 'SFF_HHUK');INSERT INTO `badges` VALUES ('2836', 'GNO_HHSG');INSERT INTO `badges` VALUES ('2837', 'RA5_HHCA');INSERT INTO `badges` VALUES ('2838', 'SGD_HHSG');INSERT INTO `badges` VALUES ('2839', 'UK043_HHUK');INSERT INTO `badges` VALUES ('2840', 'ACH_RoomDecoHoleFurniCountRoom');INSERT INTO `badges` VALUES ('2841', 'WD006');INSERT INTO `badges` VALUES ('2842', 'RUN02_HHSG');INSERT INTO `badges` VALUES ('2843', 'FAS01');INSERT INTO `badges` VALUES ('2844', 'NEG_HHCA');INSERT INTO `badges` VALUES ('2845', 'FAS03');INSERT INTO `badges` VALUES ('2846', 'FAS02');INSERT INTO `badges` VALUES ('2847', 'DN3_HHSG');INSERT INTO `badges` VALUES ('2848', 'FAS04');INSERT INTO `badges` VALUES ('2849', 'DN5_HHSG');INSERT INTO `badges` VALUES ('2850', 'ACH_MGM9_HHCA');INSERT INTO `badges` VALUES ('2851', 'GLD_HHAU');INSERT INTO `badges` VALUES ('2852', 'ACH_SnowWarWeeklyTopTen');INSERT INTO `badges` VALUES ('2853', 'HO1_HHCA');INSERT INTO `badges` VALUES ('2854', 'Z66_HHUK');INSERT INTO `badges` VALUES ('2855', 'SB1_HHUK');INSERT INTO `badges` VALUES ('2856', 'XMC');INSERT INTO `badges` VALUES ('2857', 'XMA');INSERT INTO `badges` VALUES ('2858', 'XMB');INSERT INTO `badges` VALUES ('2859', 'GLD_HHCA');INSERT INTO `badges` VALUES ('2860', 'XM9');INSERT INTO `badges` VALUES ('2861', 'XM8');INSERT INTO `badges` VALUES ('2862', 'XM7');INSERT INTO `badges` VALUES ('2863', 'XM6');INSERT INTO `badges` VALUES ('2864', 'DN3_HHUK');INSERT INTO `badges` VALUES ('2865', 'XM5');INSERT INTO `badges` VALUES ('2866', 'XM4');INSERT INTO `badges` VALUES ('2867', 'XM3');INSERT INTO `badges` VALUES ('2868', 'XM2');INSERT INTO `badges` VALUES ('2869', 'XM1');INSERT INTO `badges` VALUES ('2870', 'HOL03');INSERT INTO `badges` VALUES ('2871', 'TWIQ3_HHAU');INSERT INTO `badges` VALUES ('2872', 'HOL02');INSERT INTO `badges` VALUES ('2873', 'ACH_BattleBallPlayer');INSERT INTO `badges` VALUES ('2874', 'BR013_HHCA');INSERT INTO `badges` VALUES ('2875', 'Z42_HHUK');INSERT INTO `badges` VALUES ('2876', 'WH8_HHSG');INSERT INTO `badges` VALUES ('2877', 'ACH_MusicCollector');INSERT INTO `badges` VALUES ('2878', 'TWIQ3_HHCA');INSERT INTO `badges` VALUES ('2879', 'al_ACH_RoomDecoWallpaper');INSERT INTO `badges` VALUES ('2880', 'SF2_HHSG');INSERT INTO `badges` VALUES ('2881', 'BBBH1');INSERT INTO `badges` VALUES ('2882', 'WH8_HHUK');INSERT INTO `badges` VALUES ('2883', 'BBBH2');INSERT INTO `badges` VALUES ('2884', 'UK035_HHUK');INSERT INTO `badges` VALUES ('2885', 'ACH_RespectEarned8_HHCA');INSERT INTO `badges` VALUES ('2886', 'SF2_HHUK');INSERT INTO `badges` VALUES ('2887', 'NEJ_HHSG');INSERT INTO `badges` VALUES ('2888', 'ACH_PetFeeding3_HHCA');INSERT INTO `badges` VALUES ('2889', 'ACH_GamePlayed7_HHCA');INSERT INTO `badges` VALUES ('2890', 'SFF_HHCA');INSERT INTO `badges` VALUES ('2891', 'KIR_HHSG');INSERT INTO `badges` VALUES ('2892', 'ACH_Login3_HHCA');INSERT INTO `badges` VALUES ('2893', 'HOP01_HHSG');INSERT INTO `badges` VALUES ('2894', 'VA4_HHCA');INSERT INTO `badges` VALUES ('2895', 'CY3_HHAU');INSERT INTO `badges` VALUES ('2896', 'NEJ_HHUK');INSERT INTO `badges` VALUES ('2897', 'KIR_HHUK');INSERT INTO `badges` VALUES ('2898', 'KH2_HHCA');INSERT INTO `badges` VALUES ('2899', 'HOP01_HHUK');INSERT INTO `badges` VALUES ('2900', 'CY3_HHCA');INSERT INTO `badges` VALUES ('2901', 'UKJ_HHUK');INSERT INTO `badges` VALUES ('2902', 'ACH_FireworksCharger');INSERT INTO `badges` VALUES ('2903', 'fb_ACH_TerrierBreeder');INSERT INTO `badges` VALUES ('2904', 'fb_ACH_GamePlayerExperience3');INSERT INTO `badges` VALUES ('2905', 'fb_ACH_GamePlayerExperience4');INSERT INTO `badges` VALUES ('2906', 'DK2');INSERT INTO `badges` VALUES ('2907', 'fb_ACH_GamePlayerExperience1');INSERT INTO `badges` VALUES ('2908', 'fb_ACH_GamePlayerExperience2');INSERT INTO `badges` VALUES ('2909', 'fb_ACH_GamePlayerExperience7');INSERT INTO `badges` VALUES ('2910', 'fb_ACH_GamePlayerExperience8');INSERT INTO `badges` VALUES ('2911', 'DK6');INSERT INTO `badges` VALUES ('2912', 'fb_ACH_GamePlayerExperience5');INSERT INTO `badges` VALUES ('2913', 'DK5');INSERT INTO `badges` VALUES ('2914', 'fb_ACH_GamePlayerExperience6');INSERT INTO `badges` VALUES ('2915', 'DK8');INSERT INTO `badges` VALUES ('2916', 'fb_ACH_GamePlayerExperience9');INSERT INTO `badges` VALUES ('2917', 'DK9');INSERT INTO `badges` VALUES ('2918', 'RA5_HHUK');INSERT INTO `badges` VALUES ('2919', 'fb_ACH_AIPerformanceVote10');INSERT INTO `badges` VALUES ('2920', 'DJ1');INSERT INTO `badges` VALUES ('2921', 'SU1_HHUK');INSERT INTO `badges` VALUES ('2922', 'DJ3');INSERT INTO `badges` VALUES ('2923', 'DJ2');INSERT INTO `badges` VALUES ('2924', 'XMAS2');INSERT INTO `badges` VALUES ('2925', 'XMAS1');INSERT INTO `badges` VALUES ('2926', 'XMAS0');INSERT INTO `badges` VALUES ('2927', 'RA5_HHSG');INSERT INTO `badges` VALUES ('2928', 'VA4_HHAU');INSERT INTO `badges` VALUES ('2929', 'SF000');INSERT INTO `badges` VALUES ('2930', 'SF001');INSERT INTO `badges` VALUES ('2931', 'SF002');INSERT INTO `badges` VALUES ('2932', 'ACH_AllTimeHotelPresence5_HHCA');INSERT INTO `badges` VALUES ('2933', 'ACH_SafetyQuizGraduate');INSERT INTO `badges` VALUES ('2934', 'SU1_HHSG');INSERT INTO `badges` VALUES ('2935', 'fb_ACH_Login3');INSERT INTO `badges` VALUES ('2936', 'fb_ACH_Login4');INSERT INTO `badges` VALUES ('2937', 'fb_ACH_Login1');INSERT INTO `badges` VALUES ('2938', 'fb_ACH_Login2');INSERT INTO `badges` VALUES ('2939', 'USV01');INSERT INTO `badges` VALUES ('2940', 'BR015_HHCA');INSERT INTO `badges` VALUES ('2941', 'fb_ACH_SpeedwayRaces');INSERT INTO `badges` VALUES ('2942', 'fb_ACH_Login8');INSERT INTO `badges` VALUES ('2943', 'fb_ACH_Login7');INSERT INTO `badges` VALUES ('2944', 'fb_ACH_Login6');INSERT INTO `badges` VALUES ('2945', 'fb_ACH_Login5');INSERT INTO `badges` VALUES ('2946', 'fb_ACH_Citizenship');INSERT INTO `badges` VALUES ('2947', 'fb_ACH_Login9');INSERT INTO `badges` VALUES ('2948', 'ACH_SummerQuestCompleted');INSERT INTO `badges` VALUES ('2949', 'DN5_HHAU');INSERT INTO `badges` VALUES ('2950', 'Football_ES');INSERT INTO `badges` VALUES ('2951', 'RUN02_HHCA');INSERT INTO `badges` VALUES ('2952', 'ACH_GamePlayed2_HHCA');INSERT INTO `badges` VALUES ('2953', 'DN3_HHCA');INSERT INTO `badges` VALUES ('2954', 'DN5_HHCA');INSERT INTO `badges` VALUES ('2955', 'NEG_HHSG');INSERT INTO `badges` VALUES ('2956', 'BR015_HHAU');INSERT INTO `badges` VALUES ('2957', 'RUN02_HHAU');INSERT INTO `badges` VALUES ('2958', 'BR071');INSERT INTO `badges` VALUES ('2959', 'BR075');INSERT INTO `badges` VALUES ('2960', 'fb_FMATIC_COMP');INSERT INTO `badges` VALUES ('2961', 'ACH_RegistrationDuration1');INSERT INTO `badges` VALUES ('2962', 'ACH_RegistrationDuration4');INSERT INTO `badges` VALUES ('2963', 'ACH_RegistrationDuration5');INSERT INTO `badges` VALUES ('2964', 'ESD');INSERT INTO `badges` VALUES ('2965', 'ACH_RegistrationDuration2');INSERT INTO `badges` VALUES ('2966', 'ACH_RegistrationDuration3');INSERT INTO `badges` VALUES ('2967', 'ACH_RegistrationDuration8');INSERT INTO `badges` VALUES ('2968', 'ACH_RegistrationDuration9');INSERT INTO `badges` VALUES ('2969', 'ACH_RegistrationDuration6');INSERT INTO `badges` VALUES ('2970', 'ACH_RegistrationDuration7');INSERT INTO `badges` VALUES ('2971', 'DSX_HHCA');INSERT INTO `badges` VALUES ('2972', 'fb_ACH_FireworksCharger');INSERT INTO `badges` VALUES ('2973', 'Football_IT');INSERT INTO `badges` VALUES ('2974', 'DN3_HHAU');INSERT INTO `badges` VALUES ('2975', 'HQ009');INSERT INTO `badges` VALUES ('2976', 'HQ006');INSERT INTO `badges` VALUES ('2977', 'HQ005');INSERT INTO `badges` VALUES ('2978', 'HQ008');INSERT INTO `badges` VALUES ('2979', 'HQ007');INSERT INTO `badges` VALUES ('2980', 'ESW');INSERT INTO `badges` VALUES ('2981', 'HQ002');INSERT INTO `badges` VALUES ('2982', 'HQ001');INSERT INTO `badges` VALUES ('2983', 'HQ004');INSERT INTO `badges` VALUES ('2984', 'ESX');INSERT INTO `badges` VALUES ('2985', 'HQ003');INSERT INTO `badges` VALUES ('2986', 'GLTCH');INSERT INTO `badges` VALUES ('2987', 'DSX_HHAU');INSERT INTO `badges` VALUES ('2988', 'ACH_ValentinesQuestCompleted7');INSERT INTO `badges` VALUES ('2989', 'ACH_ValentinesQuestCompleted8');INSERT INTO `badges` VALUES ('2990', 'ACH_ValentinesQuestCompleted9');INSERT INTO `badges` VALUES ('2991', 'MMC_HHAU');INSERT INTO `badges` VALUES ('2992', 'GM4_HHCA');INSERT INTO `badges` VALUES ('2993', 'ACH_SpeedwayDucks');INSERT INTO `badges` VALUES ('2994', 'HW1_HHAU');INSERT INTO `badges` VALUES ('2995', 'SB6_HHSG');INSERT INTO `badges` VALUES ('2996', 'ACH_ValentinesQuestCompleted3');INSERT INTO `badges` VALUES ('2997', 'ACH_ValentinesQuestCompleted4');INSERT INTO `badges` VALUES ('2998', 'ACH_ValentinesQuestCompleted5');INSERT INTO `badges` VALUES ('2999', 'ACH_ValentinesQuestCompleted6');INSERT INTO `badges` VALUES ('3000', 'ACH_ValentinesQuestCompleted1');INSERT INTO `badges` VALUES ('3001', 'ACH_ValentinesQuestCompleted2');INSERT INTO `badges` VALUES ('3002', 'MMC_HHCA');INSERT INTO `badges` VALUES ('3003', 'EVB');INSERT INTO `badges` VALUES ('3004', 'fb_ACH_VIPQuest');INSERT INTO `badges` VALUES ('3005', 'UK089_HHUK');INSERT INTO `badges` VALUES ('3006', 'NED_HHSG');INSERT INTO `badges` VALUES ('3007', 'WTM');INSERT INTO `badges` VALUES ('3008', 'GLK_HHCA');INSERT INTO `badges` VALUES ('3009', 'WIRD0');INSERT INTO `badges` VALUES ('3010', 'EXB');INSERT INTO `badges` VALUES ('3011', 'WIRD1');INSERT INTO `badges` VALUES ('3012', 'TWIC1_HHUK');INSERT INTO `badges` VALUES ('3013', 'EXH');INSERT INTO `badges` VALUES ('3014', 'EXE');INSERT INTO `badges` VALUES ('3015', 'Z38_HHUK');INSERT INTO `badges` VALUES ('3016', 'fb_ACH_SpeedwayDucks');INSERT INTO `badges` VALUES ('3017', 'NYR09');INSERT INTO `badges` VALUES ('3018', 'NYR05');INSERT INTO `badges` VALUES ('3019', 'NYR06');INSERT INTO `badges` VALUES ('3020', 'NYR07');INSERT INTO `badges` VALUES ('3021', 'NYR08');INSERT INTO `badges` VALUES ('3022', 'UK065_HHUK');INSERT INTO `badges` VALUES ('3023', 'NYR03');INSERT INTO `badges` VALUES ('3024', 'NYR04');INSERT INTO `badges` VALUES ('3025', 'NYR00');INSERT INTO `badges` VALUES ('3026', 'Football_PT');INSERT INTO `badges` VALUES ('3027', 'ACH_PetRespectGiver2_HHCA');INSERT INTO `badges` VALUES ('3028', 'fb_HabboFameComp');INSERT INTO `badges` VALUES ('3029', 'SF3_HHCA');INSERT INTO `badges` VALUES ('3030', 'OILED');INSERT INTO `badges` VALUES ('3031', 'ACH_MGM1_HHCA');INSERT INTO `badges` VALUES ('3032', 'TWIC1_HHSG');INSERT INTO `badges` VALUES ('3033', 'UKQ_HHUK');INSERT INTO `badges` VALUES ('3034', 'GLK_HHAU');INSERT INTO `badges` VALUES ('3035', 'UK009_HHUK');INSERT INTO `badges` VALUES ('3036', 'SFK_HHAU');INSERT INTO `badges` VALUES ('3037', 'DS0_HHSG');INSERT INTO `badges` VALUES ('3038', 'ACH_SnowWarWeeklyBest');INSERT INTO `badges` VALUES ('3039', 'ACH_PetLover10_HHCA');INSERT INTO `badges` VALUES ('3040', 'ACC_HHAU');INSERT INTO `badges` VALUES ('3041', 'UK060_HHUK');INSERT INTO `badges` VALUES ('3042', 'Z37_HHUK');INSERT INTO `badges` VALUES ('3043', 'UK072_HHUK');INSERT INTO `badges` VALUES ('3044', 'ACH_RoomEntry5_HHCA');INSERT INTO `badges` VALUES ('3045', 'MDMWW_HHCA');INSERT INTO `badges` VALUES ('3046', 'UKX_HHUK');INSERT INTO `badges` VALUES ('3047', 'ACH_VipClub5_HHCA');INSERT INTO `badges` VALUES ('3048', 'ACC_HHCA');INSERT INTO `badges` VALUES ('3049', 'ACH_AIPerformanceVote10');INSERT INTO `badges` VALUES ('3050', 'TC1_HHUK');INSERT INTO `badges` VALUES ('3051', 'ACH_GiftGiver1');INSERT INTO `badges` VALUES ('3052', 'ACH_GiftGiver2');INSERT INTO `badges` VALUES ('3053', 'ACH_GiftGiver3');INSERT INTO `badges` VALUES ('3054', 'ACH_GiftGiver4');INSERT INTO `badges` VALUES ('3055', 'ACH_GiftGiver5');INSERT INTO `badges` VALUES ('3056', 'ACH_GiftGiver6');INSERT INTO `badges` VALUES ('3057', 'ACH_GiftGiver7');INSERT INTO `badges` VALUES ('3058', 'ACH_GiftGiver8');INSERT INTO `badges` VALUES ('3059', 'ACH_GiftGiver9');INSERT INTO `badges` VALUES ('3060', 'fb_ACH_NotesReceived');INSERT INTO `badges` VALUES ('3061', 'UKN_HHUK');INSERT INTO `badges` VALUES ('3062', 'EC5');INSERT INTO `badges` VALUES ('3063', 'EC4');INSERT INTO `badges` VALUES ('3064', 'EC3');INSERT INTO `badges` VALUES ('3065', 'EC2');INSERT INTO `badges` VALUES ('3066', 'EC1');INSERT INTO `badges` VALUES ('3067', 'HabboFameComp_Top100');INSERT INTO `badges` VALUES ('3068', 'ACH_RoomEntry3_HHCA');INSERT INTO `badges` VALUES ('3069', 'al_ACH_RbBunnyTag');INSERT INTO `badges` VALUES ('3070', 'UK007_HHUK');INSERT INTO `badges` VALUES ('3071', 'DSX_HHSG');INSERT INTO `badges` VALUES ('3072', 'ACH_MGM3_HHCA');INSERT INTO `badges` VALUES ('3073', 'EAR');INSERT INTO `badges` VALUES ('3074', 'TC1_HHSG');INSERT INTO `badges` VALUES ('3075', 'EAB');INSERT INTO `badges` VALUES ('3076', 'MDMWW_HHAU');INSERT INTO `badges` VALUES ('3077', 'UKM_HHUK');INSERT INTO `badges` VALUES ('3078', 'FMATIC_COMP_TOP100');INSERT INTO `badges` VALUES ('3079', 'fb_ACH_MonsterPlantShapeCollector');INSERT INTO `badges` VALUES ('3080', 'fb_StarsRoom2_Top100');INSERT INTO `badges` VALUES ('3081', 'UKY_HHUK');INSERT INTO `badges` VALUES ('3082', 'BR130');INSERT INTO `badges` VALUES ('3083', 'WD4');INSERT INTO `badges` VALUES ('3084', 'WD3');INSERT INTO `badges` VALUES ('3085', 'WD2');INSERT INTO `badges` VALUES ('3086', 'WD1');INSERT INTO `badges` VALUES ('3087', 'WD0');INSERT INTO `badges` VALUES ('3088', 'AWSM1_HHSG');INSERT INTO `badges` VALUES ('3089', 'FRI01');INSERT INTO `badges` VALUES ('3090', 'GLK_HHUK');INSERT INTO `badges` VALUES ('3091', 'fb_ACH_GamePlayerExperience19');INSERT INTO `badges` VALUES ('3092', 'fb_ACH_GamePlayerExperience18');INSERT INTO `badges` VALUES ('3093', 'fb_ACH_GamePlayerExperience17');INSERT INTO `badges` VALUES ('3094', 'fb_ACH_GamePlayerExperience16');INSERT INTO `badges` VALUES ('3095', 'fb_ACH_GamePlayerExperience15');INSERT INTO `badges` VALUES ('3096', 'fb_ACH_GamePlayerExperience14');INSERT INTO `badges` VALUES ('3097', 'WBL');INSERT INTO `badges` VALUES ('3098', 'fb_ACH_GamePlayerExperience13');INSERT INTO `badges` VALUES ('3099', 'fb_ACH_GamePlayerExperience12');INSERT INTO `badges` VALUES ('3100', 'fb_ACH_GamePlayerExperience11');INSERT INTO `badges` VALUES ('3101', 'fb_ACH_GamePlayerExperience10');INSERT INTO `badges` VALUES ('3102', 'ACH_BasicClub5_HHCA');INSERT INTO `badges` VALUES ('3103', 'MMC_HHSG');INSERT INTO `badges` VALUES ('3104', 'fb_ACH_GamePlayerExperience20');INSERT INTO `badges` VALUES ('3105', 'UKG_HHUK');INSERT INTO `badges` VALUES ('3106', 'HW1_HHCA');INSERT INTO `badges` VALUES ('3107', 'ACH_GiftReceiver2_HHCA');INSERT INTO `badges` VALUES ('3108', 'fb_ACH_RegistrationDuration1');INSERT INTO `badges` VALUES ('3109', 'fb_ACH_RegistrationDuration2');INSERT INTO `badges` VALUES ('3110', 'fb_ACH_RegistrationDuration3');INSERT INTO `badges` VALUES ('3111', 'fb_ACH_RegistrationDuration4');INSERT INTO `badges` VALUES ('3112', 'fb_ACH_RegistrationDuration5');INSERT INTO `badges` VALUES ('3113', 'fb_ACH_RegistrationDuration6');INSERT INTO `badges` VALUES ('3114', 'fb_ACH_RegistrationDuration7');INSERT INTO `badges` VALUES ('3115', 'fb_ACH_RegistrationDuration8');INSERT INTO `badges` VALUES ('3116', 'fb_ACH_RegistrationDuration9');INSERT INTO `badges` VALUES ('3117', 'WAR');INSERT INTO `badges` VALUES ('3118', 'EHR');INSERT INTO `badges` VALUES ('3119', 'GLK_HHSG');INSERT INTO `badges` VALUES ('3120', 'CNY03_HHAU');INSERT INTO `badges` VALUES ('3121', '1goal');INSERT INTO `badges` VALUES ('3122', 'AC2_HHUK');INSERT INTO `badges` VALUES ('3123', 'GNO_HHAU');INSERT INTO `badges` VALUES ('3124', 'MMC_HHUK');INSERT INTO `badges` VALUES ('3125', 'WH7');INSERT INTO `badges` VALUES ('3126', 'WH8');INSERT INTO `badges` VALUES ('3127', 'WH5');INSERT INTO `badges` VALUES ('3128', 'WH6');INSERT INTO `badges` VALUES ('3129', 'WH3');INSERT INTO `badges` VALUES ('3130', 'WH4');INSERT INTO `badges` VALUES ('3131', 'WH1');INSERT INTO `badges` VALUES ('3132', 'XM10D');INSERT INTO `badges` VALUES ('3133', 'WH2');INSERT INTO `badges` VALUES ('3134', 'XM10E');INSERT INTO `badges` VALUES ('3135', 'XM10C');INSERT INTO `badges` VALUES ('3136', 'XM10A');INSERT INTO `badges` VALUES ('3137', 'HX4_HHCA');INSERT INTO `badges` VALUES ('3138', 'Z21_HHUK');INSERT INTO `badges` VALUES ('3139', 'UK004_HHUK');INSERT INTO `badges` VALUES ('3140', 'CNY03_HHCA');INSERT INTO `badges` VALUES ('3141', 'JF4_HHCA');INSERT INTO `badges` VALUES ('3142', 'HX4_HHAU');INSERT INTO `badges` VALUES ('3143', 'SF3_HHSG');INSERT INTO `badges` VALUES ('3144', 'BR012_HHCA');INSERT INTO `badges` VALUES ('3145', 'DS0_HHAU');INSERT INTO `badges` VALUES ('3146', 'DS0_HHCA');INSERT INTO `badges` VALUES ('3147', 'ACH_GiftGiver10_HHCA');INSERT INTO `badges` VALUES ('3148', 'EHR_HHSG');INSERT INTO `badges` VALUES ('3149', 'NOL01');INSERT INTO `badges` VALUES ('3150', 'SF3_HHUK');INSERT INTO `badges` VALUES ('3151', '70S');INSERT INTO `badges` VALUES ('3152', 'fb_ACH_BaseJumpDaysPlayed');INSERT INTO `badges` VALUES ('3153', 'HW09F_HHAU');INSERT INTO `badges` VALUES ('3154', 'NEH_HHCA');INSERT INTO `badges` VALUES ('3155', 'fb_ACH_SpendPeanuts');INSERT INTO `badges` VALUES ('3156', 'XM3_HHCA');INSERT INTO `badges` VALUES ('3157', 'ACH_TagC13');INSERT INTO `badges` VALUES ('3158', 'XM3_HHAU');INSERT INTO `badges` VALUES ('3159', 'ACH_TagC14');INSERT INTO `badges` VALUES ('3160', 'ACH_TagC15');INSERT INTO `badges` VALUES ('3161', 'ACH_TagC16');INSERT INTO `badges` VALUES ('3162', 'RA4_HHSG');INSERT INTO `badges` VALUES ('3163', 'ACH_TagC10');INSERT INTO `badges` VALUES ('3164', 'ACH_TagC11');INSERT INTO `badges` VALUES ('3165', 'ACH_TagC12');INSERT INTO `badges` VALUES ('3166', 'FW1');INSERT INTO `badges` VALUES ('3167', 'FW2');INSERT INTO `badges` VALUES ('3168', 'VA2_HHUK');INSERT INTO `badges` VALUES ('3169', 'Hween12_Top10');INSERT INTO `badges` VALUES ('3170', 'TWIC2_HHCA');INSERT INTO `badges` VALUES ('3171', 'CAG_HHCA');INSERT INTO `badges` VALUES ('3172', 'SW1_HHAU');INSERT INTO `badges` VALUES ('3173', 'ST5_HHUK');INSERT INTO `badges` VALUES ('3174', 'ACH_RoomCompetitionVoter');INSERT INTO `badges` VALUES ('3175', 'MS6_HHSG');INSERT INTO `badges` VALUES ('3176', 'RA4_HHUK');INSERT INTO `badges` VALUES ('3177', 'WTM_HHUK');INSERT INTO `badges` VALUES ('3178', 'ACH_Login7_HHCA');INSERT INTO `badges` VALUES ('3179', 'VA8_HHCA');INSERT INTO `badges` VALUES ('3180', 'SW1_HHCA');INSERT INTO `badges` VALUES ('3181', 'FR9');INSERT INTO `badges` VALUES ('3182', 'FR7');INSERT INTO `badges` VALUES ('3183', 'FRG');INSERT INTO `badges` VALUES ('3184', 'FRE');INSERT INTO `badges` VALUES ('3185', 'ACH_FreezeQuestCompleted10');INSERT INTO `badges` VALUES ('3186', 'RLX02_HHSG');INSERT INTO `badges` VALUES ('3187', 'fb_ACH_Xmas11QuestCompleted');INSERT INTO `badges` VALUES ('3188', 'FRT');INSERT INTO `badges` VALUES ('3189', 'UK036_HHUK');INSERT INTO `badges` VALUES ('3190', 'ACMI');INSERT INTO `badges` VALUES ('3191', 'ACH_TagC20');INSERT INTO `badges` VALUES ('3192', 'ACH_TagC19');INSERT INTO `badges` VALUES ('3193', 'ACH_TagC17');INSERT INTO `badges` VALUES ('3194', 'ACH_TagC18');INSERT INTO `badges` VALUES ('3195', 'ACH_Motto1');INSERT INTO `badges` VALUES ('3196', 'ACH_FriendListSize');INSERT INTO `badges` VALUES ('3197', 'VA2_HHSG');INSERT INTO `badges` VALUES ('3198', 'EHR_HHAU');INSERT INTO `badges` VALUES ('3199', 'ACH_TraderPass1_HHCA');INSERT INTO `badges` VALUES ('3200', 'LC3_HHCA');INSERT INTO `badges` VALUES ('3201', 'SFL_HHAU');INSERT INTO `badges` VALUES ('3202', 'ACH_PetLover3_HHCA');INSERT INTO `badges` VALUES ('3203', 'WH2_HHAU');INSERT INTO `badges` VALUES ('3204', 'fb_ACH_GameAuthorExperience20');INSERT INTO `badges` VALUES ('3205', 'GM2_HHCA');INSERT INTO `badges` VALUES ('3206', 'AC5_HHSG');INSERT INTO `badges` VALUES ('3207', 'ACH_SkateBoardJump');INSERT INTO `badges` VALUES ('3208', 'RUN05_HHCA');INSERT INTO `badges` VALUES ('3209', 'fb_ACH_TagC20');INSERT INTO `badges` VALUES ('3210', 'GA1');INSERT INTO `badges` VALUES ('3211', 'Z78_HHUK');INSERT INTO `badges` VALUES ('3212', 'WH2_HHCA');INSERT INTO `badges` VALUES ('3213', 'EHR_HHCA');INSERT INTO `badges` VALUES ('3214', 'HX1_HHAU');INSERT INTO `badges` VALUES ('3215', 'HX1_HHCA');INSERT INTO `badges` VALUES ('3216', 'VA8_HHAU');INSERT INTO `badges` VALUES ('3217', 'fb_ACH_TagC11');INSERT INTO `badges` VALUES ('3218', 'fb_ACH_TagC10');INSERT INTO `badges` VALUES ('3219', 'fb_ACH_TagC13');INSERT INTO `badges` VALUES ('3220', 'fb_ACH_TagC12');INSERT INTO `badges` VALUES ('3221', 'ACH_BaseJumpMissile');INSERT INTO `badges` VALUES ('3222', 'ST4_HHUK');INSERT INTO `badges` VALUES ('3223', 'AC3_HHAU');INSERT INTO `badges` VALUES ('3224', 'Z57_HHUK');INSERT INTO `badges` VALUES ('3225', 'fb_ACH_TagC14');INSERT INTO `badges` VALUES ('3226', 'fb_ACH_TagC15');INSERT INTO `badges` VALUES ('3227', 'fb_ACH_TagC16');INSERT INTO `badges` VALUES ('3228', 'fb_ACH_TagC17');INSERT INTO `badges` VALUES ('3229', 'fb_ACH_TagC18');INSERT INTO `badges` VALUES ('3230', 'fb_ACH_TagC19');INSERT INTO `badges` VALUES ('3231', 'UK048_HHUK');INSERT INTO `badges` VALUES ('3232', 'fb_ACH_GameAuthorExperience19');INSERT INTO `badges` VALUES ('3233', 'fb_ACH_GameAuthorExperience18');INSERT INTO `badges` VALUES ('3234', 'fb_ACH_GameAuthorExperience17');INSERT INTO `badges` VALUES ('3235', 'fb_ACH_GameAuthorExperience16');INSERT INTO `badges` VALUES ('3236', 'fb_ACH_GameAuthorExperience10');INSERT INTO `badges` VALUES ('3237', 'fb_ACH_GameAuthorExperience11');INSERT INTO `badges` VALUES ('3238', 'fb_ACH_GameAuthorExperience14');INSERT INTO `badges` VALUES ('3239', 'CNY03_HHSG');INSERT INTO `badges` VALUES ('3240', 'fb_ACH_GameAuthorExperience15');INSERT INTO `badges` VALUES ('3241', 'fb_ACH_GameAuthorExperience12');INSERT INTO `badges` VALUES ('3242', 'fb_ACH_GameAuthorExperience13');INSERT INTO `badges` VALUES ('3243', 'AC2_HHAU');INSERT INTO `badges` VALUES ('3244', 'UK6_HHUK');INSERT INTO `badges` VALUES ('3245', 'fb_ACH_snowBoardBuild');INSERT INTO `badges` VALUES ('3246', 'Z19_HHUK');INSERT INTO `badges` VALUES ('3247', 'Z67_HHUK');INSERT INTO `badges` VALUES ('3248', 'AC2_HHCA');INSERT INTO `badges` VALUES ('3249', 'TWIC2_HHSG');INSERT INTO `badges` VALUES ('3250', 'WH4_HHSG');INSERT INTO `badges` VALUES ('3251', 'fb_ACH_HabbosVsWildQuestCompleted');INSERT INTO `badges` VALUES ('3252', 'fb_ACH_RegistrationDuration20');INSERT INTO `badges` VALUES ('3253', 'Z51_HHUK');INSERT INTO `badges` VALUES ('3254', 'EGG01');INSERT INTO `badges` VALUES ('3255', 'EGG02');INSERT INTO `badges` VALUES ('3256', 'UK079_HHCA');INSERT INTO `badges` VALUES ('3257', 'AC9_HHUK');INSERT INTO `badges` VALUES ('3258', 'fb_ACH_RegistrationDuration19');INSERT INTO `badges` VALUES ('3259', 'DN4_HHUK');INSERT INTO `badges` VALUES ('3260', 'fb_ACH_RegistrationDuration18');INSERT INTO `badges` VALUES ('3261', 'fb_ACH_RegistrationDuration15');INSERT INTO `badges` VALUES ('3262', 'fb_ACH_RegistrationDuration14');INSERT INTO `badges` VALUES ('3263', 'fb_ACH_RegistrationDuration17');INSERT INTO `badges` VALUES ('3264', 'fb_ACH_RegistrationDuration16');INSERT INTO `badges` VALUES ('3265', 'fb_ACH_RegistrationDuration11');INSERT INTO `badges` VALUES ('3266', 'StarsRoom2');INSERT INTO `badges` VALUES ('3267', 'fb_ACH_RegistrationDuration10');INSERT INTO `badges` VALUES ('3268', 'fb_ACH_RegistrationDuration13');INSERT INTO `badges` VALUES ('3269', 'fb_ACH_RegistrationDuration12');INSERT INTO `badges` VALUES ('3270', 'AC5_HHUK');INSERT INTO `badges` VALUES ('3271', 'Z67_HHSG');INSERT INTO `badges` VALUES ('3272', 'EGG08');INSERT INTO `badges` VALUES ('3273', 'FFLL8');INSERT INTO `badges` VALUES ('3274', 'W25');INSERT INTO `badges` VALUES ('3275', 'EGG06');INSERT INTO `badges` VALUES ('3276', 'EGG05');INSERT INTO `badges` VALUES ('3277', 'EGG04');INSERT INTO `badges` VALUES ('3278', 'EGG03');INSERT INTO `badges` VALUES ('3279', 'FFLL7');INSERT INTO `badges` VALUES ('3280', 'LC7_HHAU');INSERT INTO `badges` VALUES ('3281', 'WH4_HHUK');INSERT INTO `badges` VALUES ('3282', 'Z25_HHUK');INSERT INTO `badges` VALUES ('3283', 'EGG14');INSERT INTO `badges` VALUES ('3284', 'fb_StarsRoom');INSERT INTO `badges` VALUES ('3285', 'FFF');INSERT INTO `badges` VALUES ('3286', 'fb_StarsRoom2');INSERT INTO `badges` VALUES ('3287', 'ACH_MGM2_HHCA');INSERT INTO `badges` VALUES ('3288', 'SB6_HHAU');INSERT INTO `badges` VALUES ('3289', 'AC9_HHSG');INSERT INTO `badges` VALUES ('3290', 'FF2');INSERT INTO `badges` VALUES ('3291', 'BBBH2_HHSG');INSERT INTO `badges` VALUES ('3292', 'NEB_HHSG');INSERT INTO `badges` VALUES ('3293', 'TWIC2_HHUK');INSERT INTO `badges` VALUES ('3294', 'XM3_HHUK');INSERT INTO `badges` VALUES ('3295', 'ACH_RespectGiven10');INSERT INTO `badges` VALUES ('3296', 'MS6_HHAU');INSERT INTO `badges` VALUES ('3297', 'ACH_PetLevelUp9_HHCA');INSERT INTO `badges` VALUES ('3298', 'ST2_HHUK');INSERT INTO `badges` VALUES ('3299', 'VipParties2_Top10');INSERT INTO `badges` VALUES ('3300', 'ACH_MonsterPlantColorCollector');INSERT INTO `badges` VALUES ('3301', 'LC3_HHUK');INSERT INTO `badges` VALUES ('3302', 'NEB_HHUK');INSERT INTO `badges` VALUES ('3303', 'CAI_HHCA');INSERT INTO `badges` VALUES ('3304', 'FAN');INSERT INTO `badges` VALUES ('3305', 'rts22');INSERT INTO `badges` VALUES ('3306', 'USF_HHCA');INSERT INTO `badges` VALUES ('3307', 'MS6_HHCA');INSERT INTO `badges` VALUES ('3308', 'HW09F_HHSG');INSERT INTO `badges` VALUES ('3309', 'VIP');INSERT INTO `badges` VALUES ('3310', 'LC3_HHSG');INSERT INTO `badges` VALUES ('3311', 'SG4_HHSG');INSERT INTO `badges` VALUES ('3312', 'SFL_HHSG');INSERT INTO `badges` VALUES ('3313', 'GLG_HHAU');INSERT INTO `badges` VALUES ('3314', 'ACH_LympixTorchBearer');INSERT INTO `badges` VALUES ('3315', 'ACH_RespectEarned3_HHCA');INSERT INTO `badges` VALUES ('3316', 'CO6_HHSG');INSERT INTO `badges` VALUES ('3317', 'ACH_AllTimeHotelPresence8_HHCA');INSERT INTO `badges` VALUES ('3318', 'AC5_HHCA');INSERT INTO `badges` VALUES ('3319', 'Football_DE');INSERT INTO `badges` VALUES ('3320', 'RUN05_HHSG');INSERT INTO `badges` VALUES ('3321', 'GLG_HHCA');INSERT INTO `badges` VALUES ('3322', 'TWIC1_HHAU');INSERT INTO `badges` VALUES ('3323', 'ACH_PetLover6_HHCA');INSERT INTO `badges` VALUES ('3324', 'CNY06');INSERT INTO `badges` VALUES ('3325', 'CNY08');INSERT INTO `badges` VALUES ('3326', 'CNY03');INSERT INTO `badges` VALUES ('3327', 'CNY02');INSERT INTO `badges` VALUES ('3328', 'CNY05');INSERT INTO `badges` VALUES ('3329', 'CNY04');INSERT INTO `badges` VALUES ('3330', 'CNY01');INSERT INTO `badges` VALUES ('3331', 'CO6_HHUK');INSERT INTO `badges` VALUES ('3332', 'STR01');INSERT INTO `badges` VALUES ('3333', 'RUN05_HHUK');INSERT INTO `badges` VALUES ('3334', 'fb_ACH_Spr');INSERT INTO `badges` VALUES ('3335', 'U04_HHUK');INSERT INTO `badges` VALUES ('3336', 'FRZ06');INSERT INTO `badges` VALUES ('3337', 'FRZ03');INSERT INTO `badges` VALUES ('3338', 'FLA');INSERT INTO `badges` VALUES ('3339', 'TWIC1_HHCA');INSERT INTO `badges` VALUES ('3340', 'HOR5');INSERT INTO `badges` VALUES ('3341', 'Uk150');INSERT INTO `badges` VALUES ('3342', 'NLE_HHSG');INSERT INTO `badges` VALUES ('3343', 'Uk148');INSERT INTO `badges` VALUES ('3344', 'HX1_HHSG');INSERT INTO `badges` VALUES ('3345', 'Z75_HHUK');INSERT INTO `badges` VALUES ('3346', 'Z10_HHUK');INSERT INTO `badges` VALUES ('3347', 'U04_HHSG');INSERT INTO `badges` VALUES ('3348', 'fb_ACH_RoomDecoHosting');INSERT INTO `badges` VALUES ('3349', 'fb_ACH_PetLover4');INSERT INTO `badges` VALUES ('3350', 'fb_ACH_PetLover3');INSERT INTO `badges` VALUES ('3351', 'ACH_MGM1');INSERT INTO `badges` VALUES ('3352', 'fb_ACH_PetLover2');INSERT INTO `badges` VALUES ('3353', 'fb_ACH_PetLover1');INSERT INTO `badges` VALUES ('3354', 'ACH_MGM2');INSERT INTO `badges` VALUES ('3355', 'WH4_HHCA');INSERT INTO `badges` VALUES ('3356', 'fb_ACH_PetLover7');INSERT INTO `badges` VALUES ('3357', 'ACH_MGM3');INSERT INTO `badges` VALUES ('3358', 'fb_ACH_PetLover8');INSERT INTO `badges` VALUES ('3359', 'fb_ACH_RoomRank9');INSERT INTO `badges` VALUES ('3360', 'ACH_MGM4');INSERT INTO `badges` VALUES ('3361', 'fb_ACH_PetLover5');INSERT INTO `badges` VALUES ('3362', 'fb_ACH_RoomRank8');INSERT INTO `badges` VALUES ('3363', 'ACH_MGM5');INSERT INTO `badges` VALUES ('3364', 'fb_ACH_PetLover6');INSERT INTO `badges` VALUES ('3365', 'fb_ACH_RoomRank7');INSERT INTO `badges` VALUES ('3366', 'ACH_MGM6');INSERT INTO `badges` VALUES ('3367', 'fb_ACH_RoomRank6');INSERT INTO `badges` VALUES ('3368', 'ACH_MGM7');INSERT INTO `badges` VALUES ('3369', 'fb_ACH_RoomRank5');INSERT INTO `badges` VALUES ('3370', 'ACH_MGM8');INSERT INTO `badges` VALUES ('3371', 'fb_ACH_PetLover9');INSERT INTO `badges` VALUES ('3372', 'fb_ACH_RoomRank4');INSERT INTO `badges` VALUES ('3373', 'ACH_MGM9');INSERT INTO `badges` VALUES ('3374', 'fb_ACH_RoomRank3');INSERT INTO `badges` VALUES ('3375', 'fb_ACH_RoomRank2');INSERT INTO `badges` VALUES ('3376', 'fb_ACH_RoomRank1');INSERT INTO `badges` VALUES ('3377', 'UK079_HHUK');INSERT INTO `badges` VALUES ('3378', 'WH4_HHAU');INSERT INTO `badges` VALUES ('3379', 'BBBH2_HHUK');INSERT INTO `badges` VALUES ('3380', 'HX1_HHUK');INSERT INTO `badges` VALUES ('3381', 'fb_ACH_GiftGiver10');INSERT INTO `badges` VALUES ('3382', 'HQ017');INSERT INTO `badges` VALUES ('3383', 'HQ018');INSERT INTO `badges` VALUES ('3384', 'HQ019');INSERT INTO `badges` VALUES ('3385', 'HQ012');INSERT INTO `badges` VALUES ('3386', 'HQ013');INSERT INTO `badges` VALUES ('3387', 'HQ014');INSERT INTO `badges` VALUES ('3388', 'HQ011');INSERT INTO `badges` VALUES ('3389', 'HQ010');INSERT INTO `badges` VALUES ('3390', 'VA7');INSERT INTO `badges` VALUES ('3391', 'VA8');INSERT INTO `badges` VALUES ('3392', 'VA9');INSERT INTO `badges` VALUES ('3393', 'VA3');INSERT INTO `badges` VALUES ('3394', 'VA4');INSERT INTO `badges` VALUES ('3395', 'HQ023');INSERT INTO `badges` VALUES ('3396', 'VA5');INSERT INTO `badges` VALUES ('3397', 'HQ024');INSERT INTO `badges` VALUES ('3398', 'LC7_HHSG');INSERT INTO `badges` VALUES ('3399', 'VA6');INSERT INTO `badges` VALUES ('3400', 'HQ022');INSERT INTO `badges` VALUES ('3401', 'HQ021');INSERT INTO `badges` VALUES ('3402', 'HQ020');INSERT INTO `badges` VALUES ('3403', 'VA2');INSERT INTO `badges` VALUES ('3404', 'VA1');INSERT INTO `badges` VALUES ('3405', 'RA4_HHAU');INSERT INTO `badges` VALUES ('3406', 'DESP1');INSERT INTO `badges` VALUES ('3407', 'DESP2');INSERT INTO `badges` VALUES ('3408', 'TWIQ3_HHUK');INSERT INTO `badges` VALUES ('3409', 'Z29_HHUK');INSERT INTO `badges` VALUES ('3410', 'AC1_HHCA');INSERT INTO `badges` VALUES ('3411', 'ACH_AllTimeHotelPresence13');INSERT INTO `badges` VALUES ('3412', 'ACH_AllTimeHotelPresence14');INSERT INTO `badges` VALUES ('3413', 'ACH_AllTimeHotelPresence15');INSERT INTO `badges` VALUES ('3414', 'ACH_AllTimeHotelPresence16');INSERT INTO `badges` VALUES ('3415', 'T079');INSERT INTO `badges` VALUES ('3416', 'ACH_AllTimeHotelPresence10');INSERT INTO `badges` VALUES ('3417', 'ACH_AllTimeHotelPresence11');INSERT INTO `badges` VALUES ('3418', 'ACH_AllTimeHotelPresence12');INSERT INTO `badges` VALUES ('3419', 'fb_ACH_BearBreeder');INSERT INTO `badges` VALUES ('3420', 'ACH_Habboween');INSERT INTO `badges` VALUES ('3421', 'ACH_AllTimeHotelPresence17');INSERT INTO `badges` VALUES ('3422', 'ACH_AllTimeHotelPresence18');INSERT INTO `badges` VALUES ('3423', 'ACH_AllTimeHotelPresence19');INSERT INTO `badges` VALUES ('3424', 'EXH_HHCA');INSERT INTO `badges` VALUES ('3425', 'ACH_MonsterPlantHealer');INSERT INTO `badges` VALUES ('3426', 'GWA');INSERT INTO `badges` VALUES ('3427', 'DE002');INSERT INTO `badges` VALUES ('3428', 'DS7_HHSG');INSERT INTO `badges` VALUES ('3429', 'TWIQ3_HHSG');INSERT INTO `badges` VALUES ('3430', 'AC1_HHAU');INSERT INTO `badges` VALUES ('3431', 'AC9_HHCA');INSERT INTO `badges` VALUES ('3432', 'XM6_HHSG');INSERT INTO `badges` VALUES ('3433', 'Z45_HHUK');INSERT INTO `badges` VALUES ('3434', 'Z67_HHAU');INSERT INTO `badges` VALUES ('3435', 'BGW6');INSERT INTO `badges` VALUES ('3436', 'BGW4');INSERT INTO `badges` VALUES ('3437', 'BGW3');INSERT INTO `badges` VALUES ('3438', 'BGW2');INSERT INTO `badges` VALUES ('3439', 'DS7_HHUK');INSERT INTO `badges` VALUES ('3440', 'CO6_HHCA');INSERT INTO `badges` VALUES ('3441', 'ACH_RoomEntry8_HHCA');INSERT INTO `badges` VALUES ('3442', 'DE014');INSERT INTO `badges` VALUES ('3443', 'DE013');INSERT INTO `badges` VALUES ('3444', 'DE012');INSERT INTO `badges` VALUES ('3445', 'GRR');INSERT INTO `badges` VALUES ('3446', 'DE017');INSERT INTO `badges` VALUES ('3447', 'DE016');INSERT INTO `badges` VALUES ('3448', 'fb_ACH_TagB20');INSERT INTO `badges` VALUES ('3449', 'fb_FMATIC_COMP_TOP100');INSERT INTO `badges` VALUES ('3450', 'fb_ACH_RoomDecoFurniTypeCount');INSERT INTO `badges` VALUES ('3451', 'HOP02_HHUK');INSERT INTO `badges` VALUES ('3452', 'GM3_HHCA');INSERT INTO `badges` VALUES ('3453', 'ACH_Name1');INSERT INTO `badges` VALUES ('3454', 'RLX01');INSERT INTO `badges` VALUES ('3455', 'RLX03');INSERT INTO `badges` VALUES ('3456', 'RLX02');INSERT INTO `badges` VALUES ('3457', 'HUG_HHSG');INSERT INTO `badges` VALUES ('3458', 'ST1_HHUK');INSERT INTO `badges` VALUES ('3459', 'UKP_HHUK');INSERT INTO `badges` VALUES ('3460', 'CO6_HHAU');INSERT INTO `badges` VALUES ('3461', 'hwn28');INSERT INTO `badges` VALUES ('3462', 'USO');INSERT INTO `badges` VALUES ('3463', 'USN');INSERT INTO `badges` VALUES ('3464', 'USQ');INSERT INTO `badges` VALUES ('3465', 'USP');INSERT INTO `badges` VALUES ('3466', 'USS');INSERT INTO `badges` VALUES ('3467', 'USR');INSERT INTO `badges` VALUES ('3468', 'USU');INSERT INTO `badges` VALUES ('3469', 'UST');INSERT INTO `badges` VALUES ('3470', 'USG');INSERT INTO `badges` VALUES ('3471', 'USF');INSERT INTO `badges` VALUES ('3472', 'USI');INSERT INTO `badges` VALUES ('3473', 'fb_ACH_BadMonkeyLevelUp');INSERT INTO `badges` VALUES ('3474', 'USH');INSERT INTO `badges` VALUES ('3475', 'USK');INSERT INTO `badges` VALUES ('3476', 'USJ');INSERT INTO `badges` VALUES ('3477', 'USM');INSERT INTO `badges` VALUES ('3478', 'USL');INSERT INTO `badges` VALUES ('3479', 'USA');INSERT INTO `badges` VALUES ('3480', 'USB');INSERT INTO `badges` VALUES ('3481', 'USC');INSERT INTO `badges` VALUES ('3482', 'USD');INSERT INTO `badges` VALUES ('3483', 'ACH_RegistrationDuration10_HHCA');INSERT INTO `badges` VALUES ('3484', 'USE');INSERT INTO `badges` VALUES ('3485', 'US6');INSERT INTO `badges` VALUES ('3486', 'US7');INSERT INTO `badges` VALUES ('3487', 'US8');INSERT INTO `badges` VALUES ('3488', 'al_ACH_RoomDecoFloor');INSERT INTO `badges` VALUES ('3489', 'al_ACH_ValentinesBadgeReceived');INSERT INTO `badges` VALUES ('3490', 'USX');INSERT INTO `badges` VALUES ('3491', 'ACH_VIPQuest');INSERT INTO `badges` VALUES ('3492', 'USY');INSERT INTO `badges` VALUES ('3493', 'USV');INSERT INTO `badges` VALUES ('3494', 'USW');INSERT INTO `badges` VALUES ('3495', 'USZ');INSERT INTO `badges` VALUES ('3496', 'ancients_sahara_rcr_3');INSERT INTO `badges` VALUES ('3497', 'fb_ACH_TagB12');INSERT INTO `badges` VALUES ('3498', 'fb_ACH_TagB11');INSERT INTO `badges` VALUES ('3499', 'ancients_sahara_rcr_1');INSERT INTO `badges` VALUES ('3500', 'fb_ACH_TagB14');INSERT INTO `badges` VALUES ('3501', 'ancients_sahara_rcr_2');INSERT INTO `badges` VALUES ('3502', 'fb_ACH_TagB13');INSERT INTO `badges` VALUES ('3503', 'fb_ACH_TagB10');INSERT INTO `badges` VALUES ('3504', 'fb_ACH_TagB19');INSERT INTO `badges` VALUES ('3505', 'Z17_HHUK');INSERT INTO `badges` VALUES ('3506', 'fb_ACH_TagB15');INSERT INTO `badges` VALUES ('3507', 'fb_ACH_TagB16');INSERT INTO `badges` VALUES ('3508', 'fb_ACH_TagB17');INSERT INTO `badges` VALUES ('3509', 'fb_ACH_TagB18');INSERT INTO `badges` VALUES ('3510', 'HC2');INSERT INTO `badges` VALUES ('3511', 'HOP02_HHSG');INSERT INTO `badges` VALUES ('3512', 'HC1');INSERT INTO `badges` VALUES ('3513', 'US2');INSERT INTO `badges` VALUES ('3514', 'US0');INSERT INTO `badges` VALUES ('3515', 'HBA');INSERT INTO `badges` VALUES ('3516', 'Z41_HHUK');INSERT INTO `badges` VALUES ('3517', 'PRSN1');INSERT INTO `badges` VALUES ('3518', 'ACH_RbBunnyTag');INSERT INTO `badges` VALUES ('3519', 'SFH_HHUK');INSERT INTO `badges` VALUES ('3520', 'HOP01_HHCA');INSERT INTO `badges` VALUES ('3521', 'ACH_ValentinesQuestCompleted10');INSERT INTO `badges` VALUES ('3522', 'XGH1');INSERT INTO `badges` VALUES ('3523', 'BOOM1');INSERT INTO `badges` VALUES ('3524', 'fb_ACH_NotesLeft');INSERT INTO `badges` VALUES ('3525', 'ACH_AllTimeHotelPresence20');INSERT INTO `badges` VALUES ('3526', 'HOP01_HHAU');INSERT INTO `badges` VALUES ('3527', 'SFH_HHSG');INSERT INTO `badges` VALUES ('3528', 'ACH_FootballGoalScored');INSERT INTO `badges` VALUES ('3529', 'PX06');INSERT INTO `badges` VALUES ('3530', 'UKZ');INSERT INTO `badges` VALUES ('3531', 'PX07');INSERT INTO `badges` VALUES ('3532', 'PX04');INSERT INTO `badges` VALUES ('3533', 'PX05');INSERT INTO `badges` VALUES ('3534', 'DS7_HHAU');INSERT INTO `badges` VALUES ('3535', 'PX02');INSERT INTO `badges` VALUES ('3536', 'UKV');INSERT INTO `badges` VALUES ('3537', 'PX03');INSERT INTO `badges` VALUES ('3538', 'UKW');INSERT INTO `badges` VALUES ('3539', 'PX00');INSERT INTO `badges` VALUES ('3540', 'UKX');INSERT INTO `badges` VALUES ('3541', 'PX01');INSERT INTO `badges` VALUES ('3542', 'UKY');INSERT INTO `badges` VALUES ('3543', 'UK045');INSERT INTO `badges` VALUES ('3544', 'UKR');INSERT INTO `badges` VALUES ('3545', 'ACH_BunnyEaster');INSERT INTO `badges` VALUES ('3546', 'UK044');INSERT INTO `badges` VALUES ('3547', 'UKS');INSERT INTO `badges` VALUES ('3548', 'Z04_HHUK');INSERT INTO `badges` VALUES ('3549', 'UK043');INSERT INTO `badges` VALUES ('3550', 'UKT');INSERT INTO `badges` VALUES ('3551', 'UK042');INSERT INTO `badges` VALUES ('3552', 'UKU');INSERT INTO `badges` VALUES ('3553', 'UK049');INSERT INTO `badges` VALUES ('3554', 'UKN');INSERT INTO `badges` VALUES ('3555', 'UK048');INSERT INTO `badges` VALUES ('3556', 'UKO');INSERT INTO `badges` VALUES ('3557', 'UK047');INSERT INTO `badges` VALUES ('3558', 'UKP');INSERT INTO `badges` VALUES ('3559', 'UK046');INSERT INTO `badges` VALUES ('3560', 'UKQ');INSERT INTO `badges` VALUES ('3561', 'UK051');INSERT INTO `badges` VALUES ('3562', 'UK052');INSERT INTO `badges` VALUES ('3563', 'UK050');INSERT INTO `badges` VALUES ('3564', 'WBL_HHUK');INSERT INTO `badges` VALUES ('3565', 'fb_ACH_NewUserBadgeReceiver');INSERT INTO `badges` VALUES ('3566', 'ACH_PetRespectGiver6_HHCA');INSERT INTO `badges` VALUES ('3567', 'UK8');INSERT INTO `badges` VALUES ('3568', 'UK9');INSERT INTO `badges` VALUES ('3569', 'UK6');INSERT INTO `badges` VALUES ('3570', 'UK7');INSERT INTO `badges` VALUES ('3571', 'UK4');INSERT INTO `badges` VALUES ('3572', 'UK5');INSERT INTO `badges` VALUES ('3573', 'UK056');INSERT INTO `badges` VALUES ('3574', 'UK2');INSERT INTO `badges` VALUES ('3575', 'UK3');INSERT INTO `badges` VALUES ('3576', 'UK058');INSERT INTO `badges` VALUES ('3577', 'UK057');INSERT INTO `badges` VALUES ('3578', 'UK1');INSERT INTO `badges` VALUES ('3579', 'UK059');INSERT INTO `badges` VALUES ('3580', 'EXH_HHUK');INSERT INTO `badges` VALUES ('3581', 'UKM');INSERT INTO `badges` VALUES ('3582', 'UKL');INSERT INTO `badges` VALUES ('3583', 'UKK');INSERT INTO `badges` VALUES ('3584', 'UKJ');INSERT INTO `badges` VALUES ('3585', 'UK060');INSERT INTO `badges` VALUES ('3586', 'UKI');INSERT INTO `badges` VALUES ('3587', 'UK061');INSERT INTO `badges` VALUES ('3588', 'UKH');INSERT INTO `badges` VALUES ('3589', 'UK062');INSERT INTO `badges` VALUES ('3590', 'UKG');INSERT INTO `badges` VALUES ('3591', 'GF1');INSERT INTO `badges` VALUES ('3592', 'UK063');INSERT INTO `badges` VALUES ('3593', 'UKF');INSERT INTO `badges` VALUES ('3594', 'UKE');INSERT INTO `badges` VALUES ('3595', 'UKD');INSERT INTO `badges` VALUES ('3596', 'UKC');INSERT INTO `badges` VALUES ('3597', 'UKB');INSERT INTO `badges` VALUES ('3598', 'UKA');INSERT INTO `badges` VALUES ('3599', 'CL1_HHUK');INSERT INTO `badges` VALUES ('3600', 'XM1_HHSG');INSERT INTO `badges` VALUES ('3601', 'UK029');INSERT INTO `badges` VALUES ('3602', 'UK028');INSERT INTO `badges` VALUES ('3603', 'UK027');INSERT INTO `badges` VALUES ('3604', 'UK026');INSERT INTO `badges` VALUES ('3605', 'UK025');INSERT INTO `badges` VALUES ('3606', 'ACH_ValentinesBadgeReceived10');INSERT INTO `badges` VALUES ('3607', 'UK030');INSERT INTO `badges` VALUES ('3608', 'WBL_HHSG');INSERT INTO `badges` VALUES ('3609', 'UK039');INSERT INTO `badges` VALUES ('3610', 'UK5_HHUK');INSERT INTO `badges` VALUES ('3611', 'UK036');INSERT INTO `badges` VALUES ('3612', 'UK035');INSERT INTO `badges` VALUES ('3613', 'UK038');INSERT INTO `badges` VALUES ('3614', 'UK037');INSERT INTO `badges` VALUES ('3615', 'DS7_HHCA');INSERT INTO `badges` VALUES ('3616', 'UK032');INSERT INTO `badges` VALUES ('3617', 'UK031');INSERT INTO `badges` VALUES ('3618', 'UK034');INSERT INTO `badges` VALUES ('3619', 'UK033');INSERT INTO `badges` VALUES ('3620', 'UK040');INSERT INTO `badges` VALUES ('3621', 'ACH_GiftReceiver1_HHCA');INSERT INTO `badges` VALUES ('3622', 'UK041');INSERT INTO `badges` VALUES ('3623', 'UK001');INSERT INTO `badges` VALUES ('3624', 'UK004');INSERT INTO `badges` VALUES ('3625', 'UK005');INSERT INTO `badges` VALUES ('3626', 'UK002');INSERT INTO `badges` VALUES ('3627', 'UK003');INSERT INTO `badges` VALUES ('3628', 'UK008');INSERT INTO `badges` VALUES ('3629', 'UK009');INSERT INTO `badges` VALUES ('3630', 'UK006');INSERT INTO `badges` VALUES ('3631', 'ACH_RegistrationDuration1_HHCA');INSERT INTO `badges` VALUES ('3632', 'UK007');INSERT INTO `badges` VALUES ('3633', 'XM1_HHUK');INSERT INTO `badges` VALUES ('3634', 'ACH_PetLover2_HHCA');INSERT INTO `badges` VALUES ('3635', 'WH2_HHUK');INSERT INTO `badges` VALUES ('3636', 'ACH_RoomRank');INSERT INTO `badges` VALUES ('3637', 'fb_ACH_FootballGoalScoredInRoom');INSERT INTO `badges` VALUES ('3638', 'UK010');INSERT INTO `badges` VALUES ('3639', 'UK011');INSERT INTO `badges` VALUES ('3640', 'UK012');INSERT INTO `badges` VALUES ('3641', 'UK013');INSERT INTO `badges` VALUES ('3642', 'UK014');INSERT INTO `badges` VALUES ('3643', 'UK015');INSERT INTO `badges` VALUES ('3644', 'UK018');INSERT INTO `badges` VALUES ('3645', 'UK019');INSERT INTO `badges` VALUES ('3646', 'VA8_HHUK');INSERT INTO `badges` VALUES ('3647', 'RLX02_HHCA');INSERT INTO `badges` VALUES ('3648', 'HUG_HHCA');INSERT INTO `badges` VALUES ('3649', 'MB1_HHCA');INSERT INTO `badges` VALUES ('3650', 'GCB');INSERT INTO `badges` VALUES ('3651', 'ACH_RespectEarned7_HHCA');INSERT INTO `badges` VALUES ('3652', 'fbc13');INSERT INTO `badges` VALUES ('3653', 'UK063_HHUK');INSERT INTO `badges` VALUES ('3654', 'fb_ACH_GamePlayed10');INSERT INTO `badges` VALUES ('3655', 'GNO');INSERT INTO `badges` VALUES ('3656', 'VA8_HHSG');INSERT INTO `badges` VALUES ('3657', 'UD1');INSERT INTO `badges` VALUES ('3658', 'ST3_HHUK');INSERT INTO `badges` VALUES ('3659', 'WH2_HHSG');INSERT INTO `badges` VALUES ('3660', 'ACH_PetRespectReceiver7_HHCA');INSERT INTO `badges` VALUES ('3661', 'fb_Hween12_Top100');INSERT INTO `badges` VALUES ('3662', 'ACH_name1_HHCA');INSERT INTO `badges` VALUES ('3663', 'UKU_HHUK');INSERT INTO `badges` VALUES ('3664', 'ACH_Citizenship');INSERT INTO `badges` VALUES ('3665', 'MTV01');INSERT INTO `badges` VALUES ('3666', 'COK09');INSERT INTO `badges` VALUES ('3667', 'fb_ACH_PetLover10');INSERT INTO `badges` VALUES ('3668', 'COK03');INSERT INTO `badges` VALUES ('3669', 'ACH_AIPerformanceVote4');INSERT INTO `badges` VALUES ('3670', 'COK04');INSERT INTO `badges` VALUES ('3671', 'ACH_AIPerformanceVote3');INSERT INTO `badges` VALUES ('3672', 'COK01');INSERT INTO `badges` VALUES ('3673', 'ACH_AIPerformanceVote2');INSERT INTO `badges` VALUES ('3674', 'COK02');INSERT INTO `badges` VALUES ('3675', 'ACH_AIPerformanceVote1');INSERT INTO `badges` VALUES ('3676', 'COK07');INSERT INTO `badges` VALUES ('3677', 'ACH_AIPerformanceVote8');INSERT INTO `badges` VALUES ('3678', 'COK08');INSERT INTO `badges` VALUES ('3679', 'ACH_AIPerformanceVote7');INSERT INTO `badges` VALUES ('3680', 'COK05');INSERT INTO `badges` VALUES ('3681', 'ACH_AIPerformanceVote6');INSERT INTO `badges` VALUES ('3682', 'COK06');INSERT INTO `badges` VALUES ('3683', 'ACH_AIPerformanceVote5');INSERT INTO `badges` VALUES ('3684', 'UK077_HHUK');INSERT INTO `badges` VALUES ('3685', 'ACH_AIPerformanceVote9');INSERT INTO `badges` VALUES ('3686', 'NEH_HHSG');INSERT INTO `badges` VALUES ('3687', 'COK12');INSERT INTO `badges` VALUES ('3688', 'COK13');INSERT INTO `badges` VALUES ('3689', 'COK14');INSERT INTO `badges` VALUES ('3690', 'COK15');INSERT INTO `badges` VALUES ('3691', 'COK16');INSERT INTO `badges` VALUES ('3692', 'PET14_LION');INSERT INTO `badges` VALUES ('3693', 'COK17');INSERT INTO `badges` VALUES ('3694', 'COK18');INSERT INTO `badges` VALUES ('3695', 'COK19');INSERT INTO `badges` VALUES ('3696', 'ACH_RespectEarned10_HHCA');INSERT INTO `badges` VALUES ('3697', 'COK10');INSERT INTO `badges` VALUES ('3698', 'COK11');INSERT INTO `badges` VALUES ('3699', 'Z67_HHCA');INSERT INTO `badges` VALUES ('3700', 'GM1');INSERT INTO `badges` VALUES ('3701', 'GM2');INSERT INTO `badges` VALUES ('3702', 'GM3');INSERT INTO `badges` VALUES ('3703', 'GM4');INSERT INTO `badges` VALUES ('3704', 'UK028_HHUK');INSERT INTO `badges` VALUES ('3705', 'ACH_GuideRequestHandler1');INSERT INTO `badges` VALUES ('3706', 'ACH_GuideRequestHandler2');INSERT INTO `badges` VALUES ('3707', 'DK5_HHUK');INSERT INTO `badges` VALUES ('3708', 'ACH_GuideRequestHandler3');INSERT INTO `badges` VALUES ('3709', 'ACH_GuideRequestHandler4');INSERT INTO `badges` VALUES ('3710', 'ACH_GuideRequestHandler5');INSERT INTO `badges` VALUES ('3711', 'COK29');INSERT INTO `badges` VALUES ('3712', 'ACH_GuideRequestHandler7');INSERT INTO `badges` VALUES ('3713', 'ACH_GuideRequestHandler6');INSERT INTO `badges` VALUES ('3714', 'COK27');INSERT INTO `badges` VALUES ('3715', 'ACH_GuideRequestHandler9');INSERT INTO `badges` VALUES ('3716', 'COK28');INSERT INTO `badges` VALUES ('3717', 'ACH_GuideRequestHandler8');INSERT INTO `badges` VALUES ('3718', 'COK25');INSERT INTO `badges` VALUES ('3719', 'GLB');INSERT INTO `badges` VALUES ('3720', 'COK26');INSERT INTO `badges` VALUES ('3721', 'GLA');INSERT INTO `badges` VALUES ('3722', 'COK23');INSERT INTO `badges` VALUES ('3723', 'GLD');INSERT INTO `badges` VALUES ('3724', 'COK24');INSERT INTO `badges` VALUES ('3725', 'ACH_HorseQuestCompleted');INSERT INTO `badges` VALUES ('3726', 'GLC');INSERT INTO `badges` VALUES ('3727', 'COK21');INSERT INTO `badges` VALUES ('3728', 'GLF');INSERT INTO `badges` VALUES ('3729', 'COK22');INSERT INTO `badges` VALUES ('3730', 'GLE');INSERT INTO `badges` VALUES ('3731', 'GLH');INSERT INTO `badges` VALUES ('3732', 'COK20');INSERT INTO `badges` VALUES ('3733', 'GLG');INSERT INTO `badges` VALUES ('3734', 'GLJ');INSERT INTO `badges` VALUES ('3735', 'GLI');INSERT INTO `badges` VALUES ('3736', 'GLK');INSERT INTO `badges` VALUES ('3737', 'MTV10');INSERT INTO `badges` VALUES ('3738', 'PET16_MONKEY');INSERT INTO `badges` VALUES ('3739', 'COK30');INSERT INTO `badges` VALUES ('3740', 'COK31');
-- ------------------------------ Table structure for `bans`-- ----------------------------DROP TABLE IF EXISTS `bans`;CREATE TABLE `bans` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `bantype` enum('user','ip') NOT NULL DEFAULT 'user',  `value` varchar(50) NOT NULL,  `reason` text NOT NULL,  `expire` double NOT NULL DEFAULT '0',  `added_by` varchar(50) NOT NULL,  `added_date` varchar(50) NOT NULL,  `appeal_state` enum('0','1','2') NOT NULL DEFAULT '1',  PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of bans-- ----------------------------
-- ------------------------------ Table structure for `bots`-- ----------------------------DROP TABLE IF EXISTS `bots`;CREATE TABLE `bots` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `room_id` int(10) unsigned NOT NULL DEFAULT '0',  `ai_type` enum('generic','guide','pet') NOT NULL DEFAULT 'generic',  `name` varchar(100) NOT NULL,  `motto` varchar(120) NOT NULL,  `look` text NOT NULL,  `x` int(11) NOT NULL DEFAULT '0',  `y` int(11) NOT NULL DEFAULT '0',  `z` int(11) NOT NULL DEFAULT '0',  `rotation` int(11) NOT NULL DEFAULT '0',  `walk_mode` enum('stand','freeroam','specified_range') NOT NULL DEFAULT 'stand',  `min_x` int(11) NOT NULL DEFAULT '0',  `min_y` int(11) NOT NULL DEFAULT '0',  `max_x` int(11) NOT NULL DEFAULT '0',  `max_y` int(11) NOT NULL DEFAULT '0',  `effect` int(2) NOT NULL DEFAULT '0',  PRIMARY KEY (`id`),  KEY `room_id` (`room_id`)) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of bots-- ----------------------------INSERT INTO `bots` VALUES ('1', '1', 'generic', 'Harry', 'Welcome to Habboon!', 'hd-180-7.sh-290-110.lg-270-91.ch-809-62.hr-828-45', '9', '19', '0', '2', 'stand', '8', '16', '9', '24', '0');INSERT INTO `bots` VALUES ('2', '0', 'guide', 'Guide Bot', 'Here to help you out!', 'hr-828-45.lg-285-64.ch-215-110.hd-180-2.sh-290-62.he-1607-', '0', '0', '0', '0', 'freeroam', '0', '0', '0', '0', '0');
-- ------------------------------ Table structure for `bots_responses`-- ----------------------------DROP TABLE IF EXISTS `bots_responses`;CREATE TABLE `bots_responses` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `bot_id` int(10) unsigned NOT NULL,  `keywords` text NOT NULL,  `response_text` varchar(200) NOT NULL,  `mode` enum('say','shout','whisper') NOT NULL DEFAULT 'say',  `serve_id` int(11) NOT NULL DEFAULT '0',  PRIMARY KEY (`id`),  KEY `bot_id` (`bot_id`)) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of bots_responses-- ----------------------------INSERT INTO `bots_responses` VALUES ('1', '1', 'hey;hello;hallo;hai;hoi;howdy;hi', 'Hello!', 'say', '0');INSERT INTO `bots_responses` VALUES ('2', '1', 'drink;cola;food;order;buy;ice', 'You can\'t order anything here. Does this look like a bar to you?', 'say', '0');INSERT INTO `bots_responses` VALUES ('3', '1', 'harry', 'That\'s me!', 'say', '0');INSERT INTO `bots_responses` VALUES ('5', '1', 'love', 'Love is a strange thing..', 'say', '0');INSERT INTO `bots_responses` VALUES ('6', '1', 'dust;dusty;dirty;filthy;disgusting;eww', 'Are you calling my lobby dirty!??!', 'shout', '0');INSERT INTO `bots_responses` VALUES ('7', '1', 'whisper to me harry', 'Do you like being whispered to...?', 'whisper', '0');INSERT INTO `bots_responses` VALUES ('8', '1', 'yes;yep;definitely;yeah;uh-huh;no;nope;never;nay', 'Oh, well, if you say so...', 'say', '0');INSERT INTO `bots_responses` VALUES ('9', '2', 'dutch;italian;sweedish;french;spanish;polish;portugese;brazillian;inglaise;anglais;hola;bonjour;nederlands;engels;swedish;language;german;deutsch', 'This is an English hotel! Please speak English or face punishment!', 'shout', '0');INSERT INTO `bots_responses` VALUES ('10', '2', 'help;halp', 'I\'m here to help! If theres anything I can\'t answer, use the help tool to the left!', 'say', '0');INSERT INTO `bots_responses` VALUES ('11', '2', 'job;badge;plz;please;pls', 'Please do not beg staff members! It\'ll only annoy them and decrease your chances!', 'say', '0');INSERT INTO `bots_responses` VALUES ('12', '2', 'cred;credz;creds;credits;coins', 'Credits are given out at random intervals. Check the site for more details.', 'say', '0');INSERT INTO `bots_responses` VALUES ('13', '2', 'mod;admin;staff', 'Our dedicated staff are here to improve your retro experience!', 'say', '0');INSERT INTO `bots_responses` VALUES ('14', '2', 'furni;decorate;walls;floor;windows;sofa;chair;table', 'If you want to decorate, buy some items from the catalogue and place them in your room!', 'say', '0');INSERT INTO `bots_responses` VALUES ('15', '2', 'pixels', 'You get pixels for being online and getting achievements, you can then spend them in the catalogue!', 'say', '0');
-- ------------------------------ Table structure for `bots_speech`-- ----------------------------DROP TABLE IF EXISTS `bots_speech`;CREATE TABLE `bots_speech` (  `bot_id` int(10) unsigned NOT NULL,  `text` varchar(200) NOT NULL,  `shout` enum('0','1') NOT NULL DEFAULT '0',  KEY `bot_id` (`bot_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of bots_speech-- ----------------------------INSERT INTO `bots_speech` VALUES ('1', '*sneeze*', '1');INSERT INTO `bots_speech` VALUES ('1', 'When\'s my break? I\'ve been standing here for ages..', '0');INSERT INTO `bots_speech` VALUES ('1', 'My feet hurt.. :(', '0');INSERT INTO `bots_speech` VALUES ('1', '*yawn*', '0');INSERT INTO `bots_speech` VALUES ('1', 'Why is it always so quiet here? I feel so lonely..', '0');INSERT INTO `bots_speech` VALUES ('1', 'Don\'t even think about asking me for a drink .. this is not a bar.', '0');INSERT INTO `bots_speech` VALUES ('2', ' Credits are topped up on a regular basis :)', '0');INSERT INTO `bots_speech` VALUES ('2', 'There are always competitions going on to earn more credits and rares!', '0');INSERT INTO `bots_speech` VALUES ('2', 'It\'s always good to trade your rares! Share the wealth.', '0');INSERT INTO `bots_speech` VALUES ('2', 'Have you checked out the marketplace in the catalogue yet?', '0');INSERT INTO `bots_speech` VALUES ('2', 'Looking for somewere quiet? Go find a nice, relaxing public room in the navigator :)', '0');INSERT INTO `bots_speech` VALUES ('2', 'Our staff are here to help you!', '0');INSERT INTO `bots_speech` VALUES ('2', 'Rares are give out in competitons and events, as well as some in the catalogue for all users.', '0');INSERT INTO `bots_speech` VALUES ('2', 'Found a bug? Got a suggestion? Send us a call for help!', '0');
-- ------------------------------ Table structure for `catalog_items`-- ----------------------------DROP TABLE IF EXISTS `catalog_items`;CREATE TABLE `catalog_items` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `page_id` int(11) NOT NULL,  `item_ids` varchar(120) NOT NULL,  `catalog_name` varchar(100) NOT NULL,  `cost_credits` int(11) NOT NULL,  `cost_pixels` int(11) NOT NULL,  `cost_snow` int(11) NOT NULL DEFAULT '0',  `amount` int(11) NOT NULL,  `vip` enum('0','1','2') NOT NULL DEFAULT '0',  `achievement` int(4) unsigned NOT NULL DEFAULT '0',  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=4294967296 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of catalog_items-- ----------------------------INSERT INTO `catalog_items` VALUES ('1', '134', '19942', 'byesw_hand', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2', '134', '19943', 'byesw_hotel', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3014', '15', '19896', 'wallpaper_single_114', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3015', '15', '19896', 'wallpaper_single_115', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3016', '15', '19896', 'wallpaper_single_201', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3017', '15', '19896', 'wallpaper_single_202', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3018', '15', '19896', 'wallpaper_single_203', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3019', '15', '19896', 'wallpaper_single_204', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3020', '15', '19896', 'wallpaper_single_204', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3021', '15', '19896', 'wallpaper_single_205', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3022', '15', '19896', 'wallpaper_single_206', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3023', '15', '19896', 'wallpaper_single_207', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3024', '15', '19896', 'wallpaper_single_208', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3025', '15', '19896', 'wallpaper_single_209', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3013', '15', '19896', 'wallpaper_single_113', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3012', '15', '19896', 'wallpaper_single_112', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3011', '15', '19896', 'wallpaper_single_111', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3010', '15', '19896', 'wallpaper_single_110', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3009', '15', '19896', 'wallpaper_single_109', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3008', '15', '19896', 'wallpaper_single_108', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3007', '15', '19896', 'wallpaper_single_107', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3006', '15', '19896', 'wallpaper_single_106', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3005', '15', '19896', 'wallpaper_single_105', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3004', '15', '19896', 'wallpaper_single_104', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3003', '15', '19896', 'wallpaper_single_103', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3002', '15', '19896', 'wallpaper_single_102', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3001', '15', '19896', 'wallpaper_single_101', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('72', '55', '1', 'shelves_norja', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('71', '55', '6', 'table_norja_med', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('73', '55', '14', 'couch_norja', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('74', '55', '15', 'chair_norja', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('75', '55', '173', 'soft_sofachair_norja', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('76', '55', '174', 'soft_sofa_norja', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('101', '55', '501', 'shelves_norja*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('78', '55', '479', 'table_norja_med*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('79', '55', '480', 'table_norja_med*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('80', '55', '481', 'table_norja_med*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('81', '55', '482', 'table_norja_med*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('82', '55', '483', 'table_norja_med*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('83', '55', '484', 'table_norja_med*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('85', '55', '485', 'table_norja_med*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('86', '55', '486', 'table_norja_med*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('87', '55', '487', 'couch_norja*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('88', '55', '488', 'couch_norja*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89', '55', '489', 'couch_norja*4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('90', '1', '490', 'couch_norja*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('91', '55', '491', 'couch_norja*6', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('92', '55', '492', 'couch_norja*7', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('93', '55', '493', 'couch_norja*8', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('94', '55', '494', 'couch_norja*9', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('95', '55', '495', 'shelves_norja*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('96', '55', '496', 'shelves_norja*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97', '55', '497', 'shelves_norja*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('98', '55', '498', 'shelves_norja*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99', '55', '499', 'shelves_norja*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('100', '55', '500', 'shelves_norja*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('140', '30', '2', 'shelves_polyfon', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('103', '55', '502', 'chair_norja*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('104', '55', '503', 'chair_norja*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('105', '55', '504', 'chair_norja*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('106', '55', '505', 'chair_norja*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('107', '55', '506', 'chair_norja*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('108', '55', '507', 'chair_norja*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('109', '55', '508', 'chair_norja*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('110', '55', '509', 'chair_norja*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('111', '55', '518', 'soft_sofa_norja*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('112', '55', '519', 'soft_sofa_norja*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('113', '55', '520', 'soft_sofa_norja*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('114', '55', '521', 'soft_sofa_norja*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('115', '55', '522', 'soft_sofa_norja*6', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('116', '55', '523', 'soft_sofa_norja*7', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('391', '28', '1375', 'xmas08_icerug', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('118', '55', '524', 'soft_sofa_norja*8', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('387', '28', '1366', 'xmas08_trph1', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('386', '28', '1364', 'xmas08_snowpl', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('121', '55', '525', 'soft_sofa_norja*9', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('123', '55', '526', 'soft_sofachair_norja*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('124', '55', '527', 'soft_sofachair_norja*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('125', '55', '528', 'soft_sofachair_norja*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('126', '55', '530', 'soft_sofachair_norja*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('127', '55', '531', 'soft_sofachair_norja*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('128', '55', '529', 'soft_sofachair_norja*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('129', '55', '532', 'soft_sofachair_norja*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('130', '55', '533', 'soft_sofachair_norja*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('131', '55', '658', 'solarium_norja', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('132', '55', '659', 'solarium_norja*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('133', '55', '660', 'solarium_norja*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('134', '55', '661', 'solarium_norja*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('135', '55', '662', 'solarium_norja*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('136', '55', '663', 'solarium_norja*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('137', '55', '664', 'solarium_norja*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('138', '55', '665', 'solarium_norja*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('139', '55', '666', 'solarium_norja*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('141', '30', '4', 'table_polyfon_small', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('142', '30', '5', 'chair_polyfon', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('143', '30', '11', 'stand_polyfon_z', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('144', '30', '16', 'table_polyfon_med', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('145', '30', '19', 'sofachair_polyfon', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('146', '30', '20', 'sofa_polyfon', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('147', '30', '25', 'bed_polyfon', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('148', '30', '26', 'bed_polyfon_one', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('149', '30', '109', 'bar_polyfon', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('150', '30', '46', 'fireplace_polyfon', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('152', '30', '112', 'bardesk_polyfon', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('153', '30', '113', 'bardeskcorner_polyfon', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('154', '30', '133', 'table_polyfon', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('155', '30', '134', 'smooth_table_polyfon', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('156', '31', '135', 'sofachair_polyfon_girl', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('157', '31', '136', 'bed_polyfon_girl_one', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('158', '31', '137', 'bed_polyfon_girl', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('159', '31', '138', 'sofa_polyfon_girl', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('160', '31', '620', 'bardeskcorner_polyfon*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('161', '31', '612', 'bardesk_polyfon*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('162', '31', '628', 'divider_poly3*5', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('163', '30', '216', 'divider_poly3', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('260', '26', '1804', 'dimmer_fuse2', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('259', '26', '1803', 'dimmer_swtch', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('166', '30', '582', 'sofachair_polyfon*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('258', '26', '1802', 'dimmer_fuse6', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('168', '30', '583', 'sofachair_polyfon*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('383', '178', '1798', 'ktchn_wall', '20', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('170', '30', '584', 'sofachair_polyfon*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('171', '30', '585', 'sofachair_polyfon*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('172', '30', '586', 'sofachair_polyfon*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('173', '30', '587', 'sofachair_polyfon*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('174', '30', '588', 'sofachair_polyfon*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('175', '30', '589', 'sofa_polyfon*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('176', '30', '590', 'sofa_polyfon*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('177', '30', '591', 'sofa_polyfon*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('178', '30', '592', 'sofa_polyfon*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('179', '30', '593', 'sofa_polyfon*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('180', '30', '594', 'sofa_polyfon*8', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('181', '30', '595', 'sofa_polyfon*9', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('182', '30', '596', 'bed_polyfon*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('183', '30', '597', 'bed_polyfon*4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('184', '30', '598', 'bed_polyfon*6', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('185', '30', '599', 'bed_polyfon*7', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('186', '30', '600', 'bed_polyfon*8', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('187', '30', '601', 'bed_polyfon*9', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('188', '30', '602', 'bed_polyfon_one*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('189', '30', '603', 'bed_polyfon_one*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('190', '30', '604', 'bed_polyfon_one*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('191', '30', '605', 'bed_polyfon_one*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('192', '30', '606', 'bed_polyfon_one*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('193', '30', '607', 'bed_polyfon_one*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('194', '30', '608', 'bed_polyfon_one*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('195', '30', '609', 'bardesk_polyfon*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('196', '30', '610', 'bardesk_polyfon*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('197', '30', '611', 'bardesk_polyfon*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('198', '30', '604', 'bed_polyfon_one*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('199', '30', '613', 'bardesk_polyfon*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('200', '30', '614', 'bardesk_polyfon*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('201', '615', '615', 'bardesk_polyfon*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('202', '30', '616', 'bardesk_polyfon*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('203', '30', '616', 'bardesk_polyfon*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('204', '30', '617', 'bardeskcorner_polyfon*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('205', '30', '618', 'bardeskcorner_polyfon*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('206', '30', '619', 'bardeskcorner_polyfon*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('207', '30', '621', 'bardeskcorner_polyfon*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('208', '30', '622', 'bardeskcorner_polyfon*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('209', '30', '623', 'bardeskcorner_polyfon*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('210', '30', '624', 'bardeskcorner_polyfon*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('222', '35', '32', 'bed_armas_two', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('212', '30', '625', 'divider_poly3*2', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('213', '30', '626', 'divider_poly3*3', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('214', '30', '627', 'divider_poly3*4', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('215', '30', '629', 'divider_poly3*6', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2138', '142', '329', 'toy1*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2335', '129', '1502', 'bump_road', '0', '1250', '0', '20', '0', '0');INSERT INTO `catalog_items` VALUES ('218', '30', '632', 'divider_poly3*9', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2118', '7', '20060', 'DEAL_HC_1', '100', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('390', '28', '1373', 'xmas08_icetree', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('224', '35', '36', 'bench_armas', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('225', '35', '37', 'table_armas', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('226', '35', '38', 'small_table_armas', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('227', '35', '39', 'small_chair_armas', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('228', '35', '40', 'fireplace_armas', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('229', '35', '41', 'lamp_armas', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('230', '35', '42', 'bed_armas_one', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('231', '35', '44', 'carpet_armas', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('232', '35', '115', 'bar_armas', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('233', '35', '116', 'bartable_armas', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('234', '35', '117', 'bar_chair_armas', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('235', '35', '176', 'lamp2_armas', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('237', '24', '1693', 'window_single_default', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('238', '24', '1694', 'window_double_default', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('239', '24', '1695', 'noob_window_double', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('240', '24', '1696', 'window_triple', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('241', '24', '1697', 'window_square', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('242', '24', '1698', 'window_romantic_wide', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('243', '24', '1699', 'window_romantic_narrow', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('244', '24', '1700', 'window_grunge', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('245', '24', '1701', 'window_golden', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('246', '24', '1702', 'window_chinese_wide', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('264', '29', '178', 'door', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('248', '24', '1703', 'window_chinese_narrow', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('249', '24', '1704', 'window_basic', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('250', '24', '1705', 'window_70s_wide', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('251', '24', '1706', 'window_70s_narrow', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('261', '26', '1805', 'dimmer_buttn', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('257', '26', '1683', 'roomdimmer', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('254', '24', '1712', 'window_hole', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('255', '24', '1717', 'window_skyscraper', '18', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('389', '28', '1369', 'xmas08_hottub', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('265', '29', '1100', 'teleport_door', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('757', '73', '1787', 'sf_window', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('756', '73', '1614', 'sf_roller', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('268', '29', '1613', 'sf_tele', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('269', '29', '1452', 'lostc_teleport', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('271', '33', '3', 'shelves_silo', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('272', '33', '7', 'table_silo_med', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('273', '33', '12', 'chair_silo', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('274', '33', '13', 'sofa_silo', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('275', '33', '21', 'sofachair_silo', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('276', '33', '29', 'bed_silo_one', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('277', '33', '30', 'bed_silo_two', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('278', '33', '31', 'table_silo_small', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('279', '33', '221', 'divider_silo1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('280', '33', '223', 'divider_silo2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('281', '33', '225', 'divider_silo3', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('282', '33', '461', 'barchair_silo', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('283', '33', '534', 'sofachair_silo*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('284', '33', '535', 'sofachair_silo*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('285', '33', '536', 'sofachair_silo*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('286', '33', '537', 'sofachair_silo*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('287', '33', '538', 'sofachair_silo*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('288', '33', '539', 'sofachair_silo*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('289', '33', '540', 'sofachair_silo*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('290', '33', '541', 'sofachair_silo*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('291', '33', '542', 'table_silo_small*2', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('292', '33', '543', 'table_silo_small*3', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('293', '33', '544', 'table_silo_small*4', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('294', '33', '545', 'table_silo_small*5', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('295', '33', '546', 'table_silo_small*6', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('296', '33', '547', 'table_silo_small*7', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('297', '33', '548', 'table_silo_small*8', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('298', '33', '549', 'table_silo_small*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('299', '33', '550', 'divider_silo1*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('300', '33', '551', 'divider_silo1*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('301', '33', '552', 'divider_silo1*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('302', '33', '553', 'divider_silo1*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('303', '33', '554', 'divider_silo1*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('304', '33', '555', 'divider_silo1*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('305', '33', '556', 'divider_silo1*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('306', '33', '557', 'divider_silo1*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('307', '33', '558', 'divider_silo3*2', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('308', '33', '559', 'divider_silo3*3', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('309', '33', '560', 'divider_silo3*4', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('310', '33', '561', 'divider_silo3*5', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('311', '33', '562', 'divider_silo3*6', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('312', '33', '563', 'divider_silo3*7', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('313', '33', '564', 'divider_silo3*8', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('314', '33', '565', 'divider_silo3*9', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('315', '33', '566', 'table_silo_med*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('316', '33', '567', 'table_silo_med*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('317', '33', '568', 'table_silo_med*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('318', '33', '569', 'table_silo_med*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('319', '33', '570', 'table_silo_med*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('320', '33', '571', 'table_silo_med*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('321', '33', '572', 'table_silo_med*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('322', '33', '573', 'table_silo_med*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('323', '33', '574', 'sofa_silo*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('324', '33', '575', 'sofa_silo*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('325', '33', '576', 'sofa_silo*4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('326', '33', '577', 'sofa_silo*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('327', '33', '578', 'sofa_silo*6', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('328', '33', '579', 'sofa_silo*7', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('329', '33', '580', 'sofa_silo*8', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('330', '33', '581', 'sofa_silo*9', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('331', '33', '633', 'chair_silo*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('332', '33', '634', 'chair_silo*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('333', '33', '635', 'chair_silo*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('334', '33', '636', 'chair_silo*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('335', '33', '637', 'chair_silo*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('336', '33', '638', 'chair_silo*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('337', '33', '639', 'chair_silo*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('338', '33', '640', 'chair_silo*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('339', '33', '657', 'silo_studydesk', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('340', '33', '657', 'silo_studydesk', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('341', '33', '675', 'safe_silo', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('342', '33', '702', 'barchair_silo*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('343', '33', '703', 'barchair_silo*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('344', '33', '704', 'barchair_silo*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('345', '33', '705', 'barchair_silo*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('346', '33', '706', 'barchair_silo*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('347', '33', '707', 'barchair_silo*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('348', '33', '707', 'barchair_silo*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('349', '33', '708', 'barchair_silo*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('350', '33', '709', 'barchair_silo*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('351', '33', '710', 'safe_silo*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('352', '33', '711', 'safe_silo*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('353', '33', '712', 'safe_silo*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('354', '33', '713', 'safe_silo*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('355', '33', '714', 'safe_silo*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('356', '33', '715', 'safe_silo*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('358', '33', '716', 'safe_silo*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('359', '33', '717', 'safe_silo*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('360', '33', '1043', 'safe_silo_pb', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('364', '178', '1640', 'ktchn_light', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('363', '178', '1639', 'ktchn_stove', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('365', '178', '1641', 'ktchn_plates', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('366', '178', '1642', 'ktchn_countr_1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('367', '178', '1643', 'ktchn_pots', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('368', '178', '1644', 'ktchn_cornr', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('369', '178', '1645', 'ktchn_desk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('370', '178', '1646', 'ktchn_trash', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('371', '178', '1647', 'ktchn_countr_2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('372', '178', '1648', 'ktchn_bBlock', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('373', '178', '1649', 'ktchn_dvdr', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('374', '178', '1650', 'ktchn_inspctr', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('375', '178', '1651', 'ktchn_fridge', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('376', '178', '1653', 'ktchn_sink', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('388', '28', '1368', 'xmas08_table', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('378', '178', '1654', 'ktchn_gate', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('379', '178', '1798', 'ktchn_wall', '8', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('380', '178', '1800', 'ktchn_oven', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('381', '178', '1801', 'ktchn_knives', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('392', '28', '1387', 'xmas08_geysir', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('393', '28', '1391', 'xmas08_lantern', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('394', '28', '1392', 'xmas08_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('395', '29', '1394', 'xmas08_telep', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('396', '28', '1395', 'xmas08_cubetree', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('397', '28', '1397', 'xmas08_dvdr1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('398', '28', '1398', 'xmas08_hole', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('399', '28', '1401', 'xmas08_dvdr2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('400', '28', '1413', 'xmas08_trph2', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('401', '28', '1738', 'xmas08_wallpaper', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('402', '28', '1739', 'xmas08_icewall', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('404', '39', '141', 'plant_pineapple', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('405', '39', '142', 'plant_fruittree', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('406', '39', '143', 'plant_small_cactus', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('407', '39', '144', 'plant_bonsai', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('408', '39', '145', 'plant_big_cactus', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('409', '39', '146', 'plant_yukka', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('410', '39', '152', 'plant_sunflower', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('411', '39', '153', 'plant_rose', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('412', '39', '816', 'plant_mazegate', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('413', '39', '817', 'plant_maze', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('414', '39', '818', 'plant_bulrush', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('417', '38', '155', 'bath', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('418', '38', '156', 'sink', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('419', '38', '159', 'tile', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('420', '38', '162', 'tile_red', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('421', '38', '163', 'tile_yell', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('422', '38', '157', 'toilet', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('423', '38', '160', 'toilet_red', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('424', '38', '161', 'toilet_yell', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('425', '38', '158', 'duck', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('426', '34', '1536', 'country_rain', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('427', '34', '1537', 'country_scarecrow', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('428', '34', '1539', 'country_soil', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('429', '34', '1540', 'country_grass', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('430', '34', '1543', 'country_trctr', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('431', '34', '1544', 'country_fnc2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('432', '34', '1545', 'country_fnc1', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('433', '34', '1546', 'country_well', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('434', '34', '1548', 'country_rbw', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('435', '34', '1549', 'country_wheat', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('436', '34', '1550', 'country_gate', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('437', '34', '1552', 'country_stage', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('438', '34', '1557', 'country_log', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('439', '34', '1558', 'country_fnc3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('440', '34', '1559', 'country_patio', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('441', '34', '1560', 'country_corner', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('442', '34', '1561', 'country_ditch', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('443', '34', '1777', 'country_forestwall', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('444', '34', '1778', 'country_fp', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('445', '34', '1779', 'country_wall', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('446', '34', '1780', 'country_lantern', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('448', '34', '1779', 'country_wall', '15', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('449', '40', '43', 'carpet_standard', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('450', '40', '45', 'carpet_polar', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('451', '40', '52', 'carpet_standard*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('452', '40', '60', 'carpet_standard*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('453', '40', '66', 'carpet_standard*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('454', '40', '66', 'carpet_standard*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('455', '40', '73', 'carpet_standard*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('456', '40', '77', 'carpet_standard*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('457', '40', '102', 'carpet_standard*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('458', '40', '118', 'carpet_soft', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('459', '40', '119', 'carpet_soft*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('460', '40', '120', 'carpet_soft*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('461', '40', '121', 'carpet_soft*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('462', '40', '122', 'carpet_soft*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('463', '40', '123', 'carpet_soft*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('464', '40', '124', 'carpet_soft*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('465', '40', '127', 'carpet_polar*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('466', '40', '129', 'carpet_polar*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('467', '40', '130', 'carpet_polar*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('468', '40', '131', 'carpet_polar*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('469', '40', '147', 'carpet_standard*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('470', '40', '148', 'carpet_standard*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('471', '40', '149', 'carpet_standard*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('472', '40', '150', 'carpet_standard*10', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('473', '40', '151', 'carpet_standard*11', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('475', '41', '1781', 'flag_norway', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('476', '41', '1795', 'flag_belgium', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('477', '41', '1796', 'flag_portugal', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('481', '27', '190', 'xmasduck', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('482', '27', '263', 'rare_xmas_screen', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('483', '28', '1035', 'xmas_icelamp', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('485', '27', '1036', 'xmas_cstl_wall', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('486', '27', '1037', 'xmas_cstl_twr', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('487', '27', '1038', 'xmas_cstl_gate', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('488', '27', '1378', 'xmas_snow', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('489', '27', '1378', 'xmas_snow', '20', '0', '0', '10', '0', '0');INSERT INTO `catalog_items` VALUES ('490', '27', '1676', 'xmas_light', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('513', '27', '193', 'tree3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('496', '27', '19973', 'xm09_table', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('493', '27', '19971', 'xm09_man_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('833', '57', '669', 'chair_china', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('495', '27', '19972', 'xm09_man_c', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('497', '27', '19974', 'xm09_bench', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2120', '7', '20060', 'DEAL_HC_2', '250', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('499', '27', '19977', 'xm09_forestwall', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('500', '27', '19978', 'xm09_lodgewall', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('501', '27', '19979', 'xm09_bauble_25', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('502', '27', '19976', 'xm09_firwall', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('503', '27', '19980', 'xm09_bauble_26', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('512', '27', '187', 'pudding', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('505', '27', '19982', 'xm09_bauble_27', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('506', '27', '19983', 'xm09_bauble_23', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('507', '27', '19984', 'xm09_bauble_24', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('508', '27', '19985', 'xm09_candyCane', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('509', '27', '19986', 'xm09_stocking', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('514', '27', '194', 'tree4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('515', '27', '195', 'tree5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('516', '27', '1039', 'tree7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('517', '27', '1040', 'tree6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('518', '27', '1046', 'christmas_sleigh', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('519', '27', '1047', 'christmas_reindeer', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('520', '27', '1048', 'christmas_poop', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('522', '27', '192', 'triplecandle', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('523', '27', '198', 'rcandleset', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('524', '27', '270', 'rcandle', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('555', '77', '1305', 'greek_corner', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('528', '27', '19989', 'xm09_man_a', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1117', '43', '125', 'red_tv', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('531', '27', '19981', 'xm09_bauble_27', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('532', '28', '1374', 'campfire', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('533', '76', '200', 'valeduck', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('534', '76', '245', 'valentinescreen', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('556', '77', '1306', 'greek_gate', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('536', '76', '811', 'plant_valentinerose*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('537', '76', '812', 'plant_valentinerose*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('538', '76', '813', 'plant_valentinerose*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('539', '76', '814', 'plant_valentinerose*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('540', '76', '815', 'plant_valentinerose*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('541', '76', '820', 'carpet_valentine', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('542', '76', '1092', 'val_teddy*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('543', '76', '1093', 'val_teddy*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('544', '76', '1094', 'val_teddy*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('545', '76', '1095', 'val_teddy*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('546', '76', '1096', 'val_teddy*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('547', '76', '1097', 'val_teddy*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('548', '76', '1098', 'val_randomizer', '8', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('549', '76', '1099', 'val_choco', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('550', '76', '1669', 'val_heart', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('551', '76', '1656', 'post.it.vd', '3', '0', '0', '30', '0', '0');INSERT INTO `catalog_items` VALUES ('552', '76', '199', 'statue', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('553', '76', '201', 'heartsofa', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('557', '77', '1307', 'greek_pillars', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('558', '77', '1308', 'greek_seat', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('564', '71', '1623', 'rela_candle1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99003', '27', '99003', 'qt_xm10_icetiger', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99002', '27', '99002', 'qt_xm10_stone', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('562', '77', '1312', 'greek_block', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99001', '27', '99001', 'qt_xm10_icedragon', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2108', '91', '20051', 'ads_twi_trophy', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('566', '71', '1625', 'rela_candles2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('766', '72', '796', 'romantique_pianochair*5', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('568', '71', '1627', 'rela_hchair', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('569', '71', '1628', 'rela_candle2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('570', '71', '1632', 'rela_candle3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('571', '71', '1634', 'rela_plant', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('572', '71', '1635', 'rela_candles1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('573', '71', '1636', 'rela_candles3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('574', '71', '1637', 'rela_orchid', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('575', '71', '1638', 'rela_rock', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('576', '71', '1794', 'rela_wall', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('578', '59', '209', 'basket', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('579', '59', '208', 'bunny', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('580', '59', '207', 'easterduck', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('581', '59', '210', 'birdie', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('584', '56', '1124', 'arabian_teamk', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('585', '56', '1125', 'arabian_snake', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('586', '56', '1126', 'arabian_rug', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('587', '56', '1127', 'arabian_pllw', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('588', '56', '1128', 'arabian_divdr', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('589', '56', '1129', 'arabian_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('590', '56', '1130', 'arabian_bigtb', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('591', '56', '1131', 'arabian_tetbl', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('592', '56', '1132', 'arabian_tray1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600', '63', '451', 'sporttrack1*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('594', '56', '1134', 'arabian_tray3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('595', '56', '1135', 'arabian_tray4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('596', '56', '1688', 'arabian_swords', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('597', '56', '1689', 'arabian_wndw', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('598', '56', '1133', 'arabian_tray2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('601', '63', '452', 'sporttrack1*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('602', '63', '453', 'sporttrack1*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('603', '63', '454', 'sporttrack2*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604', '63', '455', 'sporttrack2*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('605', '63', '456', 'sporttrack2*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('606', '63', '457', 'sporttrack3*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('607', '63', '458', 'sporttrack3*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('608', '63', '459', 'sporttrack3*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('609', '63', '293', 'hockey_light', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('610', '63', '292', 'hockey_score', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('611', '63', '243', 'bench_lego', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('612', '63', '242', 'carpet_legocourt', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('613', '63', '244', 'legotrophy', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('615', '63', '460', 'footylamp', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('617', '64', '1017', 'grunge_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('618', '64', '1018', 'grunge_mattress', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('619', '64', '1019', 'grunge_radiator', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('620', '64', '1020', 'grunge_shelf', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('621', '64', '1022', 'grunge_table', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('622', '64', '1021', 'grunge_sign', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('623', '64', '1110', 'grunge_candle', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('624', '64', '1111', 'grunge_bench', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('625', '64', '1112', 'grunge_barrel', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('626', '64', '1700', 'window_grunge', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('628', '67', '844', 'jp_tatami2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('629', '67', '845', 'jp_tatami', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('630', '67', '847', 'jp_bamboo', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('631', '67', '848', 'jp_irori', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('632', '67', '849', 'jp_pillow', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('633', '67', '937', 'jp_lantern', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('634', '67', '965', 'jp_drawer', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('635', '67', '1118', 'jp_tray6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('636', '67', '1119', 'jp_tray5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('637', '67', '1120', 'jp_tray4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('638', '67', '1121', 'jp_tray3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('639', '67', '1122', 'jp_tray2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('640', '67', '1123', 'jp_tray1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('641', '67', '1150', 'jp_table', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('642', '67', '1151', 'jp_rare', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('643', '67', '1152', 'jp_katana3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('644', '67', '1153', 'jp_katana2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('645', '67', '1154', 'jp_katana1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('646', '67', '1197', 'jp_teamaker', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('647', '67', '1671', 'jp_ninjastars', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('648', '67', '1685', 'jp_sheet3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('649', '67', '1686', 'jp_sheet2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('650', '67', '1687', 'jp_sheet1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('651', '75', '969', 'summer_grill*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('652', '75', '970', 'summer_grill*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('653', '75', '971', 'summer_grill*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('654', '75', '972', 'summer_grill*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('655', '75', '973', 'summer_chair*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('656', '75', '974', 'summer_chair*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('657', '75', '975', 'summer_chair*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('658', '75', '976', 'summer_chair*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('659', '75', '977', 'summer_chair*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('660', '75', '978', 'summer_chair*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('661', '75', '979', 'summer_chair*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('662', '75', '980', 'summer_chair*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('663', '75', '981', 'summer_chair*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('664', '75', '1003', 'summer_pool*1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('665', '75', '1004', 'summer_pool*2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('666', '75', '1005', 'summer_pool*3', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('667', '75', '1006', 'summer_pool*4', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('668', '75', '1616', 'summer_raft1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('669', '75', '1618', 'summer_raft2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('670', '75', '1620', 'summer_icebox', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('671', '66', '19938', 'hween09_floor', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('672', '66', '19938', 'hween09_floor', '25', '0', '0', '10', '0', '0');INSERT INTO `catalog_items` VALUES ('673', '66', '19939', 'hween09_jar', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('674', '66', '19941', 'hween09_organ', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('675', '66', '19944', 'hween09_table', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('676', '66', '19945', 'hween09_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('677', '66', '19946', 'hween09_mirror', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('678', '66', '19947', 'hween09_hatch', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('679', '66', '19948', 'hween09_ghost', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('680', '66', '19949', 'hween09_tv', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('681', '66', '19950', 'hween09_chandelier', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('682', '66', '19951', 'hween09_crnr1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('683', '66', '19952', 'hween09_paint', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('684', '66', '19953', 'hween09_treewall', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('685', '66', '19954', 'hween09_wall1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('686', '66', '19955', 'hween09_stonewall', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('687', '66', '19956', 'hween09_win', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('688', '66', '181', 'pumpkin', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('694', '66', '185', 'deadduck3', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('690', '66', '182', 'skullcandle', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('693', '66', '184', 'deadduck2', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('695', '66', '183', 'deadduck', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('697', '88', '1334', 'hween08_sink', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('698', '88', '1335', 'hween08_curtain', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('699', '88', '1336', 'hween08_bath', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('700', '88', '1337', 'hween08_defibs', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('701', '88', '1338', 'hween08_bbag', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('702', '88', '1339', 'hween08_curtain2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('703', '88', '1340', 'hween08_defibs2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('704', '88', '1341', 'hween08_bed', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('705', '88', '1342', 'hween08_sink2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('706', '88', '1343', 'hween08_bed2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('707', '88', '1344', 'hween08_bath2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('708', '88', '1345', 'hween08_manhole', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('709', '88', '1346', 'hween08_trll', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('710', '88', '1721', 'hween08_rad', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('711', '88', '1722', 'hween08_wndwb', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('712', '88', '1723', 'hween08_wndw', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('713', '88', '1724', 'hween08_bio', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('714', '74', '1419', 'bolly_lotus_pool', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('715', '74', '1422', 'bolly_petals', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('716', '74', '1423', 'bolly_tree', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('717', '74', '1424', 'bolly_swing', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('718', '74', '1425', 'bolly_pillow', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('719', '74', '1426', 'bolly_corner', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('720', '74', '1427', 'bolly_phant', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('721', '74', '1428', 'bolly_monkey_lamp', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('722', '74', '1429', 'bolly_drapeb', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('723', '74', '1431', 'bolly_lamp', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('724', '74', '1432', 'bolly_desk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('725', '74', '1433', 'bolly_vase', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('726', '74', '1434', 'bolly_tile2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('727', '74', '1435', 'bolly_table', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('728', '74', '1436', 'bolly_drapec', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('729', '74', '1437', 'bolly_fountain', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('735', '73', '1593', 'SF_reactor', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('731', '74', '1439', 'bolly_tile1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('732', '74', '1440', 'bolly_drapea', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('733', '74', '1749', 'bolly_wdw_wd', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('736', '73', '1594', 'SF_crate_2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('737', '73', '1595', 'SF_chair_blue', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('738', '73', '1596', 'sf_pod', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('739', '73', '1597', 'SF_panel1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('740', '73', '1598', 'SF_table', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('741', '73', '1602', 'SF_panel2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('742', '73', '1603', 'sf_gate', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('743', '73', '1599', 'SF_chair_green', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('744', '73', '1600', 'SF_crate_1', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('745', '73', '1601', 'SF_alien', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('746', '73', '1605', 'SF_floor_2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('747', '73', '1604', 'SF_panel3', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('748', '73', '1606', 'SF_lamp', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('749', '73', '1607', 'SF_chair_red', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('750', '73', '1608', 'sf_floor', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('751', '73', '1609', 'sf_roof', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('752', '73', '1610', 'sf_stick', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('753', '73', '1611', 'SF_floor_1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('759', '73', '1791', 'sf_wall3', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('758', '73', '1788', 'sf_wall2', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('765', '72', '795', 'romantique_pianochair*3', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('767', '72', '797', 'romantique_pianochair*2', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('768', '72', '798', 'romantique_pianochair*4', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('769', '72', '799', 'romantique_pianochair*1', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('770', '72', '800', 'romantique_divan*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('771', '72', '801', 'romantique_divan*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('772', '72', '802', 'romantique_divan*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('773', '72', '803', 'romantique_divan*4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('774', '72', '804', 'romantique_divan*1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('775', '72', '805', 'romantique_chair*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('776', '72', '806', 'romantique_chair*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('777', '72', '807', 'romantique_chair*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('778', '72', '808', 'romantique_chair*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('779', '72', '809', 'romantique_chair*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('780', '72', '832', 'romantique_tray2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('781', '72', '833', 'romantique_tray1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('782', '72', '834', 'romantique_smalltabl*3', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('783', '72', '835', 'romantique_smalltabl*5', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('784', '72', '836', 'romantique_smalltabl*2', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('785', '72', '837', 'romantique_smalltabl*4', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('786', '72', '838', 'romantique_smalltabl*1', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('787', '72', '839', 'romantique_mirrortabl', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('788', '72', '840', 'romantique_divider*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('789', '72', '841', 'romantique_divider*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('790', '72', '842', 'romantique_divider*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('791', '72', '843', 'romantique_divider*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('792', '72', '891', 'romantique_clock', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('793', '69', '1347', 'party_table', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('794', '69', '1348', 'party_discol', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('795', '69', '1349', 'party_block2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('796', '69', '1350', 'party_barcorn', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('797', '69', '1351', 'party_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('798', '69', '1352', 'party_block', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('799', '69', '1353', 'party_ravel', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('800', '69', '1354', 'party_tube_lava', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('801', '69', '1355', 'party_tray', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('802', '69', '1356', 'party_djtable', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('803', '69', '1357', 'party_floor', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('804', '69', '1358', 'party_ball', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('805', '69', '1359', 'party_tube_bubble', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('806', '69', '1360', 'party_mic', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('807', '69', '1361', 'party_beamer', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('808', '69', '1362', 'party_bardesk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('809', '69', '1363', 'party_seat', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('810', '69', '1729', 'party_wc_boy', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('811', '69', '1730', 'party_led', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('812', '69', '1731', 'party_neon5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('813', '69', '1732', 'party_neon1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('814', '69', '1733', 'party_neon2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('815', '69', '1734', 'party_wc_girl', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('816', '69', '1735', 'party_neon3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('817', '69', '1736', 'party_shelf', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('818', '69', '1737', 'party_neon4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('822', '29', '179', 'doorB', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('821', '29', '180', 'doorC', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('824', '94', '227', 'spyro', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('825', '94', '202', 'throne', '0', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('826', '94', '203', 'samovar', '200', '200', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('827', '94', '110', 'plant_cruddy', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1118', '43', '126', 'wood_tv', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('830', '94', '273', 'djesko_turntable', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('834', '57', '670', 'china_table', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('835', '57', '682', 'china_shelve', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('836', '57', '700', 'wall_china', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('837', '57', '701', 'corner_china', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('838', '57', '1418', 'china_moongt', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('839', '57', '1420', 'china_ox', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('840', '57', '1746', 'china_pstr2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('846', '60', '1000', 'exe_rug', '20', '0', '0', '6', '0', '0');INSERT INTO `catalog_items` VALUES ('842', '57', '1747', 'china_light', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('843', '57', '1748', 'china_pstr1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('845', '60', '1000', 'exe_rug', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('847', '60', '1001', 'exe_s_table', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('848', '60', '1049', 'exe_bardesk', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('849', '60', '1050', 'exe_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('850', '60', '1051', 'exe_chair2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('851', '60', '1052', 'exe_corner', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('852', '60', '1053', 'exe_drinks', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('853', '60', '1054', 'exe_sofa', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1758', '123', '1061', 'noob_table*1', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('855', '60', '1055', 'exe_table', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('856', '60', '1091', 'exe_plant', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('857', '60', '1510', 'exe_light', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('858', '60', '1517', 'exe_gate', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('859', '60', '1521', 'exe_cubelight', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('860', '60', '1523', 'exe_artlamp', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('861', '60', '1771', 'exe_map', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('862', '60', '1772', 'exe_wfall', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('863', '58', '1449', 'lc_tile1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('865', '58', '1451', 'lc_crab2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('866', '58', '1454', 'lc_coral_divider_hi', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('867', '58', '1456', 'lc_tubes_corners', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('868', '58', '1457', 'lc_table', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('869', '58', '1458', 'lc_tile2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('870', '58', '1459', 'lc_anemone', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('871', '58', '1461', 'lc_glass_floor', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('872', '58', '1460', 'lc_coral_divider_low', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('874', '58', '1462', 'lc_medusa1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('875', '58', '1463', 'lc_crab1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('876', '58', '1466', 'lc_tubes_straight', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('877', '58', '1470', 'lc_corner', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('878', '58', '1471', 'lc_stool', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('879', '58', '1472', 'lc_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('880', '58', '1473', 'lc_desk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('881', '58', '1755', 'lc_wall1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('882', '58', '1756', 'lc_window2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('883', '58', '1757', 'lc_window1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('884', '58', '1759', 'lc_wall2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('890', '42', '296', 'a0 prizetrophy3_b', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('889', '42', '295', 'a0 prizetrophy2_b', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('891', '42', '297', 'a0 prizetrophy4_b', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('892', '42', '298', 'a0 prizetrophy5_b', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('893', '42', '299', 'a0 prizetrophy1_g', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('894', '42', '300', 'a0 prizetrophy2_g', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('895', '42', '301', 'a0 prizetrophy3_g', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('896', '42', '302', 'a0 prizetrophy4_g', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('897', '42', '303', 'a0 prizetrophy4_g', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('898', '42', '304', 'a0 prizetrophy6_g', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('899', '42', '305', 'a0 prizetrophy1_s', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('900', '93', '306', 'a0 prizetrophy2_s', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('901', '42', '307', 'a0 prizetrophy3_s', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('902', '42', '308', 'a0 prizetrophy4_s', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('903', '42', '309', 'a0 prizetrophy5_s', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('904', '42', '310', 'a0 prizetrophy6_s', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('905', '42', '311', 'a0 prizetrophy1_b', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('906', '93', '335', 'a0 prizetrophy7_b', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1386', '8', '1313', 'hcc_table', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('908', '93', '336', 'a0 prizetrophy7_g', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('909', '93', '337', 'a0 prizetrophy7_s', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('911', '94', '1615', 'prizetrophy_hot', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('912', '94', '1617', 'prizetrophy_cool', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('913', '32', '171', 'bar_basic', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('914', '32', '172', 'shelves_basic', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('915', '32', '175', 'lamp_basic', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('916', '32', '177', 'fridge', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('987', '65', '890', 'rope_divider', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('918', '32', '893', 'pura_mdl5*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('919', '32', '894', 'pura_mdl5*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('920', '32', '895', 'pura_mdl5*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('921', '32', '896', 'pura_mdl5*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('922', '32', '897', 'pura_mdl5*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('923', '32', '898', 'pura_mdl5*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('924', '32', '899', 'pura_mdl5*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('925', '32', '900', 'pura_mdl5*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('926', '32', '901', 'pura_mdl4*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('927', '32', '902', 'pura_mdl4*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('928', '32', '903', 'pura_mdl4*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('929', '32', '904', 'pura_mdl4*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('930', '32', '905', 'pura_mdl4*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('931', '32', '906', 'pura_mdl4*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('932', '32', '907', 'pura_mdl4*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('933', '32', '908', 'pura_mdl4*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('934', '32', '909', 'pura_mdl4*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('935', '32', '910', 'pura_mdl3*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('936', '32', '911', 'pura_mdl3*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('937', '32', '912', 'pura_mdl3*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('938', '32', '913', 'pura_mdl3*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('939', '32', '914', 'pura_mdl3*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('940', '32', '915', 'pura_mdl3*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('941', '32', '916', 'pura_mdl3*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('942', '32', '917', 'pura_mdl3*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('943', '32', '918', 'pura_mdl3*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('944', '32', '919', 'pura_mdl2*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('945', '32', '920', 'pura_mdl2*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('947', '32', '921', 'pura_mdl2*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('948', '32', '922', 'pura_mdl2*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('949', '32', '923', 'pura_mdl2*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('950', '32', '924', 'pura_mdl2*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('951', '32', '925', 'pura_mdl2*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('952', '32', '926', 'pura_mdl2*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('953', '32', '927', 'pura_mdl2*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('954', '32', '928', 'pura_mdl1*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('955', '32', '929', 'pura_mdl1*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('956', '32', '930', 'pura_mdl1*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('957', '32', '931', 'pura_mdl1*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('958', '32', '932', 'pura_mdl1*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('959', '32', '933', 'pura_mdl1*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('960', '32', '934', 'pura_mdl1*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('961', '32', '935', 'pura_mdl1*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('962', '32', '936', 'pura_mdl1*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('963', '32', '939', 'chair_basic*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('964', '32', '940', 'chair_basic*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('965', '32', '941', 'chair_basic*4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('966', '32', '942', 'chair_basic*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('967', '32', '943', 'chair_basic*6', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('968', '32', '944', 'chair_basic*7', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('969', '32', '946', 'chair_basic*9', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('970', '32', '948', 'bed_budget*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('971', '32', '949', 'bed_budget*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('972', '32', '950', 'bed_budget*4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('973', '32', '951', 'bed_budget*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('974', '32', '952', 'bed_budget*6', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('975', '32', '953', 'bed_budget*7', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('976', '32', '954', 'bed_budget*8', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('977', '32', '955', 'bed_budget*9', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('978', '32', '957', 'bed_budget_one*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('979', '32', '958', 'bed_budget_one*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('980', '32', '959', 'bed_budget_one*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('981', '32', '960', 'bed_budget_one*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('982', '32', '961', 'bed_budget_one*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('983', '32', '962', 'bed_budget_one*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('984', '32', '963', 'bed_budget_one*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('985', '32', '964', 'bed_budget_one*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('988', '65', '846', 'habbowood_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('989', '65', '860', 'spotlight', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('990', '65', '1672', 'habw_mirror', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('991', '65', '967', 'tile_marble', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('992', '65', '967', 'tile_marble', '40', '0', '0', '50', '0', '0');INSERT INTO `catalog_items` VALUES ('993', '65', '968', 'tile_brown', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('994', '65', '968', 'tile_brown', '40', '0', '0', '50', '0', '0');INSERT INTO `catalog_items` VALUES ('995', '65', '966', 'tile_stella', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('996', '65', '966', 'tile_stella', '30', '0', '0', '50', '0', '0');INSERT INTO `catalog_items` VALUES ('998', '102', '437', 'queue_tile1*3', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('999', '102', '437', 'queue_tile1*3', '18', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1000', '102', '437', 'queue_tile1*3', '30', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('1001', '102', '438', 'queue_tile1*6', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1002', '102', '438', 'queue_tile1*6', '18', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1003', '102', '438', 'queue_tile1*6', '30', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('1004', '102', '439', 'queue_tile1*4', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1005', '102', '439', 'queue_tile1*4', '18', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1006', '102', '439', 'queue_tile1*4', '30', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('1007', '102', '440', 'queue_tile1*9', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1008', '102', '440', 'queue_tile1*9', '18', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1009', '102', '440', 'queue_tile1*9', '30', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('1010', '102', '441', 'queue_tile1*8', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1011', '102', '441', 'queue_tile1*8', '18', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1012', '102', '441', 'queue_tile1*8', '30', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('1013', '102', '442', 'queue_tile1*5', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1014', '102', '442', 'queue_tile1*5', '18', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1015', '102', '442', 'queue_tile1*5', '30', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('1016', '102', '443', 'queue_tile1*7', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1017', '102', '443', 'queue_tile1*7', '18', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1018', '102', '443', 'queue_tile1*7', '30', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('1019', '102', '444', 'queue_tile1*2', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1020', '102', '444', 'queue_tile1*2', '18', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1021', '102', '444', 'queue_tile1*2', '30', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('1022', '102', '445', 'queue_tile1*1', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1023', '102', '445', 'queue_tile1*1', '18', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1024', '102', '445', 'queue_tile1*1', '30', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('1025', '102', '446', 'queue_tile1*0', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1026', '102', '446', 'queue_tile1*0', '18', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1027', '102', '446', 'queue_tile1*0', '30', '0', '0', '5', '0', '0');INSERT INTO `catalog_items` VALUES ('1030', '68', '1568', 'lt_stage2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1029', '68', '1567', 'LT_skull', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1031', '68', '1569', 'lt_lavac', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1032', '68', '1570', 'lt_gate', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1033', '68', '1573', 'lt_statue', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1034', '68', '1574', 'lt_spider', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1035', '68', '1575', 'lt_stone2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1036', '68', '1576', 'LT_throne', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1037', '68', '1578', 'lt_patch', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1038', '68', '1579', 'lt_lava', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1039', '68', '1580', 'LT_pillar2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1040', '68', '1581', 'lt_bughill', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1041', '68', '1584', 'LT_pillar', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1042', '68', '1588', 'lt_stone1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1043', '68', '1585', 'lt_stage1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1044', '68', '1785', 'lt_wall', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1045', '68', '1783', 'lt_jngl_wall', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1119', '43', '154', 'tv_luxus', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1050', '61', '718', 'glass_shelf', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1051', '61', '719', 'glass_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1052', '61', '720', 'glass_stool', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1053', '61', '721', 'glass_sofa', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1054', '61', '723', 'glass_table*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2102', '29', '20046', 'exe_elevator', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1056', '61', '724', 'glass_table*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1057', '61', '722', 'glass_table', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1058', '61', '725', 'glass_table*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1059', '61', '726', 'glass_table*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1060', '61', '727', 'glass_table*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1061', '61', '728', 'glass_table*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1062', '61', '729', 'glass_table*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1063', '61', '730', 'glass_table*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1064', '61', '731', 'glass_chair*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1065', '61', '732', 'glass_chair*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1066', '61', '733', 'glass_chair*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1067', '61', '734', 'glass_chair*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1068', '61', '735', 'glass_chair*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1069', '61', '736', 'glass_chair*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1070', '61', '737', 'glass_chair*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1071', '61', '738', 'glass_chair*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1072', '61', '739', 'glass_sofa*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1073', '61', '740', 'glass_sofa*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1074', '61', '741', 'glass_sofa*4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1075', '61', '742', 'glass_sofa*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1076', '61', '743', 'glass_sofa*6', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1077', '61', '744', 'glass_sofa*7', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1078', '61', '745', 'glass_sofa*8', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1079', '61', '746', 'glass_sofa*9', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1080', '61', '747', 'glass_stool*2', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1081', '61', '748', 'glass_stool*4', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1082', '61', '749', 'glass_stool*5', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1083', '61', '750', 'glass_stool*6', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1084', '61', '751', 'glass_stool*7', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1085', '61', '752', 'glass_stool*8', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1086', '61', '753', 'glass_stool*3', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1087', '61', '754', 'glass_stool*9', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1088', '72', '829', 'grand_piano*4', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1089', '72', '826', 'grand_piano*3', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1090', '72', '827', 'grand_piano*5', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1091', '72', '828', 'grand_piano*2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1092', '72', '830', 'grand_piano*1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1093', '94', '248', 'rare_beehive_bulb', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1094', '94', '261', 'rare_beehive_bulb*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1095', '94', '262', 'rare_beehive_bulb*2', '200', '200', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1096', '94', '206', 'hologram', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1097', '94', '228', 'redhologram', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1098', '94', '255', 'rare_hammock', '250', '250', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1099', '94', '251', 'rare_elephant_statue', '150', '150', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1100', '94', '252', 'rare_fountain', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1101', '94', '253', 'rare_stand', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1102', '27', '254', 'rare_globe', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1103', '94', '256', 'rare_elephant_statue*1', '150', '150', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1104', '94', '257', 'rare_elephant_statue*2', '150', '150', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1105', '94', '258', 'rare_fountain*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1106', '94', '259', 'rare_fountain*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1107', '94', '260', 'rare_fountain*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1108', '94', '264', 'rare_parasol*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1109', '94', '265', 'rare_parasol*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1110', '16', '266', 'Violet Parasol', '300', '300', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1111', '94', '312', 'rare_parasol*0', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1113', '94', '448', 'rare_snowrug', '100', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1114', '94', '668', 'rare_moonrug', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1326', '105', '339', 'scifiport*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1120', '43', '1655', 'post.it', '3', '0', '0', '30', '0', '0');INSERT INTO `catalog_items` VALUES ('1121', '41', '1677', 'hrella_poster_3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1122', '41', '1678', 'hrella_poster_2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1123', '41', '1679', 'hrella_poster_1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1124', '43', '104', 'pizza', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1125', '43', '105', 'drinks', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1133', '112', '19995', 'ads_twi_dvdr2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1127', '43', '111', 'bottle', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1128', '43', '211', 'edice', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1132', '112', '19994', 'ads_twi_fountn', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1134', '112', '19996', 'ads_twi_roses', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1135', '112', '19997', 'ads_twi_table', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1136', '112', '19998', 'ads_twi_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1137', '112', '19999', 'ads_twi_dvdr1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1138', '112', '20000', 'ads_twi_piano', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1139', '112', '20001', 'ads_twi_tower', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1140', '112', '20002', 'ads_twi_toolbx', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1141', '112', '20003', 'ads_twi_mist', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1159', '62', '763', 'gothiccandelabra', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1154', '62', '764', 'gothrailing', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1152', '62', '777', 'gothic_sofa*1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1156', '62', '778', 'gothic_stool*1', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1157', '62', '780', 'gothic_sofa*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1173', '62', '790', 'gothic_stool*5', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1160', '62', '762', 'gothgate', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1161', '62', '765', 'goth_table', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1162', '62', '776', 'gothic_chair*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1163', '62', '779', 'gothic_chair*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1164', '62', '781', 'gothic_stool*2', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1165', '62', '782', 'gothic_chair*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1166', '62', '783', 'gothic_sofa*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1167', '62', '784', 'gothic_stool*3', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1168', '62', '785', 'gothic_chair*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1169', '62', '786', 'gothic_sofa*4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1170', '62', '787', 'gothic_stool*4', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1171', '62', '788', 'gothic_chair*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1172', '62', '789', 'gothic_sofa*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1174', '62', '791', 'gothic_chair*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1175', '62', '792', 'gothic_sofa*6', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1176', '62', '793', 'gothic_stool*6', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1177', '62', '821', 'gothic_carpet', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1178', '62', '822', 'gothic_carpet2', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1179', '62', '823', 'gothic_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1180', '62', '824', 'gothic_sofa', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1181', '62', '825', 'gothic_stool', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1182', '62', '1665', 'gothicfountain', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1183', '62', '1668', 'torch', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1184', '62', '1726', 'gothicfountain2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1186', '103', '1204', 'diner_tray_6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1187', '103', '1205', 'diner_tray_5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1188', '103', '1206', 'diner_tray_4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1191', '103', '1208', 'diner_tray_2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1294', '105', '398', 'pillar*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1190', '103', '1207', 'diner_tray_3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1192', '103', '1209', 'diner_tray_1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1193', '103', '1203', 'diner_tray_7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1194', '103', '1210', 'diner_tray_0', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1195', '103', '1211', 'diner_sofa_2*1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1196', '103', '1212', 'diner_sofa_2*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1197', '103', '1213', 'diner_sofa_2*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1198', '103', '1214', 'diner_sofa_2*4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1199', '103', '1215', 'diner_sofa_2*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1200', '103', '1216', 'diner_sofa_2*6', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1201', '103', '1217', 'diner_sofa_2*7', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1202', '103', '1218', 'diner_sofa_2*8', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1203', '103', '1219', 'diner_sofa_2*9', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1204', '103', '1220', 'diner_shaker', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1205', '103', '1221', 'diner_rug', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1206', '103', '1221', 'diner_rug', '25', '0', '0', '10', '0', '0');INSERT INTO `catalog_items` VALUES ('1207', '103', '1222', 'diner_gumvendor*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1208', '103', '1223', 'diner_gumvendor*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1209', '103', '1224', 'diner_gumvendor*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1210', '103', '1225', 'diner_gumvendor*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1211', '103', '1226', 'diner_gumvendor*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1212', '103', '1227', 'diner_gumvendor*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1213', '103', '1228', 'diner_gumvendor*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1214', '103', '1229', 'diner_gumvendor*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1215', '103', '1230', 'diner_gumvendor*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1216', '103', '1231', 'diner_cashreg*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1217', '103', '1234', 'diner_cashreg*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1218', '103', '1232', 'diner_cashreg*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1219', '103', '1233', 'diner_cashreg*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1220', '103', '1235', 'diner_cashreg*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1221', '103', '1236', 'diner_cashreg*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1222', '103', '1237', 'diner_cashreg*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1223', '103', '1238', 'diner_cashreg*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1224', '103', '1239', 'diner_cashreg*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1225', '103', '1240', 'diner_table_2*1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1226', '103', '1241', 'diner_table_2*2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1227', '103', '1242', 'diner_table_2*3', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1228', '103', '1243', 'diner_table_2*4', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1229', '103', '1244', 'diner_table_2*5', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1230', '103', '1245', 'diner_table_2*6', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1231', '103', '1246', 'diner_table_2*7', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1232', '103', '1247', 'diner_table_2*8', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1233', '103', '1248', 'diner_table_2*9', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1234', '103', '1249', 'diner_table_1*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1235', '103', '1250', 'diner_table_1*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1236', '103', '1251', 'diner_table_1*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1237', '103', '1252', 'diner_table_1*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1238', '103', '1253', 'diner_table_1*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1239', '103', '1254', 'diner_table_1*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1240', '103', '1255', 'diner_table_1*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1241', '103', '1256', 'diner_table_1*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1242', '103', '1257', 'diner_table_1*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1243', '103', '1258', 'diner_sofa_1*1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1244', '103', '1259', 'diner_sofa_1*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1245', '103', '1260', 'diner_sofa_1*3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1246', '103', '1261', 'diner_sofa_1*4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1247', '103', '1262', 'diner_sofa_1*5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1248', '103', '1263', 'diner_sofa_1*6', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1251', '103', '1265', 'diner_sofa_1*8', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1250', '103', '1264', 'diner_sofa_1*7', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1252', '103', '1266', 'diner_sofa_1*9', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1253', '103', '1267', 'diner_chair*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1254', '103', '1268', 'diner_chair*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1255', '103', '1269', 'diner_chair*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1256', '103', '1270', 'diner_chair*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1257', '103', '1271', 'diner_chair*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1258', '103', '1272', 'diner_chair*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1259', '103', '1273', 'diner_chair*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1260', '103', '1274', 'diner_chair*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1261', '103', '1275', 'diner_chair*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1262', '103', '1276', 'diner_bardesk_gate*1', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1263', '103', '1277', 'diner_bardesk_gate*2', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1264', '103', '1278', 'diner_bardesk_gate*3', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1265', '103', '1279', 'diner_bardesk_gate*4', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1266', '103', '1280', 'diner_bardesk_gate*5', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1267', '103', '1281', 'diner_bardesk_gate*6', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2119', '7', '20060', 'DEAL_HC_3', '500', '0', '0', '6', '0', '0');INSERT INTO `catalog_items` VALUES ('1269', '103', '1282', 'diner_bardesk_gate*7', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1270', '103', '1283', 'diner_bardesk_gate*8', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1271', '103', '1284', 'diner_bardesk_gate*9', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1272', '103', '1285', 'diner_bardesk_corner*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1273', '103', '1286', 'diner_bardesk_corner*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1274', '103', '1287', 'diner_bardesk_corner*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1275', '103', '1288', 'diner_bardesk_corner*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1276', '103', '1289', 'diner_bardesk_corner*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1277', '103', '1290', 'diner_bardesk_corner*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1278', '103', '1291', 'diner_bardesk_corner*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1279', '103', '1292', 'diner_bardesk_corner*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1280', '103', '1293', 'diner_bardesk*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1281', '103', '1294', 'diner_bardesk*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1282', '103', '1295', 'diner_bardesk*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1283', '103', '1296', 'diner_bardesk*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1284', '103', '1297', 'diner_bardesk*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1285', '103', '1298', 'diner_bardesk*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1286', '103', '1299', 'diner_bardesk*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1287', '103', '1300', 'diner_bardesk*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1288', '103', '1301', 'diner_bardesk*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1289', '103', '1708', 'window_diner2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1290', '103', '1709', 'window_diner', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1291', '103', '1710', 'diner_walltable', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1292', '103', '1782', 'diner_poster', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1295', '105', '399', 'pillar*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1296', '105', '400', 'pillar*0', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1297', '105', '401', 'pillar*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1298', '105', '402', 'pillar*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1299', '105', '403', 'pillar*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1300', '105', '404', 'pillar*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1301', '105', '405', 'pillar*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1302', '105', '406', 'pillar*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1303', '105', '388', 'wooden_screen*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1304', '105', '389', 'wooden_screen*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1305', '105', '390', 'wooden_screen*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1306', '105', '391', 'wooden_screen*0', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1307', '105', '392', 'wooden_screen*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1308', '105', '393', 'wooden_screen*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1309', '105', '394', 'wooden_screen*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1310', '105', '395', 'wooden_screen*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1311', '105', '396', 'wooden_screen*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1312', '105', '397', 'wooden_screen*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1313', '105', '417', 'rare_icecream*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1314', '105', '418', 'rare_icecream*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1315', '105', '419', 'rare_icecream*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1316', '105', '420', 'rare_icecream*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1317', '105', '421', 'rare_icecream*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1318', '105', '422', 'rare_icecream*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1319', '105', '423', 'rare_icecream*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1320', '105', '424', 'rare_icecream*0', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1321', '105', '425', 'rare_icecream*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1322', '105', '426', 'rare_icecream*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1323', '95', '892', 'rare_icecream_campaign', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1324', '95', '1140', 'calippo', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1325', '94', '338', 'scifiport*0', '200', '200', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1327', '105', '340', 'scifiport*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1328', '105', '341', 'scifiport*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1329', '105', '342', 'scifiport*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1330', '105', '343', 'scifiport*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1331', '105', '344', 'scifiport*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1332', '105', '345', 'scifiport*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1333', '105', '346', 'scifiport*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1334', '105', '347', 'scifiport*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1335', '105', '348', 'scifirocket*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1336', '105', '349', 'scifirocket*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1337', '105', '350', 'scifirocket*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1338', '105', '351', 'scifirocket*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1339', '105', '352', 'scifirocket*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1340', '105', '353', 'scifirocket*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1341', '105', '354', 'scifirocket*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1342', '105', '355', 'scifirocket*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1343', '105', '356', 'scifirocket*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1344', '105', '357', 'scifirocket*0', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1345', '105', '358', 'scifidoor*10', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1346', '105', '359', 'scifidoor*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1347', '105', '360', 'scifidoor*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1348', '105', '361', 'scifidoor*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1349', '105', '362', 'scifidoor*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1350', '105', '363', 'scifidoor*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1351', '105', '364', 'scifidoor*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1352', '105', '365', 'scifidoor*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1353', '105', '367', 'scifidoor*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1354', '105', '366', 'scifidoor*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1355', '27', '186', 'menorah', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1356', '43', '188', 'ham', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1357', '27', '189', 'turkey', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1358', '27', '191', 'house', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1359', '43', '196', 'ham2', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1360', '27', '197', 'wcandleset', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1361', '43', '205', 'habbocake', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1362', '39', '204', 'giftflowers', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1365', '8', '239', 'chair_plasto*14', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1364', '8', '212', 'club_sofa', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1366', '8', '240', 'table_plasto_4leg*14', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1367', '8', '246', 'edicehc', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1368', '8', '249', 'hcsohva', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1369', '8', '250', 'hcamme', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1370', '8', '313', 'hc_lmp', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1371', '8', '314', 'hc_tbl', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1372', '8', '315', 'hc_chr', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1373', '8', '316', 'hc_dsk', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1374', '8', '760', 'hc_crpt', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1375', '8', '761', 'hc_tv', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1376', '8', '766', 'hc_bkshlf', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1377', '8', '767', 'hc_btlr', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1378', '8', '768', 'hc_crtn', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1379', '8', '769', 'hc_djset', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1380', '8', '770', 'hc_frplc', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1381', '8', '771', 'hc_lmpst', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1382', '8', '772', 'hc_machine', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1383', '8', '773', 'hc_rllr', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1384', '8', '774', 'hc_rntgn', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1385', '8', '775', 'hc_trll', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1387', '8', '1314', 'hcc_shelf', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1388', '8', '1315', 'hcc_sofa', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1389', '8', '1316', 'hcc_minibar', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1390', '8', '1317', 'hcc_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1391', '8', '1321', 'hcc_stool', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1392', '8', '1322', 'hcc_sofachair', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1393', '8', '1323', 'hcc_crnr', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1394', '8', '1324', 'hcc_dvdr', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1398', '36', '8', 'table_plasto_4leg', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1396', '8', '1666', 'hc_wall_lamp', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1399', '36', '9', 'table_plasto_round', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1400', '36', '10', 'table_plasto_bigsquare', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1401', '36', '22', 'chair_plasty', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1402', '36', '23', 'chair_plasto', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1403', '36', '24', 'table_plasto_square', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1404', '36', '47', 'table_plasto_4leg*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1405', '36', '48', 'table_plasto_bigsquare*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1406', '36', '49', 'table_plasto_round*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1407', '36', '50', 'table_plasto_square*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1408', '36', '51', 'chair_plasto*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1409', '36', '54', 'table_plasto_4leg*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1410', '36', '55', 'table_plasto_bigsquare*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1411', '36', '56', 'table_plasto_round*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1412', '36', '57', 'table_plasto_square*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1413', '36', '58', 'chair_plasto*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1414', '36', '61', 'table_plasto_4leg*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1415', '36', '62', 'table_plasto_bigsquare*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1416', '36', '63', 'table_plasto_round*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1417', '36', '64', 'table_plasto_square*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1418', '36', '65', 'chair_plasto*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1419', '36', '68', 'table_plasto_4leg*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1420', '36', '71', 'table_plasto_square*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1421', '36', '72', 'chair_plasto*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1422', '36', '78', 'table_plasto_4leg*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1423', '36', '79', 'table_plasto_bigsquare*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1424', '36', '80', 'table_plasto_round*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1425', '36', '81', 'table_plasto_square*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1426', '36', '82', 'chair_plasto*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1427', '36', '83', 'table_plasto_4leg*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1428', '36', '84', 'table_plasto_bigsquare*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1429', '36', '85', 'table_plasto_round*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1430', '36', '86', 'table_plasto_square*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1431', '36', '87', 'chair_plasto*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1432', '36', '88', 'table_plasto_4leg*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1433', '36', '89', 'table_plasto_bigsquare*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1434', '36', '90', 'table_plasto_round*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1435', '36', '91', 'table_plasto_square*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1436', '36', '92', 'chair_plasto*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1437', '36', '93', 'table_plasto_4leg*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1438', '36', '94', 'table_plasto_bigsquare*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1439', '36', '95', 'table_plasto_round*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1440', '36', '96', 'table_plasto_square*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1441', '36', '97', 'chair_plasto*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1442', '36', '98', 'table_plasto_4leg*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1443', '36', '99', 'table_plasto_bigsquare*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1444', '36', '100', 'table_plasto_round*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1445', '36', '101', 'chair_plasto*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1446', '36', '233', 'chair_plasto*10', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1447', '36', '234', 'chair_plasto*11', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1448', '36', '237', 'chair_plasto*12', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1449', '36', '238', 'chair_plasto*13', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1450', '36', '276', 'table_plasto_4leg*10', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1451', '36', '277', 'table_plasto_4leg*15', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1452', '36', '278', 'table_plasto_bigsquare*14', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1453', '36', '279', 'table_plasto_bigsquare*15', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1454', '36', '280', 'table_plasto_round*14', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1455', '36', '281', 'table_plasto_round*15', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1456', '36', '282', 'table_plasto_square*14', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1457', '36', '283', 'table_plasto_square*15', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1458', '36', '284', 'chair_plasto*15', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1459', '36', '290', 'chair_plasto*16', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1460', '36', '291', 'table_plasto_4leg*16', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1462', '40', '17', 'doormat_love', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1463', '40', '18', 'doormat_plain', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1464', '40', '53', 'doormat_plain*1', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1465', '40', '59', 'doormat_plain*2', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1466', '40', '67', 'doormat_plain*3', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1467', '40', '74', 'doormat_plain*4', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1468', '40', '75', 'doormat_plain*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1469', '40', '76', 'doormat_plain*5', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1471', '95', '27', 'bed_trad_one', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1472', '95', '28', 'bed_trad', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1473', '35', '35', 'shelves_armas', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1474', '32', '33', 'bed_budget_one', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1475', '32', '34', 'bed_budget', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1476', '32', '139', 'bed_budgetb_one', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1477', '32', '140', 'bed_budgetb', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1478', '32', '947', 'bed_budget*1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1479', '32', '956', 'bed_budget_one*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1482', '36', '103', 'chair_plasty*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1483', '36', '106', 'chair_plasty*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1484', '36', '107', 'chair_plasty*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1485', '36', '108', 'chair_plasty*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1486', '36', '128', 'chair_plasty*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1487', '36', '132', 'chair_plasty*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1488', '36', '285', 'chair_plasty*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1489', '36', '286', 'chair_plasty*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1490', '36', '287', 'chair_plasty*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1491', '36', '288', 'chair_plasty*10', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1492', '36', '289', 'chair_plasty*11', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1564', '105', '370', 'pillow*0', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1496', '35', '217', 'divider_arm1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1497', '35', '218', 'divider_arm2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1498', '35', '219', 'divider_arm3', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1499', '94', '213', 'prize1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1500', '94', '214', 'prize2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1501', '94', '215', 'prize3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1502', '55', '220', 'divider_nor1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1503', '55', '222', 'divider_nor2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2099', '95', '20043', 'party_lights', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1505', '55', '224', 'divider_nor3', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1506', '55', '462', 'divider_nor4*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1507', '55', '510', 'divider_nor1*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1508', '55', '511', 'divider_nor1*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1509', '55', '512', 'divider_nor1*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1510', '55', '513', 'divider_nor1*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1511', '55', '514', 'divider_nor1*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1512', '55', '515', 'divider_nor1*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1513', '55', '516', 'divider_nor1*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1514', '55', '517', 'divider_nor1*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1515', '55', '641', 'divider_nor3*2', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1516', '55', '642', 'divider_nor3*3', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1517', '55', '643', 'divider_nor3*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1518', '55', '644', 'divider_nor3*5', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1519', '55', '645', 'divider_nor3*6', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1520', '55', '646', 'divider_nor3*7', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1521', '55', '647', 'divider_nor3*8', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1522', '55', '648', 'divider_nor3*9', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1523', '55', '649', 'divider_nor2*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1524', '55', '650', 'divider_nor2*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1525', '55', '651', 'divider_nor2*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1526', '55', '652', 'divider_nor2*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1527', '55', '653', 'divider_nor2*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1528', '55', '654', 'divider_nor2*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1529', '55', '655', 'divider_nor2*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1530', '55', '656', 'divider_nor2*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1531', '55', '684', 'divider_nor4*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1532', '55', '685', 'divider_nor4*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1533', '55', '686', 'divider_nor4*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1534', '55', '687', 'divider_nor4*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1535', '55', '688', 'divider_nor4*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1536', '55', '689', 'divider_nor4*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1537', '55', '690', 'divider_nor4*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1538', '55', '691', 'divider_nor5*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1539', '55', '692', 'divider_nor5*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1540', '55', '693', 'divider_nor5*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1541', '55', '694', 'divider_nor5*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1542', '55', '695', 'divider_nor5*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1543', '55', '696', 'divider_nor5*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1544', '55', '697', 'divider_nor5*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1545', '55', '698', 'divider_nor5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1546', '55', '699', 'divider_nor4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1547', '94', '226', 'typingmachine', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1548', '27', '230', 'joulutahti', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1549', '94', '231', 'hyacinth1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1550', '94', '232', 'hyacinth2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1551', '30', '235', 'bardeskcorner_polyfon*12', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1552', '20', '236', 'bardeskcorner_polyfon*13', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1553', '8', '241', 'mocchamaster', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1554', '94', '247', 'rare_daffodil_rug', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1555', '27', '267', 'tree1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2101', '71', '20047', 'rela_stick', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1557', '27', '269', 'wcandle', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1558', '27', '272', 'house2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1559', '94', '275', 'md_limukaappi', '150', '150', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1587', '105', '378', 'marquee*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1561', '8', '294', 'doorD', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1562', '105', '368', 'pillow*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1563', '105', '369', 'pillow*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1565', '105', '371', 'pillow*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1566', '94', '372', 'pillow*2', '200', '200', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1567', '105', '373', 'pillow*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1568', '105', '374', 'pillow*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1569', '105', '375', 'pillow*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1570', '105', '376', 'pillow*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1571', '105', '377', 'pillow*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1572', '95', '1410', 'ads_ob_pillow', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1573', '94', '379', 'marquee*2', '250', '250', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1574', '105', '407', 'rare_dragonlamp*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1575', '94', '408', 'rare_dragonlamp*0', '250', '250', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1576', '105', '409', 'rare_dragonlamp*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1577', '105', '410', 'rare_dragonlamp*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1578', '105', '411', 'rare_dragonlamp*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1579', '105', '412', 'rare_dragonlamp*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1580', '105', '413', 'rare_dragonlamp*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1581', '105', '414', 'rare_dragonlamp*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1582', '105', '415', 'rare_dragonlamp*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1583', '105', '416', 'rare_dragonlamp*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1584', '105', '430', 'rare_fan*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1585', '58', '1411', 'lostc_merdragon', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1588', '105', '380', 'marquee*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1589', '105', '382', 'marquee*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1590', '105', '383', 'marquee*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1591', '105', '384', 'marquee*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1592', '105', '385', 'marquee*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1593', '105', '386', 'marquee*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1594', '105', '387', 'marquee*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1595', '105', '381', 'marquee*10', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1596', '105', '427', 'rare_fan*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1598', '105', '428', 'rare_fan*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1599', '105', '429', 'rare_fan*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1600', '105', '430', 'rare_fan*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1601', '105', '431', 'rare_fan*0', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1602', '105', '432', 'rare_fan*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1603', '105', '433', 'rare_fan*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1604', '105', '434', 'rare_fan*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1605', '105', '435', 'rare_fan*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1606', '105', '436', 'rare_fan*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1607', '95', '1589', 'ads_calip_fan', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1608', '62', '1667', 'industrialfan', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1609', '57', '449', 'cn_lamp', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1610', '57', '450', 'cn_sofa', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1611', '95', '1302', 'ads_dave_cns', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1612', '105', '468', 'rubberchair*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1613', '105', '469', 'rubberchair*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1614', '105', '470', 'rubberchair*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1615', '105', '471', 'rubberchair*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1616', '105', '472', 'rubberchair*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1617', '105', '473', 'rubberchair*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1618', '105', '477', 'rubberchair*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1619', '105', '478', 'rubberchair*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1620', '105', '463', 'traffic_light*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1621', '105', '464', 'traffic_light*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1622', '105', '465', 'traffic_light*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1623', '105', '466', 'traffic_light*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1624', '105', '467', 'traffic_light*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1625', '105', '683', 'traffic_light*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1626', '105', '474', 'barrier*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1627', '105', '475', 'barrier*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1628', '105', '476', 'barrier*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1629', '94', '667', 'sandrug', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1630', '105', '671', 'sleepingbag*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1631', '105', '672', 'sleepingbag*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1632', '105', '673', 'sleepingbag*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1633', '105', '674', 'sleepingbag*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1634', '105', '676', 'sleepingbag*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1635', '105', '677', 'sleepingbag*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1636', '105', '678', 'sleepingbag*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1637', '105', '679', 'sleepingbag*10', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1638', '105', '680', 'sleepingbag*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1639', '105', '681', 'sleepingbag*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1640', '13', '755', 'CF_10_coin_gold', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1641', '13', '756', 'CF_1_coin_bronze', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1642', '13', '757', 'CF_20_moneybag', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1643', '12', '758', 'CF_50_goldbar', '50', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1644', '13', '759', 'CF_5_coin_silver', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1645', '65', '831', 'theatre_seat', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1646', '32', '938', 'chair_basic*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1647', '32', '945', 'chair_basic*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1648', '40', '1009', 'carpet_soft_tut', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1649', '66', '1025', 'hal_cauldron', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1650', '66', '1026', 'hal_grave', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1651', '66', '1318', 'det_divider', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1652', '66', '1320', 'det_body', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1653', '66', '1719', 'det_bhole', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1654', '5', '1719', 'det_bhole', '5', '0', '0', '3', '0', '0');INSERT INTO `catalog_items` VALUES ('1655', '121', '794', 'sound_machine', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1656', '121', '859', 'sound_machine*1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1657', '121', '861', 'sound_machine*2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1658', '121', '862', 'sound_machine*3', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1659', '121', '863', 'sound_machine*4', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1660', '121', '864', 'sound_machine*5', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1661', '121', '865', 'sound_machine*6', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1662', '121', '866', 'sound_machine*7', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1663', '121', '990', 'sound_machine_pro', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1664', '122', '850', 'sound_set_1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1665', '122', '851', 'sound_set_2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1666', '122', '852', 'sound_set_3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1667', '122', '853', 'sound_set_4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1668', '122', '854', 'sound_set_5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1669', '122', '855', 'sound_set_6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1670', '122', '856', 'sound_set_7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1671', '122', '857', 'sound_set_8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1672', '122', '858', 'sound_set_9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1673', '122', '872', 'sound_set_27', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1674', '122', '873', 'sound_set_26', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1675', '122', '871', 'sound_set_28', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1676', '122', '874', 'sound_set_25', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1677', '122', '875', 'sound_set_24', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1678', '122', '876', 'sound_set_23', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1679', '122', '878', 'sound_set_22', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1680', '122', '877', 'sound_set_22', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1681', '122', '879', 'sound_set_20', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1682', '122', '880', 'sound_set_19', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1683', '122', '881', 'sound_set_18', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1684', '122', '882', 'sound_set_17', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1685', '122', '883', 'sound_set_16', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1686', '122', '884', 'sound_set_15', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1687', '122', '885', 'sound_set_14', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1688', '122', '886', 'sound_set_13', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1689', '122', '887', 'sound_set_12', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1690', '122', '888', 'sound_set_11', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1691', '122', '889', 'sound_set_10', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1692', '122', '982', 'sound_set_36', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1693', '122', '983', 'sound_set_35', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1694', '122', '984', 'sound_set_34', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1695', '122', '985', 'sound_set_33', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1696', '122', '986', 'sound_set_32', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1697', '122', '987', 'sound_set_31', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1698', '122', '988', 'sound_set_30', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1699', '122', '989', 'sound_set_29', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1700', '122', '1002', 'sound_set_37', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1701', '122', '1010', 'sound_set_44', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1702', '122', '1011', 'sound_set_43', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1703', '122', '1012', 'sound_set_42', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1704', '122', '1013', 'sound_set_41', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1705', '122', '1014', 'sound_set_40', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1706', '122', '1015', 'sound_set_39', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1707', '122', '1016', 'sound_set_38', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1708', '122', '1027', 'sound_set_52', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1709', '122', '1028', 'sound_set_51', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1710', '122', '1029', 'sound_set_50', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1711', '122', '1030', 'sound_set_49', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1712', '122', '1031', 'sound_set_48', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1713', '122', '1032', 'sound_set_47', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1714', '122', '1033', 'sound_set_46', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1715', '122', '1034', 'sound_set_45', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1716', '122', '1041', 'sound_set_54', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1717', '122', '1042', 'sound_set_53', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1718', '122', '1056', 'sound_set_59', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1719', '122', '1057', 'sound_set_58', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1720', '122', '1058', 'sound_set_57', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1721', '122', '1059', 'sound_set_56', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1722', '122', '1060', 'sound_set_55', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1723', '122', '1101', 'sound_set_61', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1724', '122', '1102', 'sound_set_60', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1725', '122', '1136', 'sound_set_64', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1726', '122', '1137', 'sound_set_63', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1727', '122', '1138', 'sound_set_62', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1728', '122', '1173', 'sound_set_70', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1729', '122', '1174', 'sound_set_69', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1730', '122', '1175', 'sound_set_68', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1731', '122', '1176', 'sound_set_67', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1732', '122', '1177', 'sound_set_66', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1733', '122', '1178', 'sound_set_65', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1734', '122', '1382', 'sound_set_71', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1735', '122', '1551', 'sound_set_72', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1736', '95', '868', 'rclr_sofa', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1737', '72', '867', 'rom_lamp', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1738', '95', '869', 'rclr_garden', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1739', '95', '870', 'rclr_chair', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1740', '95', '991', 'rare_mnstr', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1752', '121', '1008', 'jukebox*1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1742', '105', '993', 'one_way_door*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1743', '105', '994', 'one_way_door*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1744', '105', '995', 'one_way_door*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1745', '105', '996', 'one_way_door*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1746', '105', '997', 'one_way_door*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1747', '105', '998', 'one_way_door*8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1748', '105', '999', 'one_way_door*9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1753', '66', '1023', 'habboween_crypt', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1750', '105', '992', 'one_way_door*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1754', '66', '1024', 'habboween_grass', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1755', '39', '1044', 'plant_mazegate_snow', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1756', '39', '1045', 'plant_maze_snow', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1759', '123', '1062', 'noob_table*2', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1760', '123', '1063', 'noob_table*3', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1808', '75', '1107', 'sand_cstl_wall', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1762', '123', '1064', 'noob_table*4', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1763', '123', '1065', 'noob_table*5', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1764', '123', '1066', 'noob_table*6', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1765', '123', '1067', 'noob_stool*1', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1766', '123', '1068', 'noob_stool*2', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1767', '123', '1069', 'noob_stool*3', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1768', '123', '1070', 'noob_stool*4', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1769', '123', '1071', 'noob_stool*5', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1770', '123', '1072', 'noob_stool*6', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1771', '123', '1073', 'noob_rug*1', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1772', '123', '1074', 'noob_rug*2', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1773', '123', '1075', 'noob_rug*3', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1774', '123', '1076', 'noob_rug*4', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1775', '123', '1077', 'noob_rug*5', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1776', '123', '1078', 'noob_rug*6', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1777', '123', '1079', 'noob_lamp*1', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1778', '123', '1080', 'noob_lamp*2', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1779', '123', '1081', 'noob_lamp*3', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1780', '123', '1082', 'noob_lamp*4', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1781', '123', '1083', 'noob_lamp*5', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1782', '123', '1084', 'noob_lamp*6', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1783', '123', '1085', 'noob_chair*1', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1784', '123', '1086', 'noob_chair*2', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1785', '123', '1087', 'noob_chair*3', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1786', '123', '1088', 'noob_chair*4', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1787', '123', '1089', 'noob_chair*5', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1788', '123', '1090', 'noob_chair*6', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1826', '126', '1168', 'tiki_corner', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1825', '126', '1167', 'tiki_junglerug', '45', '0', '0', '10', '0', '0');INSERT INTO `catalog_items` VALUES ('1824', '126', '1167', 'tiki_junglerug', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1823', '126', '1166', 'tiki_parasol', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1822', '126', '1165', 'tiki_sand', '45', '0', '0', '10', '0', '0');INSERT INTO `catalog_items` VALUES ('1821', '126', '1165', 'tiki_sand', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1795', '123', '1185', 'noob_plant', '0', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1820', '126', '1164', 'tiki_statue', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1819', '126', '1163', 'tiki_torch', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1818', '126', '1162', 'tiki_toucan', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1817', '126', '1161', 'tiki_tray0', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1816', '126', '1159', 'tiki_tray2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1815', '126', '1160', 'tiki_tray1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1832', '76', '1103', 'fortune', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1813', '126', '1158', 'tiki_tray3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1812', '126', '1157', 'tiki_tray4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1811', '126', '1156', 'tiki_waterfall', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1809', '75', '1108', 'sand_cstl_twr', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1810', '75', '1109', 'sand_cstl_gate', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1827', '126', '1169', 'tiki_bflies', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1828', '126', '1170', 'tiki_bench', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1829', '126', '1171', 'tiki_bardesk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1830', '126', '1690', 'tiki_wallplnt', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1831', '126', '1691', 'tiki_surfboard', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1833', '95', '1104', 'sw_table', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1834', '95', '1105', 'sw_raven', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1836', '95', '1106', 'sw_chest', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1838', '95', '1113', 'rclr_lamp', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1839', '95', '1117', 'md_rug', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1840', '95', '1116', 'nouvelle_trax', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1841', '95', '1139', 'jukebox_ptv*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1842', '121', '1141', 'traxsilver', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1843', '121', '1142', 'traxgold', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1844', '121', '1143', 'traxbronze', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1845', '95', '1144', 'bench_puffet', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1846', '13', '1145', 'CFC_500_goldbar', '500', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1847', '13', '1146', 'CFC_200_moneybag', '200', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1848', '13', '1148', 'CFC_100_coin_gold', '100', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1851', '128', '19940', 'urban_bench_plain', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1850', '13', '1149', 'CFC_50_coin_silver', '50', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1852', '95', '1328', 'ads_igorswitch', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1853', '95', '1329', 'ads_711*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1854', '95', '1330', 'ads_711*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1855', '95', '1331', 'ads_711*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1856', '95', '1332', 'ads_711*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1857', '95', '1333', 'ads_igorraygun', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1858', '95', '1412', 'ads_cldesk', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1859', '29', '1414', 'ads_cltele', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1860', '95', '1415', 'ads_clfloor', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1862', '95', '1327', 'ads_igorbrain', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1863', '29', '1417', 'ads_mall_tele', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1864', '95', '1441', 'ads_idol_floor1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1865', '95', '1442', 'ads_igor_dsk', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1866', '95', '1443', 'ads_idol_desk', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1867', '95', '1444', 'ads_idol_ch', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1868', '95', '1445', 'ads_igor_flask', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1869', '95', '1446', 'ads_idol_drape', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1870', '95', '1447', 'ads_idol_floor2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1871', '95', '1453', 'ads_idol_piano', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1872', '95', '1455', 'ads_711shelf', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1873', '95', '1464', 'ads_idol_jukebox*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1874', '95', '1465', 'ads_idol_pchair', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1875', '95', '1467', 'ads_idol_audChr', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1876', '95', '1468', 'ads_idol_trax', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1877', '29', '1469', 'ads_idol_tele', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1878', '95', '1474', 'ads_idol_mic', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1879', '95', '1475', 'ads_idol_hotspot', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1880', '95', '1476', 'ads_idol_clRack', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1881', '95', '1477', 'ads_idol_voting_ch', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1882', '95', '1491', 'ads_frankb', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1883', '95', '1508', 'ads_grefusa_cactus', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1884', '95', '1509', 'ads_idol_tube', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1885', '95', '1511', 'ads_idol_cork', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1886', '95', '1512', 'ads_cl_jukeb', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1887', '95', '1518', 'ads_idol_newsDsk', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1888', '95', '1524', 'ads_idol_ichair', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1889', '95', '1526', 'ads_reebok_block2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1890', '95', '1527', 'ads_malaco_rug', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1891', '95', '1530', 'ads_malaco_gu', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1892', '95', '1531', 'ads_clcake', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1893', '95', '1532', 'ads_cl_sofa', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1894', '95', '1533', 'ads_idol_tblCloth', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1895', '95', '1534', 'ads_idol_carpet', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1896', '95', '1535', 'ads_idol_lamp', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1897', '95', '1541', 'ads_goldtabl', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1898', '95', '1553', 'ads_calip_cola*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1899', '95', '1554', 'ads_calip_cola*2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1900', '95', '1555', 'ads_calip_cola*3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1901', '95', '1630', 'ads_711*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1902', '95', '1556', 'ads_calip_cola*4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1903', '95', '1562', 'ads_calip_chair', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1904', '95', '1563', 'ads_idol_trophy', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1905', '95', '1565', 'ads_calip_pool', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1906', '29', '1572', 'ads_calip_tele', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2106', '94', '247', 'rare_daffodil_rug', '800', '0', '0', '100', '0', '0');INSERT INTO `catalog_items` VALUES ('1908', '95', '1587', 'ads_calip_lava', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1909', '95', '1591', 'ads_mall_coffeem', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1910', '95', '1612', 'ads_mall_kiosk', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1911', '95', '1619', 'ads_elisa_gnome', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1912', '95', '1621', 'ads_oc_soda', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1913', '95', '1629', 'ads_711*5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1914', '95', '1631', 'ads_711*7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1915', '29', '1652', 'ads_1800tele', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1916', '95', '1707', 'ads_sunnyd', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1917', '95', '1711', 'ads_dave_wall', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1918', '95', '1714', 'ads_nokia_logo', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1919', '95', '1715', 'ads_nokia_phone', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1920', '95', '1720', 'ads_campguitar', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1921', '95', '1728', 'ads_cmusic', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1922', '95', '1741', 'ads_clwall1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1923', '95', '1742', 'ads_clwall2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1924', '95', '1743', 'ads_clwall3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1925', '95', '1744', 'ads_ob_wall', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1926', '95', '1745', 'ads_mall_window', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99000', '27', '99000', 'qt_xm10_nest', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1928', '95', '1750', 'ads_igor_wall', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1929', '95', '1751', 'ads_igorevilb', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1930', '95', '1752', 'ads_idol_wall', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1931', '95', '1753', 'ads_mall_winfur', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1932', '95', '1754', 'ads_mall_winpet', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1933', '95', '1758', 'ads_idol_tv', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1934', '95', '1760', 'ads_idol_mirror', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1935', '95', '1761', 'ads_mall_wincin', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1936', '95', '1762', 'ads_mall_winmus', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1937', '95', '1763', 'ads_mall_winbea', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1938', '95', '1765', 'ads_mall_winchi', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1939', '95', '1768', 'ads_mall_winice', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1940', '95', '1769', 'ads_mall_winspo', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1941', '95', '1770', 'ads_idol_logo', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1942', '95', '1773', 'ads_lin_wh_c', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1943', '95', '1774', 'ads_malaco_tv', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1944', '95', '1775', 'ads_puffet_tv', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1945', '95', '1776', 'ads_reebok_tv', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1946', '95', '1784', 'ads_mirror', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1947', '95', '1789', 'ads_wwe_poster', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1948', '95', '1790', 'ads_mall_wintra', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1949', '95', '1793', 'ads_veet', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1950', '95', '1797', 'ads_mall_wingar', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1951', '95', '1799', 'ads_mall_winclo', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2011', '88', '1725', 'hw_08_xray', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1954', '95', '20037', 'ads_calip_parasol', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1956', '95', '1172', 'tampax_rug', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1957', '95', '1692', 'tampax_wall', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1958', '105', '20025', 'pillar*6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1959', '55', '20026', 'shelves_norja*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1960', '30', '20027', 'bed_polyfon*2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1961', '55', '20028', 'divider_nor5*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1962', '76', '20029', 'val_cauldron', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1963', '32', '20030', 'pura_mdl5*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1964', '105', '20031', 'one_way_door*1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1976', '128', '20006', 'urban_fence_corner', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1966', '60', '20032', 'exe_globe', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2097', '95', '20041', 'year2010', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1968', '45', '20035', 'fx_bubble', '0', '250', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1969', '129', '20036', 'bump_tottero', '0', '50', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1970', '129', '1502', 'bump_road', '0', '75', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1971', '129', '1497', 'bump_lights', '0', '50', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1972', '129', '1496', 'bump_tires', '0', '50', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1973', '129', '1492', 'bump_signs', '0', '50', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1974', '103', '20034', 'diner_bardesk_corner*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1977', '128', '20016', 'urban_lamp', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1978', '128', '20018', 'urban_wall', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1979', '128', '20011', 'urban_wpost', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1980', '128', '20010', 'urban_sidewalk', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1981', '128', '20008', 'urban_bench', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1982', '128', '20007', 'urban_carsofa', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1983', '128', '20014', 'urban_blocker', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1984', '128', '20013', 'urban_bin', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1985', '128', '20012', 'urban_fence', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1986', '128', '20015', 'urban_bsktbll', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1987', '125', '19877', 'avatar_effect9', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1988', '125', '19878', 'avatar_effect6', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1989', '125', '19879', 'avatar_effect16', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1990', '125', '19880', 'avatar_effect2', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1991', '125', '19881', 'avatar_effect14', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1992', '125', '19882', 'avatar_effect15', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1993', '125', '19883', 'avatar_effect3', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1994', '125', '19884', 'avatar_effect17', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1995', '125', '19885', 'avatar_effect18', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1996', '125', '19886', 'avatar_effect1', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1997', '125', '19887', 'avatar_effect4', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1998', '125', '19888', 'avatar_effect5', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('1999', '125', '19889', 'avatar_effect7', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2000', '125', '19890', 'avatar_effect8', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2001', '125', '19891', 'avatar_effect10', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2002', '125', '19892', 'avatar_effect12', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2003', '125', '19893', 'avatar_effect13', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2004', '129', '19957', 'avatar_effect22', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2005', '129', '19958', 'avatar_effect19', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2006', '129', '19959', 'avatar_effect20', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2007', '129', '19960', 'avatar_effect21', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2016', '95', '1681', 'sw_stone', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2012', '95', '1718', 'netari_poster', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2013', '95', '1713', 'easy_poster', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2014', '95', '1684', 'md_logo_wall', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2015', '95', '1682', 'sw_hole', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2017', '95', '1680', 'sw_swords', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2018', '41', '1675', 'guitar_v', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2019', '41', '1674', 'guitar_skull', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2020', '43', '1673', 'habbowheel', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2021', '72', '1670', 'wallmirror', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2022', '85', '1633', 'pix_asteroid', '0', '2000', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2023', '71', '1626', 'rela_stone', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2024', '94', '1622', 'marsrug', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2025', '85', '1592', 'totem_planet', '0', '2000', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2026', '95', '1590', 'voting_ch', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2027', '73', '1586', 'transparent_floor', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2028', '95', '1583', 'clrack', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2029', '95', '1582', 'noticeboard', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2030', '95', '1577', 'audChr', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2031', '85', '1571', 'saturn', '0', '2000', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2032', '95', '1566', 'laptopdesk', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2033', '85', '1564', 'totem_head', '0', '2000', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2034', '29', '1538', 'env_telep', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2035', '95', '1529', 'tray_glasstower', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2036', '95', '1528', 'tray_champagne', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2037', '95', '1525', 'tray_cake', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2038', '34', '1522', 'env_tree4', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2039', '34', '1520', 'env_tree2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2040', '34', '1519', 'env_tree1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2044', '34', '1515', 'env_bushes', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2043', '34', '1516', 'env_bushes_gate', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2045', '34', '1514', 'env_tree3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2046', '34', '1513', 'env_grass', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2047', '34', '1513', 'env_grass', '15', '0', '0', '4', '0', '0');INSERT INTO `catalog_items` VALUES ('2048', '85', '1507', 'totem_leg', '0', '2000', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2110', '112', '20052', 'ads_twi_crest', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2050', '58', '1448', 'lostc_octopus', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2052', '85', '1430', 'planet_of_love', '0', '2000', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2054', '28', '1365', 'penguin_basic', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2055', '28', '1367', 'penguin_musketeer', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2056', '28', '1370', 'penguin_wrestler', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2057', '28', '1372', 'penguin_robot', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2058', '28', '1376', 'penguin_suit', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2059', '28', '1379', 'penguin_icehockey', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2060', '28', '1380', 'penguin_pilot', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2061', '28', '1381', 'penguin_ballet', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2062', '28', '1383', 'penguin_boxer', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2063', '28', '1384', 'penguin_glow', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2064', '28', '1385', 'penguin_swim', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2065', '28', '1386', 'penguin_sumo', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2066', '28', '1388', 'penguin_clown', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2067', '28', '1389', 'penguin_infected', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2068', '28', '1393', 'penguin_super', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2069', '28', '1396', 'penguin_rock', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2070', '28', '1399', 'penguin_ski', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2071', '28', '1400', 'penguin_skater', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2072', '28', '1402', 'penguin_elf', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2073', '28', '1403', 'penguin_bunny', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2074', '28', '1404', 'penguin_ninja', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2075', '28', '1405', 'penguin_magician', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2076', '28', '1406', 'penguin_hunchback', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2077', '28', '1407', 'penguin_cowboy', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2078', '28', '1408', 'penguin_punk', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2079', '28', '1409', 'penguin_pirate', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2080', '45', '1390', 'fx_flare', '0', '250', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2081', '95', '1377', 'svnr_fi', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2082', '45', '1371', 'fx_explosion', '0', '250', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2084', '95', '1202', 'svnr_aus', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2085', '95', '1201', 'svnr_de', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2086', '95', '1200', 'svnr_it', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2087', '95', '1199', 'svnr_nl', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2088', '95', '1198', 'svnr_uk', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2089', '36', '20024', 'table_plasto_square*9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2090', '76', '20021', 'heart', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2091', '95', '1303', 'easy_carpet', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2092', '95', '1304', 'easy_bowl2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2093', '95', '1319', 'netari_carpet', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2094', '40', '1325', 'sob_carpet', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2095', '95', '1326', 'igor_seat', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2098', '95', '20042', 'party_lantern', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2103', '56', '20045', 'arabian_tile', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2105', '29', '20048', 'ads_mall_elevator', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2112', '112', '20053', 'ads_twi_paint', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2107', '95', '20050', 'xm09_infotv', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2113', '112', '20054', 'ads_twi_windw', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2114', '112', '20055', 'ads_twi_bwall2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2115', '112', '20056', 'ads_twi_dreamc', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2116', '112', '20057', 'ads_twi_bwall1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2121', '56', '20059', 'arabian_wall', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2123', '73', '20064', 'sf_mbar', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2124', '27', '20063', 'xm09_cocoa', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2126', '142', '317', 'nest', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2127', '142', '318', 'petfood1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2128', '142', '319', 'petfood2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2129', '142', '320', 'petfood3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2130', '142', '321', 'waterbowl*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2131', '142', '322', 'waterbowl*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2132', '142', '326', 'toy1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2133', '142', '323', 'waterbowl*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2134', '142', '324', 'waterbowl*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2135', '142', '325', 'waterbowl*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2136', '142', '327', 'toy1*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2137', '142', '328', 'toy1*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2139', '142', '330', 'toy1*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2140', '142', '331', 'goodie1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2141', '142', '332', 'goodie1*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2142', '142', '333', 'goodie1*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2143', '142', '334', 'goodie2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2144', '142', '334', 'goodie2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2145', '134', '1478', 'ecotron_box', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2146', '134', '1479', 'eco_light2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2147', '134', '1480', 'eco_chair3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2148', '134', '1481', 'eco_table3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2149', '134', '1482', 'eco_lamp2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2150', '134', '1483', 'eco_sofa3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2151', '134', '1484', 'eco_table2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2152', '134', '1485', 'eco_fruits2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2153', '134', '1486', 'eco_sofa1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2154', '134', '1487', 'eco_fruits3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2155', '134', '1488', 'eco_light1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2156', '134', '1489', 'eco_tree1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2157', '134', '1490', 'eco_cactus2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2158', '134', '1493', 'eco_cactus1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2159', '134', '1494', 'eco_chair2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2160', '134', '1495', 'eco_cactus3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2161', '134', '1498', 'eco_lamp3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2164', '30', '631', 'divider_poly3*8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2163', '142', '819', 'petfood4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2165', '134', '164', 'present_gen', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2166', '134', '165', 'present_gen1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2167', '134', '166', 'present_gen2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2168', '134', '167', 'present_gen3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2169', '134', '168', 'present_gen4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2170', '134', '169', 'present_gen5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2171', '134', '170', 'present_gen6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2172', '134', '1450', 'lc_medusa2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2173', '134', '1007', 'song_disk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2174', '134', '1499', 'eco_table1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2175', '134', '1500', 'eco_chair1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2176', '134', '1501', 'eco_sofa2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2177', '134', '1503', 'eco_fruits1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2178', '134', '1504', 'eco_lamp1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2179', '134', '1505', 'eco_light3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2180', '134', '1506', 'eco_tree2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2181', '134', '1542', 'eco_mush1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2182', '134', '1547', 'eco_mush2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2183', '134', '1764', 'eco_curtains1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2184', '134', '1766', 'eco_curtains3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2185', '134', '1767', 'eco_curtains2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2195', '41', '20156', 'flag_dominicanrepublic', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2194', '41', '20155', 'flag_ecuador', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2193', '41', '20154', 'flag_chile', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2190', '41', '20151', 'flag_singapore', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2191', '41', '20153', 'flag_columbia', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2196', '41', '20157', 'flag_newzealand', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2197', '41', '20158', 'flag_malaysia', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2198', '41', '20160', 'flag_venezl', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2199', '41', '20161', 'flag_algeria', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2200', '41', '20162', 'flag_tunisia', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2201', '41', '20163', 'flag_panama', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2202', '41', '20164', 'flag_mexico', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2203', '41', '20165', 'flag_argentina', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2204', '41', '20166', 'flag_philippines', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2205', '41', '20167', 'flag_greece', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2206', '41', '20168', 'flag_peru', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2207', '41', '20169', 'flag_morocco', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2208', '41', '20170', 'flag_turkey', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2209', '136', '20117', 'bling_fridge', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2210', '136', '20121', 'bling_chair_a', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2211', '136', '20123', 'bling_pool', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2212', '136', '20124', 'bling_toilet', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2213', '136', '20126', 'bling_chair_c', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2214', '136', '20127', 'bling_chair_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2215', '136', '20128', 'bling_shwr', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2216', '136', '20129', 'bling_bed', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2217', '136', '20130', 'bling_sofa', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2218', '136', '20144', 'bling_fridge_restricted', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2219', '136', '20200', 'bling_sink', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2220', '136', '20202', 'bling_cabinet', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2223', '137', '20103', 'org_chairpnk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2224', '137', '20104', 'org_tblpnk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2225', '137', '20105', 'org_lampblk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2226', '137', '20106', 'org_lamppnk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2227', '137', '20107', 'org_table', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2228', '137', '20111', 'org_chairblk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2229', '137', '20112', 'org_tblblk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2230', '137', '20113', 'org_chrblk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2231', '137', '20115', 'org_chrpnk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2232', '76', '20125', 'val09_floor', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2233', '76', '20131', 'val09_floor2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2234', '76', '20198', 'val09_wdrobe_b', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2235', '76', '20199', 'val09_wall2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2236', '76', '20201', 'val09_wall1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2237', '76', '20204', 'val09_wdrobe_g', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2238', '76', '20134', 'val_hSeat*1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2239', '76', '20135', 'val_hSeat*2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2240', '76', '20136', 'val_hSeat*3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2241', '76', '20137', 'val_hSeat*4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2242', '76', '20138', 'val_hSeat*5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2243', '76', '20139', 'val_hSeat*6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2244', '76', '20140', 'val_hSeat*7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2245', '76', '20141', 'val_basket', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2246', '76', '20190', 'val_table1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2248', '27', '20093', 'xm09_lrgBauble', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2250', '93', '20109', 'xm09_trophy', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2251', '27', '20171', 'xm09_bauble_12', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2252', '27', '20172', 'xm09_bauble_16', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2253', '27', '20173', 'xm09_bauble_17', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2254', '27', '20174', 'xm09_bauble_15', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2255', '27', '20175', 'xm09_bauble_10', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2256', '27', '20176', 'xm09_bauble_9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2257', '27', '20177', 'xm09_bauble_18', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2258', '27', '20178', 'xm09_bauble_13', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2259', '27', '20179', 'xm09_bauble_2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2260', '27', '20180', 'xm09_bauble_1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2261', '27', '20181', 'xm09_bauble_22', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2262', '27', '20182', 'xm09_bauble_3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2263', '27', '20183', 'xm09_bauble_21', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2264', '27', '20184', 'xm09_bauble_8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2265', '27', '20185', 'xm09_bauble_4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2266', '27', '20186', 'xm09_bauble_5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2267', '27', '20187', 'xm09_bauble_11', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2268', '27', '20188', 'xm09_bauble_20', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2269', '27', '20191', 'xm09_bauble_14', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2270', '27', '20192', 'xm09_bauble_7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2271', '27', '20193', 'xm09_bauble_6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2272', '27', '20194', 'xm09_bauble_19', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2273', '76', '20132', 'teddy_basic', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2274', '76', '20133', 'teddy_pendergrass', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2275', '76', '20142', 'teddy_bear', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2276', '76', '20143', 'teddy_pink', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2277', '142', '20079', 'nest_plow_reg', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2278', '142', '20080', 'nest_snug_yel', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2279', '142', '20085', 'nest_snug_grn', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2280', '142', '20086', 'nest_snug_red', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2281', '142', '20087', 'nest_snug_grn', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2282', '142', '20088', 'nest_plow_bro', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2283', '142', '20089', 'nest_plow_red', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2284', '142', '20090', 'nest_snug_blu', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2285', '142', '20092', 'nest_plow_blu', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2286', '142', '20094', 'nest_dirt', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2287', '142', '20095', 'nest_snug_prp', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2288', '142', '20096', 'nest_nest', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2289', '142', '20097', 'nest_nails', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2290', '142', '20098', 'nest_basket', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2291', '142', '20099', 'nest_ice', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2292', '142', '20100', 'nest_plow_skl', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2293', '142', '20101', 'nest_snug_bla', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2294', '95', '20071', 'ads_gsArcade_2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2295', '95', '20073', 'ads_idol_l_carpet', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2296', '134', '20068', 'ads_cllava2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2297', '95', '20072', 'ads_gsArcade_1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2298', '95', '20074', 'ads_mtvtrophy_silver', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2299', '105', '20075', 'ads_spang_sleep', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2300', '95', '20076', 'ads_mtvtrophy_gold', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2301', '95', '20102', 'ads_cl_moodi', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2302', '95', '20116', 'ads_chups', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2303', '95', '20119', 'ads_droetker_paula', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2304', '95', '20145', 'ads_percyrock', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2305', '95', '20147', 'ads_idol_l_logo', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2306', '95', '20197', 'ads_percyw', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2307', '95', '20150', 'ads_mtv_tv', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2308', '95', '20196', 'ads_tv_jaapuisto', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2310', '134', '20159', 'byesw_loadscreen', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2312', '95', '20149', 'ads_mtv_bigtv', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2313', '95', '20148', 'ads_idol_l_tv', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2314', '27', '20066', 'tree2', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2317', '30', '20067', 'divider_poly3*7', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2318', '178', '20077', 'ktchn_hlthNut', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2319', '142', '20078', 'petfood8', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2320', '142', '20081', 'petfood9', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2321', '142', '20082', 'petfood10', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2322', '142', '20083', 'petfood7', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2323', '142', '20084', 'petfood6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2324', '142', '20091', 'petfood5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2325', '142', '20118', 'petfood12', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2326', '142', '20120', 'petfood11', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2327', '142', '20122', 'petfood13', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2329', '94', '20146', 'md_can', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2330', '66', '20152', 'hween09_curt', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2331', '57', '20108', 'china_tiger', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2332', '57', '20110', 'china_plmTree', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2333', '134', '20114', 'china_tigrSeat', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2334', '57', '20195', 'china_pstr3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2336', '62', '20207', 'rare_ironmaiden name', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2337', '95', '20208', 'rare_trex name', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2338', '143', '20209', 'beanstalk', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2339', '172', '20210', 'rare_vdoll name', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2340', '172', '20211', 'Sofa Mamut', '20', '20', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2341', '136', '20212', 'crystal_patch', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2342', '95', '20213', 'ads_boost_surfb name', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2343', '95', '20214', 'ads_tlc_wheel name', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2346', '94', '227', 'Dragon Egg', '100', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2348', '134', '180', 'doorC', '10', '0', '0', '100', '0', '0');INSERT INTO `catalog_items` VALUES ('2349', '141', '20220', 'a0 pet5', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2350', '143', '20221', 'garden_lupin4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2351', '143', '20222', 'garden_mursu3', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2352', '143', '20223', 'garden_lupin5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2353', '143', '20224', 'garden_seed', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2354', '143', '20225', 'garden_flytrap', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2355', '143', '20226', 'garden_flo3', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2359', '143', '20229', 'garden_mursu2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2357', '143', '20227', 'garden_volcano', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2358', '143', '20228', 'garden_flolamp', '8', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2360', '143', '20230', 'garden_jyrki', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2361', '143', '20231', 'garden_mursu4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2362', '143', '20232', 'garden_leaves', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2363', '143', '20233', 'garden_lupin2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2364', '143', '20234', 'garden_lupin3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2365', '143', '20235', 'garden_mursu', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2366', '143', '20238', 'garden_orchtree', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2367', '143', '20237', 'garden_flo2', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2368', '143', '20239', 'garden_lupin1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2369', '143', '20240', 'garden_staringbush', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2370', '143', '20242', 'garden_flo1', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2371', '143', '20243', 'garden_jungle', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2372', '143', '20286', 'garden_wall', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2374', '144', '20247', 'runway_display', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2375', '144', '20248', 'runway_bigchr_5', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2376', '144', '20249', 'runway_bigchr_4', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2377', '144', '20253', 'runway_stool', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2378', '144', '20254', 'runway_dvdr', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2379', '144', '20255', 'runway_block_2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2380', '144', '20256', 'runway_bigchr_1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2381', '144', '20260', 'runway_block_1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2382', '144', '20261', 'runway_bench', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2383', '144', '20262', 'runway_chair_2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2384', '144', '20265', 'runway_bigchr_3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2385', '144', '20268', 'runway_bigchr_2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2386', '144', '20270', 'runway_table_2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2387', '144', '20271', 'runway_table_1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2388', '144', '20272', 'runway_manqn_1', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2389', '144', '20276', 'runway_head', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2390', '144', '20277', 'runway_manqn_2', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2391', '144', '20285', 'runway_chair_1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2392', '144', '20289', 'runway_shelf', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2393', '144', '20292', 'runway_fabric', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2394', '8', '20245', 'hc2_frplc', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2395', '8', '20246', 'hc2_barchair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2396', '8', '20250', 'hc3_dc', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2397', '8', '20252', 'hc2_sofatbl', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2398', '8', '20257', 'hc2_biglamp', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2399', '8', '20258', 'hc2_sofa', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2400', '8', '20259', 'hc2_carpet', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2401', '8', '20264', 'hc3_table', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2402', '8', '20266', 'hc3_stool', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2403', '8', '20267', 'hc3_sofa', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2404', '8', '20269', 'hc2_armchair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2405', '8', '20273', 'hc2_dvn', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2406', '8', '20274', 'hc3_light', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2407', '8', '20275', 'hc3_shelf', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2408', '8', '20278', 'hc2_divider', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2409', '8', '20279', 'hc2_coffee', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2410', '8', '20280', 'hc2_cart', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2411', '8', '20281', 'hc3_bard', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2412', '8', '20282', 'hc3_hugelamp', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2413', '8', '20283', 'hc3_divider', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2414', '8', '20284', 'hc2_vase', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2415', '8', '20288', 'hc3_walldeco', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2416', '134', '20295', 'camera', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2417', '134', '20045', 'arabian_tile', '10', '0', '0', '100', '0', '0');INSERT INTO `catalog_items` VALUES ('2418', '95', '20241', 'ads_grefusa_yum', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2419', '95', '20244', 'merger_chesT', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2420', '95', '20263', 'ads_cheetos name', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2421', '95', '20287', 'ads_tv_yle name', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2422', '95', '20290', 'ads_nokia_x6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2423', '95', '20291', 'ads_target_wall', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2424', '95', '20293', 'ads_latrobe_flag', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2425', '27', '20296', 'holly', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2427', '145', '20298', 'wed_plant', '15', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2426', '145', '20297', 'wed_arch', '12', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2428', '145', '20299', 'wed_icesculp', '15', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2429', '145', '20300', 'wed_carsofa', '15', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2430', '147', '20301', 'a0 pet3', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2431', '148', '20303', 'a0 pet4', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2432', '149', '20304', 'a0 pet1', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2433', '150', '20305', 'a0 pet0', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2434', '151', '20306', 'a0 pet2', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2488', '69', '20392', 'ads_chocapic', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2489', '69', '20393', 'ads_tv_chocapic_01', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2490', '69', '20394', 'ads_super_pop', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2491', '69', '20395', 'party_crate1_1', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2492', '69', '20396', 'party_crate1_2', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2493', '69', '20397', 'party_crate1_3', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2494', '69', '20398', 'party_crate1_4', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2495', '69', '20399', 'party_crate2_1', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2496', '69', '20400', 'party_crate2_2', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2497', '69', '20401', 'party_crate2_3', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2498', '69', '20402', 'party_crate2_4', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2499', '69', '20403', 'party_djset', '30', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2483', '152', '20354', 'fball_score_y', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2482', '152', '20353', 'fball_score_r', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2481', '152', '20352', 'fball_score_g', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2480', '152', '20351', 'fball_score_b', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2479', '152', '20350', 'fball_ptch8', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2478', '152', '20349', 'fball_ptch7', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2477', '152', '20348', 'fball_ptch6', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2476', '152', '20347', 'fball_ptch5', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2475', '152', '20346', 'fball_ptch4', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2474', '152', '20345', 'fball_ptch3', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2473', '152', '20344', 'fball_ptch2', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2472', '152', '20343', 'fball_ptch1', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2471', '152', '20342', 'fball_ptch0', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2470', '152', '20341', 'fball_counter', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2469', '152', '20340', 'fball_gate', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2468', '152', '20339', 'fball_light', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2467', '152', '20338', 'fball_goal_y', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2466', '152', '20337', 'fball_goal_r', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2465', '152', '20336', 'fball_goal_g', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2464', '152', '20335', 'fball_goal_b', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2463', '152', '20334', 'fball_fnc3', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2462', '152', '20333', 'fball_fnc1', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2461', '152', '20332', 'fball_crnr', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2460', '152', '20331', 'fball_cote', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2459', '152', '20330', 'fball_bench', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2454', '152', '20324', 'fball_audbench', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99005', '27', '99005', 'qt_xm10_palm_tree', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2620', '163', '20428', 'ads_capri_arcade', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2619', '163', '20427', 'ads_capri_tree', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2616', '163', '20426', 'ads_capri_lava', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2615', '163', '20425', 'ads_capri_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99009', '27', '99009', 'qt_xm10_iceduck', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2601', '125', '20415', 'avatar_effect28', '0', '108', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2906', '185', '21298', 'Fuente Pez Morada', '32', '1', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2443', '185', '20313', 'Fuente Pez Sangrienta', '32', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2444', '185', '20314', 'Fuente Pez Oro', '32', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2445', '185', '20315', 'Fuente Pez Verde', '32', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2446', '185', '20316', 'Fuente Pez Roja', '32', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2447', '185', '20317', 'Fuente Pez Gris', '32', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('57016', '159', '39916', 'prison_crnr', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('57017', '159', '39913', 'prison_dvdr1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('57018', '159', '39912', 'prison_gate', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('57019', '159', '39911', 'prison_dvdr2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('57020', '159', '39914', 'prison_stone', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('57021', '159', '39915', 'prison_tower', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('57022', '159', '39913', 'prison_dvdr1', '20', '0', '0', '10', '0', '0');INSERT INTO `catalog_items` VALUES ('57023', '159', '39911', 'prison_dvdr2', '20', '0', '0', '10', '0', '0');INSERT INTO `catalog_items` VALUES ('57024', '8', '39917', 'hc3_stereo', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99004', '27', '99004', 'qt_xm10_trex', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97308', '75', '95383', 'bw_pool_a3', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77025', '75', '59939', 'bw_jaws', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41099', '75', '25365', 'bw_chair', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41098', '75', '25354', 'bw_boat', '12', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41097', '75', '25357', 'bw_sofa', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41095', '75', '25372', 'bw_fnc', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41094', '75', '25371', 'bw_fnc_crnr', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41092', '75', '25369', 'bw_van', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41091', '75', '25368', 'bw_mttrss', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41089', '75', '25366', 'bw_table', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41088', '75', '25364', 'bw_sboard', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41087', '75', '25363', 'bw_croc', '7', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41086', '75', '25362', 'bw_water_2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41085', '75', '25361', 'bw_shower', '6', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41084', '75', '25360', 'bw_ccnuts', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77024', '8', '59918', 'Vase Vip', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41083', '75', '25359', 'bw_fin', '15', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('41082', '75', '25355', 'bw_lgchair', '8', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97027', '95', '95371', 'Lava', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('129531', '185', '96401', 'Submarino', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('129530', '185', '96400', 'Nobox Amarillo', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('129529', '185', '96399', 'Nobox Azul', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('129528', '185', '96398', 'Nobox Rojo', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97323', '75', '95390', 'bw_table_p', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97322', '75', '95391', 'bw_van_p', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97321', '75', '95392', 'bw_van_g', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97320', '75', '95393', 'bw_sofa_g', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97319', '75', '95394', 'bw_sofa_p', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600000', '75', '25362', 'bw_water_2', '10', '0', '0', '50', '0', '0');INSERT INTO `catalog_items` VALUES ('97318', '75', '95395', 'bw_fnc_g', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97315', '75', '95376', 'bw_fnc_crnr_p', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97314', '75', '95377', 'bw_fnc_crnr_g', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97313', '75', '95378', 'bw_sofa_p', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97312', '75', '95379', 'bw_boat_p', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97311', '75', '95380', 'bw_mttrss_g', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97310', '75', '95381', 'bw_pool_b2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97309', '75', '95382', 'bw_pool_a2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97324', '75', '95389', 'bw_table_g', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97326', '75', '95387', 'bw_surfb_g', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97327', '75', '95386', 'bw_fnc_crnr_p', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97328', '75', '95385', 'bw_pool_b1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97329', '75', '95384', 'bw_pool_a1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97317', '75', '95374', 'ads_grefusa_surfb', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97316', '75', '95375', 'ads_pepsi0', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2449', '125', '21001', 'avatar_effect26', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2450', '125', '21002', 'avatar_effect25', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2451', '125', '21003', 'avatar_effect24', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2452', '125', '21004', 'avatar_effect23', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10289', '497', '10289', 'easel_0', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10290', '497', '10290', 'easel_1', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10291', '497', '10291', 'easel_2', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10292', '497', '10292', 'easel_3', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10293', '497', '10293', 'easel_4', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10294', '497', '10294', 'easel_2', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10278', '496', '10278', 'hosptl_bbag name', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10279', '496', '10279', 'hosptl_bed', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10280', '496', '10280', 'hosptl_cab1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10281', '496', '10281', 'hosptl_cab2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10282', '496', '10282', 'hosptl_curtain', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10283', '496', '10283', 'hosptl_defibs', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10284', '496', '10284', 'hosptl_light', '15', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10285', '496', '10285', 'hosptl_seat', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10286', '496', '10286', 'hosptl_skele', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10287', '496', '10287', 'hosptl_xray', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10355', '502', '10355', 'african_tree2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10354', '502', '10354', 'african_tree1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10353', '502', '10353', 'african_stage', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10352', '502', '10352', 'african_patch', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10351', '502', '10351', 'african_fence', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('10350', '502', '10350', 'african_bones', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97419', '178', '97419', 'ktchn10_block', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97420', '178', '97420', 'ktchn10_cabnt', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97421', '178', '97421', 'ktchn10_pot', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97422', '178', '97422', 'ktchn10_sink', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97423', '178', '97423', 'ktchn10_stove', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('97424', '178', '97424', 'ktchn10_tea', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77027', '75', '3530', 'bw_water_1', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600014', '120', '2785090', 'bb_knj1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600015', '120', '2785091', 'bb_gate_r', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600016', '120', '2785092', 'bb_tddhnd', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600017', '120', '2785093', 'bb_lightdiv', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600018', '120', '2785094', 'bb_tddhead', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600019', '120', '2785095', 'bb_pyramid', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600020', '120', '2785096', 'bb_patch1', '100', '0', '0', '100', '0', '0');INSERT INTO `catalog_items` VALUES ('600021', '120', '2785097', 'bb_fnc3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600022', '120', '2785098', 'bb_gate_y', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600023', '120', '2785099', 'bb_apparatus', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600024', '120', '2785100', 'bb_caterbody', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600026', '120', '2785102', 'bb_fnc1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600027', '120', '2785103', 'bb_puck', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600028', '120', '2785104', 'bb_rnd_tele', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600029', '120', '2785105', 'bb_gate_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600031', '120', '2785107', 'bb_painimies1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600032', '120', '2785108', 'bb_painimies2', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604003', '120', '2785079', 'bb_robo', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604004', '120', '2785080', 'bb_dragon', '8', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604005', '120', '2785081', 'bb_ducklight', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604006', '120', '2785082', 'bb_caterhead', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604007', '120', '2785083', 'bb_cargobox', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604008', '120', '2785084', 'bb_gate_g', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604009', '120', '2785085', 'bb_crchair3', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604011', '120', '2785087', 'bb_crchair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604012', '120', '2785088', 'bb_crchair2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2458', '152', '20329', 'fball_ball5', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2457', '152', '20328', 'fball_ball4', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2456', '152', '20326', 'fball_ball2', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('2455', '152', '20325', 'fball_ball', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600041', '66', '2785116', 'hween10_fogwall', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600040', '66', '2785115', 'hween10_zombie', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99008', '27', '99008', 'qt_xm10_xmduck', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99006', '27', '99006', 'qt_xm10_bench', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99007', '27', '99007', 'qt_xm10_icelupin', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('5683', '20', '2785096', 'bb_patch1', '5', '0', '0', '100', '0', '0');INSERT INTO `catalog_items` VALUES ('3568276', '142', '3568276', 'nest_lion', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3568277', '142', '3568277', 'nest_lion2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3568278', '142', '3568278', 'nest_rhino', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3568279', '142', '3568279', 'petfood14', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3568280', '142', '3568280', 'petfood15', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('5354', '168', '83545', 'a0 pet7', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('7457', '167', '84586', 'a0 pet6', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600042', '66', '2785117', 'hween10_bat', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600043', '66', '2785118', 'hween10_card_1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600044', '66', '2785119', 'hween10_card_2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600045', '66', '2785120', 'hween10_card_3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600046', '66', '2785121', 'hween10_card_4', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600047', '66', '2785122', 'hween10_card_5', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600048', '66', '2785123', 'hween10_card_6', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600049', '66', '2785124', 'hween10_chicken', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600050', '66', '2785125', 'hween10_ffly', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600051', '66', '2785126', 'hween10_fog', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600052', '66', '2785127', 'hween10_jar', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600053', '66', '2785128', 'hween10_logs', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600054', '66', '2785129', 'hween10_pond', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600055', '66', '2785130', 'hween10_portch', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600056', '66', '2785131', 'hween10_skullpost', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600057', '66', '2785132', 'hween10_swamp', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600058', '66', '2785133', 'hween10_tarot', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600059', '29', '2785134', 'hween10_tele', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600060', '66', '2785135', 'hween10_throne', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600061', '66', '2785136', 'hween10_tree', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600062', '66', '2785137', 'hween10_voodoo1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600063', '66', '2785138', 'hween10_voodoo2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600064', '66', '2785139', 'hween10_voodoo3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600065', '66', '2785140', 'hween10_wallskull', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604013', '120', '2785096', 'bb_patch1', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604014', '120', '2785106', 'bb_score_r', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604015', '120', '2785078', 'bb_score_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604016', '120', '2785086', 'bb_score_g', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('604017', '120', '2785089', 'bb_score_y', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('600033', '120', '2785109', 'bb_counter', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3568424', '60', '3568405', 'exe_sensor', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3568425', '60', '3568404', 'exe_seccam', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3568426', '60', '3568403', 'exe_wrkdesk', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3568427', '60', '3568402', 'exe_glassdvdr', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3568428', '60', '3568401', 'exe_copier', '5', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99010', '27', '99010', 'qt_xm10_bauble1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99011', '27', '99011', 'qt_xm10_bauble2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99012', '27', '99012', 'qt_xm10_bauble3', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99013', '27', '99013', 'qt_xm10_iceplasto', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99014', '27', '99014', 'qt_xm10_ice_fish', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99015', '27', '99015', 'qt_xm10_gnome', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99016', '27', '99016', 'qt_xm10_icesilotable', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99017', '27', '99017', 'qt_xm10_iceteddy', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99018', '27', '99018', 'qt_xm10_elephant', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99019', '27', '99019', 'qt_xm10_iceclubsofa', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99020', '504', '99020', 'es_skating_ice', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99021', '27', '99021', 'es_sidewalk', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99022', '27', '99022', 'es_wpost', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99023', '504', '99023', 'es_tagging', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99024', '27', '99024', 'es_santa', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99025', '27', '99025', 'es_window', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99026', '27', '99026', 'es_bench', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99027', '27', '99027', 'es_fnc_1', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99028', '27', '99028', 'es_fnc_2', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99029', '27', '99029', 'es_fnc_crnr', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99030', '27', '99030', 'es_epictree', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99031', '27', '99031', 'es_icestar_g', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99032', '27', '99032', 'es_icestar_r', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99033', '27', '99033', 'es_icestar_y', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99034', '27', '99034', 'es_icestar', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99035', '504', '99035', 'es_puck', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99036', '27', '99036', 'es_roaster', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99037', '27', '99037', 'es_lmppst', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99038', '27', '99038', 'es_statue', '10', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99904', '501', '99904', 'year2011_waver_b', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99905', '501', '99905', 'year2011_waver_g', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99906', '501', '99906', 'year2011_waver_r', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99907', '501', '99907', 'year2011_waver_y', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99908', '501', '99908', 'prizetrophy_2011_y', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99909', '501', '99909', 'prizetrophy_2011_b', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99910', '501', '99910', 'prizetrophy_2011_r', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99911', '501', '99911', 'prizetrophy_2011_p', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99912', '501', '99912', 'prizetrophy_2011_g', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99913', '501', '99913', 'prizetrophy_2011_w', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99914', '501', '99914', 'year2011', '25', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99039', '504', '99020', 'es_skating_ice', '220', '0', '0', '24', '0', '0');INSERT INTO `catalog_items` VALUES ('13000', '303', '29281', 'wf_act_move_rotate', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13033', '303', '29315', 'wf_act_give_score', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13026', '305', '29307', 'wf_glowball', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13025', '305', '29306', 'wf_pressureplate', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13001', '303', '29281', 'wf_act_move_rotate', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13027', '303', '29309', 'wf_act_reset_timers', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13024', '305', '29305', 'wf_ringplate', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13023', '305', '29304', 'wf_firegate', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13022', '303', '29303', 'wf_act_toggle_state', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13021', '302', '29301', 'wf_trg_enter_room', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13020', '304', '29300', 'wf_cnd_time_less_than', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13019', '303', '29299', 'wf_act_show_message', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13018', '302', '29298', 'wf_trg_game_ends', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13017', '302', '29297', 'wf_trg_at_given_time', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13016', '302', '29296', 'wf_trg_walks_off_furni', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13015', '305', '29295', 'wf_wire4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13014', '305', '29294', 'wf_colorwheel', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13013', '302', '29293', 'wf_trg_says_something', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13012', '303', '29292', 'wf_act_teleport_to', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13011', '302', '29291', 'wf_trg_score_achieved', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13010', '305', '29290', 'wf_pyramid', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13009', '302', '29289', 'wf_trg_periodically', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13008', '305', '29288', 'wf_xtra_unseen', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13007', '305', '29287', 'wf_xtra_random', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13006', '302', '29286', 'wf_trg_state_changed', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13005', '305', '29285', 'wf_floor_switch2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13004', '305', '29284', 'wf_colortile', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13003', '304', '29283', 'wf_cnd_time_more_than', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13002', '305', '29282', 'wf_wire2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13032', '305', '29314', 'wf_wire1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13031', '304', '29313', 'wf_cnd_match_snapshot', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13030', '304', '29312', 'wf_cnd_trggrer_on_frn', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13029', '305', '29311', 'wf_arrowplate', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13028', '304', '29310', 'wf_cnd_furnis_hv_avtrs', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13034', '305', '29316', 'wf_wire3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13035', '305', '29317', 'wf_glassdoor', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13036', '303', '29318', 'wf_act_match_to_sshot', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13037', '305', '29319', 'wf_floor_switch1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13038', '302', '29320', 'wf_trg_game_starts', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('13039', '302', '29321', 'wf_trg_walks_on_furni', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77701', '136', '77701', 'bling11_block', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77702', '136', '77702', 'bling11_dvd', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77703', '136', '77703', 'bling11_dvn', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77704', '136', '77704', 'bling11_floor', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77705', '136', '77705', 'bling11_pillar', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77706', '136', '77706', 'bling11_plant', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77707', '136', '77707', 'bling11_rug1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77708', '136', '77708', 'bling11_rug2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77709', '136', '77709', 'bling11_seat1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77710', '136', '77710', 'bling11_seat2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77711', '136', '77711', 'bling11_slot', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77712', '136', '77712', 'bling11_sofa', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77713', '136', '77713', 'bling11_statue1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77714', '136', '77714', 'bling11_statue2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77715', '136', '77715', 'bling11_tele', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77716', '136', '77716', 'bling11_towels', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77717', '136', '77717', 'bling11_val11_floor', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77801', '94', '77801', 'china_rabbit', '200', '200', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77900', '94', '77900', 'qt_val11_holoduck', '200', '200', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77901', '94', '77901', 'qt_val11_holoheart', '200', '200', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77902', '76', '77902', 'qt_val11_discoball', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77903', '76', '77903', 'qt_val11_duckformer', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77904', '76', '77904', 'qt_val11_heartlights', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77905', '76', '77905', 'qt_val11_jellychair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77906', '76', '77906', 'qt_val11_jellyheart', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77907', '76', '77907', 'val11_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77908', '76', '77908', 'val11_playa', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('77909', '76', '77909', 'val11_rail', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89900', '900', '89900', 'limo_w_front', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89901', '900', '89901', 'limo_w_mid', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89902', '900', '89902', 'limo_w_mid2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89903', '900', '89903', 'limo_w_back', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89904', '900', '89904', 'petfood19', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89905', '900', '89905', 'petfood18', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89906', '900', '89906', 'petfood17', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89907', '900', '89907', 'gothic_st_glass', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89908', '900', '89908', 'gothic_candles', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89909', '900', '89909', 'gothic_bed', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89910', '94', '89910', 'gothic_bowl', '250', '250', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89911', '900', '89911', 'gothic_desk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89912', '900', '89912', 'ads_grefu_trophy', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89926', '900', '89926', 'cine_curtain', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89927', '900', '89927', 'cine_screen', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89928', '900', '89928', 'theatre_seat_g', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89929', '900', '89929', 'cine_tile', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89930', '900', '89930', 'cine_bench_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89931', '900', '89931', 'theatre_seat_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89932', '900', '89932', 'cine_roof', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89933', '900', '89933', 'cine_popcorn', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89934', '900', '89934', 'cine_bench', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89935', '900', '89935', 'cine_bench_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89936', '900', '89936', 'cine_ticket_booth', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89937', '900', '89937', 'cine_projector', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89914', '900', '89914', 'nest_frog', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89915', '900', '89915', 'pond', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89916', '900', '89916', 'val11_present', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89917', '900', '89917', 'prizetrophy_cine', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89918', '900', '89918', 'cine_vipsign', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89919', '900', '89919', 'limo_b_mid3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89920', '900', '89920', 'limo_b_mid2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89921', '900', '89921', 'limo_b_front', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89922', '900', '89922', 'limo_b_mid', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89923', '900', '89923', 'cine_star', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89924', '900', '89924', 'limo_b_back', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89925', '900', '89925', 'ads_bigtv_missmix', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89950', '900', '89950', 'fireworks_01', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89951', '900', '89951', 'fireworks_02', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89952', '900', '89952', 'fireworks_03', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89953', '900', '89953', 'fireworks_04', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89954', '900', '89954', 'fireworks_05', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89955', '900', '89955', 'fireworks_06', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89956', '900', '89956', 'fireworks_07', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('11111', '16', '266', 'Violet Parasol', '1000', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89938', '172', '89938', 'wf_box', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89939', '172', '89939', 'wf_maze', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89940', '172', '89940', 'ads_rangocactus', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89941', '172', '89941', 'cine_glass', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89942', '172', '89942', 'wf_cnd_has_furni_on', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89943', '172', '89943', 'cine_light2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89944', '172', '89944', 'cine_light1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99945', '174', '99945', 'cubie_rug_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99946', '174', '99946', 'cubie_lamp_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99947', '174', '99947', 'cubie_shelf_3_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99948', '174', '99948', 'cubie_shelf_4_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99949', '174', '99949', 'cubie_shelf_1_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99950', '174', '99950', 'cubie_shelf_1_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99951', '174', '99951', 'cubie_chair_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99952', '174', '99952', 'cubie_shelf_4_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99953', '174', '99953', 'cubie_bigtable_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99954', '174', '99954', 'cubie_shelf_0_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99955', '174', '99955', 'cubie_beanbag_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99956', '174', '99956', 'cubie_chair_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99957', '174', '99957', 'cubie_bed_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99958', '174', '99958', 'cubie_bigtable_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99959', '174', '99959', 'cubie_stool_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99960', '174', '99960', 'cubie_beanbag_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99961', '174', '99961', 'cubie_shelf_0_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99962', '174', '99962', 'cubie_shelf_2_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99963', '174', '99963', 'cubie_rug_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99964', '174', '99964', 'cubie_sofaseat_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99965', '174', '99965', 'cubie_table', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99966', '174', '99966', 'cubie_sofaseat_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99967', '174', '99967', 'cubie_bed_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99968', '174', '99968', 'cubie_shelf_3_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99969', '174', '99969', 'cubie_shelf_2_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99970', '174', '99970', 'cubie_lamp_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99971', '174', '99971', 'cubie_stool_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99972', '174', '99972', 'cubie_wallshelf_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99973', '174', '99973', 'cubie_decklight_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99974', '174', '99974', 'cubie_wallshelf_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('80378', '175', '80378', 'waasa_rug1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('80379', '175', '80379', 'waasa_rug2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('80380', '175', '80380', 'waasa_rug3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('80381', '175', '80381', 'waasa_rug4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('80382', '175', '80382', 'waasa_rug5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('80383', '175', '80383', 'waasa_chair_wood', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('80384', '175', '80384', 'waasa_aquarium', '8', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('80385', '175', '80385', 'newbie_nest', '1', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99979', '174', '99979', 'cubie_decal_1_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99978', '174', '99978', 'cubie_decklight_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99977', '174', '99977', 'cubie_decal_1_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99976', '174', '99976', 'cubie_decal_3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99975', '174', '99975', 'cubie_decal_0', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99980', '174', '99980', 'cubie_decal_2_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99981', '174', '99981', 'cubie_decal_3_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99982', '174', '99982', 'cubie_decal_2_p', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('99983', '174', '99983', 'cubie_decal_3_b', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89984', '175', '89984', 'newbie_present', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89985', '175', '89985', 'tv_flat', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89986', '175', '89986', 'waasa_table2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89987', '175', '89987', 'computer_flatscreen', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89988', '175', '89988', 'waasa_chair', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89989', '175', '89989', 'waasa_ship2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89990', '175', '89990', 'waasa_ship1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89991', '175', '89991', 'waasa_bunk_bed', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89992', '175', '89992', 'computer_laptop', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89993', '175', '89993', 'computer_old', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89994', '175', '89994', 'waasa_table1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89995', '175', '89995', 'waasa_desk', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89996', '175', '89996', 'waasa_wall_shelf2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('89997', '175', '89997', 'waasa_wall_shelf1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('6000', '169', '20600', 'a0 pet8', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('6001', '170', '20601', 'a0 pet11', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('6002', '171', '20602', 'a0 pet10', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('6003', '173', '20603', 'a0 pet12', '20', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3026', '15', '19896', 'wallpaper_single_210', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3027', '15', '19896', 'wallpaper_single_211', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3028', '15', '19896', 'wallpaper_single_212', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3029', '15', '19896', 'wallpaper_single_213', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3030', '15', '19896', 'wallpaper_single_214', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3031', '15', '19896', 'wallpaper_single_215', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3032', '15', '19896', 'wallpaper_single_216', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3033', '15', '19896', 'wallpaper_single_217', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3034', '15', '19896', 'wallpaper_single_218', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3035', '15', '19896', 'wallpaper_single_301', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3036', '15', '19896', 'wallpaper_single_302', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3037', '15', '19896', 'wallpaper_single_303', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3038', '15', '19896', 'wallpaper_single_304', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3039', '15', '19896', 'wallpaper_single_305', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3040', '15', '19896', 'wallpaper_single_306', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3041', '15', '19896', 'wallpaper_single_307', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3042', '15', '19896', 'wallpaper_single_401', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3043', '15', '19896', 'wallpaper_single_402', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3044', '15', '19896', 'wallpaper_single_403', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3045', '15', '19896', 'wallpaper_single_404', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3046', '15', '19896', 'wallpaper_single_405', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3047', '15', '19896', 'wallpaper_single_406', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3048', '15', '19896', 'wallpaper_single_407', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3049', '15', '19896', 'wallpaper_single_408', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3050', '15', '19896', 'wallpaper_single_501', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3051', '15', '19896', 'wallpaper_single_502', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3052', '15', '19896', 'wallpaper_single_503', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3053', '15', '19896', 'wallpaper_single_504', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3054', '15', '19896', 'wallpaper_single_505', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3055', '15', '19896', 'wallpaper_single_506', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3056', '15', '19896', 'wallpaper_single_507', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3057', '15', '19896', 'wallpaper_single_508', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3058', '15', '19896', 'wallpaper_single_601', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3059', '15', '19896', 'wallpaper_single_602', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3060', '15', '19896', 'wallpaper_single_603', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3061', '15', '19896', 'wallpaper_single_604', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3062', '15', '19896', 'wallpaper_single_605', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3063', '15', '19896', 'wallpaper_single_606', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3064', '15', '19896', 'wallpaper_single_607', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3065', '15', '19896', 'wallpaper_single_608', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3066', '15', '19896', 'wallpaper_single_609', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3067', '15', '19896', 'wallpaper_single_610', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3068', '15', '19896', 'wallpaper_single_701', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3069', '15', '19896', 'wallpaper_single_702', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3070', '15', '19896', 'wallpaper_single_703', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3071', '15', '19896', 'wallpaper_single_704', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3072', '15', '19896', 'wallpaper_single_705', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3073', '15', '19896', 'wallpaper_single_706', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3074', '15', '19896', 'wallpaper_single_707', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3075', '15', '19896', 'wallpaper_single_708', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3076', '15', '19896', 'wallpaper_single_709', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3077', '15', '19896', 'wallpaper_single_710', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3078', '15', '19896', 'wallpaper_single_801', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3079', '15', '19896', 'wallpaper_single_802', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3080', '15', '19896', 'wallpaper_single_803', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3081', '15', '19896', 'wallpaper_single_804', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3082', '15', '19896', 'wallpaper_single_805', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3083', '15', '19896', 'wallpaper_single_806', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3084', '15', '19896', 'wallpaper_single_807', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3085', '15', '19896', 'wallpaper_single_808', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3086', '15', '19896', 'wallpaper_single_809', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3087', '15', '19896', 'wallpaper_single_810', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3088', '15', '19896', 'wallpaper_single_901', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3089', '15', '19896', 'wallpaper_single_902', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3090', '15', '19896', 'wallpaper_single_903', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3091', '15', '19896', 'wallpaper_single_904', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3092', '15', '19896', 'wallpaper_single_905', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3093', '15', '19896', 'wallpaper_single_906', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3094', '15', '19896', 'wallpaper_single_907', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3095', '15', '19896', 'wallpaper_single_908', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3096', '15', '19896', 'wallpaper_single_1001', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3097', '15', '19896', 'wallpaper_single_1002', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3098', '15', '19896', 'wallpaper_single_1003', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3099', '15', '19896', 'wallpaper_single_1004', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3100', '15', '19896', 'wallpaper_single_1005', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3101', '15', '19896', 'wallpaper_single_1006', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3102', '15', '19896', 'wallpaper_single_1007', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3103', '15', '19896', 'wallpaper_single_1101', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3104', '15', '19896', 'wallpaper_single_1201', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3105', '15', '19896', 'wallpaper_single_1301', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3106', '15', '19896', 'wallpaper_single_1401', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3107', '15', '19896', 'wallpaper_single_1501', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3108', '15', '19896', 'wallpaper_single_1601', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3109', '15', '19896', 'wallpaper_single_1701', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3110', '15', '19896', 'wallpaper_single_1801', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3111', '15', '19896', 'wallpaper_single_1901', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3112', '15', '19896', 'wallpaper_single_1902', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3113', '15', '19896', 'wallpaper_single_2001', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3114', '15', '19896', 'wallpaper_single_2002', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3115', '15', '19896', 'wallpaper_single_2003', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3116', '15', '19896', 'wallpaper_single_2101', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3117', '15', '19896', 'wallpaper_single_2102', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3118', '15', '19896', 'wallpaper_single_2103', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3119', '15', '19896', 'wallpaper_single_2201', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3120', '15', '19896', 'wallpaper_single_2202', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3121', '15', '19896', 'wallpaper_single_2203', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3122', '15', '19896', 'wallpaper_single_2204', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3123', '15', '19896', 'wallpaper_single_2205', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3124', '15', '19896', 'wallpaper_single_2206', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3125', '15', '19896', 'wallpaper_single_2207', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3126', '15', '19896', 'wallpaper_single_2301', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3127', '15', '19896', 'wallpaper_single_2302', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3128', '15', '19896', 'wallpaper_single_2303', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3129', '15', '19896', 'wallpaper_single_2304', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3130', '15', '19896', 'wallpaper_single_2401', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3131', '15', '19896', 'wallpaper_single_2402', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3132', '15', '19896', 'wallpaper_single_2403', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3133', '15', '19896', 'wallpaper_single_2501', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3134', '15', '19896', 'wallpaper_single_2502', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3135', '15', '19896', 'wallpaper_single_2503', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3136', '15', '19896', 'wallpaper_single_2504', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3137', '15', '19896', 'wallpaper_single_2601', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3138', '15', '19896', 'wallpaper_single_2602', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3139', '15', '19896', 'wallpaper_single_2603', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3140', '15', '19896', 'wallpaper_single_2604', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3141', '15', '19896', 'wallpaper_single_2701', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3142', '15', '19896', 'wallpaper_single_2702', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3143', '15', '19896', 'wallpaper_single_2703', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3144', '15', '19896', 'wallpaper_single_2704', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3145', '15', '19896', 'wallpaper_single_2801', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3146', '15', '19896', 'wallpaper_single_2802', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3147', '15', '19896', 'wallpaper_single_2803', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3148', '15', '19896', 'wallpaper_single_2804', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3149', '15', '19896', 'wallpaper_single_2901', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3150', '15', '19896', 'wallpaper_single_2902', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3151', '15', '19896', 'wallpaper_single_2903', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3152', '15', '19896', 'wallpaper_single_2904', '4', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3153', '15', '19896', 'wallpaper_single_3001', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3154', '15', '19896', 'wallpaper_single_3002', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3155', '15', '19896', 'wallpaper_single_3003', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3156', '15', '19896', 'wallpaper_single_3004', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3157', '15', '19896', 'wallpaper_single_3101', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3158', '15', '19896', 'wallpaper_single_3102', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3159', '15', '19896', 'wallpaper_single_3103', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3160', '15', '19896', 'wallpaper_single_3104', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3161', '15', '19896', 'wallpaper_single_3105', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3162', '15', '19896', 'wallpaper_single_3106', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3163', '15', '19894', 'floor_single_101', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3164', '15', '19894', 'floor_single_102', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3165', '15', '19894', 'floor_single_102', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3166', '15', '19894', 'floor_single_104', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3167', '15', '19894', 'floor_single_105', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3168', '15', '19894', 'floor_single_106', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3169', '15', '19894', 'floor_single_107', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3170', '15', '19894', 'floor_single_108', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3171', '15', '19894', 'floor_single_109', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3172', '15', '19894', 'floor_single_110', '0', '100', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3173', '15', '19894', 'floor_single_111', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3174', '15', '19894', 'floor_single_201', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3175', '15', '19894', 'floor_single_202', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3176', '15', '19894', 'floor_single_202', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3177', '15', '19894', 'floor_single_204', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3178', '15', '19894', 'floor_single_205', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3179', '15', '19894', 'floor_single_206', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3180', '15', '19894', 'floor_single_207', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3181', '15', '19894', 'floor_single_208', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3182', '15', '19894', 'floor_single_209', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3183', '15', '19894', 'floor_single_210', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3184', '15', '19894', 'floor_single_211', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3185', '15', '19894', 'floor_single_201', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3186', '15', '19894', 'floor_single_202', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3187', '15', '19894', 'floor_single_202', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3188', '15', '19894', 'floor_single_204', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3189', '15', '19894', 'floor_single_205', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3190', '15', '19894', 'floor_single_206', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3191', '15', '19894', 'floor_single_207', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3192', '15', '19894', 'floor_single_401', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3193', '15', '19894', 'floor_single_402', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3194', '15', '19894', 'floor_single_402', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3195', '15', '19894', 'floor_single_404', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3196', '15', '19894', 'floor_single_405', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3197', '15', '19894', 'floor_single_406', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3198', '15', '19894', 'floor_single_407', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3199', '15', '19894', 'floor_single_408', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3200', '15', '19894', 'floor_single_409', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3201', '15', '19894', 'floor_single_410', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3202', '15', '19894', 'floor_single_501', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3203', '15', '19894', 'floor_single_502', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3204', '15', '19894', 'floor_single_502', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3205', '15', '19894', 'floor_single_504', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3206', '15', '19894', 'floor_single_505', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3207', '15', '19894', 'floor_single_506', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3208', '15', '19894', 'floor_single_507', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3209', '15', '19894', 'floor_single_601', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3210', '15', '19894', 'floor_single_602', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3211', '15', '19894', 'floor_single_602', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3212', '15', '19894', 'floor_single_604', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3213', '15', '19894', 'floor_single_605', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3214', '15', '19894', 'floor_single_606', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3215', '15', '19894', 'floor_single_607', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3216', '15', '19894', 'floor_single_608', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3217', '15', '19894', 'floor_single_609', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3218', '15', '19894', 'floor_single_610', '2', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3219', '15', '19926', 'landscape_single_1.1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3220', '15', '19926', 'landscape_single_2.1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3221', '15', '19926', 'landscape_single_3.1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3222', '15', '19926', 'landscape_single_4.1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3223', '15', '19926', 'landscape_single_5.1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3224', '15', '19926', 'landscape_single_6.1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3225', '15', '19926', 'landscape_single_7.1', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3226', '15', '19926', 'landscape_single_1.2', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3227', '15', '19926', 'landscape_single_1.3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3228', '15', '19926', 'landscape_single_2.3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3229', '15', '19926', 'landscape_single_3.3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3230', '15', '19926', 'landscape_single_4.3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3231', '15', '19926', 'landscape_single_5.3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3232', '15', '19926', 'landscape_single_6.3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3233', '15', '19926', 'landscape_single_7.3', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3234', '15', '19926', 'landscape_single_1.4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3235', '15', '19926', 'landscape_single_2.4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3236', '15', '19926', 'landscape_single_3.4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3237', '15', '19926', 'landscape_single_4.4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3238', '15', '19926', 'landscape_single_5.4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3239', '15', '19926', 'landscape_single_6.4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3240', '15', '19926', 'landscape_single_7.4', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3241', '15', '19926', 'landscape_single_1.5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3242', '15', '19926', 'landscape_single_2.5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3243', '15', '19926', 'landscape_single_3.5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3244', '15', '19926', 'landscape_single_4.5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3245', '15', '19926', 'landscape_single_5.5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3246', '15', '19926', 'landscape_single_6.5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3247', '15', '19926', 'landscape_single_7.5', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3248', '15', '19926', 'landscape_single_1.6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3249', '15', '19926', 'landscape_single_2.6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3250', '15', '19926', 'landscape_single_3.6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3251', '15', '19926', 'landscape_single_4.6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3252', '15', '19926', 'landscape_single_5.6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3253', '15', '19926', 'landscape_single_6.6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3254', '15', '19926', 'landscape_single_7.6', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3255', '15', '19926', 'landscape_single_1.7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3256', '15', '19926', 'landscape_single_2.7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3257', '15', '19926', 'landscape_single_3.7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3258', '15', '19926', 'landscape_single_4.7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3259', '15', '19926', 'landscape_single_5.7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3260', '15', '19926', 'landscape_single_6.7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3261', '15', '19926', 'landscape_single_7.7', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3262', '15', '19926', 'landscape_single_1.8', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3263', '15', '19926', 'landscape_single_1.9', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3264', '15', '19926', 'landscape_single_1.10', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3265', '15', '19926', 'landscape_single_1.11', '3', '0', '0', '1', '0', '0');INSERT INTO `catalog_items` VALUES ('3266', '15', '19926', 'landscape_single_7.12', '3', '0', '0', '1', '0', '0');
-- ------------------------------ Table structure for `catalog_marketplace_data`-- ----------------------------DROP TABLE IF EXISTS `catalog_marketplace_data`;CREATE TABLE `catalog_marketplace_data` (  `id` int(12) NOT NULL AUTO_INCREMENT,  `sprite` int(7) NOT NULL,  `sold` int(7) NOT NULL DEFAULT '0',  `avgprice` int(9) NOT NULL DEFAULT '0',  `daysago` int(5) NOT NULL DEFAULT '0',  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ------------------------------ Records of catalog_marketplace_data-- ----------------------------
-- ------------------------------ Table structure for `catalog_marketplace_offers`-- ----------------------------DROP TABLE IF EXISTS `catalog_marketplace_offers`;CREATE TABLE `catalog_marketplace_offers` (  `offer_id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `item_id` int(10) unsigned NOT NULL,  `user_id` int(10) unsigned NOT NULL,  `asking_price` int(11) NOT NULL,  `total_price` int(11) NOT NULL DEFAULT '0',  `public_name` text NOT NULL,  `sprite_id` int(11) NOT NULL,  `item_type` enum('1','2') NOT NULL DEFAULT '1',  `timestamp` double NOT NULL,  `state` enum('1','2') NOT NULL DEFAULT '1',  `extra_data` text NOT NULL,  `furni_id` int(10) unsigned NOT NULL,  PRIMARY KEY (`offer_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of catalog_marketplace_offers-- ----------------------------
-- ------------------------------ Table structure for `catalog_pages`-- ----------------------------DROP TABLE IF EXISTS `catalog_pages`;CREATE TABLE `catalog_pages` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `parent_id` int(11) NOT NULL DEFAULT '-1',  `caption` varchar(100) NOT NULL,  `icon_color` int(11) NOT NULL DEFAULT '1',  `icon_image` int(11) NOT NULL DEFAULT '1',  `visible` enum('0','1') NOT NULL DEFAULT '1',  `enabled` enum('0','1') NOT NULL DEFAULT '1',  `min_rank` int(10) unsigned NOT NULL DEFAULT '1',  `club_only` enum('0','1') NOT NULL DEFAULT '0',  `order_num` int(11) NOT NULL,  `page_layout` enum('default_3x3','frontpage','spaces','recycler','recycler_info','recycler_prizes','trophies','plasto','marketplace','marketplace_own_items','pets','pets2','club_buy','club_gifts') NOT NULL DEFAULT 'default_3x3',  `page_headline` text NOT NULL,  `page_teaser` text NOT NULL,  `page_special` text NOT NULL,  `page_text1` text NOT NULL,  `page_text2` text NOT NULL,  `page_text_details` text NOT NULL,  `page_text_teaser` text NOT NULL,  `vip_only` enum('1','0') NOT NULL DEFAULT '0',  `page_link_description` text NOT NULL,  `page_link_pagename` text NOT NULL,  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=901 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of catalog_pages-- ----------------------------INSERT INTO `catalog_pages` VALUES ('1', '-1', 'Front Page', '1', '1', '1', '1', '1', '0', '0', 'frontpage', 'catalog_frontpage_headline2_en', 'ts_mythbunnies_v1', '', 'We\'re updating the catalogue:)', 'How to get Habboon CreditsThere are lots of ways to earn Habboon Credits, here are just a few ways;\r\nEvery 15 minutes gain 75 credits                             Unlock achievements for credits                               Verify your email for 2500 credits                                 Purchase VIP for double credits!', 'Redeem a voucher code here:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('3', '-1', 'Classic Furni', '3', '2', '1', '0', '1', '0', '40', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('4', '-1', 'Pixel Shop', '5', '5', '1', '0', '1', '0', '60', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('5', '-1', 'Buy Habbo Club', '7', '75', '1', '0', '1', '0', '30', 'default_3x3', 'catalog_club_headline1', 'catalog_hc_teaser', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('7', '5', 'Buy Club', '1', '75', '1', '1', '1', '0', '10', 'default_3x3', 'habboclub_2', 'catalog_hc_teaser', '', 'Habbo club es mas privilejios y ya', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('8', '5', 'Furni', '1', '75', '1', '1', '1', '0', '20', 'default_3x3', 'habboclub_2', 'catalog_hc_teaser', '', 'We\'ve got all that exclusive club furniture available for you right here .. but for an exclusive price.', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('9', '-1', 'Ecotron', '3', '7', '1', '0', '1', '0', '70', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('10', '9', 'Ecotron', '1', '7', '1', '1', '1', '0', '10', 'recycler', 'catalog_recycler_headline3', 'ctlg_ecotron_image', '', 'Become an Eco-warrior', 'Recycle your worthless stuff and be rewarded with a random prize. Check out the prizes and the instructions for recycling.', 'Drag 5 items to the boxes below and click recycle!', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('11', '9', 'Rewards', '1', '26', '1', '1', '1', '0', '30', 'recycler_prizes', 'catalog_recycler_headline3', '', '', 'What are the prizes? Ecotron box may contain one of these:', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('12', '9', 'Instructions', '1', '42', '1', '1', '1', '0', '20', 'recycler_info', 'catalog_recycler_headline3', 'ctlg_ecotron_box', '', 'The Ecotron is a furni recycler. Get rid of old furni... what will you get in return? It\'s a surprise! Become a Habbo eco-warrior. No refunds!', 'How to use the Ecotron?', '1. Just drag 5 items from your hand to the Ecotron. One item / square. Recyclable items are marked in your inventory with an image. When you have 5 items in the boxes, click the \"Recycle\" button. You can now find the Ecotron prize box from your hand.\r\n\r\n2. Click the box to see its tag. Open the box, or trade it unopened. The timer shows you how long you have to wait before you can recycle more items. Check the prizes before you recycle- don\'t be surprised by the surprise!', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('13', '-1', 'Exchange', '11', '6', '1', '1', '1', '0', '90', 'default_3x3', 'catalog_bank_headline1', 'catalog_bank_teaser', 'catalog_special_txtbg1', 'You can exchange your Uber credits here for Exchange furniture, which you can use in a trade or simply exchange for actual credits.', '', 'Click on an item to see more details.', 'Gold! Glorious Gold!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('14', '-1', 'Pets Shop', '2', '8', '1', '0', '1', '0', '80', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('15', '3', 'Spaces', '1', '55', '1', '1', '1', '0', '0', 'spaces', 'catalog_spaces_headline1', '', '', 'Floors, wallpapers and landscapes - get a groovy combination for your room! Use our sample room below to try before you buy! Select your favourite designs and colours and simply click Buy!', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('16', '-1', 'Limited Edition', '1', '26', '1', '1', '1', '0', '20', 'default_3x3', 'catalog_limited_headline1', 'catalog_limited_teaser', '', 'Here for one week only, it\'s the purple umbrella! Grab it while you can!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('24', '3', 'Windows', '0', '63', '1', '1', '1', '0', '180', 'default_3x3', 'ctlg_windows_headline1_en', 'ctlg_windows_teaser1_en', 'catalog_special_txtbg2', 'Let some light in! Our windows come in many unique styles to give an exciting look to your room. Buy landscapes to go with your windows from the \'Spaces\' page!', '', 'Click on an item for more information.', 'Ooh, new view!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('26', '3', 'Moodlights', '0', '40', '1', '1', '1', '0', '90', 'default_3x3', 'catalog_dimmers_header_en', 'dimmers_teaser', '', 'Our range of moodlights allow you to control the atmosphere and transform your room in just a click. What will your room look like? Click the switch and find out now!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('27', '91', 'Christmas', '1', '64', '1', '1', '1', '0', '470', 'default_3x3', 'catalog_xmas_headline1', 'xmas2009_catalogue', 'catalog_special_txtbg2', 'Get yourself into the Christmas spirit with our selection of festive furni! From baubles to Reindeer poo, we\'ve got it all!', '', 'Click on an item for more information.', '\'tis the season!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('28', '91', 'Arctic', '0', '13', '1', '1', '1', '0', '350', 'default_3x3', 'catalog_arc_header1_en', 'catalog_arc_teaser1_en', '', 'Stay cool (or warm with out campfire!) with and create your own Winter Wonderland or Humble Homeland for your Penguins.', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('29', '3', 'Teleporters', '0', '58', '1', '1', '1', '0', '160', 'default_3x3', 'catalog_doors_headline1', 'catalog_door_a', 'catalog_special_txtbg1', 'Take your room to a whole new level with our range of space age teleporters! Just buy a pair, put one in each room and voila! You\'ll have two linked rooms!', '', 'Click on an item for more information.', 'Take your room to the next level!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('30', '3', 'Mode', '0', '39', '1', '1', '1', '0', '80', 'default_3x3', 'catalog_mode_headline1', 'catalog_mode_teaser1', 'catalog_special_txtbg2', 'Steely, grey industrial standard metal with a sleek design. The perfect range for a streetwise city dweller.', '', 'Click on an item for more information.', 'So shiny and new..', '0', '', '');INSERT INTO `catalog_pages` VALUES ('31', '3', 'Candy', '0', '19', '1', '1', '1', '0', '40', 'default_3x3', 'catalog_candy_headline1', 'catalog_candy_teaser1', 'catalog_special_txtbg2', 'A bit more feminine than \'Mode\', this will add a bit of glamour and glitz to your rooms. Lacking a few items? Head on over to the \'Mode\' catagory!', '', 'Click on an item for more information.', 'lol I killed a pink bear for this rug!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('32', '3', 'Pura', '0', '48', '1', '1', '1', '0', '120', 'default_3x3', 'catalog_pura_headline1', 'catalog_pura_teaser1', 'catalog_special_txtbg2', 'The clenest, freshest range. You can almost hear it breath cool and tranquility within your room. Use it to create a haven away from the hetic lifestyle of UberHotel.', '', 'Click on an item for more information.', 'So many colors!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('33', '3', 'Area', '0', '14', '1', '1', '1', '0', '20', 'default_3x3', 'catalog_area_headline1', 'catalog_area_teaser1', 'catalog_special_txtbg2', 'A chunky and sofisticated line for the down-to-earth, studious Uber. It\'s simplicty is beautful and will add a welcoming charm to every room.', '', 'Click on an item for more information.', 'Beautiful in it\'s simplicity! ', '0', '', '');INSERT INTO `catalog_pages` VALUES ('34', '351', 'Country', '0', '21', '1', '1', '1', '0', '20', 'default_3x3', 'country_header1_en_001', 'country_teaser1', 'catalog_special_txtbg2', 'Lets leave the busy city streets and head over to the wide abyss of golden whear, emerald fields and home grown, organic vegetables. Everything you need to create a farm!', '', 'Click on an item for more information.', 'Who\'d be a crow, eh?', '0', '', '');INSERT INTO `catalog_pages` VALUES ('35', '3', 'Lodge', '0', '37', '1', '1', '1', '0', '70', 'default_3x3', 'catalog_lodge_headline1', 'catalog_lodge_teaser1', 'catalog_special_txtbg2', 'For that splendid ski-lodge effect with an open fire and whisky on the sidebar. This range is for those who appreicate the true beauty of solid wood.', '', 'Click on an item for more information.', 'I liek wood!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('36', '3', 'Plastic', '0', '46', '1', '1', '1', '0', '110', 'plasto', 'catalog_plasto_headline1', '', '', 'Throw on an afro and grab a disco ball! Feel that retro, 1970s vibe? You soon will with this colourful, plastic range! Choose a colour to suit your mood and off you go!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('38', '3', 'Bathroom', '0', '17', '1', '1', '1', '0', '30', 'default_3x3', 'catalog_bath_headline1', 'catalog_bath_teaser1', 'catalog_special_txtbg2', 'Lets face it.. you can\'t live without your bathroom. Give yours guests somewhere to freshen up with our cheeful bathroom collection!', '', 'Click on an item for more information.', 'Every Uber needs one!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('39', '3', 'Plants', '0', '45', '1', '1', '1', '0', '100', 'default_3x3', 'catalog_plants_headline1', 'catalog_plants_teaser1', 'catalog_special_txtbg2', 'Every room needs some greenery, dear! Not only do they enhance the air quality, they cheer up a room to make it simply splendid! And what better gift for a friend than an elegant rose..', '', 'Click on an item for more information.', 'I\'m a tree!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('40', '3', 'Rugs', '0', '52', '1', '1', '1', '0', '140', 'default_3x3', 'catalog_rugs_headline1', 'catalog_posters_teaser1', 'catalog_special_txtbg2', 'Rugs for all occasions, white for weddings, black for funerals and everything in between! All rugs and non-slip and machine washable. Take your pick!', '', 'Click on an item for more information.', 'This\'ll be perfect in my room!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('41', '3', 'Gallery', '0', '47', '1', '1', '1', '0', '50', 'default_3x3', 'catalog_gallery_headline1', 'catalog_posters_teaser1', 'catalog_special_txtbg2', 'Adorn your walls with posters, art, plaques and wall hangings. This gallery is bursting with items to suit all tastes, traditional and modern!', '', 'Click on an item for more information.', 'Brighten up your walls!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('42', '3', 'Trophies', '0', '60', '1', '1', '1', '0', '170', 'trophies', 'catalog_trophies_headline1', '', '', 'Everyones a winner with Habboon trophies! Now you can reward all your friends with our pre-polished array of trohpies. In bronze, silver and gold. \r\nFirst choose your trophy model, then the metal and carefully type your inscription. Don\'t worry, we\'ll engrave it all with your name and the date.', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('43', '3', 'Accessories', '0', '11', '1', '1', '1', '0', '10', 'default_3x3', 'catalog_extra_headline1', 'catalog_extra_teaser1', 'catalog_special_txtbg2', 'However you like to place your essentials, its the finishing touches that really make a room and express your true personality. Don\'t forget, like anything else, you can move them all about to suit your mood!', '', 'Click on an item for more information.', 'I love my rabbit...', '0', '', '');INSERT INTO `catalog_pages` VALUES ('45', '4', 'Rentals', '0', '44', '1', '1', '1', '0', '230', 'default_3x3', 'catalog_pixelrent_headline1_en', 'catalog_pxl_teaser3_en', '', 'Hire some cool effects to add an explosive touch to your room. From bubbles to firestarters, you can enhance your room dramatically!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('58', '350', 'Bensalem', '0', '18', '1', '1', '1', '0', '30', 'default_3x3', 'catalog_lc_headline2_en', 'catalog_lc_teaser1_en_001', '', 'Under the seaaaaaaaaa, oh, Under the seaaaaaa! What will your underwater world look like? We have it all here, crabs, HIV and genital warts!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('59', '-1', 'Easter', '3', '25', '1', '1', '1', '0', '10', 'default_3x3', 'catalog_easter_headline1', 'catalog_easter_teaser1', '', 'Little birdies hatching from their eggs, pretty, dainty flowers blooming and cute rabbits bouncy in Spring meadows.. It\'s Easter!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('60', '351', 'Executive', '0', '27', '1', '1', '1', '0', '50', 'default_3x3', 'catalog_exe_headline1_en', 'catalog_exe_teaser_en', '', 'For the ultimate business man, the Executive range with its leather seats and Italian coffee is a dream! How about you try the easy lifestyle?', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('61', '351', 'Glass', '0', '29', '1', '1', '1', '0', '30', 'default_3x3', 'catalog_glass_headline1', 'catalog_glass_teaser1', '', 'You can really open up a space with this stylish glass furniture, just don\'t walk into it!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('62', '351', 'Gothic', '0', '30', '1', '1', '1', '0', '70', 'default_3x3', 'catalog_gothic_headline1', 'catalog_gothic_teaser1', '', 'As the church bells ring out midnight, you walk through your cobbled hall lit by candles, throw yourself into your medieval throne and paint your nails black. This is what we imagined when we ordered this range!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('63', '351', 'Sports', '0', '56', '1', '1', '1', '0', '180', 'default_3x3', 'sports', 'catalog_sports_teaser1', '', 'Sport contains all those vital Olympic pieces from running tracks to basketball courts! 3 2 1 GO!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('64', '351', 'Grunge', '0', '32', '1', '1', '1', '0', '80', 'default_3x3', 'catalog_grunge_headline1', 'catalog_gru_teaser_en', '', 'Sleeping rough? Make the streets a bit more bearable with our collection of homeless furni, Grunge!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('56', '350', 'Alhambra', '0', '12', '1', '1', '1', '0', '10', 'default_3x3', 'catalog_alh_headline1_en', 'catalog_alh_teaser1_en', '', 'For the cold Arabian nights and hot Arabian days, you\'ll need a palace.. and we have just what you need! Green blossom print should cover it just fine!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('57', '350', 'Asian', '0', '15', '1', '1', '1', '0', '20', 'default_3x3', 'catalog_asian_headline1', 'catalog_asian_teaser1', '', 'Ting tong! Ching chong? Ting chong ting, ping ping! I mean uh.. with our authentic Chinese furniture, you can make a beautiful oriental room!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('55', '3', 'Iced', '0', '13', '1', '1', '1', '0', '60', 'default_3x3', 'catalog_iced_headline1', 'catalog_iced_teaser1', '', 'The Iced range, squishy, soft and most definitely cool. Whatever your needs, this stylish range should  cover it!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('65', '351', 'HabboWood', '0', '33', '1', '1', '1', '0', '90', 'default_3x3', 'habbowood', '', '', 'No flash photography, darling! This range is only for the VIP Hollywood actors!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('66', '91', 'Halloween', '0', '34', '1', '1', '1', '0', '500', 'default_3x3', 'catalog_halloween_headline1', '', '', 'WooOOOOoooOOoo! Spooky! Don\'t wanna be left with this range at night.. who knows what would happen!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('67', '350', 'Japan', '0', '36', '1', '1', '1', '0', '50', 'default_3x3', 'catalog_jap_headline2_en', 'catalog_jap_teaser3_en', '', 'We have sushi, tatami and katana\'s! I have no idea what the difference is, but I sure know its Japanese! Fulfil your fantasies and buy some today!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('68', '350', 'Lost Tribe', '0', '38', '1', '1', '1', '0', '60', 'default_3x3', 'losttribe', 'LT_teaser_en', '', 'Start your own tribal village with our ancient furniture, all carved from hard wearing stone. NOTE: Lava is hot, get an adult to help you.', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('69', '351', 'Neon', '0', '41', '1', '1', '1', '0', '120', 'default_3x3', 'catalog_neon_header1_en', 'catalog_neon_teaser1_en', '', 'New years eve, birthdays and every other day of the year, there\'s always an exscuse for a party! So, why don\'t you buy some Neon furni!?', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('71', '351', 'Relax', '0', '49', '1', '1', '1', '0', '140', 'default_3x3', 'rela_header_en', 'rela_teaser_en', '', 'Relax after a busy day in the Welcome Lounge. Light a few candles, and chill out with a good read in a wicker chair. We understand the needs of an Uber with a hectic lifestyle!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('72', '351', 'Romantique', '0', '50', '1', '1', '1', '0', '150', 'default_3x3', 'catalog_romantique_headline1', 'catalog_rom_teaser_en', '', 'Found in a French barn, this sweet but sexily romantic range caters to every ladies needs. Just going to powder my nose!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('73', '351', 'Science Fiction', '0', '53', '1', '1', '1', '0', '170', 'default_3x3', 'sf_header_en', 'sf_teaser_en', '', 'Blipblop blip blip blip.. Oooh.. what\'s this button do?.. You can find out exactly what it does with our new Scifi range, batteries included!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('74', '350', 'Shalimar', '0', '54', '1', '1', '1', '0', '70', 'default_3x3', 'catalog_shal_header1_en', 'catalog_shal_teaser_en', '', 'Everyone loves Bollywood! Want some free credits? Tell Oscar you successfully read the Shalimar page! Tell no one else you found this Easter egg. Watch out for rose petals!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('75', '91', 'Summer', '0', '57', '1', '1', '1', '0', '320', 'default_3x3', 'catalog_frontpage_headline2_en', 'catalog_sum_teaser1_en', '', 'Phwoar! Start up the barbie! This range has everything you need for the perfect summer garden!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('76', '91', 'Love', '0', '62', '1', '1', '1', '0', '460', 'default_3x3', 'catalog_love_headline1', '', '', 'Love is in the air once again! Buy your sweetheart a rose or whisper sweet nothings in their ear on a love sofa. Can you feel it? <3', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('77', '350', 'Greek', '0', '31', '1', '1', '1', '0', '40', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Be transported back to ancient Greece with a couple of thousand pounds and British Airways. Until then, build your own panthenon with our realist Greek range!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('85', '91', 'Collectables', '0', '71', '1', '1', '7', '0', '10', 'default_3x3', 'catalog_pixeldeals_headline1_en', 'catalog_pxl_teaser2_en', '', 'The Pixel Collectables are the ultimate collectors items, requiring a mammoth 2000 pixels and credits to buy! If you collect all the pieces and manage to put them together in certain ways, you\'ll receive a special effect!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('88', '351', 'Virus', '0', '42', '1', '1', '1', '0', '210', 'default_3x3', 'catalog_vir_header1_en', 'catalog_vir_teaser_en', '', 'All of Uber\'s emergency pandemic supplies are kept here! They need a bit of a clean after the exploding puss disease but.. they\'ll do fine!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('91', '-1', 'Staff', '6', '28', '1', '0', '7', '0', '120', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('93', '91', 'Trophies', '1', '60', '1', '1', '7', '0', '10', 'trophies', 'catalog_trophies_headline1', '', '', 'This page contains special trophies available for staff to give as prizes. STAFF CAUGHT GIVING OUT THESE WITH NO REASON WILL BE DEMOTED.', '', 'Click in this grey box and type your inscription *carefully* - it\'s permanent!', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('94', '91', 'Rares', '1', '10', '1', '1', '7', '0', '20', 'default_3x3', 'catalog_rares_headline1', '', '', 'This page contains special rares available for staff. STAFF CAUGHT GIVING OUT THESE WITH NO REASON WILL BE DEMOTED.', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('95', '91', 'Promo', '1', '11', '1', '1', '7', '0', '30', 'default_3x3', 'catalog_rares_headline1', '', '', 'This page contains special promotional items available for staff. STAFF CAUGHT GIVING OUT THESE WITH NO REASON WILL BE DEMOTED.', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('105', '91', 'Rares', '0', '69', '1', '1', '7', '0', '570', 'default_3x3', 'catalog_rares_headline1', '', '', 'On this page, we have some lovely rares for you! We\'ve kept a few behind for competition and event prizes!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('103', '351', 'Diner', '0', '51', '1', '1', '1', '0', '40', 'default_3x3', 'diner', 'catalog_diner_teaser_en', '', 'Originally from the 50\'s this furni has been refurbished and put right into the catalogue! Use this with the Kitchen range for ultimate diner experience!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('112', '351', 'Twilight', '0', '64', '1', '1', '1', '0', '190', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'I\'ve never read the book, all I know is it has vampires playing basket ball and some heart throb called Edward Cullen, but the furni looks good!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('123', '4', 'Hello', '0', '35', '1', '1', '1', '0', '240', 'default_3x3', 'catalog_hello_header1_en', 'catalog_hello_teaser1_en', '', 'Hello Furni is available with Pixels and is perfect if you are decorating your room for the very first time. The Furni is yours to keep and therefore cannot be traded.', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('125', '4', 'Special Effects', '0', '61', '1', '1', '1', '0', '250', 'default_3x3', 'catalog_pixeleffects_headline1_en', 'catalog_pxl_teaser1_en', '', 'Tune your character with cool effects that fit the occasion. Ride the hoverboard and spit on the mic. Effects can be activated from the menu, by clicking on your avatar.', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('126', '350', 'Tiki', '0', '59', '1', '1', '1', '0', '80', 'default_3x3', 'catalog_tiki_header1_en', 'tiki_teaser', '', 'Imagine in the scene.. lost on a desert island when you stumble across a small local tribe.. now you can with our Tiki range!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('128', '351', 'Urban', '0', '26', '1', '1', '1', '0', '200', 'default_3x3', 'urban_header_en', 'urban_teaser_en', '', 'New York City styled furni range, Urban is perfect for any street, alleyway or road. Rubbish bins, street lights and benches, all the Urban furniture you need!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('129', '4', 'Automobile', '0', '16', '1', '1', '1', '0', '260', 'default_3x3', 'catalog_automobile_header1_en', 'catalog_automobile_teaser1_en', '', 'Every Uber needs a car effect! Not only do they bring a bit of the outside inside, they also enhance the air quality! And what better gift for a friend than a beautiful traffic sign or elegant pile of tires...', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('351', '-1', 'Themed Furni', '3', '2', '1', '0', '1', '0', '40', 'default_3x3', '', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('134', '91', 'System', '0', '1', '1', '1', '7', '0', '40', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('137', '91', 'Orgie', '51', '1', '1', '1', '1', '0', '550', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'The latest range from Ann Summers, the Orgie line. Made of soft, wipe clean plastic, its perfect for any three, four or fivesome!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('136', '351', 'Bling', '0', '42', '1', '1', '1', '0', '10', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Bling, Bling! Flash, Flash! Want to have that real celebrity lifestyle? Well, go somewhere else, all we have here is a tacky range of furni.', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('139', '14', 'Pets Info', '0', '42', '1', '1', '1', '0', '80', 'pets2', 'catalog_pet_headline1', 'ctlg_pet_note', '', 'Pets are inhabitants of uberHotel too, so each pet owner needs to know a bit about them. Look after your pet by looking through our key points below.', '', '', '- You cannot trade or give away pets. Once you purchase them, they will be yours forever.\r\n- You can own as many as you want, but you can have no more than 5 pets per room.\r\n- You can take pets with you to other rooms, should the room owner allow you to do so.\r\n- Your pet needs to be trained before it\'ll listen to your commands. By training your pets, you can gain some awesome achievements as well.', '0', '', '');INSERT INTO `catalog_pages` VALUES ('141', '14', 'Pigs', '0', '67', '1', '1', '1', '0', '10', 'pets', 'catalog_pet_headline1', '', '', 'These little scamps were destined for the dining table until we struck a deal with a local farmer to rescue their cute pigtails! Adopt your little piglet today, all you need now is a name.', '', 'Give a name:Pick a color:Pick a race:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('142', '14', 'Pet Accessories', '0', '43', '1', '1', '1', '0', '70', 'default_3x3', 'catalog_pet_headline1', 'ctlg_pet_teaser1', 'catalog_special_txtbg2', 'This page has everything you need to give your pet the happy life it deserves. We\'ve got a huge selection!', '', 'Click on an item for more information.', 'Keep \'em happy!', '0', '', '');INSERT INTO `catalog_pages` VALUES ('143', '351', 'Flower Power', '0', '73', '1', '1', '1', '0', '60', 'default_3x3', 'flowerpower', '', '', 'Woah! Far out man... let the petals take control. Lets collaborate on a hippy hideout and plant some seeds! Lucy in the sky with diamonds style eyy?!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('144', '351', 'Runway', '0', '74', '1', '1', '1', '0', '160', 'default_3x3', 'runway_header_en', 'runway_teaser_en', '', 'Spice up your salon, hair parlour or boutique with our stylish yet practical range! From sewing machines to comfy seating, we\'ve got the perfect option for you.', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('145', '91', 'Wedding', '0', '10', '1', '1', '1', '0', '560', 'default_3x3', 'Wedding', '', '', 'Quien es el afortunado de casarse?', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('147', '14', 'Terriers', '0', '66', '1', '1', '1', '0', '20', 'pets', 'catalog_pet_headline1', '', '', 'Good things come in small packages and Habbo\'s Terriers are no exception!', '', 'Give a name:Pick a color:Pick a race:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('148', '14', 'Bears', '0', '68', '1', '1', '1', '0', '30', 'pets', 'catalog_pet_headline1', '', '', 'A large, heavy, mammal that walks on the soles of its feet, with thick fur and a very short tail. Fall in love with our adorable range of Bears that include the Grizzly and Polar varieties!', '', 'Give a name:Pick a color:Pick a race:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('149', '14', 'Cats', '0', '20', '1', '1', '1', '0', '40', 'pets', 'catalog_pet_headline1', '', '', 'Fluff, whiskers, meows and purrs! You\'re about to enter the world of Habbo Cats. These cute little critters make great playmates and will keep you company if you look after them well. Find a new friend from our ever-changing selection.', '', 'Give a name:Pick a color:Pick a race:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('150', '14', 'Dogs', '0', '24', '1', '1', '1', '0', '50', 'pets', 'catalog_pet_headline1', '', '', 'Wet noses, paws, yaps and woofs! You\'re about to enter the world of Habbo Dogs. An adorable and faithful servant awaits you with a wagging tail everytime they see you. Find a new friend from our ever-changing selection.', '', 'Give a name:Pick a color:Pick a race:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('151', '14', 'Crocs', '0', '22', '1', '1', '1', '0', '60', 'pets', 'catalog_pet_headline1', '', '', 'Scaly skin, growls and snaps! You\'re about to enter the world of Habbo Crocs. Security for your room or to scare your friends a trustworthy and surprisingly loving companion can be yours. Find a new friend from our ever-changing selection.', '', 'Give a name:Pick a color:Pick a race:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('152', '503', 'Football', '0', '56', '1', '1', '1', '0', '20', 'default_3x3', 'WorldCup', 'worldcup_teaser', '', 'Football', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('102', '3', 'Rollers', '0', '96', '1', '1', '1', '0', '130', 'default_3x3', 'catalog_roller_headline1', 'catalog_teaser_rollers_en', '', 'Zoooooooom, Zooooooooooooooooooooooooooom! Was it a plane? Was it a bird!? No, it was Roy on a roller! You can use rollers in games, events or even just to  move a queue along.', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('163', '91', 'CapriSun', '1', '64', '1', '1', '1', '0', '90', 'default_3x3', 'caprisun_header', 'caprisun_teaser', '', 'Mira ese jugo, tal persona quiere tomarlo, ?eh? Hay muchas formas de refrescarse ahora en este verano. Y CapriSun es uno de los mejores refrescos de este verano 2010. ?Pruebalo!', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('185', '91', 'Fish Sources', '1', '18', '1', '1', '1', '0', '30', 'default_3x3', 'catalog_rares_headl ine1', '', '', '?Aqu? tienes una larga lista de rares! ?Aprov?chalos!.', '', 'Clickea en un furni para obtener m?s informaci?n.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('159', '351', 'Prison', '2', '14', '1', '1', '1', '0', '130', 'default_3x3', 'catalog_extra_headline1', 'catalog_extra_teaser1', 'catalog_special_txtbg2', '?Nuevos Furnis C?rcel en JavvoHB!', '', 'Wooow, JavvoHB siempre est? a la ultima.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('116', '-1', 'Marketplace', '6', '69', '1', '0', '1', '0', '30', 'default_3x3', 'marketplace', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('117', '116', 'Offers', '1', '70', '1', '1', '1', '0', '10', 'marketplace', 'marketplace', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('118', '116', 'My Sales', '1', '71', '1', '1', '1', '0', '20', 'marketplace_own_items', 'marketplace', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('172', '91', 'Special Offers', '0', '3', '1', '1', '7', '0', '60', 'default_3x3', 'catalog_cltbs_header1_en', 'catalog_cltbs_teaser_en', '', 'Los Raros coleccionables son Furni especial que se vende s??lo por un breve espacio de tiempo. Aumentan tu poder de cambio y lucen como ning??n otro objeto en tus Salas.', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('121', '6', 'Trax Machines', '0', '4', '1', '1', '7', '0', '520', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Buy your Trax machines here, ready to load with all your wonderful, musical creations! Check the Sound Sets page for all the discs you could use!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('497', '91', 'Stray Pixels', '1', '64', '1', '1', '1', '0', '70', 'default_3x3', 'Stray Pixel', '', '', 'Stray Pixel', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('496', '351', 'Hospital', '10', '1', '1', '1', '1', '0', '100', 'default_3x3', 'The new hospital furniture range is here! Buy it now and create your own Hospital!', '', '', 'The new hospital furniture range is here! Buy it now and create your own Hospital!', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('502', '350', 'Africa', '1', '30', '1', '1', '1', '0', '0', 'default_3x3', 'The new African furniture range is here!', '', '', 'The new African furniture range is here!', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('178', '351', 'Kitchen', '1', '51', '1', '1', '1', '0', '110', 'default_3x3', '', '', '', 'Cocina con los nuevos objetos de HabbliX', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('122', '6', 'Trax Packs', '0', '4', '1', '1', '1', '0', '530', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'We have every sound you could ever want right here! From sound effects and ambient tunes to rock and roll and heavy metal!', '', 'Click on an item for more information.', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('6', '-1', 'Trax Shop', '4', '4', '1', '0', '7', '0', '110', 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('120', '503', 'Battle Banzai', '5', '78', '1', '1', '1', '0', '10', 'default_3x3', 'Battlebanzai', 'catalog_battleBanzai_teaser', '', 'Prepare for Battle Banzai!', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('168', '14', 'Rhino', '1', '77', '1', '1', '1', '0', '60', 'pets', 'catalog_pet_headline1', '', '', '', '', 'Give a name:Pick a color:Pick a race:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('167', '14', 'Lion', '1', '76', '1', '1', '1', '0', '0', 'pets', 'catalog_pet_headline1', '', '', '', '', 'Give a name:Pick a color:Pick a race:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('900', '91', 'NewShit', '1', '1', '1', '1', '7', '0', '50', 'default_3x3', '', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('501', '91', 'New Year 2011', '1', '91', '1', '1', '1', '0', '990', 'default_3x3', 'catalog_frontpage_headline2_en', 'catalog_limited_teaser_en', '', 'Hello 2011!', '', 'Click an item for more info!', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('503', '-1', 'Games', '1', '60', '1', '0', '1', '0', '50', 'default_3x3', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '0', '', '');INSERT INTO `catalog_pages` VALUES ('504', '503', 'Ice Tag', '1', '86', '1', '1', '1', '0', '30', 'default_3x3', 'arctic', ' ', ' ', 'Coming Soon', ' ', 'Coming Soon', ' ', '0', '', '');INSERT INTO `catalog_pages` VALUES ('505', '503', 'Freeze!', '1', '87', '1', '1', '1', '0', '40', 'default_3x3', 'arctic', ' ', ' ', 'Coming Soon', ' ', 'Coming Soon', ' ', '0', '', '');INSERT INTO `catalog_pages` VALUES ('301', '-1', 'Wired Furni', '1', '80', '1', '0', '1', '0', '90', 'default_3x3', '', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('302', '301', 'Triggers', '1', '81', '1', '1', '1', '0', '10', 'default_3x3', 'catalog_wired_header2_en', 'ctlg_pic_wired_triggers', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('303', '301', 'Effects', '1', '82', '1', '1', '1', '0', '20', 'default_3x3', 'catalog_wired_header3_en', 'ctlg_pic_wired_effects', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('304', '301', 'Conditions', '1', '83', '1', '1', '1', '0', '30', 'default_3x3', 'catalog_wired_header4_en', 'ctlg_pic_wired_conditions', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('305', '301', 'Add-Ons', '1', '85', '1', '1', '1', '0', '40', 'default_3x3', 'catalog_wired_header5_en', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('350', '-1', 'Cultural Furni', '3', '2', '1', '0', '1', '0', '40', 'default_3x3', '', '', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('175', '351', 'Waasa', '1', '102', '1', '1', '1', '0', '220', 'default_3x3', 'waasa_catalogue_header', 'waasa_teaser', '', '', 'Click here >>', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('174', '351', 'Cubie', '1', '100', '1', '1', '1', '0', '25', 'default_3x3', 'catalog_cubie_header_en', 'catalog_cubie_teaser', '', '', '', '', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('169', '14', 'Spider', '1', '95', '1', '1', '1', '0', '0', 'pets', 'catalog_pet_headline1', '', '', 'One of the most feared creatures in nature, and perhaps the most misunderstood. The majority of Spiders are predators with sharp fangs that inject venom into their prey- but dont worry, these spiders wont bite you! Maybe...', '', 'Name your pet:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('170', '14', 'Frog', '1', '97', '1', '1', '1', '0', '0', 'pets', 'catalog_pet_headline1', '', '', 'The Frog. Cute, green and slimy! Frogs come in a variety of weird colours and can be found all over the world. Frogs are great jumpers, and make great pets, but are harder to hold onto than a supermodel in a tornado', '', 'Name your frog:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('171', '14', 'Chick', '1', '107', '1', '1', '1', '0', '0', 'pets', 'catalog_pet_headline1', '', '', 'Habboon is full of chicks (the pet kind!) Adopt your new born chicklet now and start training it to perform the Chicken Dance for your friends... it will be a show to remember!', '', 'Name your chick:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('173', '14', 'Dragon', '1', '1', '1', '1', '1', '0', '0', 'pets', 'catalog_pet_headline1', '', '', 'Rawr', '', 'Give a name:Pick a color:Pick a race:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('179', '14', 'Turtle', '1', '126', '1', '1', '1', '0', '3', 'pets', 'catalog_pet_headline1', '', '', 'Anything but slow, these guys are ready to ride the waves and swim laps at your beaches!', '', 'Name your Turtle:', '', '0', '', '');INSERT INTO `catalog_pages` VALUES ('180', '14', 'Monkey', '1', '128', '1', '1', '1', '0', '1', 'pets', 'catalog_pet_headline1', ' ', ' ', ' ', ' ', 'Give a name:Pick a color:', ' ', '0', '', '');
-- ------------------------------ Table structure for `chatlogs`-- ----------------------------DROP TABLE IF EXISTS `chatlogs`;CREATE TABLE `chatlogs` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `user_id` int(10) unsigned NOT NULL,  `room_id` int(10) unsigned NOT NULL,  `hour` int(11) NOT NULL,  `minute` int(11) NOT NULL,  `full_date` varchar(120) NOT NULL,  `timestamp` double NOT NULL,  `message` text NOT NULL,  `user_name` varchar(100) NOT NULL DEFAULT 'Unknown User',  PRIMARY KEY (`id`),  KEY `user_id` (`user_id`,`room_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of chatlogs-- ----------------------------
-- ------------------------------ Table structure for `clothing`-- ----------------------------DROP TABLE IF EXISTS `clothing`;CREATE TABLE `clothing` (  `id` int(4) NOT NULL AUTO_INCREMENT,  `pid` int(4) NOT NULL,  `class` int(1) NOT NULL DEFAULT '0',  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=216 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of clothing-- ----------------------------INSERT INTO `clothing` VALUES ('1', '210', '0');INSERT INTO `clothing` VALUES ('2', '215', '0');INSERT INTO `clothing` VALUES ('3', '220', '0');INSERT INTO `clothing` VALUES ('4', '225', '0');INSERT INTO `clothing` VALUES ('5', '230', '0');INSERT INTO `clothing` VALUES ('6', '235', '0');INSERT INTO `clothing` VALUES ('7', '240', '0');INSERT INTO `clothing` VALUES ('8', '245', '0');INSERT INTO `clothing` VALUES ('9', '250', '0');INSERT INTO `clothing` VALUES ('10', '255', '0');INSERT INTO `clothing` VALUES ('11', '260', '0');INSERT INTO `clothing` VALUES ('12', '261', '0');INSERT INTO `clothing` VALUES ('13', '262', '0');INSERT INTO `clothing` VALUES ('14', '266', '0');INSERT INTO `clothing` VALUES ('15', '267', '0');INSERT INTO `clothing` VALUES ('16', '630', '0');INSERT INTO `clothing` VALUES ('17', '635', '0');INSERT INTO `clothing` VALUES ('18', '640', '0');INSERT INTO `clothing` VALUES ('19', '650', '0');INSERT INTO `clothing` VALUES ('20', '665', '0');INSERT INTO `clothing` VALUES ('21', '667', '0');INSERT INTO `clothing` VALUES ('22', '669', '0');INSERT INTO `clothing` VALUES ('23', '675', '0');INSERT INTO `clothing` VALUES ('24', '680', '0');INSERT INTO `clothing` VALUES ('25', '685', '0');INSERT INTO `clothing` VALUES ('26', '690', '0');INSERT INTO `clothing` VALUES ('27', '691', '0');INSERT INTO `clothing` VALUES ('28', '695', '0');INSERT INTO `clothing` VALUES ('29', '696', '0');INSERT INTO `clothing` VALUES ('30', '700', '0');INSERT INTO `clothing` VALUES ('31', '705', '0');INSERT INTO `clothing` VALUES ('32', '710', '0');INSERT INTO `clothing` VALUES ('33', '715', '0');INSERT INTO `clothing` VALUES ('34', '716', '0');INSERT INTO `clothing` VALUES ('35', '717', '0');INSERT INTO `clothing` VALUES ('36', '720', '0');INSERT INTO `clothing` VALUES ('37', '721', '0');INSERT INTO `clothing` VALUES ('38', '722', '0');INSERT INTO `clothing` VALUES ('39', '723', '0');INSERT INTO `clothing` VALUES ('40', '724', '0');INSERT INTO `clothing` VALUES ('41', '725', '0');INSERT INTO `clothing` VALUES ('42', '730', '0');INSERT INTO `clothing` VALUES ('43', '735', '0');INSERT INTO `clothing` VALUES ('44', '740', '0');INSERT INTO `clothing` VALUES ('45', '803', '0');INSERT INTO `clothing` VALUES ('46', '804', '0');INSERT INTO `clothing` VALUES ('47', '805', '0');INSERT INTO `clothing` VALUES ('48', '806', '0');INSERT INTO `clothing` VALUES ('49', '807', '0');INSERT INTO `clothing` VALUES ('50', '808', '0');INSERT INTO `clothing` VALUES ('51', '809', '0');INSERT INTO `clothing` VALUES ('52', '812', '0');INSERT INTO `clothing` VALUES ('53', '813', '0');INSERT INTO `clothing` VALUES ('54', '814', '0');INSERT INTO `clothing` VALUES ('55', '815', '0');INSERT INTO `clothing` VALUES ('56', '816', '0');INSERT INTO `clothing` VALUES ('57', '817', '0');INSERT INTO `clothing` VALUES ('58', '818', '0');INSERT INTO `clothing` VALUES ('59', '819', '0');INSERT INTO `clothing` VALUES ('60', '820', '0');INSERT INTO `clothing` VALUES ('61', '821', '0');INSERT INTO `clothing` VALUES ('62', '822', '0');INSERT INTO `clothing` VALUES ('63', '823', '0');INSERT INTO `clothing` VALUES ('64', '824', '0');INSERT INTO `clothing` VALUES ('65', '825', '0');INSERT INTO `clothing` VALUES ('66', '826', '0');INSERT INTO `clothing` VALUES ('67', '827', '0');INSERT INTO `clothing` VALUES ('68', '876', '0');INSERT INTO `clothing` VALUES ('69', '877', '0');INSERT INTO `clothing` VALUES ('70', '878', '0');INSERT INTO `clothing` VALUES ('71', '879', '0');INSERT INTO `clothing` VALUES ('72', '880', '0');INSERT INTO `clothing` VALUES ('73', '881', '0');INSERT INTO `clothing` VALUES ('74', '882', '0');INSERT INTO `clothing` VALUES ('75', '883', '0');INSERT INTO `clothing` VALUES ('76', '884', '0');INSERT INTO `clothing` VALUES ('77', '885', '0');INSERT INTO `clothing` VALUES ('78', '886', '0');INSERT INTO `clothing` VALUES ('79', '887', '0');INSERT INTO `clothing` VALUES ('80', '888', '0');INSERT INTO `clothing` VALUES ('81', '905', '0');INSERT INTO `clothing` VALUES ('82', '906', '0');INSERT INTO `clothing` VALUES ('83', '907', '0');INSERT INTO `clothing` VALUES ('84', '908', '0');INSERT INTO `clothing` VALUES ('85', '917', '0');INSERT INTO `clothing` VALUES ('86', '919', '0');INSERT INTO `clothing` VALUES ('87', '921', '0');INSERT INTO `clothing` VALUES ('88', '923', '0');INSERT INTO `clothing` VALUES ('89', '924', '0');INSERT INTO `clothing` VALUES ('90', '925', '0');INSERT INTO `clothing` VALUES ('91', '926', '0');INSERT INTO `clothing` VALUES ('92', '930', '0');INSERT INTO `clothing` VALUES ('93', '932', '0');INSERT INTO `clothing` VALUES ('94', '934', '0');INSERT INTO `clothing` VALUES ('95', '936', '0');INSERT INTO `clothing` VALUES ('96', '940', '0');INSERT INTO `clothing` VALUES ('97', '941', '0');INSERT INTO `clothing` VALUES ('98', '942', '0');INSERT INTO `clothing` VALUES ('99', '943', '0');INSERT INTO `clothing` VALUES ('100', '944', '0');INSERT INTO `clothing` VALUES ('101', '945', '0');INSERT INTO `clothing` VALUES ('102', '946', '0');INSERT INTO `clothing` VALUES ('103', '947', '0');INSERT INTO `clothing` VALUES ('104', '948', '0');INSERT INTO `clothing` VALUES ('105', '949', '0');INSERT INTO `clothing` VALUES ('106', '950', '0');INSERT INTO `clothing` VALUES ('107', '951', '0');INSERT INTO `clothing` VALUES ('108', '952', '0');INSERT INTO `clothing` VALUES ('109', '953', '0');INSERT INTO `clothing` VALUES ('110', '954', '0');INSERT INTO `clothing` VALUES ('111', '1001', '0');INSERT INTO `clothing` VALUES ('112', '1002', '0');INSERT INTO `clothing` VALUES ('113', '1003', '0');INSERT INTO `clothing` VALUES ('114', '1004', '0');INSERT INTO `clothing` VALUES ('115', '1005', '0');INSERT INTO `clothing` VALUES ('116', '1006', '0');INSERT INTO `clothing` VALUES ('117', '1007', '0');INSERT INTO `clothing` VALUES ('118', '1008', '0');INSERT INTO `clothing` VALUES ('119', '1009', '0');INSERT INTO `clothing` VALUES ('120', '1010', '0');INSERT INTO `clothing` VALUES ('121', '1011', '0');INSERT INTO `clothing` VALUES ('122', '1012', '0');INSERT INTO `clothing` VALUES ('123', '1013', '0');INSERT INTO `clothing` VALUES ('124', '1014', '0');INSERT INTO `clothing` VALUES ('125', '1015', '0');INSERT INTO `clothing` VALUES ('126', '1016', '0');INSERT INTO `clothing` VALUES ('127', '1017', '0');INSERT INTO `clothing` VALUES ('128', '1018', '0');INSERT INTO `clothing` VALUES ('129', '1019', '0');INSERT INTO `clothing` VALUES ('130', '1020', '0');INSERT INTO `clothing` VALUES ('131', '1021', '0');INSERT INTO `clothing` VALUES ('132', '1022', '0');INSERT INTO `clothing` VALUES ('133', '1023', '0');INSERT INTO `clothing` VALUES ('134', '1024', '0');INSERT INTO `clothing` VALUES ('135', '1025', '0');INSERT INTO `clothing` VALUES ('136', '1026', '0');INSERT INTO `clothing` VALUES ('137', '1027', '0');INSERT INTO `clothing` VALUES ('138', '1028', '0');INSERT INTO `clothing` VALUES ('139', '1029', '0');INSERT INTO `clothing` VALUES ('140', '1030', '0');INSERT INTO `clothing` VALUES ('141', '1032', '0');INSERT INTO `clothing` VALUES ('142', '1033', '0');INSERT INTO `clothing` VALUES ('143', '1035', '0');INSERT INTO `clothing` VALUES ('144', '1037', '0');INSERT INTO `clothing` VALUES ('145', '1038', '0');INSERT INTO `clothing` VALUES ('146', '1039', '0');INSERT INTO `clothing` VALUES ('147', '1201', '0');INSERT INTO `clothing` VALUES ('148', '1202', '0');INSERT INTO `clothing` VALUES ('149', '1203', '0');INSERT INTO `clothing` VALUES ('150', '1204', '0');INSERT INTO `clothing` VALUES ('151', '1205', '0');INSERT INTO `clothing` VALUES ('152', '1206', '0');INSERT INTO `clothing` VALUES ('153', '1207', '0');INSERT INTO `clothing` VALUES ('154', '1208', '0');INSERT INTO `clothing` VALUES ('155', '1209', '0');INSERT INTO `clothing` VALUES ('156', '1210', '0');INSERT INTO `clothing` VALUES ('157', '1211', '0');INSERT INTO `clothing` VALUES ('158', '1212', '0');INSERT INTO `clothing` VALUES ('159', '1401', '0');INSERT INTO `clothing` VALUES ('160', '1402', '0');INSERT INTO `clothing` VALUES ('161', '1403', '0');INSERT INTO `clothing` VALUES ('162', '1404', '0');INSERT INTO `clothing` VALUES ('163', '1405', '0');INSERT INTO `clothing` VALUES ('164', '1406', '0');INSERT INTO `clothing` VALUES ('165', '1407', '0');INSERT INTO `clothing` VALUES ('166', '1408', '0');INSERT INTO `clothing` VALUES ('167', '1601', '0');INSERT INTO `clothing` VALUES ('168', '1602', '0');INSERT INTO `clothing` VALUES ('169', '1603', '0');INSERT INTO `clothing` VALUES ('170', '1604', '0');INSERT INTO `clothing` VALUES ('171', '1605', '0');INSERT INTO `clothing` VALUES ('172', '1606', '0');INSERT INTO `clothing` VALUES ('173', '1607', '0');INSERT INTO `clothing` VALUES ('174', '1608', '0');INSERT INTO `clothing` VALUES ('175', '1609', '0');INSERT INTO `clothing` VALUES ('176', '1610', '0');INSERT INTO `clothing` VALUES ('177', '1611', '0');INSERT INTO `clothing` VALUES ('178', '1612', '0');INSERT INTO `clothing` VALUES ('179', '1613', '0');INSERT INTO `clothing` VALUES ('180', '1614', '0');INSERT INTO `clothing` VALUES ('181', '1801', '0');INSERT INTO `clothing` VALUES ('182', '1802', '0');INSERT INTO `clothing` VALUES ('183', '1803', '0');INSERT INTO `clothing` VALUES ('184', '1804', '0');INSERT INTO `clothing` VALUES ('185', '1805', '0');INSERT INTO `clothing` VALUES ('186', '1806', '0');INSERT INTO `clothing` VALUES ('187', '1807', '0');INSERT INTO `clothing` VALUES ('188', '1808', '0');INSERT INTO `clothing` VALUES ('189', '1809', '0');INSERT INTO `clothing` VALUES ('190', '1810', '0');INSERT INTO `clothing` VALUES ('191', '1811', '0');INSERT INTO `clothing` VALUES ('192', '1812', '0');INSERT INTO `clothing` VALUES ('193', '1813', '0');INSERT INTO `clothing` VALUES ('194', '1814', '0');INSERT INTO `clothing` VALUES ('195', '1815', '0');INSERT INTO `clothing` VALUES ('196', '1816', '0');INSERT INTO `clothing` VALUES ('197', '1817', '0');INSERT INTO `clothing` VALUES ('198', '1818', '0');INSERT INTO `clothing` VALUES ('199', '1819', '0');INSERT INTO `clothing` VALUES ('200', '1820', '0');INSERT INTO `clothing` VALUES ('201', '1821', '0');INSERT INTO `clothing` VALUES ('202', '1822', '0');INSERT INTO `clothing` VALUES ('203', '2001', '0');INSERT INTO `clothing` VALUES ('204', '2002', '0');INSERT INTO `clothing` VALUES ('205', '2003', '0');INSERT INTO `clothing` VALUES ('206', '2004', '0');INSERT INTO `clothing` VALUES ('207', '2005', '0');INSERT INTO `clothing` VALUES ('208', '2006', '0');INSERT INTO `clothing` VALUES ('209', '2007', '0');INSERT INTO `clothing` VALUES ('210', '2008', '0');INSERT INTO `clothing` VALUES ('211', '2009', '0');INSERT INTO `clothing` VALUES ('212', '2010', '0');INSERT INTO `clothing` VALUES ('213', '2011', '0');INSERT INTO `clothing` VALUES ('214', '2012', '0');INSERT INTO `clothing` VALUES ('215', '2013', '0');
-- ------------------------------ Table structure for `cmdlogs`-- ----------------------------DROP TABLE IF EXISTS `cmdlogs`;CREATE TABLE `cmdlogs` (  `id` int(10) NOT NULL AUTO_INCREMENT,  `user_id` int(10) NOT NULL,  `user_name` varchar(100) NOT NULL,  `command` varchar(50) NOT NULL,  `extra_data` text NOT NULL,  `timestamp` int(120) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ------------------------------ Records of cmdlogs-- ----------------------------
-- ------------------------------ Table structure for `cms_comments`-- ----------------------------DROP TABLE IF EXISTS `cms_comments`;CREATE TABLE `cms_comments` (  `id` int(6) NOT NULL AUTO_INCREMENT,  `story` int(6) NOT NULL,  `comment` text NOT NULL,  `date` int(10) NOT NULL,  `author` int(6) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ------------------------------ Records of cms_comments-- ----------------------------
-- ------------------------------ Table structure for `cms_news`-- ----------------------------DROP TABLE IF EXISTS `cms_news`;CREATE TABLE `cms_news` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `title` varchar(255) COLLATE latin1_general_ci DEFAULT NULL,  `shortstory` text COLLATE latin1_general_ci,  `longstory` text COLLATE latin1_general_ci,  `published` int(10) NOT NULL DEFAULT '0',  `image` varchar(255) COLLATE latin1_general_ci DEFAULT '/Public/Images/news/TS_Web60.png',  `campaign` int(1) NOT NULL DEFAULT '0',  `campaignimg` varchar(255) COLLATE latin1_general_ci NOT NULL,  `author` int(6) NOT NULL DEFAULT '1',  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ------------------------------ Records of cms_news-- ----------------------------INSERT INTO `cms_news` VALUES ('1', 'Habboon Hotel', 'Welcome to the official test hotel to<br>Phoenix 3.0!<br><br>The hotel is due to open up on<br>Friday, 29th October', 'Well what have we here?', '0', '/Public/Images/news/TS_Web60.png', '0', '', '1');
-- ------------------------------ Table structure for `cms_registration_figures`-- ----------------------------DROP TABLE IF EXISTS `cms_registration_figures`;CREATE TABLE `cms_registration_figures` (  `figure` varchar(70) NOT NULL,  `gender` varchar(1) NOT NULL,  PRIMARY KEY (`figure`)) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ------------------------------ Records of cms_registration_figures-- ----------------------------INSERT INTO `cms_registration_figures` VALUES ('hr-515-45.hd-600-8.ch-884-76.lg-696-76.sh-740-76.ea-1401-76.ca-1815-62', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-545-42.hd-600-28.ch-884-68.lg-700-68.sh-905-71.he-1601.ea-1406.fa-1', 'f');INSERT INTO `cms_registration_figures` VALUES ('hd-600-3.ch-630-62.lg-695-62.sh-730-62.ca-1801-62', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-515-48.hd-625-22.ch-660-79.lg-700-64.ea-1406', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-890-42.hd-629-1.ch-685-74.lg-710-74.sh-907-74.he-1608.ca-1815-74.wa', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-125-45.hd-180-4.ch-225-88.lg-285-89.sh-300-64.ha-1023-88', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-115-42.hd-180-3.ch-210-62.lg-285-64.sh-290-62', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-155-39.hd-180-1.ch-267-64.lg-281-64', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-165-40.hd-206-2.ch-255-77.lg-275-76.sh-305-78.ha-1010-65.ea-1404-78', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-110-45.hd-180-30.ch-215-66.lg-270-64.sh-300-64.ea-1404-64.wa-2007.c', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-115-45.hd-180-7.ch-255-82.lg-280-64.sh-290-62', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-115-45.hd-180-1.ch-255-64.lg-285-82.sh-300-62.cp-3121-64', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-165-36.hd-180-1.ch-235-64.lg-285-64.sh-305-64.ea-1404-62.wa-2009-62', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-893-39.hd-180-7.ch-245-64.lg-281-64.sh-906-64.ea-1404-64', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-115-37.hd-180-1.ch-220-64.lg-285-64.sh-300-64', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-165-45.hd-207-9.ch-255-64.lg-275-64.sh-305-64', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-125-45.hd-190-4.ch-215-79.lg-285-73.sh-290-62', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-515-42.hd-600-1.ch-655-83.lg-710-64.sh-730-64', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-545-39.hd-600-8.ch-655-62.lg-710-73.sh-730-62.he-1602-73.ca-1812', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-515-36.hd-605-7.ch-660-71.lg-700-71', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-892-45.hd-600-1.ch-645-83.lg-720-83.sh-907-83.fa-1212.ca-1819', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-545-33.hd-600-1.ch-665-78.lg-715-89.sh-907-62', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-890-31.hd-600-2.ch-660-62.lg-700-79.sh-906-62.he-1602-80.ca-1805-78', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-540-34.hd-600-9.ch-640-62.lg-700-64.sh-907-70.he-1602-62.ca-1804-73', 'f');INSERT INTO `cms_registration_figures` VALUES ('hd-620-10.ch-660-64.lg-710-64.sh-906-70.wa-2009-72.hr-890-38', 'f');INSERT INTO `cms_registration_figures` VALUES ('hr-890-47.hd-629-1.ch-685-78.lg-715-85.sh-735-72.he-1606-85.ca-1804-84', 'f');INSERT INTO `cms_registration_figures` VALUES ('hd-180-8.ch-255-83.lg-270-83.sh-905-83.ha-1020.fa-1202-83', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-165-32.hd-209-17.ch-878-1315-81.lg-3116-72-1315.ea-1401-62.fa-1212.', 'm');INSERT INTO `cms_registration_figures` VALUES ('hd-180-10.ch-215-62.lg-270-62', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-145-31.hd-185-10.ch-255-62.lg-270-62.he-1601', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-893-33.hd-209-1.ch-3110-81-76.lg-270-80.fa-1202-80', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-165-45.hd-180-3.ch-215-62.lg-3116-64-73.sh-300-62', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-893-37.hd-180-1.ch-3111-68-67.lg-270-64.sh-906-62', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-115-31.hd-180-7.ch-877-64-62.lg-270-64.sh-305-62.wa-2009-62', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-115-31.hd-190-7.ch-255-73.lg-285-82.sh-300-64.fa-1201', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-145-42.hd-208-2.ch-225-73.lg-285-64.sh-300-64.wa-2001', 'm');INSERT INTO `cms_registration_figures` VALUES ('hr-165-42.hd-180-1.ch-255-62.lg-280-64.sh-906-62.ea-1404-62.wa-2011', 'm');
-- ------------------------------ Table structure for `cms_settings`-- ----------------------------DROP TABLE IF EXISTS `cms_settings`;CREATE TABLE `cms_settings` (  `variable` varchar(80) NOT NULL,  `value` text NOT NULL,  `description` text,  `example` text,  PRIMARY KEY (`variable`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of cms_settings-- ----------------------------INSERT INTO `cms_settings` VALUES ('cms_url', '', 'The url to your websites root directory', 'http://habboon.com');INSERT INTO `cms_settings` VALUES ('client_ip', '', 'The IP address to your hotel emulator', '127.0.0.1');INSERT INTO `cms_settings` VALUES ('client_port', '', 'The port that your emulator is running on', '30000');INSERT INTO `cms_settings` VALUES ('client_mus', '', 'The port that your emulators MUS is running on', '30001');INSERT INTO `cms_settings` VALUES ('client_variables', '', 'The url to your external variables', 'http://habboon.com/client/variables.txt');INSERT INTO `cms_settings` VALUES ('client_texts', '', 'The url to your external texts', 'http://habboon.com/client/texts.txt');INSERT INTO `cms_settings` VALUES ('rts_uname', '', 'The username you signed up to RetroTopsites.com with', 'Aaron');INSERT INTO `cms_settings` VALUES ('cms_name', '', 'The name of your Hotel', 'Habboon');
-- ------------------------------ Table structure for `cms_texts`-- ----------------------------DROP TABLE IF EXISTS `cms_texts`;CREATE TABLE `cms_texts` (  `name` varchar(100) NOT NULL,  `value` text NOT NULL,  PRIMARY KEY (`name`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ------------------------------ Records of cms_texts-- ----------------------------INSERT INTO `cms_texts` VALUES ('badge_desc_AC5', 'Successfully Rescued Abitha! - November 2010');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AIPerformanceVote1', 'Gather %limit% votes.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AIPerformanceVote10', 'Gather %limit% votes.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AIPerformanceVote2', 'Gather %limit% votes.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AIPerformanceVote3', 'Gather %limit% votes.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AIPerformanceVote4', 'Gather %limit% votes.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AIPerformanceVote5', 'Gather %limit% votes.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AIPerformanceVote6', 'Gather %limit% votes.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AIPerformanceVote7', 'Gather %limit% votes.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AIPerformanceVote8', 'Gather %limit% votes.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AIPerformanceVote9', 'Gather %limit% votes.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AllTimeHotelPresence1', 'For spending total of %limit% min. in hotel.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AllTimeHotelPresence10', 'For spending total of %limit% min. in hotel.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AllTimeHotelPresence2', 'For spending total of %limit% min. in hotel.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AllTimeHotelPresence3', 'For spending total of %limit% min. in hotel.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AllTimeHotelPresence4', 'For spending total of %limit% min. in hotel.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AllTimeHotelPresence5', 'For spending total of %limit% min. in hotel.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AllTimeHotelPresence6', 'For spending total of %limit% min. in hotel.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AllTimeHotelPresence7', 'For spending total of %limit% min. in hotel.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AllTimeHotelPresence8', 'For spending total of %limit% min. in hotel.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AllTimeHotelPresence9', 'For spending total of %limit% min. in hotel.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AvatarLooks1', 'For changing your look for the first time');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_AvatarTags1', 'For tagging yourself with 5 tags');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BasicClub1', 'For joining the Habbo Club.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BasicClub2', 'For %limit% months of Habbo Club membership.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BasicClub3', 'For %limit% months of Habbo Club membership.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BasicClub4', 'For %limit% months of Habbo Club membership.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BasicClub5', 'For %limit% months of Habbo Club membership.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked1', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked10', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked11', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked12', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked13', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked14', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked15', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked16', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked17', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked18', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked19', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked2', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked20', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked3', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked4', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked5', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked6', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked7', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked8', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_BattleBallTilesLocked9', 'Lock %limit% tiles.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_EmailVerification1', 'For activating your email address. Thanks!');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Forum1', 'Member of the **************.com forums!');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience1', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience10', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience11', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience12', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience13', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience14', 'Gather %limit%  points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience15', 'Gather %limit%  points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience16', 'Gather %limit%  points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience17', 'Gather %limit%  points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience18', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience19', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience2', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience20', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience3', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience4', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience5', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience6', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience7', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience8', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GameAuthorExperience9', 'Gather %limit% points in your game room.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience1', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience10', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience11', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience12', 'Gather %limit%  victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience13', 'Gather %limit%  victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience14', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience15', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience16', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience17', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience18', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience19', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience2', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience20', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience3', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience4', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience5', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience6', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience7', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience8', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GamePlayerExperience9', 'Gather %limit% victory points.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftGiver1', 'For giving a gift.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftGiver10', 'For giving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftGiver2', 'For giving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftGiver3', 'For giving %limit%  gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftGiver4', 'For giving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftGiver5', 'For giving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftGiver6', 'For giving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftGiver7', 'For giving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftGiver8', 'For giving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftGiver9', 'For giving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftReceiver1', 'For receiving a gift.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftReceiver10', 'For receiving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftReceiver2', 'For receiving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftReceiver3', 'For receiving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftReceiver4', 'For receiving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftReceiver5', 'For receiving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftReceiver6', 'For receiving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftReceiver7', 'For receiving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftReceiver8', 'For receiving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_GiftReceiver9', 'For receiving %limit% gifts.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Graduate1', 'For completing your confusing Habbo newbie experience.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_HappyHour1', 'For spending a Happy moment in Habbo! Log in during Happy Hour to receive this achievement.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Login1', 'For logging in %limit% days in a row. Try it if you dare.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Login10', 'For logging in %limit% days in a row. Breathtaking.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Login2', 'For logging in %limit% days in a row. Wow!');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Login3', 'For logging in %limit% days in a row. Nice one!');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Login4', 'For logging in %limit% days in a row. High 5!');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Login5', 'For logging in %limit% days in a row. Amazing.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Login6', 'For logging in %limit% days in a row. Phenomenal.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Login7', 'For logging in %limit% days in a row. Awesome.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Login8', 'For logging in %limit% days in a row. Sensational.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Login9', 'For logging in %limit% days in a row. Extraordinary.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_MGM1', 'For inviting %limit% real life friend to Habbo.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_MGM10', 'For inviting %limit% real life friends to Habbo.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_MGM2', 'For inviting %limit% real life friend to Habbo.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_MGM3', 'For inviting %limit% real life friend to Habbo.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_MGM4', 'For inviting %limit% real life friends to Habbo.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_MGM5', 'For inviting %limit% real life friends to Habbo.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_MGM6', 'For inviting %limit% real life friends to Habbo.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_MGM7', 'For inviting %limit%  real life friends to Habbo.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_MGM8', 'For inviting %limit% real life friends to Habbo.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_MGM9', 'For inviting %limit% real life friends to Habbo.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Motto1', 'For changing your motto for the first time');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Name1', 'For changing your name');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding1', 'Give your pets at least %limit% points of food to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding10', 'Give your pets at least %limit%  points of food to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding10_HHCA', 'Give your pets at least 204600 points of food to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding2', 'Give your pets at least %limit% points of food to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding3', 'Give your pets at least %limit% points of food to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding4', 'Give your pets at least %limit% points of food to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding5', 'Give your pets at least %limit% points of food to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding6', 'Give your pets at least %limit% points of food to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding7', 'Give your pets at least %limit% points of food to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding8', 'Give your pets at least %limit%  points of food to earn this badge');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetFeeding9', 'Give your pets at least %limit% points of food to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLevelUp1', 'Train your pets up at least %limit% level to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLevelUp10', 'Train your pets up at least %limit% levels to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLevelUp2', 'Train your pets up at least %limit% levels to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLevelUp3', 'Train your pets up at least %limit% levels to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLevelUp4', 'Train your pets up at least %limit% levels to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLevelUp5', 'Train your pets up at least %limit% levels to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLevelUp6', 'Train your pets up at least %limit% levels to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLevelUp7', 'Train your pets up at least %limit% levels to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLevelUp8', 'Train your pets up at least %limit% levels to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLevelUp9', 'Train your pets up at least %limit%  levels to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLover1', 'Own %limit% pet to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLover10', 'Own  %limit% pets to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLover2', 'Own %limit% pets to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLover3', 'Own  %limit% pets to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLover4', 'Own %limit%  pets to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLover5', 'Own %limit%  pets to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLover6', 'Own %limit%  pets to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLover7', 'Own %limit% pets to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLover8', 'Own %limit%  pets to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetLover9', 'Own %limit%  pets to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectGiver1', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectGiver10', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectGiver2', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectGiver3', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectGiver4', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectGiver5', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectGiver6', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectGiver7', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectGiver8', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectGiver9', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectReceiver1', 'Have someone scratch your pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectReceiver10', 'Have someone scratch your pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectReceiver2', 'Have someone scratch your pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectReceiver3', 'Have someone scratch your pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectReceiver4', 'Have someone scratch your pet at least %limit%  times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectReceiver5', 'Have someone scratch your pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectReceiver6', 'Have someone scratch your pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectReceiver7', 'Have someone scratch your pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectReceiver8', 'Have someone scratch your pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_PetRespectReceiver9', 'Have someone scratch your pet at least %limit% times to earn this badge.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RegistrationDuration1', 'Be a member of the community for %limit% days.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RegistrationDuration10', 'Be a member of the community for %limit% days.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RegistrationDuration2', 'Be a member of the community for %limit%  days.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RegistrationDuration3', 'Be a member of the community for %limit%  days.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RegistrationDuration4', 'Be a member of the community for %limit% days.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RegistrationDuration5', 'Be a member of the community for %limit% days');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RegistrationDuration6', 'Be a member of the community for a %limit% days.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RegistrationDuration7', 'Be a member of the community for %limit%  days.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RegistrationDuration8', 'Be a member of the community for %limit% days.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RegistrationDuration9', 'Be a member of the community for %limit% days.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectEarned1', 'For earning respect %limit% time.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectEarned10', 'For earning respect %limit% times.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectEarned2', 'For earning respect %limit% times.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectEarned3', 'For earning respect %limit% times.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectEarned4', 'For earning respect %limit% times.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectEarned5', 'For earning respect %limit% times.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectEarned6', 'For earning respect %limit% times.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectEarned7', 'For earning respect %limit% times.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectEarned8', 'For earning respect %limit% times.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectEarned9', 'For earning respect %limit% times.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RespectGiven1', 'For giving respect %limit% times.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RoomEntry1', 'For hanging out in %limit% guest rooms that you do not own. Tourist.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RoomEntry10', 'For hanging out in %limit% guest rooms that you do not own. Time traveler.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RoomEntry2', 'For hanging out in %limit% guest rooms that you do not own. Moocher.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RoomEntry3', 'For hanging out in %limit% guest rooms that you do not own. Freeloader.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RoomEntry4', 'For hanging out in %limit% guest rooms that you do not own. Backpacker.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RoomEntry5', 'For hanging out in %limit% guest rooms that you do not own. Globetrotter.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RoomEntry6', 'For hanging out in %limit% guest rooms that you do not own. Out of towner.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RoomEntry7', 'For hanging out in %limit% guest rooms  that you do not own .Gold digger.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RoomEntry8', 'For hanging out in %limit% guest rooms that you do not own. Orion.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_RoomEntry9', 'For hanging out in %limit% guest rooms that you do not own. Spaceman.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_Student1', 'For being guided by a Habboon Guide and confused no more');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_TraderPass1', 'Without a trading pass you can\'t trade: you have to have an account that is 3 days old and you have to verify your email.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_VipClub1', 'For joining the VIP Club.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_VipClub2', 'For %limit% months of VIP Club membership.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_VipClub3', 'For %limit% months of VIP Club membership.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_VipClub4', 'For %limit% months of VIP Club membership.');INSERT INTO `cms_texts` VALUES ('badge_desc_ACH_VipClub5', 'For %limit%  months of VIP Club membership.');INSERT INTO `cms_texts` VALUES ('badge_desc_ADM', 'Member of the staff team');INSERT INTO `cms_texts` VALUES ('badge_desc_BOT', 'Non-player character (this is a bot).');INSERT INTO `cms_texts` VALUES ('badge_desc_HBA', 'Member of the moderation team');INSERT INTO `cms_texts` VALUES ('badge_desc_HC1', 'Member of Habboon Club');INSERT INTO `cms_texts` VALUES ('badge_desc_IT5', 'Successfully won a competition on Radio Otaku!');INSERT INTO `cms_texts` VALUES ('badge_desc_NWB', 'Trial member of the moderation team');INSERT INTO `cms_texts` VALUES ('badge_desc_RLX01', 'Found Astra - November 2010');INSERT INTO `cms_texts` VALUES ('badge_desc_VIP', 'For joining the VIP Club.');INSERT INTO `cms_texts` VALUES ('badge_desc_XXX', 'Dedicated member of Habboon');INSERT INTO `cms_texts` VALUES ('badge_desc_Z63', 'Submitted an idea or bug petition that was added or fixed during beta');INSERT INTO `cms_texts` VALUES ('badge_desc_Z64', 'Participated in the beta testing of Habboon');INSERT INTO `cms_texts` VALUES ('badge_name_AC5', 'Quest Master');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AIPerformanceVote1', 'Unknown Star I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AIPerformanceVote10', 'Notorious X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AIPerformanceVote2', 'Hidden Talent II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AIPerformanceVote3', 'Unique III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AIPerformanceVote4', 'Noteworthy IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AIPerformanceVote5', 'Influental V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AIPerformanceVote6', 'Famous VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AIPerformanceVote7', 'Grand VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AIPerformanceVote8', 'Well-known VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AIPerformanceVote9', 'Glorious IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AllTimeHotelPresence1', 'Online time I-Thunderstorm');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AllTimeHotelPresence10', 'Online time X - F5 Tornado');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AllTimeHotelPresence2', 'Online time II - Drizzle');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AllTimeHotelPresence4', 'Online time IV - Blizzard');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AllTimeHotelPresence5', 'Online time V- Haze');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AllTimeHotelPresence6', 'Online time VI- Jet Stream');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AllTimeHotelPresence7', 'Online time VII-  Cyclone');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AllTimeHotelPresence8', 'Online time VIII- Meso Cyclone');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AllTimeHotelPresence9', 'Online time IX-Tornado');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AvatarLooks1', 'Looks that Kill');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_AvatarTags1', '5 Words of Wisdom');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BasicClub1', 'Habbo Club member I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BasicClub2', 'Habbo Club member  II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BasicClub3', 'Habbo Club member  III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BasicClub4', 'Habbo Club member  IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BasicClub5', 'Habbo Club member V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked1', 'Lord of the tiles I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked10', 'Lord of the tiles X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked11', 'Lord of the tiles XI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked12', 'Lord of the tiles XII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked13', 'Lord of the tiles XIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked14', 'Lord of the tiles XIV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked15', 'Lord of the tiles XV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked16', 'Lord of the tiles XVI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked17', 'Lord of the tiles XVII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked18', 'Lord of the tiles XVIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked19', 'Lord of the tiles XIX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked2', 'Lord of the tiles II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked20', 'Lord of the tiles XX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked3', 'Lord of the tiles III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked4', 'Lord of the tiles IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked5', 'Lord of the tiles V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked6', 'Lord of the tiles VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked7', 'Lord of the tiles VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked8', 'Lord of the tiles VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_BattleBallTilesLocked9', 'Lord of the tiles IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_EmailVerification1', 'True You');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Forum1', 'Community Member');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience1', 'Game Arcade owner I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience10', 'Game Arcade owner X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience11', 'Game Arcade owner XI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience12', 'Game Arcade owner XII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience13', 'Game Arcade owner XIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience14', 'Game Arcade owner XIV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience15', 'Game Arcade owner XV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience16', 'Game Arcade owner XVI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience17', 'Game Arcade owner XVII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience18', 'Game Arcade owner XVIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience19', 'Game Arcade owner XIX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience2', 'Game Arcade owner II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience20', 'Game Arcade owner XX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience3', 'Game Arcade owner III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience4', 'Game Arcade owner IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience5', 'Game Arcade owner V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience6', 'Game Arcade owner VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience7', 'Game Arcade owner VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience8', 'Game Arcade owner VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GameAuthorExperience9', 'Game Arcade owner IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience1', 'Player I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience10', 'Player X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience11', 'Player XI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience12', 'Player  XII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience13', 'Player  XIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience14', 'Player  XIV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience15', 'Player  XV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience16', 'Player  XVI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience17', 'Player  XVII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience18', 'Player  XVIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience19', 'Player  XIX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience2', 'Player II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience20', 'Player  XX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience3', 'Player III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience4', 'Player  IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience5', 'Player  V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience6', 'Player VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience7', 'Player  VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience8', 'Player VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GamePlayerExperience9', 'Player  IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftGiver1', 'Nice one I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftGiver10', 'Wealthy X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftGiver2', 'Well heeled II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftGiver3', 'Prosperous III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftGiver4', 'Well off IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftGiver5', 'Made of money V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftGiver6', 'Stinking rich VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftGiver7', 'Loaded VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftGiver8', 'Generous one VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftGiver9', 'Rolling in it IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftReceiver1', 'Greet me I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftReceiver10', 'Want to go out with me? X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftReceiver2', 'Like me a bit more II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftReceiver3', 'Cherish me III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftReceiver4', 'Adore me IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftReceiver5', 'Respect me V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftReceiver6', 'Donate me VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftReceiver7', 'Value me VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftReceiver8', 'Be wild about me VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_GiftReceiver9', 'Be hooked on me IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Graduate1', 'The Graduate');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Login1', 'Traveller I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Login10', 'Phoenix X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Login2', 'Preferred Guest II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Login3', 'Frequent Resident III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Login4', 'High Roller IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Login5', 'A Piece Of The Furniture V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Login6', 'Covered With Moss VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Login7', 'Space dust on your shoes VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Login8', 'Rotten Tomato VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Login9', 'Habbo Stayer IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_MGM1', 'Baby Shower I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_MGM10', 'Prom X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_MGM2', 'Luau II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_MGM3', 'Block party III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_MGM4', 'Dance Party IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_MGM5', 'Slumber Party V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_MGM6', 'Reunion VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_MGM7', 'Housewarming VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_MGM8', 'Ball VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_MGM9', 'Fiesta IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Motto1', 'Master of Words');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Name1', 'For changing your name');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetFeeding1', 'They\'re eating all my credits! I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetFeeding10', 'They\'re eating all my credits! X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetFeeding2', 'They\'re eating all my credits! II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetFeeding3', 'They\'re eating all my credits! III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetFeeding4', 'They\'re eating all my credits! IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetFeeding5', 'They\'re eating all my credits! V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetFeeding6', 'They\'re eating all my credits! VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetFeeding7', 'They\'re eating all my credits! VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetFeeding8', 'They\'re eating all my credits! VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetFeeding9', 'They\'re eating all my credits! IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLevelUp1', 'My pet knows a trick! I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLevelUp10', 'Pet Whisperer X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLevelUp2', 'My pet knows a trick or two! II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLevelUp3', 'I play with pets III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLevelUp4', 'My pet is tougher than yours IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLevelUp5', 'My pets know some tricks V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLevelUp6', 'My pets know a trick or two VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLevelUp7', 'Animal trainer VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLevelUp8', 'Animal trainer VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLevelUp9', 'Animal trainer IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLover1', 'Can I Keep Him? I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLover10', 'Zoo Keeper X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLover2', 'I\'ll soon have a kennel II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLover3', 'I\'ll soon have a kennel III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLover4', 'I\'ll soon have a kennel IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLover5', 'Pet shop keeper V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLover6', 'Pet shop keeper VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLover7', 'Pet shop keeper VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLover8', 'Pet shop keeper VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetLover9', 'My herd is bigger than yours IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectGiver1', 'I like your pet! I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectGiver10', 'I\'ve shared my love X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectGiver2', 'Scratch my back and I\'ll scratch yours II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectGiver3', 'Pat pat! III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectGiver4', 'Scratch scratch! IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectGiver5', 'Pet lover V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectGiver6', 'Pet lover VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectGiver7', 'Pet lover VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectGiver8', 'Pet lover VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectGiver9', 'Pet lover IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectReceiver1', 'Someone likes my pet I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectReceiver10', 'People adore my pets! X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectReceiver2', 'My pets get all the love II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectReceiver3', 'My pets get all the love III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectReceiver4', 'My pets get all the love IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectReceiver5', 'My pets get all the love V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectReceiver6', 'My pets get all the love VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectReceiver7', 'My pets get all the love VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectReceiver8', 'My pets get all the love VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_PetRespectReceiver9', 'My pets get all the love IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RegistrationDuration1', '10 % True Habbo I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RegistrationDuration10', '100% True Habbo X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RegistrationDuration2', '20 % True Habbo II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RegistrationDuration3', '30 % True Habbo III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RegistrationDuration4', '40 % True Habbo IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RegistrationDuration5', '50 % True Habbo V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RegistrationDuration6', '60 % True Habbo VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RegistrationDuration7', '70 % True Habbo VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RegistrationDuration8', '80 % True Habbo VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RegistrationDuration9', '90 % True Habbo IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectEarned1', '10% Respected Habbo I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectEarned10', '100 % Respected Habbo X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectEarned2', '20% Respected Habbo II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectEarned3', '30% Respected Habbo III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectEarned4', '40% Respected Habbo IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectEarned5', '50% Respected Habbo V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectEarned6', '60% Respected Habbo VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectEarned7', '70% Respected Habbo VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectEarned8', '80% Respected Habbo VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectEarned9', '90% Respected Habbo IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RespectGiven1', 'Nice as pie! I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RoomEntry1', 'Room Raider I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RoomEntry10', 'Pilgrim X');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RoomEntry2', 'Running Room Raider II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RoomEntry3', 'Ultimate Room Raider III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RoomEntry4', 'Day tripper IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RoomEntry5', 'Vacationer V');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RoomEntry6', 'House Guest VI');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RoomEntry7', 'Traveler VII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RoomEntry8', 'Sightseer VIII');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_RoomEntry9', 'Habitué IX');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_Student1', 'Habbo Student');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_TraderPass1', 'Trading pass');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_VipClub1', 'VIP member I');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_VipClub2', 'VIP member II');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_VipClub3', 'VIP member III');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_VipClub4', 'VIP member IV');INSERT INTO `cms_texts` VALUES ('badge_name_ACH_VipClub5', 'VIP member V');INSERT INTO `cms_texts` VALUES ('badge_name_ADM', 'Hotel Staff');INSERT INTO `cms_texts` VALUES ('badge_name_BOT', 'NPC');INSERT INTO `cms_texts` VALUES ('badge_name_HappyHour1', 'HappyHour1');INSERT INTO `cms_texts` VALUES ('badge_name_HBA', 'Habboon Moderator');INSERT INTO `cms_texts` VALUES ('badge_name_HC1', 'Habboon Club');INSERT INTO `cms_texts` VALUES ('badge_name_IT5', 'Radio Otaku Winner');INSERT INTO `cms_texts` VALUES ('badge_name_NWB', 'Habboon Moderator');INSERT INTO `cms_texts` VALUES ('badge_name_RLX01', 'Quest Master');INSERT INTO `cms_texts` VALUES ('badge_name_VIP', 'Very Important Person');INSERT INTO `cms_texts` VALUES ('badge_name_XXX', 'Habboon eXpert');INSERT INTO `cms_texts` VALUES ('badge_name_Z63', 'Valued Beta Tester');INSERT INTO `cms_texts` VALUES ('badge_name_Z64', 'Beta Tester');INSERT INTO `cms_texts` VALUES ('fx_1', 'Spotlight');INSERT INTO `cms_texts` VALUES ('fx_10', 'Flies');INSERT INTO `cms_texts` VALUES ('fx_10_desc', 'Get a shower!');INSERT INTO `cms_texts` VALUES ('fx_11', 'X-Ray');INSERT INTO `cms_texts` VALUES ('fx_11_desc', 'X-Rayed');INSERT INTO `cms_texts` VALUES ('fx_12', 'Frozen');INSERT INTO `cms_texts` VALUES ('fx_12_desc', 'Ice cold!');INSERT INTO `cms_texts` VALUES ('fx_13', 'Ghost');INSERT INTO `cms_texts` VALUES ('fx_13_desc', 'Spooky');INSERT INTO `cms_texts` VALUES ('fx_14', 'Pink Hover board');INSERT INTO `cms_texts` VALUES ('fx_14_desc', 'See the world on pink hover board.');INSERT INTO `cms_texts` VALUES ('fx_15', 'Yellow hover board');INSERT INTO `cms_texts` VALUES ('fx_15_desc', 'As yellow as a submarine.');INSERT INTO `cms_texts` VALUES ('fx_16', 'Microphone');INSERT INTO `cms_texts` VALUES ('fx_16_desc', 'Habbo Dragonfly microphone');INSERT INTO `cms_texts` VALUES ('fx_17', 'UFO in pink');INSERT INTO `cms_texts` VALUES ('fx_17_desc', 'Fly away with this UFO of love.');INSERT INTO `cms_texts` VALUES ('fx_18', 'UFO in yellow');INSERT INTO `cms_texts` VALUES ('fx_18_desc', 'Unidentified yellow flying object.');INSERT INTO `cms_texts` VALUES ('fx_19', 'BluesMobile');INSERT INTO `cms_texts` VALUES ('fx_19_desc', 'We\'re on a mission from...');INSERT INTO `cms_texts` VALUES ('fx_1_desc', 'Shine the light on me!');INSERT INTO `cms_texts` VALUES ('fx_2', 'Hover board');INSERT INTO `cms_texts` VALUES ('fx_20', 'HelpMobile');INSERT INTO `cms_texts` VALUES ('fx_20_desc', 'How can I help?');INSERT INTO `cms_texts` VALUES ('fx_21', 'RebelMobile');INSERT INTO `cms_texts` VALUES ('fx_21_desc', 'Drive like lightning, crash like thunder!');INSERT INTO `cms_texts` VALUES ('fx_22', 'BadMobile');INSERT INTO `cms_texts` VALUES ('fx_22_desc', 'This is black sunshine!');INSERT INTO `cms_texts` VALUES ('fx_23', 'totem_man_name');INSERT INTO `cms_texts` VALUES ('fx_24', 'totem_merdragon_name');INSERT INTO `cms_texts` VALUES ('fx_25', 'totem_eagle_name');INSERT INTO `cms_texts` VALUES ('fx_26', 'totem_mix_name');INSERT INTO `cms_texts` VALUES ('fx_27', 'Mighty Viking');INSERT INTO `cms_texts` VALUES ('fx_27_desc', 'Do you know how to train your Dragon?');INSERT INTO `cms_texts` VALUES ('fx_2_desc', 'The future of transportation.');INSERT INTO `cms_texts` VALUES ('fx_3', 'UFO');INSERT INTO `cms_texts` VALUES ('fx_31', 'Cheetos Effect');INSERT INTO `cms_texts` VALUES ('fx_31_desc', 'Be a Cheetos!');INSERT INTO `cms_texts` VALUES ('fx_32', 'Minion Effect');INSERT INTO `cms_texts` VALUES ('fx_32_desc', 'Despicable Me');INSERT INTO `cms_texts` VALUES ('fx_3_desc', 'Help, I\'m being abducted.');INSERT INTO `cms_texts` VALUES ('fx_4', 'Twinkle');INSERT INTO `cms_texts` VALUES ('fx_4_desc', 'Twinkle like the star you are.');INSERT INTO `cms_texts` VALUES ('fx_5', 'Torch');INSERT INTO `cms_texts` VALUES ('fx_5_desc', 'Light the dark corners of your existence.');INSERT INTO `cms_texts` VALUES ('fx_6', 'HRJP-3000');INSERT INTO `cms_texts` VALUES ('fx_6_desc', 'Habbo Rocket Jet Pack.');INSERT INTO `cms_texts` VALUES ('fx_7', 'Butterfly effect');INSERT INTO `cms_texts` VALUES ('fx_7_desc', 'Let the butterflies flap their wings.');INSERT INTO `cms_texts` VALUES ('fx_8', 'Fireflies');INSERT INTO `cms_texts` VALUES ('fx_8_desc', 'Light my fire');INSERT INTO `cms_texts` VALUES ('fx_9', 'Love Birds');INSERT INTO `cms_texts` VALUES ('fx_9_desc', 'Love is in the air.');INSERT INTO `cms_texts` VALUES ('handitem1', 'tea');INSERT INTO `cms_texts` VALUES ('handitem10', 'latte');INSERT INTO `cms_texts` VALUES ('handitem11', 'mocha');INSERT INTO `cms_texts` VALUES ('handitem12', 'macchiato');INSERT INTO `cms_texts` VALUES ('handitem13', 'espresso');INSERT INTO `cms_texts` VALUES ('handitem14', 'filter');INSERT INTO `cms_texts` VALUES ('handitem15', 'iced');INSERT INTO `cms_texts` VALUES ('handitem16', 'cappuccino');INSERT INTO `cms_texts` VALUES ('handitem17', 'java');INSERT INTO `cms_texts` VALUES ('handitem18', 'tap');INSERT INTO `cms_texts` VALUES ('handitem19', 'cola');INSERT INTO `cms_texts` VALUES ('handitem2', 'juice');INSERT INTO `cms_texts` VALUES ('handitem20', 'camera');INSERT INTO `cms_texts` VALUES ('handitem21', 'hamburger');INSERT INTO `cms_texts` VALUES ('handitem22', 'lime soda');INSERT INTO `cms_texts` VALUES ('handitem23', 'beetroot soda');INSERT INTO `cms_texts` VALUES ('handitem24', 'bubble juice from 1978');INSERT INTO `cms_texts` VALUES ('handitem25', 'love potion');INSERT INTO `cms_texts` VALUES ('handitem26', 'calippo');INSERT INTO `cms_texts` VALUES ('handitem27', 'tea');INSERT INTO `cms_texts` VALUES ('handitem28', 'sake');INSERT INTO `cms_texts` VALUES ('handitem29', 'tomato juice');INSERT INTO `cms_texts` VALUES ('handitem3', 'carrot');INSERT INTO `cms_texts` VALUES ('handitem30', 'radioactive liquid');INSERT INTO `cms_texts` VALUES ('handitem31', 'pink champagne');INSERT INTO `cms_texts` VALUES ('handitem34', 'fish');INSERT INTO `cms_texts` VALUES ('handitem35', 'pink champagne');INSERT INTO `cms_texts` VALUES ('handitem4', 'ice-cream');INSERT INTO `cms_texts` VALUES ('handitem41', 'sumppi-kuppi');INSERT INTO `cms_texts` VALUES ('handitem43', 'chilled soda');INSERT INTO `cms_texts` VALUES ('handitem5', 'milk');INSERT INTO `cms_texts` VALUES ('handitem50', 'cider');INSERT INTO `cms_texts` VALUES ('handitem53', 'espresso');INSERT INTO `cms_texts` VALUES ('handitem57', 'cherry soda');INSERT INTO `cms_texts` VALUES ('handitem6', 'blackcurrant');INSERT INTO `cms_texts` VALUES ('handitem7', 'water');INSERT INTO `cms_texts` VALUES ('handitem8', 'regular');INSERT INTO `cms_texts` VALUES ('handitem9', 'decaff');INSERT INTO `cms_texts` VALUES ('pet.command.0', 'free');INSERT INTO `cms_texts` VALUES ('pet.command.1', 'sit');INSERT INTO `cms_texts` VALUES ('pet.command.10', 'speak');INSERT INTO `cms_texts` VALUES ('pet.command.11', 'play');INSERT INTO `cms_texts` VALUES ('pet.command.12', 'silent');INSERT INTO `cms_texts` VALUES ('pet.command.13', 'nest');INSERT INTO `cms_texts` VALUES ('pet.command.14', 'drink');INSERT INTO `cms_texts` VALUES ('pet.command.15', 'follow left');INSERT INTO `cms_texts` VALUES ('pet.command.16', 'follow right');INSERT INTO `cms_texts` VALUES ('pet.command.2', 'down');INSERT INTO `cms_texts` VALUES ('pet.command.3', 'here');INSERT INTO `cms_texts` VALUES ('pet.command.4', 'beg');INSERT INTO `cms_texts` VALUES ('pet.command.5', 'play dead');INSERT INTO `cms_texts` VALUES ('pet.command.6', 'stay');INSERT INTO `cms_texts` VALUES ('pet.command.7', 'follow');INSERT INTO `cms_texts` VALUES ('pet.command.8', 'stand');INSERT INTO `cms_texts` VALUES ('pet.command.9', 'jump');
-- ------------------------------ Table structure for `ecotron_rewards`-- ----------------------------DROP TABLE IF EXISTS `ecotron_rewards`;CREATE TABLE `ecotron_rewards` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `display_id` int(10) unsigned NOT NULL,  `item_id` int(10) unsigned NOT NULL,  `reward_level` int(11) unsigned NOT NULL,  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of ecotron_rewards-- ----------------------------INSERT INTO `ecotron_rewards` VALUES ('1', '2857', '1542', '5');INSERT INTO `ecotron_rewards` VALUES ('2', '2862', '1547', '4');INSERT INTO `ecotron_rewards` VALUES ('3', '2799', '1485', '3');INSERT INTO `ecotron_rewards` VALUES ('4', '2802', '1487', '3');INSERT INTO `ecotron_rewards` VALUES ('5', '2818', '1503', '3');INSERT INTO `ecotron_rewards` VALUES ('6', '2797', '1483', '2');INSERT INTO `ecotron_rewards` VALUES ('7', '2800', '1486', '2');INSERT INTO `ecotron_rewards` VALUES ('8', '2816', '1501', '2');INSERT INTO `ecotron_rewards` VALUES ('9', '2805', '1490', '1');INSERT INTO `ecotron_rewards` VALUES ('10', '2808', '1493', '1');INSERT INTO `ecotron_rewards` VALUES ('11', '2810', '1495', '1');INSERT INTO `ecotron_rewards` VALUES ('12', '2796', '1482', '1');INSERT INTO `ecotron_rewards` VALUES ('13', '2813', '1498', '1');INSERT INTO `ecotron_rewards` VALUES ('14', '2819', '1504', '1');INSERT INTO `ecotron_rewards` VALUES ('15', '2794', '1480', '2');INSERT INTO `ecotron_rewards` VALUES ('16', '2809', '1494', '2');INSERT INTO `ecotron_rewards` VALUES ('17', '2815', '1500', '2');INSERT INTO `ecotron_rewards` VALUES ('18', '2793', '1479', '2');INSERT INTO `ecotron_rewards` VALUES ('19', '2803', '1488', '2');INSERT INTO `ecotron_rewards` VALUES ('20', '2820', '1505', '2');INSERT INTO `ecotron_rewards` VALUES ('21', '4102', '1764', '2');INSERT INTO `ecotron_rewards` VALUES ('22', '4104', '1766', '2');INSERT INTO `ecotron_rewards` VALUES ('23', '4105', '1767', '2');INSERT INTO `ecotron_rewards` VALUES ('24', '2795', '1481', '2');INSERT INTO `ecotron_rewards` VALUES ('25', '2798', '1484', '2');INSERT INTO `ecotron_rewards` VALUES ('26', '2814', '1499', '2');
-- ------------------------------ Table structure for `furniture`-- ----------------------------DROP TABLE IF EXISTS `furniture`;CREATE TABLE `furniture` (  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,  `public_name` varchar(100) NOT NULL COMMENT 'temp only',  `item_name` varchar(100) NOT NULL,  `type` enum('s','i','e','h','v') NOT NULL DEFAULT 's',  `width` int(11) NOT NULL DEFAULT '1',  `length` int(11) NOT NULL DEFAULT '1',  `stack_height` double NOT NULL DEFAULT '1',  `can_stack` enum('0','1') NOT NULL DEFAULT '1',  `can_sit` enum('0','1') NOT NULL DEFAULT '0',  `is_walkable` enum('0','1') NOT NULL DEFAULT '0',  `sprite_id` int(11) NOT NULL,  `allow_recycle` enum('0','1') NOT NULL DEFAULT '1',  `allow_trade` enum('0','1') NOT NULL DEFAULT '1',  `allow_marketplace_sell` enum('0','1') NOT NULL DEFAULT '1',  `allow_gift` enum('0','1') NOT NULL DEFAULT '1',  `allow_inventory_stack` enum('0','1') NOT NULL DEFAULT '1',  `interaction_type` enum('default','gate','postit','roomeffect','dimmer','trophy','bed','scoreboard','vendingmachine','alert','onewaygate','loveshuffler','habbowheel','dice','bottle','teleport','rentals','pet','roller','water','ball','bb_red_gate','bb_green_gate','bb_yellow_gate','bb_puck','bb_blue_gate','bb_patch','bb_teleport','blue_score','green_score','red_score','yellow_score','fbgate','tagpole','counter','red_goal','blue_goal','yellow_goal','green_goal','wired','wf_trg_onsay','wf_act_saymsg','wf_trg_enterroom','wf_act_moveuser','wf_act_togglefurni','wf_trg_furnistate','wf_trg_onfurni','pressure_pad','wf_trg_offfurni','wf_trg_gameend','wf_trg_gamestart','wf_trg_timer','wf_act_givepoints','wf_trg_attime','wf_trg_atscore','wf_act_moverotate','rollerskate','stickiepole','wf_xtra_random','wf_cnd_trggrer_on_frn','wf_cnd_furnis_hv_avtrs','wf_act_matchfurni','wf_cnd_has_furni_on','puzzlebox','switch','wf_act_give_phx','wf_cnd_phx') DEFAULT 'default',  `interaction_modes_count` int(11) NOT NULL DEFAULT '1',  `vending_ids` varchar(100) NOT NULL DEFAULT '0',  `is_arrow` enum('0','1') NOT NULL DEFAULT '0',  `height_adjustable` varchar(100) NOT NULL DEFAULT '0',  `effectM` int(3) NOT NULL DEFAULT '0',  `effectF` int(3) NOT NULL DEFAULT '0',  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=3568407 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of furniture-- ----------------------------INSERT INTO `furniture` VALUES ('1', 'Bookcase', 'shelves_norja', 's', '1', '1', '1', '0', '0', '0', '13', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2', 'Bookcase', 'shelves_polyfon', 's', '2', '1', '1', '0', '0', '0', '14', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3', 'Bookcase', 'shelves_silo', 's', '2', '1', '1', '0', '0', '0', '15', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('4', 'Small Coffee Table', 'table_polyfon_small', 's', '2', '2', '1', '0', '0', '0', '17', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('5', 'Dining Chair', 'chair_polyfon', 's', '1', '1', '1', '0', '1', '0', '18', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('6', 'Coffee Table', 'table_norja_med', 's', '2', '2', '1', '1', '0', '0', '20', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('7', 'Coffee Table', 'table_silo_med', 's', '2', '2', '1', '1', '0', '0', '21', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('8', 'Occasional Table', 'table_plasto_4leg', 's', '2', '2', '1', '1', '0', '0', '22', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('9', 'Round Dining Table', 'table_plasto_round', 's', '2', '2', '1', '1', '0', '0', '23', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10', 'Square Dining Table', 'table_plasto_bigsquare', 's', '2', '2', '1', '1', '0', '0', '24', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('11', 'Shelf', 'stand_polyfon_z', 's', '1', '1', '0.5', '1', '0', '0', '25', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('12', 'Dining Chair', 'chair_silo', 's', '1', '1', '1.1', '0', '1', '0', '26', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('13', 'Cushioned', 'sofa_silo', 's', '2', '1', '1.1', '0', '1', '0', '28', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('14', 'Bench', 'couch_norja', 's', '2', '1', '1', '0', '1', '0', '29', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('15', 'Chair', 'chair_norja', 's', '1', '1', '1', '0', '1', '0', '30', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('16', 'Large Coffee Table', 'table_polyfon_med', 's', '2', '2', '1', '1', '0', '0', '31', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('17', 'Doormat', 'doormat_love', 's', '1', '1', '0.1', '0', '0', '1', '32', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('18', 'Doormat', 'doormat_plain', 's', '1', '1', '0.1', '0', '0', '1', '33', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19', 'Armchair', 'sofachair_polyfon', 's', '1', '1', '1.1', '0', '1', '0', '34', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20', 'Two-seater Sofa', 'sofa_polyfon', 's', '2', '1', '1.1', '0', '1', '0', '35', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21', 'Large', 'sofachair_silo', 's', '1', '1', '1.1', '0', '1', '0', '36', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('22', 'Plastic Pod Chair', 'chair_plasty', 's', '1', '1', '1', '0', '1', '0', '38', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('23', 'Chair', 'chair_plasto', 's', '1', '1', '1', '0', '1', '0', '39', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('24', 'Occasional Table', 'table_plasto_square', 's', '1', '1', '1', '1', '0', '0', '40', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25', 'Double Bed', 'bed_polyfon', 's', '2', '3', '1.8', '0', '0', '0', '41', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('26', 'Single Bed', 'bed_polyfon_one', 's', '1', '3', '1.8', '0', '0', '0', '42', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('27', 'Plain Single Bed', 'bed_trad_one', 's', '2', '3', '1', '0', '0', '0', '43', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('28', 'Plain Double Bed', 'bed_trad', 's', '2', '3', '1', '0', '0', '0', '44', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29', 'Single Bed', 'bed_silo_one', 's', '1', '3', '1.8', '0', '0', '0', '45', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('30', 'Double Bed', 'bed_silo_two', 's', '2', '3', '1.8', '0', '0', '0', '46', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('31', 'Occasional Table', 'table_silo_small', 's', '1', '1', '1', '1', '0', '0', '47', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('32', 'Double Bed', 'bed_armas_two', 's', '2', '3', '1.8', '0', '0', '0', '48', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('33', 'bed_budget_one', 'bed_budget_one', 's', '1', '3', '1.9', '0', '0', '0', '49', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('34', 'Comfortable', 'bed_budget', 's', '2', '3', '1.9', '0', '0', '0', '50', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('35', 'Bookcase', 'shelves_armas', 's', '2', '1', '1', '0', '0', '0', '51', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('36', 'Bench', 'bench_armas', 's', '2', '1', '1.1', '0', '1', '0', '52', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('37', 'Dining Table', 'table_armas', 's', '2', '2', '1', '1', '0', '0', '53', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('38', 'Occasional Table', 'small_table_armas', 's', '1', '1', '1', '1', '0', '0', '54', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('39', 'Stool', 'small_chair_armas', 's', '1', '1', '1', '0', '1', '0', '55', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('40', 'Authentic', 'fireplace_armas', 's', '2', '1', '1', '0', '0', '0', '56', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('41', 'Table Lamp', 'lamp_armas', 's', '1', '1', '1', '0', '0', '0', '57', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('42', 'Single Bed', 'bed_armas_one', 's', '1', '3', '1.8', '0', '0', '0', '58', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('43', 'Floor rug', 'carpet_standard', 's', '3', '5', '0', '1', '0', '1', '59', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('44', 'Hand-Woven Rug', 'carpet_armas', 's', '2', '4', '0', '1', '0', '1', '60', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('45', 'Faux-Fur Bear Rug', 'carpet_polar', 's', '2', '3', '0', '1', '0', '1', '61', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('46', 'Fireplace', 'fireplace_polyfon', 's', '2', '1', '1', '0', '0', '0', '62', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('47', 'Square Dining Table', 'table_plasto_4leg*1', 's', '2', '2', '1', '1', '0', '0', '63', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('48', 'Square Dining Table', 'table_plasto_bigsquare*1', 's', '2', '2', '1', '1', '0', '0', '64', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('49', 'Round Dining Table', 'table_plasto_round*1', 's', '2', '2', '1', '1', '0', '0', '65', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('50', 'Occasional Table', 'table_plasto_square*1', 's', '1', '1', '1', '1', '0', '0', '66', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('51', 'Chair', 'chair_plasto*1', 's', '1', '1', '1', '0', '1', '0', '67', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('52', 'Floor Rug', 'carpet_standard*1', 's', '3', '5', '0', '1', '0', '1', '68', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('53', 'Doormat', 'doormat_plain*1', 's', '1', '1', '0.1', '0', '0', '1', '69', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('54', 'Occasional Table', 'table_plasto_4leg*2', 's', '2', '2', '1', '1', '0', '0', '70', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('55', 'Square Dining Table', 'table_plasto_bigsquare*2', 's', '2', '2', '1', '1', '0', '0', '71', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('56', 'Round Dining Table', 'table_plasto_round*2', 's', '2', '2', '1', '1', '0', '0', '72', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('57', 'Round Dining Table', 'table_plasto_square*2', 's', '1', '1', '1', '1', '0', '0', '73', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('58', 'Chair', 'chair_plasto*2', 's', '1', '1', '1', '0', '1', '0', '74', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('59', 'Doormat', 'doormat_plain*2', 's', '1', '1', '0.1', '0', '0', '1', '75', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('60', 'Floor Rug', 'carpet_standard*2', 's', '3', '5', '0', '1', '0', '1', '76', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('61', 'Round Dining Table', 'table_plasto_4leg*3', 's', '2', '2', '1', '1', '0', '0', '77', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('62', 'Square Dining Table', 'table_plasto_bigsquare*3', 's', '2', '2', '1', '1', '0', '0', '78', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('63', 'Round Dining Table', 'table_plasto_round*3', 's', '2', '2', '1', '1', '0', '0', '79', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('64', 'Square Dining Table', 'table_plasto_square*3', 's', '1', '1', '1', '1', '0', '0', '80', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('65', 'Chair', 'chair_plasto*3', 's', '1', '1', '1', '0', '1', '0', '81', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('66', 'Floor Rug', 'carpet_standard*3', 's', '3', '5', '0', '1', '0', '1', '82', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('67', 'Doormat', 'doormat_plain*3', 's', '1', '1', '0.1', '0', '0', '1', '83', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('68', 'Square Dining Table', 'table_plasto_4leg*4', 's', '2', '2', '1', '1', '0', '0', '84', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('71', 'Square Dining Table', 'table_plasto_square*4', 's', '1', '1', '1', '1', '0', '0', '87', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('72', 'Chair', 'chair_plasto*4', 's', '1', '1', '1', '0', '1', '0', '88', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('73', 'Floor Rug', 'carpet_standard*4', 's', '3', '5', '0', '1', '0', '1', '89', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('74', 'Doormat', 'doormat_plain*4', 's', '1', '1', '0.1', '0', '0', '1', '90', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('75', 'Doormat', 'doormat_plain*6', 's', '1', '1', '0.1', '0', '0', '1', '91', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('76', 'Doormat', 'doormat_plain*5', 's', '1', '1', '0.1', '0', '0', '1', '93', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77', 'Floor Rug', 'carpet_standard*5', 's', '3', '5', '0', '1', '0', '1', '94', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('78', 'Occasional Table', 'table_plasto_4leg*5', 's', '2', '2', '1', '1', '0', '0', '95', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('79', 'Square Dining Table', 'table_plasto_bigsquare*5', 's', '2', '2', '1', '1', '0', '0', '96', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('80', 'Round Dining Table', 'table_plasto_round*5', 's', '2', '2', '1', '1', '0', '0', '97', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('81', 'Square Dining Table', 'table_plasto_square*5', 's', '1', '1', '1', '1', '0', '0', '98', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('82', 'Chair', 'chair_plasto*5', 's', '1', '1', '1', '0', '1', '0', '99', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('83', 'Occasional table Table', 'table_plasto_4leg*6', 's', '2', '2', '1', '1', '0', '0', '100', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('84', 'Square Dining Table', 'table_plasto_bigsquare*6', 's', '2', '2', '1', '1', '0', '0', '101', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('85', 'Round Dining Table', 'table_plasto_round*6', 's', '2', '2', '1', '1', '0', '0', '102', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('86', 'Square Dining Table', 'table_plasto_square*6', 's', '1', '1', '1', '1', '0', '0', '103', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('87', 'Chair', 'chair_plasto*6', 's', '1', '1', '1', '0', '1', '0', '104', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('88', 'Occasional table', 'table_plasto_4leg*7', 's', '2', '2', '1', '1', '0', '0', '105', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89', 'Square Dining Table', 'table_plasto_bigsquare*7', 's', '2', '2', '1', '1', '0', '0', '106', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('90', 'Round Dining Table', 'table_plasto_round*7', 's', '2', '2', '1', '1', '0', '0', '107', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('91', 'Square Dining Table', 'table_plasto_square*7', 's', '1', '1', '1', '1', '0', '0', '108', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('92', 'Chair', 'chair_plasto*7', 's', '1', '1', '1', '0', '1', '0', '109', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('93', 'Occasional Table', 'table_plasto_4leg*8', 's', '2', '2', '1', '1', '0', '0', '110', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('94', 'Square Dining Table', 'table_plasto_bigsquare*8', 's', '2', '2', '1', '1', '0', '0', '111', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95', 'Round Dining Table', 'table_plasto_round*8', 's', '2', '2', '1', '1', '0', '0', '112', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('96', 'Square Dining Table', 'table_plasto_square*8', 's', '1', '1', '1', '1', '0', '0', '113', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97', 'Chair', 'chair_plasto*8', 's', '1', '1', '1', '0', '1', '0', '114', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('98', 'Occasional Table', 'table_plasto_4leg*9', 's', '2', '2', '1', '1', '0', '0', '115', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99', 'Square Dining Table', 'table_plasto_bigsquare*9', 's', '2', '2', '1', '1', '0', '0', '116', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('100', 'Square Dining Table', 'table_plasto_round*9', 's', '2', '2', '1', '1', '0', '0', '117', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('101', 'Chair', 'chair_plasto*9', 's', '1', '1', '1', '0', '1', '0', '119', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('102', 'Floor Rug', 'carpet_standard*6', 's', '3', '5', '0', '1', '0', '1', '120', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('103', 'Plastic Pod Chair', 'chair_plasty*1', 's', '1', '1', '1', '0', '1', '0', '121', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('104', 'Pizza Box', 'pizza', 's', '1', '1', '1', '0', '0', '0', '122', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('105', 'Empty Cans', 'drinks', 's', '1', '1', '1', '0', '0', '0', '123', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('106', 'Plastic Pod Chair', 'chair_plasty*2', 's', '1', '1', '1', '0', '1', '0', '124', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('107', 'Plastic Pod Chair', 'chair_plasty*3', 's', '1', '1', '1', '0', '1', '0', '125', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('108', 'Plastic Pod Chair', 'chair_plasty*4', 's', '1', '1', '1', '0', '1', '0', '126', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('109', 'Mini-Bar', 'bar_polyfon', 's', '1', '1', '1', '0', '0', '0', '127', '1', '1', '0', '1', '1', 'vendingmachine', '0', '6,5,2,1', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('110', 'Aloe Vera', 'plant_cruddy', 's', '1', '1', '1', '0', '0', '0', '128', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('111', 'Empty Spinning Bottle', 'bottle', 's', '1', '1', '1', '0', '0', '0', '129', '1', '1', '0', '1', '1', 'bottle', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('112', 'Bar/desk', 'bardesk_polyfon', 's', '2', '1', '1', '1', '0', '0', '130', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('113', 'Corner Cabinet/Desk', 'bardeskcorner_polyfon', 's', '1', '1', '1', '1', '0', '0', '131', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('115', 'Barrel Minibar', 'bar_armas', 's', '1', '1', '1', '0', '0', '0', '133', '1', '1', '0', '1', '1', 'vendingmachine', '0', '6,2,1', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('116', 'Bardesk', 'bartable_armas', 's', '1', '3', '1.2', '1', '0', '0', '134', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('117', 'Barrel Stool', 'bar_chair_armas', 's', '1', '1', '1.2', '0', '1', '0', '135', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('118', 'Soft Wool Rug', 'carpet_soft', 's', '2', '4', '0', '1', '0', '1', '136', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('119', 'Soft Wool Rug', 'carpet_soft*1', 's', '2', '4', '0', '1', '0', '1', '137', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('120', 'Soft Wool Rug', 'carpet_soft*2', 's', '2', '4', '0', '1', '0', '1', '138', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('121', 'Soft Wool Rug', 'carpet_soft*3', 's', '2', '4', '0', '1', '0', '1', '139', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('122', 'Soft Wool Rug', 'carpet_soft*4', 's', '2', '4', '0', '1', '0', '1', '140', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('123', 'Soft Wool Rug', 'carpet_soft*5', 's', '2', '4', '0', '1', '0', '1', '141', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('124', 'Soft Wool Rug', 'carpet_soft*6', 's', '2', '4', '0', '1', '0', '1', '143', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('125', 'Portable TV', 'red_tv', 's', '1', '1', '1', '0', '0', '0', '144', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('126', 'Large TV', 'wood_tv', 's', '1', '2', '1', '0', '0', '0', '145', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('127', 'Pink Faux-Fur Bear Rug', 'carpet_polar*1', 's', '2', '3', '0', '1', '0', '1', '146', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('128', 'Plastic Pod Chair', 'chair_plasty*5', 's', '1', '1', '1', '0', '1', '0', '147', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('129', 'Blue Bear Rug', 'carpet_polar*2', 's', '2', '3', '0', '1', '0', '1', '148', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('130', 'Yellow Bear Rug', 'carpet_polar*3', 's', '2', '3', '0', '1', '0', '1', '149', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('131', 'Green Bear Rug', 'carpet_polar*4', 's', '2', '3', '0', '1', '0', '1', '150', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('132', 'Plastic Pod Chair', 'chair_plasty*6', 's', '1', '1', '1', '0', '1', '0', '151', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('133', 'Large Coffee Table', 'table_polyfon', 's', '2', '2', '1', '1', '0', '0', '152', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('134', 'Large Dining Table', 'smooth_table_polyfon', 's', '2', '2', '1', '1', '0', '0', '153', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('135', 'Armchair', 'sofachair_polyfon_girl', 's', '1', '1', '1.1', '0', '1', '0', '154', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('136', 'Single Bed', 'bed_polyfon_girl_one', 's', '1', '3', '1.8', '0', '0', '0', '155', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('137', 'Double Bed', 'bed_polyfon_girl', 's', '2', '3', '1.8', '0', '0', '0', '156', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('138', 'Two-seater Sofa', 'sofa_polyfon_girl', 's', '2', '1', '1.1', '0', '1', '0', '157', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('139', 'Plain Single Bed', 'bed_budgetb_one', 's', '1', '3', '1.9', '0', '0', '0', '158', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('140', 'Plain Double Bed', 'bed_budgetb', 's', '2', '3', '1.9', '0', '0', '0', '159', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('141', 'Pineapple Plant', 'plant_pineapple', 's', '1', '1', '1', '0', '0', '0', '160', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('142', 'Fruit Tree', 'plant_fruittree', 's', '1', '1', '1', '0', '0', '0', '161', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('143', 'Small Cactus', 'plant_small_cactus', 's', '1', '1', '1', '0', '0', '0', '162', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('144', 'Bonsai Tree', 'plant_bonsai', 's', '1', '1', '1', '0', '0', '0', '163', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('145', 'Mature Cactus', 'plant_big_cactus', 's', '1', '1', '1', '0', '0', '0', '164', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('146', 'Yukka Plant', 'plant_yukka', 's', '1', '1', '1', '0', '0', '0', '165', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('147', 'Floor Rug', 'carpet_standard*7', 's', '3', '5', '0', '1', '0', '1', '166', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('148', 'Floor Rug', 'carpet_standard*8', 's', '3', '5', '0', '1', '0', '1', '167', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('149', 'Floor Rug', 'carpet_standard*9', 's', '3', '5', '0', '1', '0', '1', '168', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('150', 'Floor Rug', 'carpet_standard*10', 's', '3', '5', '0', '1', '0', '1', '169', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('151', 'Floor Rug', 'carpet_standard*11', 's', '3', '5', '0', '1', '0', '1', '170', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('152', 'Cut Sunflower', 'plant_sunflower', 's', '1', '1', '1', '0', '0', '0', '171', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('153', 'Cut Roses', 'plant_rose', 's', '1', '1', '1', '0', '0', '0', '172', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('154', 'Digital TV', 'tv_luxus', 's', '1', '3', '1', '0', '0', '0', '173', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('155', 'Bubble Bath', 'bath', 's', '1', '2', '1', '0', '1', '0', '174', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('156', 'Sink', 'sink', 's', '1', '1', '1', '0', '0', '0', '177', '1', '1', '0', '1', '1', 'vendingmachine', '0', '100', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('157', 'Loo Seat', 'toilet', 's', '1', '1', '1.2', '0', '1', '0', '178', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('158', 'Rubber Duck', 'duck', 's', '1', '1', '1', '0', '0', '0', '179', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('159', 'Floor Tiles', 'tile', 's', '4', '4', '0', '1', '0', '1', '180', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('160', 'Loo Seat', 'toilet_red', 's', '1', '1', '1.2', '0', '1', '0', '181', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('161', 'Loo Seat', 'toilet_yell', 's', '1', '1', '1.2', '0', '1', '0', '182', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('162', 'Floor Tiles', 'tile_red', 's', '4', '4', '0', '1', '0', '1', '183', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('163', 'Floor Tiles', 'tile_yell', 's', '4', '4', '0', '1', '0', '1', '184', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('164', 'Gift', 'present_gen', 's', '1', '1', '1', '1', '0', '0', '187', '1', '0', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('165', 'Gift', 'present_gen1', 's', '1', '1', '1', '1', '0', '0', '188', '1', '0', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('166', 'Gift', 'present_gen2', 's', '1', '1', '1', '1', '0', '0', '189', '1', '0', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('167', 'Gift', 'present_gen3', 's', '1', '1', '1', '1', '0', '0', '190', '1', '0', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('168', 'Gift', 'present_gen4', 's', '1', '1', '1', '1', '0', '0', '191', '1', '0', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('169', 'Gift', 'present_gen5', 's', '1', '1', '1', '1', '0', '0', '192', '1', '0', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('170', 'Gift', 'present_gen6', 's', '1', '1', '1', '1', '0', '0', '193', '1', '0', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('171', 'A Pura Minibar', 'bar_basic', 's', '1', '1', '1', '0', '0', '0', '195', '1', '1', '0', '1', '1', 'vendingmachine', '0', '6,2,5,1', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('172', 'Pura Shelves', 'shelves_basic', 's', '2', '1', '1', '0', '0', '0', '196', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('173', 'iced sofachair', 'soft_sofachair_norja', 's', '1', '1', '1', '0', '1', '0', '197', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('174', 'iced sofa', 'soft_sofa_norja', 's', '2', '1', '1', '0', '1', '0', '198', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('175', 'Pura Lamp', 'lamp_basic', 's', '1', '1', '1', '0', '0', '0', '199', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('176', 'Lodge Candle', 'lamp2_armas', 's', '1', '1', '1', '0', '0', '0', '200', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('177', 'Pura Refridgerator', 'fridge', 's', '1', '1', '1', '0', '0', '0', '201', '1', '1', '0', '1', '1', 'vendingmachine', '0', '3,5,6,2', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('178', 'Telephone Box', 'door', 's', '1', '1', '0.001', '0', '0', '0', '202', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('179', 'Wardrobe', 'doorB', 's', '1', '1', '0.001', '0', '0', '0', '204', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('180', 'Portaloo', 'doorC', 's', '1', '1', '0.001', '0', '0', '0', '205', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('181', 'Pumpkin Lamp', 'pumpkin', 's', '1', '1', '1', '1', '0', '0', '206', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('182', 'Skull Candle Holder', 'skullcandle', 's', '1', '1', '1', '0', '0', '0', '207', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('183', 'Blood', 'deadduck', 's', '1', '1', '1', '0', '0', '0', '208', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('184', 'Dead Duck 2', 'deadduck2', 's', '1', '1', '1', '0', '0', '0', '209', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('185', 'Dead Duck 3', 'deadduck3', 's', '1', '1', '1', '0', '0', '0', '210', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('186', 'Menorah', 'menorah', 's', '1', '1', '1', '0', '0', '0', '211', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('187', 'Christmas Pudding', 'pudding', 's', '1', '1', '1', '1', '0', '0', '212', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('188', 'Joint of Ham', 'ham', 's', '1', '1', '1', '0', '0', '0', '213', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('189', 'Roast Turkey', 'turkey', 's', '1', '1', '1', '0', '0', '0', '214', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('190', 'Christmas Rubber Duck', 'xmasduck', 's', '1', '1', '1', '1', '0', '0', '215', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('191', 'Gingerbread House', 'house', 's', '1', '1', '1', '0', '0', '0', '216', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('192', 'Electric Candles', 'triplecandle', 's', '1', '1', '1', '0', '0', '0', '217', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('193', 'Christmas Tree 1', 'tree3', 's', '1', '1', '1', '0', '0', '0', '218', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('194', 'Christmas Tree 2', 'tree4', 's', '1', '1', '1', '0', '0', '0', '219', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('195', 'Christmas Tree 3', 'tree5', 's', '1', '1', '1', '0', '0', '0', '220', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('196', 'Eaten Ham', 'ham2', 's', '1', '1', '1', '0', '0', '0', '223', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('197', 'White Candle Plate', 'wcandleset', 's', '1', '1', '1', '0', '0', '0', '224', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('198', 'Red Candle Plate', 'rcandleset', 's', '1', '1', '1', '0', '0', '0', '225', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('199', 'Cupid Statue', 'statue', 's', '1', '1', '1', '0', '0', '0', '226', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('200', 'Valentine\'s Duck', 'valeduck', 's', '1', '1', '1', '0', '0', '0', '228', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('201', 'Heart Sofa', 'heartsofa', 's', '2', '1', '1', '0', '1', '0', '229', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('202', 'Throne', 'throne', 's', '1', '1', '1', '0', '1', '0', '230', '0', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('203', 'Russian Samovar', 'samovar', 's', '1', '1', '1', '0', '0', '0', '231', '0', '1', '1', '1', '1', 'vendingmachine', '0', '1', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('204', 'Vase of Flowers', 'giftflowers', 's', '1', '1', '1', '0', '0', '0', '232', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('205', 'Cake', 'habbocake', 's', '1', '1', '1', '0', '0', '0', '233', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('206', 'Holopod', 'hologram', 's', '1', '1', '1', '0', '0', '0', '234', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('207', 'Wannabe bunny', 'easterduck', 's', '1', '1', '1', '0', '0', '0', '235', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('208', 'Squidgy Bunny', 'bunny', 's', '1', '1', '1', '0', '0', '0', '236', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('209', 'Basket Of Eggs', 'basket', 's', '1', '1', '1', '0', '0', '0', '237', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('210', 'Pop-up Egg', 'birdie', 's', '1', '1', '1', '0', '0', '0', '238', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('211', 'Holo-dice', 'edice', 's', '1', '1', '1', '0', '0', '0', '239', '1', '1', '0', '1', '1', 'dice', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('212', 'Club sofa', 'club_sofa', 's', '2', '1', '1', '0', '1', '0', '267', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('213', 'Gold Trophy', 'prize1', 's', '1', '1', '1', '0', '0', '0', '185', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('214', 'Silver Trophy', 'prize2', 's', '1', '1', '1', '0', '0', '0', '186', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('215', 'Bronze Trophy', 'prize3', 's', '1', '1', '1', '0', '0', '0', '243', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('216', 'Hatch (Lockable)', 'divider_poly3', 's', '1', '1', '0.001', '0', '0', '0', '244', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('217', 'Corner plinth', 'divider_arm1', 's', '1', '1', '1.4', '1', '0', '0', '245', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('218', 'Room divider', 'divider_arm2', 's', '2', '1', '1', '0', '0', '0', '246', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('219', 'Knock', 'divider_arm3', 's', '1', '1', '0.001', '0', '0', '0', '247', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('220', 'Looks squishy', 'divider_nor1', 's', '1', '1', '1', '0', '0', '0', '248', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('221', 'Corner Shelf', 'divider_silo1', 's', '1', '1', '1', '0', '0', '0', '249', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('222', 'Strong', 'divider_nor2', 's', '2', '1', '1', '0', '0', '0', '250', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('223', 'Screen', 'divider_silo2', 's', '2', '1', '1', '0', '0', '0', '251', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('224', 'Door (Lockable)', 'divider_nor3', 's', '1', '1', '0.001', '0', '0', '0', '252', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('225', 'Gate (lockable)', 'divider_silo3', 's', '1', '1', '0.001', '0', '0', '0', '253', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('226', 'Typewriter', 'typingmachine', 's', '1', '1', '1', '0', '0', '0', '254', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('227', 'Dragon Egg', 'spyro', 's', '1', '1', '1', '0', '0', '0', '260', '0', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('228', 'Holo-girl', 'redhologram', 's', '1', '1', '1', '0', '0', '0', '261', '0', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('230', 'Poinsetta', 'joulutahti', 's', '1', '1', '1', '0', '0', '0', '264', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('231', 'Pink Hyacinth', 'hyacinth1', 's', '1', '1', '1', '0', '0', '0', '265', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('232', 'Blue Hyacinth', 'hyacinth2', 's', '1', '1', '1', '0', '0', '0', '266', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('233', 'Chair', 'chair_plasto*10', 's', '1', '1', '1', '0', '1', '0', '268', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('234', 'Chair', 'chair_plasto*11', 's', '1', '1', '1', '0', '1', '0', '269', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('235', 'Corner Cabinet/Desk', 'bardeskcorner_polyfon*12', 's', '1', '1', '1', '1', '0', '0', '270', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('236', 'Corner Cabinet/Desk', 'bardeskcorner_polyfon*13', 's', '1', '1', '1', '1', '0', '0', '271', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('237', 'Chair', 'chair_plasto*12', 's', '1', '1', '1', '0', '1', '0', '273', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('238', 'Chair', 'chair_plasto*13', 's', '1', '1', '1', '0', '1', '0', '274', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('239', 'HC chair', 'chair_plasto*14', 's', '1', '1', '1', '0', '1', '0', '275', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('240', 'HC table', 'table_plasto_4leg*14', 's', '2', '2', '1', '1', '0', '0', '276', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('241', 'Mochamaster', 'mocchamaster', 's', '1', '1', '1', '1', '0', '0', '277', '1', '1', '0', '1', '1', 'vendingmachine', '0', '9,8,14,15,6,10,11,12,17,13', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('242', 'Basketball Court', 'carpet_legocourt', 's', '3', '3', '0', '1', '0', '1', '278', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('243', 'Team Bench', 'bench_lego', 's', '4', '1', '1', '0', '1', '0', '279', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('244', 'Basketball Trophy', 'legotrophy', 's', '1', '1', '1', '0', '0', '0', '280', '1', '1', '0', '1', '0', 'trophy', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('245', 'Holiday Romance', 'valentinescreen', 's', '2', '1', '0.1', '0', '0', '1', '283', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('246', 'Dicemaster', 'edicehc', 's', '1', '1', '1', '0', '0', '0', '284', '1', '1', '0', '1', '1', 'dice', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('247', 'Petal Patch', 'rare_daffodil_rug', 's', '2', '2', '0', '1', '0', '1', '285', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('248', 'Blue Amber Lamp', 'rare_beehive_bulb', 's', '1', '1', '1', '0', '0', '0', '286', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('249', 'Throne Sofa', 'hcsohva', 's', '2', '1', '1', '0', '1', '0', '287', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('250', 'Tubmaster', 'hcamme', 's', '1', '2', '0.6', '0', '1', '0', '288', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('251', 'Golden Elephant', 'rare_elephant_statue', 's', '1', '1', '1', '0', '0', '0', '290', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('252', 'Bird Bath (red)', 'rare_fountain', 's', '1', '1', '1', '0', '0', '0', '291', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('253', 'Speaker\'s Corner', 'rare_stand', 's', '1', '1', '1.7', '0', '1', '0', '292', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('254', 'Snow Globe', 'rare_globe', 's', '1', '1', '1', '0', '0', '0', '293', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('255', 'Hammock', 'rare_hammock', 's', '1', '3', '1.57', '0', '0', '0', '294', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('256', 'Silver Elephant', 'rare_elephant_statue*1', 's', '1', '1', '1', '0', '0', '0', '295', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('257', 'Bronze Elephant', 'rare_elephant_statue*2', 's', '1', '1', '1', '0', '0', '0', '296', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('258', 'Bird Bath (grey)', 'rare_fountain*1', 's', '1', '1', '1', '0', '0', '0', '297', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('259', 'Bird Bath (green)', 'rare_fountain*2', 's', '1', '1', '1', '0', '0', '0', '298', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('260', 'Bird Bath (blue)', 'rare_fountain*3', 's', '1', '1', '1', '0', '0', '0', '299', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('261', 'Red Amber Lamp', 'rare_beehive_bulb*1', 's', '1', '1', '1', '0', '0', '0', '300', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('262', 'Yellow Amber Lamp', 'rare_beehive_bulb*2', 's', '1', '1', '1', '0', '0', '0', '301', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('263', 'Lappland Greetings', 'rare_xmas_screen', 's', '2', '1', '0', '0', '0', '1', '302', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('264', 'Yellow Parasol', 'rare_parasol*1', 's', '1', '1', '1', '0', '0', '0', '303', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('265', 'Orange Parasol', 'rare_parasol*2', 's', '1', '1', '1', '0', '0', '0', '304', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('266', 'Violet Parasol', 'rare_parasol*3', 's', '1', '1', '1', '0', '0', '0', '305', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('267', 'Dead tree', 'tree1', 's', '1', '1', '1', '0', '0', '0', '1758', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20045', 'arabian_tile', 'arabian_tile', 's', '2', '2', '0', '1', '0', '1', '3312', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('269', 'White Candle', 'wcandle', 's', '1', '1', '1', '0', '0', '0', '2102', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('270', 'Red Candle', 'rcandle', 's', '1', '1', '1', '0', '0', '0', '2121', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('272', 'Gingerbread House', 'house2', 's', '1', '1', '1', '0', '0', '0', '428', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('273', 'Habbo Turntable', 'djesko_turntable', 's', '1', '1', '1', '0', '0', '0', '449', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('275', 'Habbo Cola Machine', 'md_limukaappi', 's', '1', '1', '1', '0', '0', '0', '457', '1', '1', '1', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('276', 'Occasional Table', 'table_plasto_4leg*10', 's', '2', '2', '1', '1', '0', '0', '1484', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('277', 'Occasional Table', 'table_plasto_4leg*15', 's', '2', '2', '1', '1', '0', '0', '1486', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('278', 'Occasional Table', 'table_plasto_bigsquare*14', 's', '2', '2', '1', '1', '0', '0', '1487', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('279', 'Occasional Table', 'table_plasto_bigsquare*15', 's', '2', '2', '1', '1', '0', '0', '1488', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('280', 'Occasional Table', 'table_plasto_round*14', 's', '2', '2', '1', '1', '0', '0', '1489', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('281', 'Occasional Table', 'table_plasto_round*15', 's', '2', '2', '1', '1', '0', '0', '1490', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('282', 'Occasional Table', 'table_plasto_square*14', 's', '1', '1', '1', '1', '0', '0', '1491', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('283', 'Occasional Table', 'table_plasto_square*15', 's', '1', '1', '1', '1', '0', '0', '1492', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('284', 'Chair', 'chair_plasto*15', 's', '1', '1', '1', '0', '1', '0', '1495', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('285', 'Plastic Pod Chair', 'chair_plasty*7', 's', '1', '1', '1', '0', '1', '0', '1496', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('286', 'Plastic Pod Chair', 'chair_plasty*8', 's', '1', '1', '1', '0', '1', '0', '1497', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('287', 'Plastic Pod Chair', 'chair_plasty*9', 's', '1', '1', '1', '0', '1', '0', '1498', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('288', 'Plastic Pod Chair', 'chair_plasty*10', 's', '1', '1', '1', '0', '1', '0', '1499', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('289', 'Plastic Pod Chair', 'chair_plasty*11', 's', '1', '1', '1', '0', '1', '0', '1500', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('290', 'Chair', 'chair_plasto*16', 's', '1', '1', '1', '0', '1', '0', '1501', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('291', 'Occasional Table', 'table_plasto_4leg*16', 's', '2', '2', '1', '1', '0', '0', '1502', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('292', 'Scoreboard', 'hockey_score', 's', '1', '1', '1', '0', '0', '0', '1503', '1', '1', '0', '1', '1', 'scoreboard', '100', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('293', 'Lert', 'hockey_light', 's', '1', '1', '1', '0', '0', '0', '1504', '1', '1', '0', '1', '1', 'alert', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('294', 'Imperial Teleport', 'doorD', 's', '1', '1', '0.001', '0', '0', '0', '1505', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('295', 'Duck trophy', 'a0 prizetrophy2_b', 's', '1', '1', '1', '0', '0', '0', '1506', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('296', 'Globe trophy', 'a0 prizetrophy3_b', 's', '1', '1', '1', '0', '0', '0', '1507', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('297', 'Fish trophy', 'a0 prizetrophy4_b', 's', '1', '1', '1', '0', '0', '0', '1508', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('298', 'Champion trophy', 'a0 prizetrophy5_b', 's', '1', '1', '1', '0', '0', '0', '1509', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('299', 'Classic trophy', 'prizetrophy*1', 's', '1', '1', '1', '0', '0', '0', '1512', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('300', 'Duck trophy', 'a0 prizetrophy2_g', 's', '1', '1', '1', '0', '0', '0', '1512', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('301', 'Globe trophy', 'a0 prizetrophy3_g', 's', '1', '1', '1', '0', '0', '0', '1513', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('302', 'Fish trophy', 'a0 prizetrophy4_g', 's', '1', '1', '1', '0', '0', '0', '1514', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('303', 'Duo trophy', 'a0 prizetrophy5_g', 's', '1', '1', '1', '0', '0', '0', '1515', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('304', 'Champion trophy', 'a0 prizetrophy6_g', 's', '1', '1', '1', '0', '0', '0', '1516', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('305', 'Classic trophy', 'prizetrophy*2', 's', '1', '1', '1', '0', '0', '0', '1519', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('306', 'Duck trophy', 'a0 prizetrophy2_s', 's', '1', '1', '1', '0', '0', '0', '1518', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('307', 'Globe trophy', 'a0 prizetrophy3_s', 's', '1', '1', '1', '0', '0', '0', '1519', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('308', 'Fish trophy', 'a0 prizetrophy4_s', 's', '1', '1', '1', '0', '0', '0', '1520', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('309', 'Duo trophy', 'a0 prizetrophy5_s', 's', '1', '1', '1', '0', '0', '0', '1521', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('310', 'Champion trophy', 'a0 prizetrophy6_s', 's', '1', '1', '1', '0', '0', '0', '1522', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('311', 'Classic trophy', 'prizetrophy*3', 's', '1', '1', '1', '0', '0', '0', '1526', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('312', 'Green Parasol', 'rare_parasol*0', 's', '1', '1', '1', '0', '0', '0', '289', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('313', 'Oil Lamp', 'hc_lmp', 's', '1', '1', '1', '0', '0', '0', '1529', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('314', 'Nordic Table', 'hc_tbl', 's', '1', '3', '1', '1', '0', '0', '1528', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('315', 'Majestic Chair', 'hc_chr', 's', '1', '1', '1', '0', '1', '0', '1527', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('316', 'Study Desk', 'hc_dsk', 's', '1', '2', '1', '0', '0', '0', '1530', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('317', 'Night', 'nest', 's', '1', '1', '1', '1', '0', '0', '1531', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('318', 'Bones Mega Multipack', 'petfood1', 's', '1', '1', '1', '1', '0', '0', '1532', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('319', 'Sardines Mega Multipack', 'petfood2', 's', '1', '1', '1', '1', '0', '0', '1533', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('320', 'Cabbage Mega Multipack', 'petfood3', 's', '1', '1', '1', '1', '0', '0', '1534', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('321', 'Blue Water Bowl', 'waterbowl*4', 's', '1', '1', '1', '1', '0', '0', '1535', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('322', 'Brown Water Bowl', 'waterbowl*5', 's', '1', '1', '1', '1', '0', '0', '1536', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('323', 'Green Water Bowl', 'waterbowl*2', 's', '1', '1', '1', '1', '0', '0', '1537', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('324', 'Red Water Bowl', 'waterbowl*1', 's', '1', '1', '1', '1', '0', '0', '1538', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('325', 'Yellow Water Bowl', 'waterbowl*3', 's', '1', '1', '1', '1', '0', '0', '1539', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('326', 'Rubber Ball', 'toy1', 's', '1', '1', '1', '1', '0', '0', '1540', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('327', 'Rubber Ball', 'toy1*1', 's', '1', '1', '1', '1', '0', '0', '1541', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('328', 'Rubber Ball', 'toy1*2', 's', '1', '1', '1', '1', '0', '0', '1542', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('329', 'Rubber Ball', 'toy1*3', 's', '1', '1', '1', '1', '0', '0', '1543', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('330', 'Rubber Ball', 'toy1*4', 's', '1', '1', '1', '1', '0', '0', '1544', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('331', 'Marzipan Man', 'goodie1', 's', '1', '1', '1', '1', '0', '0', '1545', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('332', 'Marzipan Man', 'goodie1*1', 's', '1', '1', '1', '1', '0', '0', '1546', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('333', 'Marzipan Man', 'goodie1*2', 's', '1', '1', '1', '1', '0', '0', '1547', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('334', 'Chocolate Mouse', 'goodie2', 's', '1', '1', '1', '1', '0', '0', '1548', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('335', 'Bronze Habbo trophy', 'a0 prizetrophy7_b', 's', '1', '1', '1', '0', '0', '0', '1547', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('336', 'Gold Habbo trophy', 'a0 prizetrophy7_g', 's', '1', '1', '1', '0', '0', '0', '1548', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('337', 'Silver Habbo trophy', 'a0 prizetrophy7_s', 's', '1', '1', '1', '0', '0', '0', '1549', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('338', 'Red Laser Door', 'scifiport*0', 's', '1', '1', '0.001', '0', '0', '0', '1549', '1', '1', '1', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('339', 'Violet Sci-Fi Port', 'scifiport*9', 's', '1', '1', '0.001', '0', '0', '0', '1550', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('340', 'Purple Sci-Fi Port', 'scifiport*8', 's', '1', '1', '0.001', '0', '0', '0', '1551', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('341', 'Aqua Laser Gate', 'scifiport*7', 's', '1', '1', '0.001', '0', '0', '0', '1552', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('342', 'White Sci-Fi Port', 'scifiport*6', 's', '1', '1', '0.001', '0', '0', '0', '1553', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('343', 'Security Fence', 'scifiport*5', 's', '1', '1', '0.001', '0', '0', '0', '1554', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('344', 'Pink Sci-Fi Port', 'scifiport*4', 's', '1', '1', '0.001', '0', '0', '0', '1555', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('345', 'Jade Sci-Fi Port', 'scifiport*3', 's', '1', '1', '0.001', '0', '0', '0', '1556', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('346', 'Blue Laser Gate', 'scifiport*2', 's', '1', '1', '0.001', '0', '0', '0', '1557', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('347', 'Gold Laser Gate', 'scifiport*1', 's', '1', '1', '0.001', '0', '0', '0', '1558', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('348', 'Neptune Smoke Machine', 'scifirocket*9', 's', '1', '1', '1', '0', '0', '0', '1559', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('349', 'From a space far', 'scifirocket*8', 's', '1', '1', '1', '0', '0', '0', '1560', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('350', 'Jupiter Smoke Machine', 'scifirocket*7', 's', '1', '1', '1', '0', '0', '0', '1561', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('351', 'Mercury Smoke Machine', 'scifirocket*6', 's', '1', '1', '1', '0', '0', '0', '1562', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('352', 'Uranus Smoke Machine', 'scifirocket*5', 's', '1', '1', '1', '0', '0', '0', '1563', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('353', 'Venus Smoke Machine', 'scifirocket*4', 's', '1', '1', '1', '0', '0', '0', '1564', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('354', 'Endor Smoke Machine', 'scifirocket*3', 's', '1', '1', '1', '0', '0', '0', '1565', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('355', 'Earth Smoke Machine', 'scifirocket*2', 's', '1', '1', '1', '0', '0', '0', '1566', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('356', 'Saturn Smoke Machine', 'scifirocket*1', 's', '1', '1', '1', '0', '0', '0', '1567', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('357', 'Mars Smoke Machine', 'scifirocket*0', 's', '1', '1', '1', '0', '0', '0', '1568', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('358', 'Violet Starship Door', 'scifidoor*10', 's', '1', '1', '0.001', '0', '0', '0', '1569', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('359', 'It\'s blue', 'scifidoor*9', 's', '1', '1', '0.001', '0', '0', '0', '1570', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('360', 'Purple Spaceship Door', 'scifidoor*8', 's', '1', '1', '0.001', '0', '0', '0', '1571', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('361', 'Aqua Spaceship Door', 'scifidoor*7', 's', '1', '1', '0.001', '0', '0', '0', '1572', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('362', 'Black Monolith', 'scifidoor*6', 's', '1', '1', '0.001', '0', '0', '0', '1573', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('363', 'White Spaceship Door', 'scifidoor*5', 's', '1', '1', '0.001', '0', '0', '0', '1574', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('364', 'Emerald Spaceship Door', 'scifidoor*4', 's', '1', '1', '0.001', '0', '0', '0', '1575', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('365', 'Lightblue Spaceship Door', 'scifidoor*3', 's', '1', '1', '0.001', '0', '0', '0', '1576', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('366', 'Yellow Spaceship Door', 'scifidoor*2', 's', '1', '1', '0.001', '0', '0', '0', '1577', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('367', 'Pink Spaceship Door', 'scifidoor*1', 's', '1', '1', '0.001', '0', '0', '0', '1578', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('368', 'Puffy', 'pillow*5', 's', '1', '1', '1', '0', '1', '0', '1579', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('369', 'Puffy', 'pillow*8', 's', '1', '1', '1', '0', '1', '0', '1580', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('370', 'White Lace Pillow', 'pillow*0', 's', '1', '1', '1', '0', '1', '0', '1581', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('371', 'Puffy', 'pillow*1', 's', '1', '1', '1', '0', '1', '0', '1582', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('372', 'Puffy', 'pillow*2', 's', '1', '1', '1', '0', '1', '0', '1583', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('373', 'Purple Velvet Pillow', 'pillow*7', 's', '1', '1', '1', '0', '1', '0', '1584', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('374', 'Puffy', 'pillow*9', 's', '1', '1', '1', '0', '1', '0', '1585', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('375', 'Puffy', 'pillow*4', 's', '1', '1', '1', '0', '1', '0', '1586', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('376', 'Puffy', 'pillow*6', 's', '1', '1', '1', '0', '1', '0', '1587', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('377', 'Puffy', 'pillow*3', 's', '1', '1', '1', '0', '1', '0', '1588', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('378', 'Pink marquee', 'marquee*1', 's', '1', '1', '0.001', '0', '0', '0', '1589', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('379', 'Red Dragon Marquee', 'marquee*2', 's', '1', '1', '0.001', '0', '0', '0', '1590', '1', '1', '1', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('380', 'Purple Marquee', 'marquee*7', 's', '1', '1', '0.001', '0', '0', '0', '1591', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('381', 'White Marquee', 'marquee*10', 's', '1', '1', '0.001', '0', '0', '0', '1592', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('382', 'Ultramarine Marquee', 'marquee*8', 's', '1', '1', '0.001', '0', '0', '0', '1593', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('383', 'Green Marquee', 'marquee*9', 's', '1', '1', '0.001', '0', '0', '0', '1594', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('384', 'Graphite Marquee', 'marquee*5', 's', '1', '1', '0.001', '0', '0', '0', '1595', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('385', 'Yellow Marquee', 'marquee*4', 's', '1', '1', '0.001', '0', '0', '0', '1596', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('386', 'Blue Marquee', 'marquee*6', 's', '1', '1', '0.001', '0', '0', '0', '1597', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('387', 'Aqua Marquee', 'marquee*3', 's', '1', '1', '0.001', '0', '0', '0', '1598', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('388', 'Pink Oriental screen', 'wooden_screen*1', 's', '1', '2', '1', '0', '0', '0', '1599', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('389', 'RosewoodScreen', 'wooden_screen*2', 's', '1', '2', '1', '0', '0', '0', '1600', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('390', 'Purple Oriental Screen', 'wooden_screen*7', 's', '1', '2', '1', '0', '0', '0', '1601', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('391', 'White Oriental Screen', 'wooden_screen*0', 's', '1', '2', '1', '0', '0', '0', '1602', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('392', 'Night Blue Oriental Screen', 'wooden_screen*8', 's', '1', '2', '1', '0', '0', '0', '1603', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('393', 'Gray Oriental Screen', 'wooden_screen*5', 's', '1', '2', '1', '0', '0', '0', '1604', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('394', 'Green Oriental Screen', 'wooden_screen*9', 's', '1', '2', '1', '0', '0', '0', '1605', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('395', 'Golden Oriental Screen', 'wooden_screen*4', 's', '1', '2', '1', '0', '0', '0', '1606', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('396', 'Blue Oriental Screen', 'wooden_screen*6', 's', '1', '2', '1', '0', '0', '0', '1607', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('397', 'Terracotta Pillar', 'wooden_screen*3', 's', '1', '2', '1', '0', '0', '0', '1608', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('398', 'Pink Marble Pillar', 'pillar*1', 's', '1', '1', '1', '0', '0', '0', '1610', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('399', 'Rock Pillar', 'pillar*9', 's', '1', '1', '1', '0', '0', '0', '1611', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('400', 'Classy architect', 'pillar*0', 's', '1', '1', '1', '0', '0', '0', '1612', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('401', 'Roman Pillar', 'pillar*8', 's', '1', '1', '1', '0', '0', '0', '1613', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('402', 'Nordic Pillar', 'pillar*2', 's', '1', '1', '1', '0', '0', '0', '1614', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('403', 'Pagan Pillar', 'pillar*5', 's', '1', '1', '1', '0', '0', '0', '1615', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('404', 'Dark Ages Pillar', 'pillar*4', 's', '1', '1', '1', '0', '0', '0', '1616', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('405', 'Atlantean Pillar', 'pillar*7', 's', '1', '1', '1', '0', '0', '0', '1617', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('406', 'blue pillar', 'pillar*3', 's', '1', '1', '1', '0', '0', '0', '1618', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('407', 'Serpent of Doom', 'rare_dragonlamp*4', 's', '1', '1', '1', '0', '0', '0', '1619', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('408', 'Fire Dragon Lamp', 'rare_dragonlamp*0', 's', '1', '1', '1', '0', '0', '0', '1620', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('409', 'Elf Green Dragon Lamp', 'rare_dragonlamp*5', 's', '1', '1', '1', '0', '0', '0', '1621', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('410', 'Jade Dragon Lamp', 'rare_dragonlamp*2', 's', '1', '1', '1', '0', '0', '0', '1622', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('411', 'Bronze Dragon Lamp', 'rare_dragonlamp*8', 's', '1', '1', '1', '0', '0', '0', '1623', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('412', 'Purple Dragon Lamp', 'rare_dragonlamp*9', 's', '1', '1', '1', '0', '0', '0', '1624', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('413', 'Sky Dragon Lamp', 'rare_dragonlamp*7', 's', '1', '1', '1', '0', '0', '0', '1625', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('414', 'Gold Dragon Lamp', 'rare_dragonlamp*6', 's', '1', '1', '1', '0', '0', '0', '1626', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('415', 'Sea Dragon Lamp', 'rare_dragonlamp*1', 's', '1', '1', '1', '0', '0', '0', '1627', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('416', 'Silver Dragon Lamp', 'rare_dragonlamp*3', 's', '1', '1', '1', '0', '0', '0', '1628', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('417', 'Blueberry Ice Cream Machine', 'rare_icecream*1', 's', '1', '1', '1', '0', '0', '0', '1629', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('418', 'Chocolate Ice Cream Machine', 'rare_icecream*7', 's', '1', '1', '1', '0', '0', '0', '1630', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('419', 'Peppermint Ice Cream Machine', 'rare_icecream*8', 's', '1', '1', '1', '0', '0', '0', '1631', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('420', 'Pistachio Ice Cream Machine', 'rare_icecream*2', 's', '1', '1', '1', '0', '0', '0', '1632', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('421', 'Toffee Ice Cream Machine', 'rare_icecream*6', 's', '1', '1', '1', '0', '0', '0', '1633', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('422', 'Bubblegum Ice Cream Machine', 'rare_icecream*9', 's', '1', '1', '1', '0', '0', '0', '1634', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('423', 'Blackcurrant Ice Cream Machine', 'rare_icecream*3', 's', '1', '1', '1', '0', '0', '0', '1635', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('424', 'Cherry Ice Cream Machine', 'rare_icecream*0', 's', '1', '1', '1', '0', '0', '0', '1636', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('425', 'Strawberry Ice Cream Machine', 'rare_icecream*4', 's', '1', '1', '1', '0', '0', '0', '1637', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('426', 'Vanilla Ice Cream Machine', 'rare_icecream*5', 's', '1', '1', '1', '0', '0', '0', '1638', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('427', 'Brown Powered Fan', 'rare_fan*7', 's', '1', '1', '1', '0', '0', '0', '1639', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('428', 'Ochre Powered Fan', 'rare_fan*6', 's', '1', '1', '1', '0', '0', '0', '1640', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('429', 'Fucsia Powered Fan', 'rare_fan*9', 's', '1', '1', '1', '0', '0', '0', '1641', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('430', 'Purple Dragon Skin Fan', 'rare_fan*3', 's', '1', '1', '1', '0', '0', '0', '1642', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('431', 'Festive Fan', 'rare_fan*0', 's', '1', '1', '1', '0', '0', '0', '1643', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('432', 'SUPERLOVE Fan', 'rare_fan*4', 's', '1', '1', '1', '0', '0', '0', '1644', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('433', 'Yellow Powered Fan', 'rare_fan*5', 's', '1', '1', '1', '0', '0', '0', '1645', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('434', 'Birthday Fan', 'rare_fan*1', 's', '1', '1', '1', '0', '0', '0', '1646', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('435', 'Stylish', 'rare_fan*8', 's', '1', '1', '1', '0', '0', '0', '1647', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('436', 'Green Powered Fan', 'rare_fan*2', 's', '1', '1', '1', '0', '0', '0', '1648', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('437', 'Ice Habbo Roller', 'queue_tile1*3', 's', '1', '1', '0.5', '1', '0', '1', '1649', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('438', 'Blue Habbo Roller', 'queue_tile1*6', 's', '1', '1', '0.5', '1', '0', '1', '1650', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('439', 'Gold Habbo Roller', 'queue_tile1*4', 's', '1', '1', '0.5', '1', '0', '1', '1651', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('440', 'Green Habbo Roller', 'queue_tile1*9', 's', '1', '1', '0.5', '1', '0', '1', '1652', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('441', 'Navy Habbo Roller', 'queue_tile1*8', 's', '1', '1', '0.5', '1', '0', '1', '1653', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('442', 'Knight Roller', 'queue_tile1*5', 's', '1', '1', '0.5', '1', '0', '1', '1654', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('443', 'Purple Habbo Roller', 'queue_tile1*7', 's', '1', '1', '0.5', '1', '0', '1', '1655', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('444', 'Red Habbo Roller', 'queue_tile1*2', 's', '1', '1', '0.5', '1', '0', '1', '1656', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('445', 'Pink Habbo Roller', 'queue_tile1*1', 's', '1', '1', '0.5', '1', '0', '1', '1657', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('446', 'White Quest Roller', 'queue_tile1*0', 's', '1', '1', '0.5', '1', '0', '1', '1658', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20071', 'ads_gsArcade_2 name', 'ads_gsArcade_2', 's', '1', '1', '1', '1', '0', '0', '3278', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('448', 'Snow Rug', 'rare_snowrug', 's', '2', '2', '0', '1', '0', '1', '1738', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('449', 'Lantern', 'cn_lamp', 's', '1', '1', '1', '0', '0', '0', '1741', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('450', 'Chinese Sofa', 'cn_sofa', 's', '3', '1', '1', '0', '1', '0', '1742', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('451', 'Sport track straight', 'sporttrack1*1', 's', '2', '2', '0', '1', '0', '1', '1745', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('452', 'Sport track straight grass', 'sporttrack1*3', 's', '2', '2', '0', '1', '0', '1', '1747', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('453', 'Sport track straight asphalt', 'sporttrack1*2', 's', '2', '2', '0', '1', '0', '1', '1748', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('454', 'Sport corner tartan', 'sporttrack2*1', 's', '2', '2', '0', '1', '0', '1', '1750', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('455', 'Sport corner asphalt', 'sporttrack2*2', 's', '2', '2', '0', '1', '0', '1', '1751', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('456', 'Sport corner grass', 'sporttrack2*3', 's', '2', '2', '0', '1', '0', '1', '1752', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('457', 'Sport goal tartan', 'sporttrack3*1', 's', '2', '2', '0', '1', '0', '1', '1754', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('458', 'Sport goal asphalt', 'sporttrack3*2', 's', '2', '2', '0', '1', '0', '1', '1755', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('459', 'Sport goal grass', 'sporttrack3*3', 's', '2', '2', '0', '1', '0', '1', '1756', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('460', 'Football Lamp', 'footylamp', 's', '1', '1', '1', '0', '0', '0', '1757', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('461', 'Bar Stool', 'barchair_silo', 's', '1', '1', '1.2', '0', '1', '0', '1759', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('462', 'Habbos', 'divider_nor4*4', 's', '2', '1', '1', '0', '0', '0', '1760', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('463', 'Classic Traffic Light', 'traffic_light*1', 's', '1', '1', '1', '0', '0', '0', '1761', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('464', 'Blue Traffic Light', 'traffic_light*2', 's', '1', '1', '1', '0', '0', '0', '1762', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('465', 'Purple Traffic Light', 'traffic_light*3', 's', '1', '1', '1', '0', '0', '0', '1763', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('466', 'Yellow Traffic Light', 'traffic_light*4', 's', '1', '1', '1', '0', '0', '0', '1764', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('467', 'Red Traffic Light', 'traffic_light*6', 's', '1', '1', '1', '0', '0', '0', '1765', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('468', 'Blue Inflatable Chair', 'rubberchair*1', 's', '1', '1', '1', '0', '1', '0', '1766', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('469', 'Pink Inflatable Chair', 'rubberchair*2', 's', '1', '1', '1', '0', '1', '0', '1767', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('470', 'Orange Inflatable Chair', 'rubberchair*3', 's', '1', '1', '1', '0', '1', '0', '1768', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('471', 'Ocean Inflatable Chair', 'rubberchair*4', 's', '1', '1', '1', '0', '1', '0', '1769', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('472', 'Lime Inflatable Chair', 'rubberchair*5', 's', '1', '1', '1', '0', '1', '0', '1770', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('473', 'Violet Inflatable Chair', 'rubberchair*6', 's', '1', '1', '1', '0', '1', '0', '1771', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('474', 'Yellow Maze Barrier', 'barrier*1', 's', '1', '2', '1', '0', '0', '0', '1772', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('475', 'No trespassing', 'barrier*2', 's', '1', '2', '1', '0', '0', '0', '1773', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('476', 'No trespassing', 'barrier*3', 's', '1', '2', '1', '0', '0', '0', '1774', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('477', 'White Inflatable Chair', 'rubberchair*7', 's', '1', '1', '1', '0', '1', '0', '1775', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('478', 'Black Inflatable Chair', 'rubberchair*8', 's', '1', '1', '1', '0', '1', '0', '1776', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('479', 'Black Iced Table', 'table_norja_med*2', 's', '2', '2', '1', '1', '0', '0', '1777', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('480', 'White Iced Table', 'table_norja_med*3', 's', '2', '2', '1', '1', '0', '0', '1778', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('481', 'Urban Iced Coffee Table', 'table_norja_med*4', 's', '2', '2', '1', '1', '0', '0', '1779', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('482', 'Large Coffee Table Pink', 'table_norja_med*5', 's', '2', '2', '1', '1', '0', '0', '1780', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('483', 'Large Coffee Table Blue', 'table_norja_med*6', 's', '2', '2', '1', '1', '0', '0', '1781', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('484', 'Rural Iced Coffee Table', 'table_norja_med*7', 's', '2', '2', '1', '1', '0', '0', '1782', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('485', 'Large Coffee Table Yellow', 'table_norja_med*8', 's', '2', '2', '1', '1', '0', '0', '1783', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('486', 'Large Coffee Table Red', 'table_norja_med*9', 's', '2', '2', '1', '1', '0', '0', '1784', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('487', 'Black Iced Bench', 'couch_norja*2', 's', '2', '1', '1', '0', '1', '0', '1785', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('488', 'White Iced Bench', 'couch_norja*3', 's', '2', '1', '1', '0', '1', '0', '1786', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('489', 'Urban Iced Bench', 'couch_norja*4', 's', '2', '1', '1', '0', '1', '0', '1787', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('490', 'Pink Bench', 'couch_norja*5', 's', '2', '1', '1', '0', '1', '0', '1788', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('491', 'Blue Bench', 'couch_norja*6', 's', '2', '1', '1', '0', '1', '0', '1789', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('492', 'Rural Iced Bench', 'couch_norja*7', 's', '2', '1', '1', '0', '1', '0', '1790', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('493', 'Yellow Bench', 'couch_norja*8', 's', '2', '1', '1', '0', '1', '0', '1791', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('494', 'Red Bench', 'couch_norja*9', 's', '2', '1', '1', '0', '1', '0', '1792', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('495', 'Black Iced Bookcase', 'shelves_norja*2', 's', '1', '1', '1', '0', '0', '0', '1793', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('496', 'Urban Iced Bookcase', 'shelves_norja*3', 's', '1', '1', '1', '0', '0', '0', '1794', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('497', 'Pink Bookcase', 'shelves_norja*5', 's', '1', '1', '1', '0', '0', '0', '1796', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('498', 'Blue Bookcase', 'shelves_norja*6', 's', '1', '1', '1', '0', '0', '0', '1797', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('499', 'Rural Iced Bookcase', 'shelves_norja*7', 's', '1', '1', '1', '0', '0', '0', '1798', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('500', 'Yellow Bookcase', 'shelves_norja*8', 's', '1', '1', '1', '0', '0', '0', '1799', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('501', 'Red Bookcase', 'shelves_norja*9', 's', '1', '1', '1', '0', '0', '0', '1800', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('502', 'Black Iced Chair', 'chair_norja*2', 's', '1', '1', '1', '0', '1', '0', '1801', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('503', 'White Iced Chair', 'chair_norja*3', 's', '1', '1', '1', '0', '1', '0', '1802', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('504', 'Urban Iced Chair', 'chair_norja*4', 's', '1', '1', '1', '0', '1', '0', '1803', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('505', 'Pink Chair', 'chair_norja*5', 's', '1', '1', '1', '0', '1', '0', '1804', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('506', 'Blue Chair', 'chair_norja*6', 's', '1', '1', '1', '0', '1', '0', '1805', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('507', 'Rural Chair', 'chair_norja*7', 's', '1', '1', '1', '0', '1', '0', '1806', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('508', 'Yellow Chair', 'chair_norja*8', 's', '1', '1', '1', '0', '1', '0', '1807', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('509', 'Red Chair', 'chair_norja*9', 's', '1', '1', '1', '0', '1', '0', '1808', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('510', 'Black Iced Corner', 'divider_nor1*2', 's', '1', '1', '1', '0', '0', '0', '1809', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('511', 'Looks squishy', 'divider_nor1*3', 's', '1', '1', '1', '0', '0', '0', '1810', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('512', 'Urban Iced Corner', 'divider_nor1*4', 's', '1', '1', '1', '0', '0', '0', '1811', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('513', 'Pink Ice corner', 'divider_nor1*5', 's', '1', '1', '1', '0', '0', '0', '1812', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('514', 'Blue Ice corner', 'divider_nor1*6', 's', '1', '1', '1', '0', '0', '0', '1813', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('515', 'Rural Iced Corner', 'divider_nor1*7', 's', '1', '1', '1', '0', '0', '0', '1814', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('516', 'Yellow Ice corner', 'divider_nor1*8', 's', '1', '1', '1', '0', '0', '0', '1815', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('517', 'Red Ice corner', 'divider_nor1*9', 's', '1', '1', '1', '0', '0', '0', '1816', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('518', 'Black Iced Sofa', 'soft_sofa_norja*2', 's', '2', '1', '1', '0', '1', '0', '1817', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('519', 'Pristine white', 'soft_sofa_norja*3', 's', '2', '1', '1', '0', '1', '0', '1818', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('520', 'Urban Iced Sofa', 'soft_sofa_norja*4', 's', '2', '1', '1', '0', '1', '0', '1819', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('521', 'Pink Iced Sofa', 'soft_sofa_norja*5', 's', '2', '1', '1', '0', '1', '0', '1820', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('522', 'Blue Iced Sofa', 'soft_sofa_norja*6', 's', '2', '1', '1', '0', '1', '0', '1821', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('523', 'Rural Iced Sofa', 'soft_sofa_norja*7', 's', '2', '1', '1', '0', '1', '0', '1822', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('524', 'Yellow Iced Sofa', 'soft_sofa_norja*8', 's', '2', '1', '1', '0', '1', '0', '1823', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('525', 'Red Iced Sofa', 'soft_sofa_norja*9', 's', '2', '1', '1', '0', '1', '0', '1824', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('526', 'Black Iced Sofachair', 'soft_sofachair_norja*2', 's', '1', '1', '1', '0', '1', '0', '1825', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('527', 'White Iced Sofachair', 'soft_sofachair_norja*3', 's', '1', '1', '1', '0', '1', '0', '1826', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('528', 'Urban Iced Sofachair', 'soft_sofachair_norja*4', 's', '1', '1', '1', '0', '1', '0', '1827', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('529', 'Pink Iced Sofachair', 'soft_sofachair_norja*5', 's', '1', '1', '1', '0', '1', '0', '1828', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('530', 'Blue Iced Sofachair', 'soft_sofachair_norja*6', 's', '1', '1', '1', '0', '1', '0', '1829', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('531', 'Rural Iced Sofachair', 'soft_sofachair_norja*7', 's', '1', '1', '1', '0', '1', '0', '1830', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('532', 'Yellow Iced Sofachair', 'soft_sofachair_norja*8', 's', '1', '1', '1', '0', '1', '0', '1831', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('533', 'Red Iced Sofachair', 'soft_sofachair_norja*9', 's', '1', '1', '1', '0', '1', '0', '1832', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('534', 'Large', 'sofachair_silo*2', 's', '1', '1', '1.1', '0', '1', '0', '1833', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('535', 'Large', 'sofachair_silo*3', 's', '1', '1', '1.1', '0', '1', '0', '1834', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('536', 'Beige Area Armchair', 'sofachair_silo*4', 's', '1', '1', '1.1', '0', '1', '0', '1835', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('537', 'Pink Area Armchair', 'sofachair_silo*5', 's', '1', '1', '1.1', '0', '1', '0', '1836', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('538', 'Blue Area Armchair', 'sofachair_silo*6', 's', '1', '1', '1.1', '0', '1', '0', '1837', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('539', 'Green Area Armchair', 'sofachair_silo*7', 's', '1', '1', '1.1', '0', '1', '0', '1838', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('540', 'Large', 'sofachair_silo*8', 's', '1', '1', '1.1', '0', '1', '0', '1839', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('541', 'Red Area Armchair', 'sofachair_silo*9', 's', '1', '1', '1.1', '0', '1', '0', '1840', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('542', 'Black Occasional Table', 'table_silo_small*2', 's', '1', '1', '1', '1', '0', '0', '1841', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('543', 'White Occasional Table', 'table_silo_small*3', 's', '1', '1', '1', '1', '0', '0', '1842', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('544', 'Beige Area Occasional Table', 'table_silo_small*4', 's', '1', '1', '1', '1', '0', '0', '1843', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('545', 'Pink Area Occasional Table', 'table_silo_small*5', 's', '1', '1', '1', '1', '0', '0', '1844', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('546', 'Blue Area Occasional Table', 'table_silo_small*6', 's', '1', '1', '1', '1', '0', '0', '1845', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('547', 'Green Area Occasional Table', 'table_silo_small*7', 's', '1', '1', '1', '1', '0', '0', '1846', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('548', 'Yellow Occasional Table', 'table_silo_small*8', 's', '1', '1', '1', '1', '0', '0', '1847', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('549', 'Red Area Occasional Table', 'table_silo_small*9', 's', '1', '1', '1', '1', '0', '0', '1848', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('550', 'Black Corner Shelf', 'divider_silo1*2', 's', '1', '1', '1', '0', '0', '0', '1849', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('551', 'White Corner Shelf', 'divider_silo1*3', 's', '1', '1', '1', '0', '0', '0', '1850', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('552', 'Beige Area Corner Shelf', 'divider_silo1*4', 's', '1', '1', '1', '0', '0', '0', '1851', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('553', 'Pink Area Corner Shelf', 'divider_silo1*5', 's', '1', '1', '1', '0', '0', '0', '1852', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('554', 'Blue Area Corner Shelf', 'divider_silo1*6', 's', '1', '1', '1', '0', '0', '0', '1853', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('555', 'Green Area Corner Shelf', 'divider_silo1*7', 's', '1', '1', '1', '0', '0', '0', '1854', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('556', 'Yellow Corner Shelf', 'divider_silo1*8', 's', '1', '1', '1', '0', '0', '0', '1855', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('557', 'Red Area Corner Shelf', 'divider_silo1*9', 's', '1', '1', '1', '0', '0', '0', '1856', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('558', 'Black Area Gate', 'divider_silo3*2', 's', '1', '1', '0.001', '0', '0', '0', '1857', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('559', 'White Area Gate', 'divider_silo3*3', 's', '1', '1', '0.001', '0', '0', '0', '1858', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('560', 'Beige Area Gate', 'divider_silo3*4', 's', '1', '1', '0.001', '0', '0', '0', '1859', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('561', 'Pink Area Gate', 'divider_silo3*5', 's', '1', '1', '0.001', '0', '0', '0', '1860', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('562', 'Blue Area Gate', 'divider_silo3*6', 's', '1', '1', '0.001', '0', '0', '0', '1861', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('563', 'Green Area Gate', 'divider_silo3*7', 's', '1', '1', '0.001', '0', '0', '0', '1862', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('564', 'Yellow Area Gate', 'divider_silo3*8', 's', '1', '1', '0.001', '0', '0', '0', '1863', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('565', 'Red Area Gate', 'divider_silo3*9', 's', '1', '1', '0.001', '0', '0', '0', '1864', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('566', 'Black Coffee Table', 'table_silo_med*2', 's', '2', '2', '1', '1', '0', '0', '1865', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('567', 'White Coffee Table', 'table_silo_med*3', 's', '2', '2', '1', '1', '0', '0', '1866', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('568', 'Beige Area Coffee Table', 'table_silo_med*4', 's', '2', '2', '1', '1', '0', '0', '1867', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('569', 'Pink Area Coffee Table', 'table_silo_med*5', 's', '2', '2', '1', '1', '0', '0', '1868', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('570', 'Blue Area Coffee Table', 'table_silo_med*6', 's', '2', '2', '1', '1', '0', '0', '1869', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('571', 'Green Area Coffee Table', 'table_silo_med*7', 's', '2', '2', '1', '1', '0', '0', '1870', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('572', 'Yellow Coffee Table', 'table_silo_med*8', 's', '2', '2', '1', '1', '0', '0', '1871', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('573', 'Red Area Coffee Table', 'table_silo_med*9', 's', '2', '2', '1', '1', '0', '0', '1872', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('574', 'Cushioned', 'sofa_silo*2', 's', '2', '1', '1.1', '0', '1', '0', '1873', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('575', 'Cushioned', 'sofa_silo*3', 's', '2', '1', '1.1', '0', '1', '0', '1874', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('576', 'Beige Area Sofa', 'sofa_silo*4', 's', '2', '1', '1.1', '0', '1', '0', '1875', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('577', 'Pink Area Sofa', 'sofa_silo*5', 's', '2', '1', '1.1', '0', '1', '0', '1876', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('578', 'Blue Area Sofa', 'sofa_silo*6', 's', '2', '1', '1.1', '0', '1', '0', '1877', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('579', 'Green Area Sofa', 'sofa_silo*7', 's', '2', '1', '1.1', '0', '1', '0', '1878', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('580', 'Cushioned', 'sofa_silo*8', 's', '2', '1', '1.1', '0', '1', '0', '1879', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('581', 'Red Area Sofa', 'sofa_silo*9', 's', '2', '1', '1.1', '0', '1', '0', '1880', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('582', 'Black Mode Armchair', 'sofachair_polyfon*2', 's', '1', '1', '1.1', '0', '1', '0', '1881', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('583', 'White Armchair', 'sofachair_polyfon*3', 's', '1', '1', '1.1', '0', '1', '0', '1882', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('584', 'Beige Mode Armchair', 'sofachair_polyfon*4', 's', '1', '1', '1.1', '0', '1', '0', '1883', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('585', 'Blue Mode Armchair', 'sofachair_polyfon*6', 's', '1', '1', '1.1', '0', '1', '0', '1884', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('586', 'Green Armchair', 'sofachair_polyfon*7', 's', '1', '1', '1.1', '0', '1', '0', '1885', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('587', 'Yellow Mode Armchair', 'sofachair_polyfon*8', 's', '1', '1', '1.1', '0', '1', '0', '1886', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('588', 'Red Armchair', 'sofachair_polyfon*9', 's', '1', '1', '1.1', '0', '1', '0', '1887', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('589', 'Black Mode Sofa', 'sofa_polyfon*2', 's', '2', '1', '1.1', '0', '1', '0', '1888', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('590', 'White Two-seater Sofa', 'sofa_polyfon*3', 's', '2', '1', '1.1', '0', '1', '0', '1889', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('591', 'Beige Mode Sofa', 'sofa_polyfon*4', 's', '2', '1', '1.1', '0', '1', '0', '1890', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('592', 'Blue Mode Sofa', 'sofa_polyfon*6', 's', '2', '1', '1.1', '0', '1', '0', '1891', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('593', 'Green Two-seater Sofa', 'sofa_polyfon*7', 's', '2', '1', '1.1', '0', '1', '0', '1892', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('594', 'Yellow Mode Sofa', 'sofa_polyfon*8', 's', '2', '1', '1.1', '0', '1', '0', '1893', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('595', 'Black Mode Double Bed', 'sofa_polyfon*9', 's', '2', '1', '1.1', '0', '1', '0', '1894', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('596', 'White Double Bed', 'bed_polyfon*3', 's', '2', '3', '1.8', '0', '0', '0', '1896', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('597', 'Beige Mode Double Bed', 'bed_polyfon*4', 's', '2', '3', '1.8', '0', '0', '0', '1897', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('598', 'Blue Mode Double Bed', 'bed_polyfon*6', 's', '2', '3', '1.8', '0', '0', '0', '1898', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('599', 'Green Double Bed', 'bed_polyfon*7', 's', '2', '3', '1.8', '0', '0', '0', '1899', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('600', 'Yellow Mode Double Bed', 'bed_polyfon*8', 's', '2', '3', '1.8', '0', '0', '0', '1900', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('601', 'Red Double Bed', 'bed_polyfon*9', 's', '2', '3', '1.8', '0', '0', '0', '1901', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('602', 'Black Mode Single Bed', 'bed_polyfon_one*2', 's', '1', '3', '1.8', '0', '0', '0', '1902', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('603', 'White Single Bed', 'bed_polyfon_one*3', 's', '1', '3', '1.8', '0', '0', '0', '1903', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('604', 'Beige Mode Single Bed', 'bed_polyfon_one*4', 's', '1', '3', '1.8', '0', '0', '0', '1904', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('605', 'Blue Mode Single Bed', 'bed_polyfon_one*6', 's', '1', '3', '1.8', '0', '0', '0', '1905', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('606', 'Green Single Bed', 'bed_polyfon_one*7', 's', '1', '3', '1.8', '0', '0', '0', '1906', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('607', 'Yellow Mode Single Bed', 'bed_polyfon_one*8', 's', '1', '3', '1.8', '0', '0', '0', '1907', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('608', 'Red Single Bed', 'bed_polyfon_one*9', 's', '1', '3', '1.8', '0', '0', '0', '1908', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('609', 'Black Mode Bardesk', 'bardesk_polyfon*2', 's', '2', '1', '1', '1', '0', '0', '1909', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('610', 'White Bardesk', 'bardesk_polyfon*3', 's', '2', '1', '1', '1', '0', '0', '1910', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('611', 'Beige Mode Bardesk', 'bardesk_polyfon*4', 's', '2', '1', '1', '1', '0', '0', '1911', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('612', 'Candy Bar', 'bardesk_polyfon*5', 's', '2', '1', '1', '1', '0', '0', '1912', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('613', 'Blue Mode Bardesk', 'bardesk_polyfon*6', 's', '2', '1', '1', '1', '0', '0', '1913', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('614', 'Green Bardesk', 'bardesk_polyfon*7', 's', '2', '1', '1', '1', '0', '0', '1914', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('615', 'Yellow Mode Bardesk', 'bardesk_polyfon*8', 's', '2', '1', '1', '1', '0', '0', '1915', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('616', 'Red Bardesk', 'bardesk_polyfon*9', 's', '2', '1', '1', '1', '0', '0', '1916', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('617', 'Black Mode Bardesk Corner', 'bardeskcorner_polyfon*2', 's', '1', '1', '1', '1', '0', '0', '1917', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('618', 'White Corner Desk', 'bardeskcorner_polyfon*3', 's', '1', '1', '1', '1', '0', '0', '1918', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('619', 'Beige Mode Bardesk Corner', 'bardeskcorner_polyfon*4', 's', '1', '1', '1', '1', '0', '0', '1919', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('620', 'Candy Corner', 'bardeskcorner_polyfon*5', 's', '1', '1', '1', '1', '0', '0', '1920', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('621', 'Blue Mode Bardesk Corner', 'bardeskcorner_polyfon*6', 's', '1', '1', '1', '1', '0', '0', '1921', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('622', 'Green Corner Desk', 'bardeskcorner_polyfon*7', 's', '1', '1', '1', '1', '0', '0', '1922', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('623', 'Yellow Mode Bardesk Corner', 'bardeskcorner_polyfon*8', 's', '1', '1', '1', '1', '0', '0', '1923', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('624', 'Red Corner Desk', 'bardeskcorner_polyfon*9', 's', '1', '1', '1', '1', '0', '0', '1924', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('625', 'Black Mode Bardesk Gate', 'divider_poly3*2', 's', '1', '1', '0.001', '0', '0', '0', '1925', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('626', 'White Hatch', 'divider_poly3*3', 's', '1', '1', '0.001', '0', '0', '0', '1926', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('627', 'Beige Mode Bardesk Gate', 'divider_poly3*4', 's', '1', '1', '0.001', '0', '0', '0', '1927', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('628', 'Candy Hatch (Lockable)', 'divider_poly3*5', 's', '1', '1', '0.001', '0', '0', '0', '1928', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('629', 'Blue Mode Bardesk Gate', 'divider_poly3*6', 's', '1', '1', '0.001', '0', '0', '0', '1929', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20073', 'ads_idol_l_carpet name', 'ads_idol_l_carpet', 's', '2', '7', '0', '1', '0', '0', '3276', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('631', 'Yellow Mode Bardesk Gate', 'divider_poly3*8', 's', '1', '1', '0.001', '0', '0', '0', '1931', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('632', 'Red Hatch', 'divider_poly3*9', 's', '1', '1', '0.001', '0', '0', '0', '1932', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('633', 'Black Dining Chair', 'chair_silo*2', 's', '1', '1', '1.1', '0', '1', '0', '1933', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('634', 'White Dining Chair', 'chair_silo*3', 's', '1', '1', '1.1', '0', '1', '0', '1934', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('635', 'Beige Silo Dining Chair', 'chair_silo*4', 's', '1', '1', '1.1', '0', '1', '0', '1935', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('636', 'Pink Silo Dining Chair', 'chair_silo*5', 's', '1', '1', '1.1', '0', '1', '0', '1936', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('637', 'Blue Area Dining Chair', 'chair_silo*6', 's', '1', '1', '1.1', '0', '1', '0', '1937', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('638', 'Green Area Dining Chair', 'chair_silo*7', 's', '1', '1', '1.1', '0', '1', '0', '1938', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('639', 'Yellow Dining Chair', 'chair_silo*8', 's', '1', '1', '1.1', '0', '1', '0', '1939', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('640', 'Red Area Dining Chair', 'chair_silo*9', 's', '1', '1', '1.1', '0', '1', '0', '1940', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('641', 'No way through', 'divider_nor3*2', 's', '1', '1', '1', '0', '0', '0', '1941', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('642', 'White Iced Gate', 'divider_nor3*3', 's', '1', '1', '0.001', '0', '0', '0', '1942', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('643', 'Urban Iced Gate', 'divider_nor3*4', 's', '1', '1', '0.001', '0', '0', '0', '1943', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('644', 'Pink Iced gate', 'divider_nor3*5', 's', '1', '1', '0.001', '0', '0', '0', '1944', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('645', 'Blue Iced gate', 'divider_nor3*6', 's', '1', '1', '0.001', '0', '0', '0', '1945', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('646', 'Rural Iced gate', 'divider_nor3*7', 's', '1', '1', '0.001', '0', '0', '0', '1946', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('647', 'Yellow Iced gate', 'divider_nor3*8', 's', '1', '1', '0.001', '0', '0', '0', '1947', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('648', 'Red Iced gate', 'divider_nor3*9', 's', '1', '1', '0.001', '0', '0', '0', '1948', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('649', 'Black Iced Bar-Desk', 'divider_nor2*2', 's', '2', '1', '1', '0', '0', '0', '1949', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('650', 'Strong', 'divider_nor2*3', 's', '2', '1', '1', '0', '0', '0', '1950', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('651', 'Urban Iced Bar', 'divider_nor2*4', 's', '2', '1', '1', '0', '0', '0', '1951', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('652', 'Pink Iced bar desk', 'divider_nor2*5', 's', '2', '1', '1', '0', '0', '0', '1952', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('653', 'Blue Iced  bar desk', 'divider_nor2*6', 's', '2', '1', '1', '0', '0', '0', '1953', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('654', 'Rural Iced Bar', 'divider_nor2*7', 's', '2', '1', '1', '0', '0', '0', '1954', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('655', 'Yellow Iced  bar desk', 'divider_nor2*8', 's', '2', '1', '1', '0', '0', '0', '1955', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('656', 'Red Iced  bar desk', 'divider_nor2*9', 's', '2', '1', '1', '0', '0', '0', '1956', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('657', 'Area Quest Desk', 'silo_studydesk', 's', '2', '1', '1', '1', '0', '0', '1957', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('658', 'White Solarium', 'solarium_norja', 's', '1', '1', '1', '0', '0', '0', '1958', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('659', 'Black Solarium', 'solarium_norja*1', 's', '1', '1', '1', '0', '0', '0', '1959', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('660', 'Beige Solarium', 'solarium_norja*2', 's', '1', '1', '1', '0', '0', '0', '1960', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('661', 'Urban Solarium', 'solarium_norja*3', 's', '1', '1', '1', '0', '0', '0', '1961', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('662', 'Pink Solarium', 'solarium_norja*5', 's', '1', '1', '1', '0', '0', '0', '1962', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('663', 'Blue Solarium', 'solarium_norja*6', 's', '1', '1', '1', '0', '0', '0', '1963', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('664', 'Rural Solarium', 'solarium_norja*7', 's', '1', '1', '1', '0', '0', '0', '1964', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('665', 'Yellow Solarium', 'solarium_norja*8', 's', '1', '1', '1', '0', '0', '0', '1965', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('666', 'Red Solarium', 'solarium_norja*9', 's', '1', '1', '1', '0', '0', '0', '1966', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('667', 'Tropical Beach Rug', 'sandrug', 's', '2', '2', '0', '1', '0', '1', '1967', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('668', 'Moon Patch', 'rare_moonrug', 's', '2', '2', '0', '1', '0', '1', '1968', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('669', 'Chinese Lacquer Chair', 'chair_china', 's', '1', '1', '1', '0', '1', '0', '1969', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('670', 'Chinese Lacquer Table', 'china_table', 's', '1', '1', '1', '1', '0', '0', '1970', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('671', 'Red Sleeping Bag', 'sleepingbag*1', 's', '1', '3', '0.8', '0', '0', '0', '1971', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('672', 'Lime Sleeping Bag', 'sleepingbag*2', 's', '1', '3', '0.8', '0', '0', '0', '1972', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('673', 'Ocean Sleeping Bag', 'sleepingbag*3', 's', '1', '3', '0.8', '0', '0', '0', '1973', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('674', 'Safety Sleeping Bag', 'sleepingbag*4', 's', '1', '3', '0.8', '0', '0', '0', '1974', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('675', 'Safe Minibar', 'safe_silo', 's', '1', '1', '1.3', '1', '0', '0', '1975', '1', '1', '0', '1', '1', 'vendingmachine', '0', '17', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('676', 'Orange Sleeping Bag', 'sleepingbag*7', 's', '1', '3', '0.8', '0', '0', '0', '1976', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('677', 'eXceptional Sleeping Bag', 'sleepingbag*9', 's', '1', '3', '0.8', '0', '0', '0', '1977', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('678', 'Graphite Sleeping Bag', 'sleepingbag*5', 's', '1', '3', '0.8', '0', '0', '0', '1978', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('679', 'Khaki Sleeping Bag', 'sleepingbag*10', 's', '1', '3', '0.8', '0', '0', '0', '1979', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('680', 'Purple Sleeping Bag', 'sleepingbag*6', 's', '1', '3', '0.8', '0', '0', '0', '1980', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('681', 'Golden Sleeping Bag', 'sleepingbag*8', 's', '1', '3', '0.8', '0', '0', '0', '1981', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('682', 'Chinese Bookshelf', 'china_shelve', 's', '2', '1', '1', '0', '0', '0', '1982', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('683', 'White Traffic Light', 'traffic_light*5', 's', '1', '1', '1', '0', '0', '0', '1983', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('684', 'Habbos', 'divider_nor4*2', 's', '2', '1', '1', '0', '0', '0', '1984', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('685', 'Habbos', 'divider_nor4*3', 's', '2', '1', '1', '0', '0', '0', '1985', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('686', 'Habbos', 'divider_nor4*5', 's', '2', '1', '1', '0', '0', '0', '1986', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('687', 'Habbos', 'divider_nor4*6', 's', '2', '1', '1', '0', '0', '0', '1987', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('688', 'Habbos', 'divider_nor4*7', 's', '2', '1', '1', '0', '0', '0', '1988', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('689', 'Habbos', 'divider_nor4*8', 's', '2', '1', '1', '0', '0', '0', '1989', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('690', 'Habbos', 'divider_nor4*9', 's', '2', '1', '1', '0', '0', '0', '1990', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('691', 'Black Iced Angle', 'divider_nor5*2', 's', '1', '1', '1', '0', '0', '0', '1991', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('692', 'White Iced Angle', 'divider_nor5*3', 's', '1', '1', '1', '0', '0', '0', '1992', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('693', 'Urban Iced Angle', 'divider_nor5*4', 's', '1', '1', '1', '0', '0', '0', '1993', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('694', 'Blue Iced Angle', 'divider_nor5*5', 's', '1', '1', '1', '0', '0', '0', '1994', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('695', 'Rural Iced Angle', 'divider_nor5*7', 's', '1', '1', '1', '0', '0', '0', '1996', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('696', 'Yellow Iced Angle', 'divider_nor5*8', 's', '1', '1', '1', '0', '0', '0', '1997', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('697', 'Red Iced Angle', 'divider_nor5*9', 's', '1', '1', '1', '0', '0', '0', '1998', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('698', 'Plain Iced Angle', 'divider_nor5', 's', '1', '1', '1', '0', '0', '0', '1999', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('699', 'Habbos', 'divider_nor4', 's', '2', '1', '1', '0', '0', '0', '2000', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('700', 'Dragon Screen', 'wall_china', 's', '1', '1', '1', '0', '0', '0', '2001', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('701', 'Firm', 'corner_china', 's', '1', '1', '1', '0', '0', '0', '2002', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('702', 'Black Bar Stool', 'barchair_silo*2', 's', '1', '1', '1.2', '0', '1', '0', '2003', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('703', 'White Bar Stool', 'barchair_silo*3', 's', '1', '1', '1.2', '0', '1', '0', '2004', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('704', 'Beige Bar Stool', 'barchair_silo*4', 's', '1', '1', '1.2', '0', '1', '0', '2005', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('705', 'Pink Bar Stool', 'barchair_silo*5', 's', '1', '1', '1.2', '0', '1', '0', '2006', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('706', 'Blue Bar Stool', 'barchair_silo*6', 's', '1', '1', '1.2', '0', '1', '0', '2007', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('707', 'Green Bar Stool', 'barchair_silo*7', 's', '1', '1', '1.2', '0', '1', '0', '2008', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('708', 'Yellow Bar Stool', 'barchair_silo*8', 's', '1', '1', '1.2', '0', '1', '0', '2009', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('709', 'Red Bar Stool', 'barchair_silo*9', 's', '1', '1', '1.2', '0', '1', '0', '2010', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('710', 'Black Safe Minibar', 'safe_silo*2', 's', '1', '1', '1.3', '1', '0', '0', '2011', '1', '1', '0', '1', '1', 'vendingmachine', '0', '17', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('711', 'White Safe Minibar', 'safe_silo*3', 's', '1', '1', '1.3', '1', '0', '0', '2012', '1', '1', '0', '1', '1', 'vendingmachine', '0', '17', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('712', 'Beige Safe Minibar', 'safe_silo*4', 's', '1', '1', '1.3', '1', '0', '0', '2013', '1', '1', '0', '1', '1', 'vendingmachine', '0', '17', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('713', 'Pink Safe Minibar', 'safe_silo*5', 's', '1', '1', '1.3', '1', '0', '0', '2014', '1', '1', '0', '1', '1', 'vendingmachine', '0', '17', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('714', 'Blue Safe Minibar', 'safe_silo*6', 's', '1', '1', '1.3', '1', '0', '0', '2015', '1', '1', '0', '1', '1', 'vendingmachine', '0', '17', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('715', 'Green Safe Minibar', 'safe_silo*7', 's', '1', '1', '1.3', '1', '0', '0', '2016', '1', '1', '0', '1', '1', 'vendingmachine', '0', '17', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('716', 'Yellow Safe Minibar', 'safe_silo*8', 's', '1', '1', '1.3', '1', '0', '0', '2017', '1', '1', '0', '1', '1', 'vendingmachine', '0', '17', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('717', 'Red Safe Minibar', 'safe_silo*9', 's', '1', '1', '1.3', '1', '0', '0', '2018', '1', '1', '0', '1', '1', 'vendingmachine', '0', '17', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('718', 'Glass shelf', 'glass_shelf', 's', '2', '1', '1', '0', '0', '0', '2019', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('719', 'Glass chair', 'glass_chair', 's', '1', '1', '1', '0', '1', '0', '2020', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('720', 'Glass stool', 'glass_stool', 's', '1', '1', '1', '0', '1', '0', '2021', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('721', 'Glass sofa', 'glass_sofa', 's', '2', '1', '1', '0', '1', '0', '2022', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('722', 'Glass table', 'glass_table', 's', '2', '2', '1', '1', '0', '0', '2023', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('723', 'Glass table', 'glass_table*2', 's', '2', '2', '1', '1', '0', '0', '2024', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('724', 'White Glass Table', 'glass_table*3', 's', '2', '2', '1', '1', '0', '0', '2025', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('725', 'Glass table', 'glass_table*4', 's', '2', '2', '1', '1', '0', '0', '2026', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('726', 'Candy Glass Table', 'glass_table*5', 's', '2', '2', '1', '1', '0', '0', '2027', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('727', 'Blue Glass Table', 'glass_table*6', 's', '2', '2', '1', '1', '0', '0', '2028', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('728', 'Green Glass Table', 'glass_table*7', 's', '2', '2', '1', '1', '0', '0', '2029', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('729', 'Yellow Glass Table', 'glass_table*8', 's', '2', '2', '1', '1', '0', '0', '2030', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('730', 'Glass table', 'glass_table*9', 's', '2', '2', '1', '1', '0', '0', '2031', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('731', 'Glass chair', 'glass_chair*2', 's', '1', '1', '1', '0', '1', '0', '2032', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('732', 'Glass chair', 'glass_chair*3', 's', '1', '1', '1', '0', '1', '0', '2033', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('733', 'Glass chair', 'glass_chair*4', 's', '1', '1', '1', '0', '1', '0', '2034', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('734', 'Candy Glass Chair', 'glass_chair*5', 's', '1', '1', '1', '0', '1', '0', '2035', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('735', 'Blue Glass Chair', 'glass_chair*6', 's', '1', '1', '1', '0', '1', '0', '2036', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('736', 'Green Glass Chair', 'glass_chair*7', 's', '1', '1', '1', '0', '1', '0', '2037', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('737', 'Yellow Glass Chair', 'glass_chair*8', 's', '1', '1', '1', '0', '1', '0', '2038', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('738', 'Glass chair', 'glass_chair*9', 's', '1', '1', '1', '0', '1', '0', '2039', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('739', 'Glass sofa', 'glass_sofa*2', 's', '2', '1', '1', '0', '1', '0', '2040', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('740', 'White Glass Sofa', 'glass_sofa*3', 's', '2', '1', '1', '0', '1', '0', '2041', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('741', 'Glass sofa', 'glass_sofa*4', 's', '2', '1', '1', '0', '1', '0', '2042', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('742', 'Candy Glass Sofa', 'glass_sofa*5', 's', '2', '1', '1', '0', '1', '0', '2043', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('743', 'Blue Glass Sofa', 'glass_sofa*6', 's', '2', '1', '1', '0', '1', '0', '2044', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('744', 'Green Glass Sofa', 'glass_sofa*7', 's', '2', '1', '1', '0', '1', '0', '2045', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('745', 'Yellow Glass Sofa', 'glass_sofa*8', 's', '2', '1', '1', '0', '1', '0', '2046', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('746', 'Glass sofa', 'glass_sofa*9', 's', '2', '1', '1', '0', '1', '0', '2047', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('747', 'Glass stool', 'glass_stool*2', 's', '1', '1', '1', '0', '1', '0', '2048', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('748', 'Glass stool', 'glass_stool*4', 's', '1', '1', '1', '0', '1', '0', '2050', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('749', 'Candy Glass Stool', 'glass_stool*5', 's', '1', '1', '1', '0', '1', '0', '2051', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('750', 'Blue Glass Stool', 'glass_stool*6', 's', '1', '1', '1', '0', '1', '0', '2052', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('751', 'Green Glass Stool', 'glass_stool*7', 's', '1', '1', '1', '0', '1', '0', '2053', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('752', 'Yellow Glass Stool', 'glass_stool*8', 's', '1', '1', '1', '0', '1', '0', '2054', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('753', 'White Glass Stool', 'glass_stool*3', 's', '1', '1', '1', '0', '1', '0', '2056', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('754', 'Glass stool', 'glass_stool*9', 's', '1', '1', '1', '0', '1', '0', '2057', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('755', 'Gold Coin', 'CF_10_coin_gold', 's', '1', '1', '0.2', '1', '0', '0', '2063', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('756', 'Bronze Coin', 'CF_1_coin_bronze', 's', '1', '1', '0.2', '1', '0', '0', '2064', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('757', 'Sack of Credits', 'CF_20_moneybag', 's', '1', '1', '1', '1', '0', '0', '2065', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('758', 'Gold Bar', 'CF_50_goldbar', 's', '1', '1', '0.2', '1', '0', '0', '2066', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('759', 'Silver Coin', 'CF_5_coin_silver', 's', '1', '1', '0.2', '1', '0', '0', '2067', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('760', 'Persian Carpet', 'hc_crpt', 's', '3', '5', '0', '1', '0', '0', '2068', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('761', 'Forget plasma', 'hc_tv', 's', '2', '1', '1.4', '0', '1', '0', '2069', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('762', 'Gothic Portcullis', 'gothgate', 's', '2', '1', '0.001', '0', '0', '0', '2070', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('763', 'Gothic Candelabra', 'gothiccandelabra', 's', '1', '1', '1', '0', '0', '0', '2071', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('764', 'Gothic Railing', 'gothrailing', 's', '2', '1', '1', '0', '0', '0', '2072', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('765', 'Gothic table', 'goth_table', 's', '1', '5', '1.7', '0', '0', '0', '2073', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('766', 'Medieval Bookcase', 'hc_bkshlf', 's', '1', '4', '1', '0', '0', '0', '2074', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('767', 'Electric Butler', 'hc_btlr', 's', '1', '1', '1', '0', '0', '0', '2075', '1', '1', '0', '1', '1', 'vendingmachine', '0', '24', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('768', 'Antique Drapery', 'hc_crtn', 's', '2', '1', '0.001', '0', '0', '0', '2076', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('769', 'The Grammophon', 'hc_djset', 's', '3', '1', '1', '0', '0', '0', '2077', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('770', 'Heavy Duty Fireplace', 'hc_frplc', 's', '1', '3', '1', '0', '0', '0', '2078', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('771', 'Victorian Street Light', 'hc_lmpst', 's', '1', '1', '1', '0', '0', '0', '2079', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('772', 'Weird Science Machine', 'hc_machine', 's', '1', '3', '1', '0', '0', '0', '2080', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('773', 'HC Rollers Set', 'hc_rllr', 's', '1', '1', '1', '0', '0', '1', '2081', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('774', 'X-Ray Divider', 'hc_rntgn', 's', '2', '1', '1', '0', '0', '0', '2082', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('775', 'Drinks Trolley', 'hc_trll', 's', '1', '2', '1', '0', '0', '0', '2083', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('776', 'Gothic Chair Pink', 'gothic_chair*1', 's', '1', '1', '1', '0', '1', '0', '2084', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('777', 'Gothic Sofa Pink', 'gothic_sofa*1', 's', '2', '1', '1', '0', '1', '0', '2085', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('778', 'Gothic Stool Pink', 'gothic_stool*1', 's', '1', '1', '1', '0', '1', '0', '2086', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('779', 'Golden Gothic Chair', 'gothic_chair*2', 's', '1', '1', '1', '0', '1', '0', '2087', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('780', 'Golden Gothic Sofa', 'gothic_sofa*2', 's', '2', '1', '1', '0', '1', '0', '2088', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('781', 'Golden Gothic Stool', 'gothic_stool*2', 's', '1', '1', '1', '0', '1', '0', '2089', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('782', 'Red Gothic Chair', 'gothic_chair*3', 's', '1', '1', '1', '0', '1', '0', '2090', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('783', 'Red Gothic Sofa', 'gothic_sofa*3', 's', '2', '1', '1', '0', '1', '0', '2091', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('784', 'Red Gothic Stool', 'gothic_stool*3', 's', '1', '1', '1', '0', '1', '0', '2092', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('785', 'Black Gothic Chair', 'gothic_chair*4', 's', '1', '1', '1', '0', '1', '0', '2093', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('786', 'Black Gothic Sofa', 'gothic_sofa*4', 's', '2', '1', '1', '0', '1', '0', '2094', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('787', 'Black Gothic Stool', 'gothic_stool*4', 's', '1', '1', '1', '0', '1', '0', '2095', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('788', 'Green Gothic Chair', 'gothic_chair*5', 's', '1', '1', '1', '0', '1', '0', '2096', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('789', 'Green Gothic Sofa', 'gothic_sofa*5', 's', '2', '1', '1', '0', '1', '0', '2097', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('790', 'Green Gothic Stool', 'gothic_stool*5', 's', '1', '1', '1', '0', '1', '0', '2098', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('791', 'Gothic Chair Blue', 'gothic_chair*6', 's', '1', '1', '1', '0', '1', '0', '2099', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('792', 'Gothic Sofa Blue', 'gothic_sofa*6', 's', '2', '1', '1', '0', '1', '0', '2100', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('793', 'Valentine\'s Cauldron', 'gothic_stool*6', 's', '1', '1', '1', '0', '1', '0', '2101', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('794', 'Sound Machine', 'sound_machine', 's', '1', '1', '1', '0', '0', '0', '2105', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('795', 'Turquoise Romantique Piano Chair', 'romantique_pianochair*3', 's', '1', '1', '1', '0', '1', '0', '2106', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('796', 'Onyx Piano Stool', 'romantique_pianochair*5', 's', '1', '1', '1', '0', '1', '0', '2107', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('797', 'Lime Romantique Piano Chair', 'romantique_pianochair*2', 's', '1', '1', '1', '0', '1', '0', '2108', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('798', 'Amber Piano Stool', 'romantique_pianochair*4', 's', '1', '1', '1', '0', '1', '0', '2109', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('799', 'Rose Quartz Piano Stool', 'romantique_pianochair*1', 's', '1', '1', '1', '0', '1', '0', '2110', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('800', 'Turquoise Romantique Divan', 'romantique_divan*3', 's', '2', '1', '1', '0', '1', '0', '2111', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('801', 'Onyx Chaise-Longue', 'romantique_divan*5', 's', '2', '1', '1', '0', '1', '0', '2112', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('802', 'Emerald Chaise-Longue', 'romantique_divan*2', 's', '2', '1', '1', '0', '1', '0', '2113', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('803', 'Amber Chaise-Longue', 'romantique_divan*4', 's', '2', '1', '1', '0', '1', '0', '2114', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('804', 'Rose Quartz Chaise-Longue', 'romantique_divan*1', 's', '2', '1', '1', '0', '1', '0', '2115', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('805', 'Turquoise Romantique Chair', 'romantique_chair*3', 's', '1', '1', '1', '0', '1', '0', '2116', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('806', 'Onyx Chair', 'romantique_chair*5', 's', '1', '1', '1', '0', '1', '0', '2117', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('807', 'Lime Romantique Chair', 'romantique_chair*2', 's', '1', '1', '1', '0', '1', '0', '2118', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('808', 'Amber Chair', 'romantique_chair*4', 's', '1', '1', '1', '0', '1', '0', '2119', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('809', 'Rose Quartz Chair', 'romantique_chair*1', 's', '1', '1', '1', '0', '1', '0', '2120', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('811', 'Yellow Valentine Rose', 'plant_valentinerose*3', 's', '1', '1', '1', '0', '0', '0', '2123', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('812', 'Purple Valentine\'s Rose', 'plant_valentinerose*5', 's', '1', '1', '1', '0', '0', '0', '2124', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('813', 'White Valentine\'s Rose', 'plant_valentinerose*2', 's', '1', '1', '1', '0', '0', '0', '2125', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('814', 'Pink Valentine\'s Rose', 'plant_valentinerose*4', 's', '1', '1', '1', '0', '0', '0', '2126', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('815', 'Red Valentine\'s Rose', 'plant_valentinerose*1', 's', '1', '1', '1', '0', '0', '0', '2127', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('816', 'Maze Shrubbery Gate', 'plant_mazegate', 's', '2', '1', '0.001', '0', '0', '0', '2128', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('817', 'Maze Shrubbery', 'plant_maze', 's', '2', '1', '1', '0', '0', '0', '2129', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('818', 'Bulrush', 'plant_bulrush', 's', '1', '1', '1', '0', '0', '0', '2130', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('819', 'T-Bones Mega Multipack', 'petfood4', 's', '1', '1', '1', '1', '0', '0', '2131', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('820', 'Red carpet', 'carpet_valentine', 's', '2', '7', '0', '1', '0', '1', '2132', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('821', 'Cobbled Path', 'gothic_carpet', 's', '2', '4', '0', '1', '0', '1', '2133', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('822', 'Dungeon Floor', 'gothic_carpet2', 's', '2', '4', '0', '1', '0', '1', '2134', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('823', '', 'gothic_chair', 's', '1', '1', '1', '0', '1', '0', '2135', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('824', '', 'gothic_sofa', 's', '2', '1', '1', '0', '1', '0', '2136', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('825', '', 'gothic_stool', 's', '1', '1', '1', '0', '1', '0', '2137', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('826', 'Pink Grand Piano', 'grand_piano*3', 's', '2', '2', '1', '0', '0', '0', '2138', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('827', 'Onyx Grand Piano', 'grand_piano*5', 's', '2', '2', '1', '0', '0', '0', '2139', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('828', 'Black Grand Piano', 'grand_piano*2', 's', '2', '2', '1', '0', '0', '0', '2140', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('829', 'Amber Grand Piano', 'grand_piano*4', 's', '2', '2', '1', '0', '0', '0', '2141', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('830', 'Turquoise Grand Piano', 'grand_piano*1', 's', '2', '2', '1', '0', '0', '0', '2142', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('831', 'Deluxe Theatre Chair', 'theatre_seat', 's', '1', '1', '1.2', '0', '1', '0', '2143', '1', '1', '0', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('832', 'Treats Tray', 'romantique_tray2', 's', '1', '1', '1', '0', '0', '0', '2144', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('833', 'Breakfast Tray', 'romantique_tray1', 's', '1', '1', '1', '0', '0', '0', '2145', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('834', 'Turquoise Tray Table', 'romantique_smalltabl*3', 's', '1', '1', '1', '1', '0', '0', '2146', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('835', 'Onyx Tray Table', 'romantique_smalltabl*5', 's', '1', '1', '1', '1', '0', '0', '2147', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('836', 'Lime Tray Table', 'romantique_smalltabl*2', 's', '1', '1', '1', '1', '0', '0', '2148', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('837', 'Amber Tray Table', 'romantique_smalltabl*4', 's', '1', '1', '1', '1', '0', '0', '2149', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('838', 'Rose Quartz Tray Table', 'romantique_smalltabl*1', 's', '1', '1', '1', '1', '0', '0', '2150', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('839', 'Dressing Table', 'romantique_mirrortabl', 's', '1', '1', '1', '1', '0', '0', '2151', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('840', 'Turquoise Screen', 'romantique_divider*3', 's', '2', '1', '1', '0', '0', '0', '2152', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('841', 'Green Screen', 'romantique_divider*2', 's', '2', '1', '1', '1', '0', '0', '2153', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('842', 'Amber Screen', 'romantique_divider*4', 's', '2', '1', '1', '1', '0', '0', '2154', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('843', 'Rose Quartz Screen', 'romantique_divider*1', 's', '2', '1', '1', '1', '0', '0', '2155', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('844', 'Large Tatami Mat', 'jp_tatami2', 's', '2', '4', '0', '1', '0', '1', '2156', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('845', 'Small Tatami Mat', 'jp_tatami', 's', '2', '2', '0', '1', '0', '1', '2157', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('846', 'Director\'s Chair', 'habbowood_chair', 's', '1', '1', '1.2', '0', '1', '0', '2158', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('847', 'Bamboo Forest', 'jp_bamboo', 's', '2', '2', '0', '1', '0', '1', '2159', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('848', 'Irori', 'jp_irori', 's', '2', '2', '1', '0', '0', '0', '2160', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('849', 'Pillow Chair', 'jp_pillow', 's', '1', '1', '0.8', '0', '1', '0', '2161', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('850', 'Habbo Sounds 1', 'sound_set_1', 's', '1', '1', '0.2', '1', '0', '0', '2162', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('851', 'Habbo Sounds 3', 'sound_set_2', 's', '1', '1', '0.2', '1', '0', '0', '2163', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('852', 'Electronic 1', 'sound_set_3', 's', '1', '1', '0.2', '1', '0', '0', '2164', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('853', 'Ambient 1', 'sound_set_4', 's', '1', '1', '0.2', '1', '0', '0', '2165', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('854', 'Ambient 4', 'sound_set_5', 's', '1', '1', '0.2', '1', '0', '0', '2166', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('855', 'Ambient 3', 'sound_set_6', 's', '1', '1', '0.2', '1', '0', '0', '2167', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('856', 'SFX 5', 'sound_set_7', 's', '1', '1', '0.2', '1', '0', '0', '2168', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('857', 'Ambient 2', 'sound_set_8', 's', '1', '1', '0.2', '1', '0', '0', '2169', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('858', 'Electronic 2', 'sound_set_9', 's', '1', '1', '0.2', '1', '0', '0', '2170', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('859', 'Traxmachine', 'sound_machine*1', 's', '1', '1', '1', '0', '0', '0', '2171', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('860', 'Habbowood Spotlight', 'spotlight', 's', '1', '1', '1', '0', '0', '0', '2519', '1', '1', '0', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('861', 'Ocean Traxmachine', 'sound_machine*2', 's', '1', '1', '1', '0', '0', '0', '2543', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('862', 'Green Traxmachine', 'sound_machine*3', 's', '1', '1', '1', '0', '0', '0', '2544', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('863', 'For Funky', 'sound_machine*4', 's', '1', '1', '1', '0', '0', '0', '2545', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('864', 'Brown Traxmachine', 'sound_machine*5', 's', '1', '1', '1', '0', '0', '0', '2546', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('865', 'Purple Traxmachine', 'sound_machine*6', 's', '1', '1', '1', '0', '0', '0', '2547', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('866', 'Red Traxmachine', 'sound_machine*7', 's', '1', '1', '1', '0', '0', '0', '2548', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('867', 'Crystal Lamp', 'rom_lamp', 's', '1', '1', '1', '0', '0', '0', '2551', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('868', 'Polar Sofa', 'rclr_sofa', 's', '2', '1', '1', '0', '1', '0', '2459', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('869', 'Water Garden', 'rclr_garden', 's', '1', '3', '1', '0', '0', '0', '2458', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('870', 'Palm Chair', 'rclr_chair', 's', '1', '1', '1', '0', '1', '0', '2562', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('871', 'Rock 2', 'sound_set_28', 's', '1', '1', '0.2', '1', '0', '0', '2496', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('872', 'Groove 2', 'sound_set_27', 's', '1', '1', '0.2', '1', '0', '0', '2549', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('873', 'Groove 1', 'sound_set_26', 's', '1', '1', '0.2', '1', '0', '0', '2508', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('874', 'Actually', 'sound_set_25', 's', '1', '1', '0.2', '1', '0', '0', '2470', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('875', 'It\'s all about the Pentiums', 'sound_set_24', 's', '1', '1', '0.2', '1', '0', '0', '2492', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('876', 'SFX 4', 'sound_set_23', 's', '1', '1', '0.2', '1', '0', '0', '2457', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('877', 'With a hamper full of sounds', 'sound_set_22', 's', '1', '1', '0.2', '1', '0', '0', '2521', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('878', 'Rock 1', 'sound_set_21', 's', '1', '1', '0.2', '1', '0', '0', '2494', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('879', 'SFX 2', 'sound_set_20', 's', '1', '1', '0.2', '1', '0', '0', '2524', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('880', 'Hip Hop Beats 4', 'sound_set_19', 's', '1', '1', '0.2', '1', '0', '0', '2469', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('881', 'Groove 4', 'sound_set_18', 's', '1', '1', '0.2', '1', '0', '0', '2497', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('882', 'Groove 3', 'sound_set_17', 's', '1', '1', '0.2', '1', '0', '0', '2550', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('883', 'Ferry', 'sound_set_16', 's', '1', '1', '0.2', '1', '0', '0', '2561', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('884', 'RnB Grooves 6', 'sound_set_15', 's', '1', '1', '0.2', '1', '0', '0', '2495', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('885', 'Hip Hop Beats 2', 'sound_set_14', 's', '1', '1', '0.2', '1', '0', '0', '2482', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('886', 'Dance 5', 'sound_set_13', 's', '1', '1', '0.2', '1', '0', '0', '2523', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('887', 'Habbo Sounds 2', 'sound_set_12', 's', '1', '1', '0.2', '1', '0', '0', '2493', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('888', 'Dance 4', 'sound_set_11', 's', '1', '1', '0.2', '1', '0', '0', '2563', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('889', 'Hip Hop Beats 1', 'sound_set_10', 's', '1', '1', '0.2', '1', '0', '0', '2481', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('890', 'Rope Divider', 'rope_divider', 's', '2', '1', '0.001', '0', '0', '0', '2518', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('891', 'romantique_clock', 'romantique_clock', 's', '1', '1', '1', '0', '0', '0', '2520', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('892', 'Aqua Pura Module 5', 'rare_icecream_campaign', 's', '1', '1', '1', '0', '0', '0', '2507', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('893', 'Pink Pura Module 5', 'pura_mdl5*2', 's', '1', '1', '1', '0', '1', '0', '2510', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('894', 'Black Pura Module 5', 'pura_mdl5*3', 's', '1', '1', '1', '0', '1', '0', '2511', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('895', 'White Pura Module 5', 'pura_mdl5*4', 's', '1', '1', '1', '0', '1', '0', '2512', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('896', 'beige pura module 5', 'pura_mdl5*5', 's', '1', '1', '1', '0', '1', '0', '2513', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('897', 'Blue Pura Module 5', 'pura_mdl5*6', 's', '1', '1', '1', '0', '1', '0', '2514', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('898', 'Green Pura Module 5', 'pura_mdl5*7', 's', '1', '1', '1', '0', '1', '0', '2515', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('899', 'Yellow Pura Module 5', 'pura_mdl5*8', 's', '1', '1', '1', '0', '1', '0', '2516', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('900', 'Red Pura Module 5', 'pura_mdl5*9', 's', '1', '1', '1', '0', '1', '0', '2517', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('901', 'Aqua Pura Module 4', 'pura_mdl4*1', 's', '1', '1', '1', '0', '1', '0', '2472', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('902', 'Pink Pura Module 4', 'pura_mdl4*2', 's', '1', '1', '1', '0', '1', '0', '2473', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('903', 'Black Pura Module 4', 'pura_mdl4*3', 's', '1', '1', '1', '0', '1', '0', '2474', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('904', 'White Pura Module 4', 'pura_mdl4*4', 's', '1', '1', '1', '0', '1', '0', '2475', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('905', 'beige pura module 4', 'pura_mdl4*5', 's', '1', '1', '1', '0', '1', '0', '2476', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('906', 'Blue Pura Module 4', 'pura_mdl4*6', 's', '1', '1', '1', '0', '1', '0', '2477', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('907', 'Green Pura Module 4', 'pura_mdl4*7', 's', '1', '1', '1', '0', '1', '0', '2478', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('908', 'yellow pura module 4', 'pura_mdl4*8', 's', '1', '1', '1', '0', '1', '0', '2479', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('909', 'Red Pura Module 4', 'pura_mdl4*9', 's', '1', '1', '1', '0', '1', '0', '2480', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('910', 'Aqua Pura Module 3', 'pura_mdl3*1', 's', '1', '1', '1', '0', '1', '0', '2534', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('911', 'Pink Pura Module 3', 'pura_mdl3*2', 's', '1', '1', '1', '0', '1', '0', '2535', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('912', 'Black Pura Module 3', 'pura_mdl3*3', 's', '1', '1', '1', '0', '1', '0', '2536', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('913', 'White Pura Module 3', 'pura_mdl3*4', 's', '1', '1', '1', '0', '1', '0', '2537', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('914', 'beige pura module 3', 'pura_mdl3*5', 's', '1', '1', '1', '0', '1', '0', '2538', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('915', 'Blue Pura Module 3', 'pura_mdl3*6', 's', '1', '1', '1', '0', '1', '0', '2539', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('916', 'Green Pura Module 3', 'pura_mdl3*7', 's', '1', '1', '1', '0', '1', '0', '2540', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('917', 'yellow pura module 3', 'pura_mdl3*8', 's', '1', '1', '1', '0', '1', '0', '2541', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('918', 'Red Pura Module 3', 'pura_mdl3*9', 's', '1', '1', '1', '0', '1', '0', '2542', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('919', 'Aqua Pura Module 2', 'pura_mdl2*1', 's', '1', '1', '1', '0', '1', '0', '2483', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('920', 'Pink Pura Module 2', 'pura_mdl2*2', 's', '1', '1', '1', '0', '1', '0', '2484', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('921', 'Black Pura Module 2', 'pura_mdl2*3', 's', '1', '1', '1', '0', '1', '0', '2485', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('922', 'White Pura Module 2', 'pura_mdl2*4', 's', '1', '1', '1', '0', '1', '0', '2486', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('923', 'beige pura module 2', 'pura_mdl2*5', 's', '1', '1', '1', '0', '1', '0', '2487', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('924', 'Blue Pura Module 2', 'pura_mdl2*6', 's', '1', '1', '1', '0', '1', '0', '2488', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('925', 'Green Pura Module 2', 'pura_mdl2*7', 's', '1', '1', '1', '0', '1', '0', '2489', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('926', 'yellow pura module 2', 'pura_mdl2*8', 's', '1', '1', '1', '0', '1', '0', '2490', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('927', 'Red Pura Module 2', 'pura_mdl2*9', 's', '1', '1', '1', '0', '1', '0', '2491', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('928', 'Aqua Pura Module 1', 'pura_mdl1*1', 's', '1', '1', '1', '0', '1', '0', '2460', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('929', 'Pink Pura Module 1', 'pura_mdl1*2', 's', '1', '1', '1', '0', '1', '0', '2461', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('930', 'Black Pura Module 1', 'pura_mdl1*3', 's', '1', '1', '1', '0', '1', '0', '2462', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('931', 'White Pura Module 1', 'pura_mdl1*4', 's', '1', '1', '1', '0', '1', '0', '2463', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('932', 'beige pura module 1', 'pura_mdl1*5', 's', '1', '1', '1', '0', '1', '0', '2464', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('933', 'Blue Pura Module 1', 'pura_mdl1*6', 's', '1', '1', '1', '0', '1', '0', '2465', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('934', 'Green Pura Module 1', 'pura_mdl1*7', 's', '1', '1', '1', '0', '1', '0', '2466', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('935', 'yellow pura module 1', 'pura_mdl1*8', 's', '1', '1', '1', '0', '1', '0', '2467', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('936', 'Red Pura Module 1', 'pura_mdl1*9', 's', '1', '1', '1', '0', '1', '0', '2468', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('937', 'Japanese Lantern', 'jp_lantern', 's', '1', '1', '1', '0', '0', '0', '2471', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('938', 'chair_basic', 'chair_basic*1', 's', '1', '1', '1.1', '0', '1', '0', '2525', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('939', 'Pink Pura Egg Chair', 'chair_basic*2', 's', '1', '1', '1.1', '0', '1', '0', '2526', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('940', 'Black Pura Egg Chair', 'chair_basic*3', 's', '1', '1', '1.1', '0', '1', '0', '2527', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('941', 'White Pura Egg Chair', 'chair_basic*4', 's', '1', '1', '1.1', '0', '1', '0', '2528', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('942', 'Beige Pura Egg Chair', 'chair_basic*5', 's', '1', '1', '1.1', '0', '1', '0', '2529', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('943', 'Blue Pura Egg Chair', 'chair_basic*6', 's', '1', '1', '1.1', '0', '1', '0', '2530', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('944', 'Green Pura Egg Chair', 'chair_basic*7', 's', '1', '1', '1.1', '0', '1', '0', '2531', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('945', 'chair_basic', 'chair_basic*8', 's', '1', '1', '1.1', '0', '1', '0', '2532', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('946', 'Red Pura Egg Chair', 'chair_basic*9', 's', '1', '1', '1.1', '0', '1', '0', '2533', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('947', '', 'bed_budget*1', 's', '2', '3', '1.9', '0', '0', '0', '2552', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('948', 'Pink Pura Double Bed', 'bed_budget*2', 's', '2', '3', '1.9', '0', '0', '0', '2553', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('949', 'Black Pura Double Bed', 'bed_budget*3', 's', '2', '3', '1.9', '0', '0', '0', '2554', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('950', 'White Pura Double Bed', 'bed_budget*4', 's', '2', '3', '1.9', '0', '0', '0', '2555', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('951', 'Beige Pura Double Bed', 'bed_budget*5', 's', '2', '3', '1.9', '0', '0', '0', '2556', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('952', 'Blue Pura Double Bed', 'bed_budget*6', 's', '2', '3', '1.9', '0', '0', '0', '2557', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('953', 'Green Pura Double Bed', 'bed_budget*7', 's', '2', '3', '1.9', '0', '0', '0', '2558', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('954', 'Yellow Pura Double Bed', 'bed_budget*8', 's', '2', '3', '1.9', '0', '0', '0', '2559', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('955', 'Red Pura Double Bed', 'bed_budget*9', 's', '2', '3', '1.9', '0', '0', '0', '2560', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('956', '', 'bed_budget_one*1', 's', '1', '3', '1.9', '0', '0', '0', '2498', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('957', 'Pink Pura Bed', 'bed_budget_one*2', 's', '1', '3', '1.9', '0', '0', '0', '2499', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('958', 'Black Pura Bed', 'bed_budget_one*3', 's', '1', '3', '1.9', '0', '0', '0', '2500', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('959', 'White Pura Bed', 'bed_budget_one*4', 's', '1', '3', '1.9', '0', '0', '0', '2501', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('960', 'Beige Pura Bed', 'bed_budget_one*5', 's', '1', '3', '1.9', '0', '0', '0', '2502', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('961', 'Blue Pura Bed', 'bed_budget_one*6', 's', '1', '3', '1.9', '0', '0', '0', '2503', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('962', 'Green Pura Bed', 'bed_budget_one*7', 's', '1', '3', '1.9', '0', '0', '0', '2504', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('963', 'Yellow Pura Bed', 'bed_budget_one*8', 's', '1', '3', '1.9', '0', '0', '0', '2505', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('964', 'Red Pura Bed', 'bed_budget_one*9', 's', '1', '3', '1.9', '0', '0', '0', '2506', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('965', 'Japanese Drawer', 'jp_drawer', 's', '1', '1', '1', '1', '0', '0', '2522', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('966', 'Star Tile', 'tile_stella', 's', '1', '1', '0.05', '1', '0', '1', '2568', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('967', 'Marble Tile', 'tile_marble', 's', '1', '1', '0.1', '1', '0', '1', '2566', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('968', 'Red Tile', 'tile_brown', 's', '1', '1', '0.05', '1', '0', '1', '2582', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('969', 'Blue Barbeque Grill', 'summer_grill*1', 's', '2', '1', '1', '0', '0', '0', '2587', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('970', 'Red Barbeque Grill', 'summer_grill*2', 's', '2', '1', '1', '0', '0', '0', '2588', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('971', 'Green Barbeque Grill', 'summer_grill*3', 's', '2', '1', '1', '0', '0', '0', '2589', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('972', 'Green Barbeque Grill', 'summer_grill*4', 's', '2', '1', '1', '0', '0', '0', '2590', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('973', 'Aqua Deck Chair', 'summer_chair*1', 's', '1', '1', '1', '0', '1', '0', '2571', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('974', 'Pink Deck Chair', 'summer_chair*2', 's', '1', '1', '1', '0', '1', '0', '2572', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('975', 'Black Deck Chair', 'summer_chair*3', 's', '1', '1', '1', '0', '1', '0', '2573', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('976', 'White Deck Chair', 'summer_chair*4', 's', '1', '1', '1', '0', '1', '0', '2574', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('977', 'Deck Chair', 'summer_chair*5', 's', '1', '1', '1', '0', '1', '0', '2575', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('978', 'Deck Chair', 'summer_chair*6', 's', '1', '1', '1', '0', '1', '0', '2576', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('979', 'Green Deck Chair', 'summer_chair*7', 's', '1', '1', '1', '0', '1', '0', '2577', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('980', 'Yellow Deck Chair', 'summer_chair*8', 's', '1', '1', '1', '0', '1', '0', '2578', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('981', 'Red Deck Chair', 'summer_chair*9', 's', '1', '1', '1', '0', '1', '0', '2579', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('982', 'Latin Love 1', 'sound_set_36', 's', '1', '1', '0.2', '1', '0', '0', '2583', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('983', 'Dance 6', 'sound_set_35', 's', '1', '1', '0.2', '1', '0', '0', '2595', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('984', 'Rock 5', 'sound_set_34', 's', '1', '1', '0.2', '1', '0', '0', '2570', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('985', 'Rock 3', 'sound_set_33', 's', '1', '1', '0.2', '1', '0', '0', '2564', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('986', 'Instrumental 2', 'sound_set_32', 's', '1', '1', '0.2', '1', '0', '0', '2569', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('987', 'Dance 3', 'sound_set_31', 's', '1', '1', '0.2', '1', '0', '0', '2596', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('988', 'Instrumental 1', 'sound_set_30', 's', '1', '1', '0.2', '1', '0', '0', '2585', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('989', 'Dance 2', 'sound_set_29', 's', '1', '1', '0.2', '1', '0', '0', '2580', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('990', 'Sound Machine Pro', 'sound_machine_pro', 's', '1', '1', '1', '0', '0', '0', '2606', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('991', 'Aqua One Way Gate', 'rare_mnstr', 's', '1', '1', '0.001', '0', '0', '0', '2584', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('992', 'Black HC Gate', 'one_way_door*2', 's', '1', '1', '0.001', '0', '0', '0', '2598', '1', '1', '0', '1', '1', 'onewaygate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('993', 'White HC Gate', 'one_way_door*3', 's', '1', '1', '0.001', '0', '0', '0', '2599', '1', '1', '0', '1', '1', 'onewaygate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('994', 'Beige One Way Gate', 'one_way_door*4', 's', '1', '1', '0.001', '0', '0', '0', '2600', '1', '1', '0', '1', '1', 'onewaygate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('995', 'Pink One Way Gate', 'one_way_door*5', 's', '1', '1', '0.001', '0', '0', '0', '2601', '1', '1', '0', '1', '1', 'onewaygate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('996', 'Blue HC Gate', 'one_way_door*6', 's', '1', '1', '0.001', '0', '0', '0', '2602', '1', '1', '0', '1', '1', 'onewaygate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('997', 'Green One Way Gate', 'one_way_door*7', 's', '1', '1', '0.001', '0', '0', '0', '2603', '1', '1', '0', '1', '1', 'onewaygate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('998', 'Yellow One Way Gate', 'one_way_door*8', 's', '1', '1', '0.001', '0', '0', '0', '2604', '1', '1', '0', '1', '1', 'onewaygate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('999', 'Red One Way Gate', 'one_way_door*9', 's', '1', '1', '0.001', '0', '0', '0', '2605', '1', '1', '0', '1', '1', 'onewaygate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1000', 'Executive Rug', 'exe_rug', 's', '3', '3', '0', '1', '0', '1', '2567', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1001', 'Executive Glass Table', 'exe_s_table', 's', '2', '2', '1', '1', '0', '0', '2581', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1002', 'Sound set 37', 'sound_set_37', 's', '1', '1', '0.2', '1', '0', '0', '2565', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1003', 'Blue Summer Pool', 'summer_pool*1', 's', '2', '2', '0', '0', '0', '1', '2591', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1004', 'Red Summer Pool', 'summer_pool*2', 's', '2', '2', '0', '0', '0', '1', '2592', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1005', 'Green Summer Pool', 'summer_pool*3', 's', '2', '2', '0', '0', '0', '1', '2593', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1006', 'Yellow Summer Pool', 'summer_pool*4', 's', '2', '2', '0', '0', '0', '1', '2594', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1007', 'Burn', 'song_disk', 's', '1', '1', '0.1', '1', '0', '0', '2607', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1008', 'Jukebox', 'jukebox*1', 's', '1', '1', '1', '1', '0', '0', '2608', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1009', 'Welcome', 'carpet_soft_tut', 's', '1', '1', '0', '1', '0', '1', '2609', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1010', 'Graveyard Portal', 'sound_set_44', 's', '1', '1', '0.2', '1', '0', '0', '2610', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1011', 'SFX 1', 'sound_set_43', 's', '1', '1', '0.2', '1', '0', '0', '2614', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1012', 'Haunted Mansion', 'sound_set_42', 's', '1', '1', '0.2', '1', '0', '0', '2624', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1013', 'Rock 8', 'sound_set_41', 's', '1', '1', '0.2', '1', '0', '0', '2612', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1014', 'Rock 4', 'sound_set_40', 's', '1', '1', '0.2', '1', '0', '0', '2615', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1015', 'Rock 7', 'sound_set_39', 's', '1', '1', '0.2', '1', '0', '0', '2622', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1016', 'Rock 6', 'sound_set_38', 's', '1', '1', '0.2', '1', '0', '0', '2616', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1017', 'Grunge Chair', 'grunge_chair', 's', '1', '1', '1', '0', '1', '0', '2617', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1018', 'Grunge Mattress', 'grunge_mattress', 's', '3', '1', '1', '0', '1', '0', '2618', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1019', 'Radiator', 'grunge_radiator', 's', '1', '1', '1', '0', '0', '0', '2621', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1020', 'Grunge Bookshelf', 'grunge_shelf', 's', '3', '1', '1', '0', '0', '0', '2619', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1021', 'Road Sign', 'grunge_sign', 's', '1', '1', '1', '0', '0', '0', '2613', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1022', 'Grunge Table', 'grunge_table', 's', '2', '2', '1', '1', '0', '0', '2623', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1023', 'Creepy Crypt', 'habboween_crypt', 's', '1', '3', '1.1', '0', '0', '0', '2611', '1', '1', '0', '1', '1', 'bed', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1024', 'Unholy Ground', 'habboween_grass', 's', '2', '2', '0', '0', '0', '1', '2626', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1025', 'Habboween Cauldron', 'hal_cauldron', 's', '1', '1', '1', '0', '0', '0', '2625', '1', '1', '0', '1', '1', 'vendingmachine', '0', '30', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1026', 'Haunted Grave', 'hal_grave', 's', '1', '1', '1', '0', '0', '0', '2620', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1027', 'Christmas Party', 'sound_set_52', 's', '1', '1', '0.2', '1', '0', '0', '2633', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1028', 'Club 6', 'sound_set_51', 's', '1', '1', '0.2', '1', '0', '0', '2631', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1029', 'Club 5', 'sound_set_50', 's', '1', '1', '0.2', '1', '0', '0', '2632', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1030', 'Club 4', 'sound_set_49', 's', '1', '1', '0.2', '1', '0', '0', '2634', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1031', 'Club 3', 'sound_set_48', 's', '1', '1', '0.2', '1', '0', '0', '2629', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1032', 'Club 2', 'sound_set_47', 's', '1', '1', '0.2', '1', '0', '0', '2627', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1033', 'Club 1', 'sound_set_46', 's', '1', '1', '0.2', '1', '0', '0', '2630', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1034', 'Lost_Beatness', 'sound_set_45', 's', '1', '1', '0.2', '1', '0', '0', '2628', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1035', 'Lantern Bundle 2', 'xmas_icelamp', 's', '1', '1', '1', '1', '0', '0', '2641', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1036', 'Ice Castle Wall', 'xmas_cstl_wall', 's', '2', '1', '1', '0', '0', '0', '2646', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1037', 'Ice Castle Tower', 'xmas_cstl_twr', 's', '1', '1', '1', '0', '0', '0', '2651', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1038', 'Ice Castle Gate', 'xmas_cstl_gate', 's', '2', '1', '0.001', '0', '0', '0', '2636', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1039', 'Snowy Christmas Tree', 'tree7', 's', '1', '1', '1', '0', '0', '0', '2653', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1040', 'Flashy Christmas Tree', 'tree6', 's', '1', '1', '1', '0', '0', '0', '2638', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1041', 'Oh Blinging Tree', 'sound_set_54', 's', '1', '1', '0.2', '1', '0', '0', '2649', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1042', 'Snowy Surprise', 'sound_set_53', 's', '1', '1', '0.2', '1', '0', '0', '2652', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1043', 'postbank Safe', 'safe_silo_pb', 's', '1', '1', '1.3', '1', '0', '0', '2642', '1', '1', '0', '1', '1', 'vendingmachine', '0', '17', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1044', 'Snowy Maze Gate', 'plant_mazegate_snow', 's', '2', '1', '0.001', '0', '0', '1', '2640', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1045', 'Snowy Maze Bundle 2', 'plant_maze_snow', 's', '2', '1', '1', '0', '0', '1', '2635', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1046', 'Winter Sleigh', 'christmas_sleigh', 's', '2', '2', '1', '0', '1', '0', '2648', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1047', 'Reindeer', 'christmas_reindeer', 's', '1', '2', '1', '0', '0', '0', '2637', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1048', 'Reindeer Droppings', 'christmas_poop', 's', '1', '1', '1', '0', '0', '0', '2654', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1049', 'Executive Bar Desk', 'exe_bardesk', 's', '1', '1', '1', '1', '0', '0', '2643', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1050', 'Executive Sofa Chair', 'exe_chair', 's', '1', '1', '1', '0', '1', '0', '2647', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1051', 'Executive Boss Chair', 'exe_chair2', 's', '1', '1', '1', '0', '1', '0', '2650', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1052', 'Executive Corner Desk', 'exe_corner', 's', '1', '1', '1', '1', '0', '0', '2655', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1053', 'Executive Drinks Tray', 'exe_drinks', 's', '1', '1', '1', '0', '0', '0', '2645', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1054', '3-Seater Sofa', 'exe_sofa', 's', '3', '1', '1', '0', '1', '0', '2639', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1055', 'Take a memo', 'exe_table', 's', '3', '2', '1.1', '0', '0', '0', '2644', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1056', 'RnB Grooves 5', 'sound_set_59', 's', '1', '1', '0.2', '1', '0', '0', '2670', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1057', 'RnB Grooves 4', 'sound_set_58', 's', '1', '1', '0.2', '1', '0', '0', '2656', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1058', 'RnB Grooves 3', 'sound_set_57', 's', '1', '1', '0.2', '1', '0', '0', '2673', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1059', 'RnB Grooves 2', 'sound_set_56', 's', '1', '1', '0.2', '1', '0', '0', '2669', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1060', 'RnB Grooves 1', 'sound_set_55', 's', '1', '1', '0.2', '1', '0', '0', '2671', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1061', 'Lightweight', 'noob_table*1', 's', '2', '2', '1', '1', '0', '0', '2687', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1062', 'Lightweight', 'noob_table*2', 's', '2', '2', '1', '1', '0', '0', '2688', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1063', 'Lightweight', 'noob_table*3', 's', '2', '2', '1', '1', '0', '0', '2689', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1064', 'Lightweight', 'noob_table*4', 's', '2', '2', '1', '1', '0', '0', '2690', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1065', 'Lightweight', 'noob_table*5', 's', '2', '2', '1', '1', '0', '0', '2691', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1066', 'Lightweight', 'noob_table*6', 's', '2', '2', '1', '1', '0', '0', '2692', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1067', 'My first Habbo stool', 'noob_stool*1', 's', '1', '1', '1', '0', '1', '0', '2657', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1068', 'My first Habbo stool', 'noob_stool*2', 's', '1', '1', '1', '0', '1', '0', '2658', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1069', 'My first Habbo stool', 'noob_stool*3', 's', '1', '1', '1', '0', '1', '0', '2659', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1070', 'My first Habbo stool', 'noob_stool*4', 's', '1', '1', '1', '0', '1', '0', '2660', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1071', 'My first Habbo stool', 'noob_stool*5', 's', '1', '1', '1', '0', '1', '0', '2661', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1072', 'My first Habbo stool', 'noob_stool*6', 's', '1', '1', '1', '0', '1', '0', '2662', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1073', 'My first Habbo rug', 'noob_rug*1', 's', '2', '3', '0', '1', '0', '1', '2681', '0', '1', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1074', 'My first Habbo rug', 'noob_rug*2', 's', '2', '3', '0', '1', '0', '1', '2682', '0', '1', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1075', 'My first Habbo rug', 'noob_rug*3', 's', '2', '3', '0', '1', '0', '1', '2683', '0', '1', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1076', 'My first Habbo rug', 'noob_rug*4', 's', '2', '3', '0', '1', '0', '1', '2684', '0', '1', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1077', 'My first Habbo rug', 'noob_rug*5', 's', '2', '3', '0', '1', '0', '1', '2685', '0', '1', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1078', 'My first Habbo rug', 'noob_rug*6', 's', '2', '3', '0', '1', '0', '1', '2686', '0', '1', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1079', 'My first Habbo lamp', 'noob_lamp*1', 's', '1', '1', '1', '0', '0', '0', '2663', '0', '0', '0', '0', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1080', 'My first Habbo lamp', 'noob_lamp*2', 's', '1', '1', '1', '0', '0', '0', '2664', '0', '0', '0', '0', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1081', 'My first Habbo lamp', 'noob_lamp*3', 's', '1', '1', '1', '0', '0', '0', '2665', '0', '0', '0', '0', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1082', 'My first Habbo lamp', 'noob_lamp*4', 's', '1', '1', '1', '0', '0', '0', '2666', '0', '0', '0', '0', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1083', 'My first Habbo lamp', 'noob_lamp*5', 's', '1', '1', '1', '0', '0', '0', '2667', '0', '0', '0', '0', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1084', 'My first Habbo lamp', 'noob_lamp*6', 's', '1', '1', '1', '0', '0', '0', '2668', '0', '0', '0', '0', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1085', 'Lightweight', 'noob_chair*1', 's', '1', '1', '1', '0', '1', '0', '2675', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1086', ' practical', 'noob_chair*2', 's', '1', '1', '1', '0', '1', '0', '2676', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1087', ' practical', 'noob_chair*3', 's', '1', '1', '1', '0', '1', '0', '2677', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1088', ' practical', 'noob_chair*4', 's', '1', '1', '1', '0', '1', '0', '2678', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1089', ' practical', 'noob_chair*5', 's', '1', '1', '1', '0', '1', '0', '2679', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1090', 'Power Globe', 'noob_chair*6', 's', '1', '1', '1', '0', '1', '0', '2680', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1091', 'Executive Plant', 'exe_plant', 's', '1', '1', '1', '0', '0', '0', '2674', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1092', 'Grey Share Bear', 'val_teddy*1', 's', '1', '1', '1', '0', '1', '0', '2699', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1093', 'Pink Share Bear', 'val_teddy*2', 's', '1', '1', '1', '0', '1', '0', '2700', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1094', 'Green Share Bear', 'val_teddy*3', 's', '1', '1', '1', '0', '1', '0', '2701', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1095', 'Brown Share Bear', 'val_teddy*4', 's', '1', '1', '1', '0', '1', '0', '2702', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1096', 'Yellow Share Bear', 'val_teddy*5', 's', '1', '1', '1', '0', '1', '0', '2703', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1097', 'Blue Share Bear', 'val_teddy*6', 's', '1', '1', '1', '0', '1', '0', '2704', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1098', 'Love Randomiser', 'val_randomizer', 's', '4', '1', '1.4', '0', '1', '0', '2696', '1', '1', '0', '1', '1', 'loveshuffler', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1099', 'Heart Shaped Chocs', 'val_choco', 's', '1', '1', '1', '0', '0', '0', '2697', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1100', 'Teleport Door', 'teleport_door', 's', '1', '1', '0.1', '1', '0', '1', '2693', '1', '1', '0', '1', '1', 'teleport', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1101', 'Latin Love 3', 'sound_set_61', 's', '1', '1', '0.2', '1', '0', '0', '2698', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1102', 'Latin Love 2', 'sound_set_60', 's', '1', '1', '0.2', '1', '0', '0', '2695', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1103', 'Crystal Ball', 'fortune', 's', '1', '1', '1', '0', '0', '0', '2694', '1', '1', '0', '1', '1', 'dice', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1104', 'Adventure Desk', 'sw_table', 's', '1', '2', '1', '0', '0', '0', '2713', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1105', 'Raven', 'sw_raven', 's', '1', '1', '1', '0', '0', '0', '2711', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1106', 'Ye Olde Chest', 'sw_chest', 's', '1', '2', '1', '0', '0', '0', '2709', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1107', 'Sand Castle Wall', 'sand_cstl_wall', 's', '2', '1', '1', '0', '0', '0', '2710', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1108', 'Sand Castle Tower', 'sand_cstl_twr', 's', '1', '1', '1', '0', '0', '0', '2705', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1109', 'Sand Castle Gate', 'sand_cstl_gate', 's', '2', '1', '0.001', '0', '0', '0', '2712', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1110', 'Candle Box', 'grunge_candle', 's', '1', '1', '1', '0', '0', '0', '2708', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1111', 'Bench', 'grunge_bench', 's', '3', '1', '1', '0', '0', '0', '2707', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1112', 'Flaming Barrel', 'grunge_barrel', 's', '1', '1', '1', '0', '0', '0', '2706', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1113', 'Moon Lamp', 'rclr_lamp', 's', '1', '1', '1', '0', '0', '0', '2733', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1115', 'Bubble trophy', 'a0 prizetrophy8_g', 's', '1', '1', '1', '0', '0', '0', '2426', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1116', 'nouvelle_trax', 'nouvelle_trax', 's', '1', '1', '1', '0', '0', '0', '2736', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1117', 'Bubble Juice Floor', 'md_rug', 's', '4', '4', '0', '1', '0', '1', '2727', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1118', 'Sushi Kohada', 'jp_tray6', 's', '1', '1', '1', '0', '0', '0', '2720', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1119', 'Sushi Tamago', 'jp_tray5', 's', '1', '1', '1', '0', '0', '0', '2717', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1120', 'Sushi Uni', 'jp_tray4', 's', '1', '1', '1', '0', '0', '0', '2725', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1121', 'Sushi Ikura', 'jp_tray3', 's', '1', '1', '1', '0', '0', '0', '2726', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1122', 'Sushi Ika', 'jp_tray2', 's', '1', '1', '1', '0', '0', '0', '2724', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1123', 'Sushi Maguro', 'jp_tray1', 's', '1', '1', '1', '0', '0', '0', '2715', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1124', 'Tea Maker', 'arabian_teamk', 's', '1', '1', '1', '0', '0', '0', '2716', '1', '1', '0', '1', '1', 'vendingmachine', '0', '1', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1125', 'Ornamental Urn', 'arabian_snake', 's', '1', '1', '1', '0', '0', '0', '2732', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1126', 'Berber Kilim Rug', 'arabian_rug', 's', '3', '5', '0', '0', '0', '1', '2719', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1127', 'Green Blossom Pillow', 'arabian_pllw', 's', '1', '1', '0.8', '0', '1', '0', '2722', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1128', 'Soft wooden screen', 'arabian_divdr', 's', '1', '2', '1', '0', '0', '0', '2730', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1129', 'Exotic', 'arabian_chair', 's', '1', '1', '1.2', '0', '1', '0', '2721', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1130', 'Amanjena Table', 'arabian_bigtb', 's', '3', '2', '0.8', '1', '0', '0', '2731', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1131', 'Hexagonal Tea Table', 'arabian_tetbl', 's', '1', '1', '1', '1', '0', '0', '2714', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1132', 'Mint Tea Tray', 'arabian_tray1', 's', '1', '1', '1', '0', '0', '0', '2734', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1133', 'Candle Tray', 'arabian_tray2', 's', '1', '1', '1', '0', '0', '0', '2735', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1134', 'Sweets Tray', 'arabian_tray3', 's', '1', '1', '1', '0', '0', '0', '2723', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1135', 'Sweet', 'arabian_tray4', 's', '1', '1', '1', '0', '0', '0', '2728', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1136', 'Alhambra Trax 3', 'sound_set_64', 's', '1', '1', '0.2', '1', '0', '0', '2738', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1137', 'Alhambra Trax 2', 'sound_set_63', 's', '1', '1', '0.2', '1', '0', '0', '2740', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1138', 'Alhambra Trax 1', 'sound_set_62', 's', '1', '1', '0.2', '1', '0', '0', '2741', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1139', 'Jukebox Pacha TV', 'jukebox_ptv*1', 's', '1', '1', '1', '0', '0', '0', '2739', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1140', 'Calippo icecream machine', 'calippo', 's', '1', '1', '1', '0', '0', '0', '2737', '1', '1', '0', '1', '1', 'vendingmachine', '0', '4', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1141', 'traxsilver', 'traxsilver', 's', '1', '1', '1', '1', '0', '0', '2744', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1142', 'traxgold', 'traxgold', 's', '1', '1', '1', '1', '0', '0', '2742', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1143', 'traxbronze', 'traxbronze', 's', '1', '1', '1', '1', '0', '0', '2743', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1144', 'bench_puffet', 'bench_puffet', 's', '2', '1', '1', '0', '1', '0', '2745', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1145', 'Gold Bar (China)', 'CFC_500_goldbar', 's', '1', '1', '0.4', '1', '0', '0', '2764', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1146', 'Sack of Credits (China)', 'CFC_200_moneybag', 's', '1', '1', '1', '1', '0', '0', '2770', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20006', 'Mesh Corner', 'urban_fence_corner', 's', '1', '1', '1', '1', '0', '0', '3275', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1148', 'Gold Coin (China)', 'CFC_100_coin_gold', 's', '1', '1', '0.2', '1', '0', '0', '2796', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1149', 'Silver Coin (China)', 'CFC_50_coin_silver', 's', '1', '1', '0.2', '1', '0', '0', '2772', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1150', 'Chabu Dai', 'jp_table', 's', '2', '2', '1', '0', '0', '0', '2749', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1151', 'Shishi Odishi', 'jp_rare', 's', '2', '2', '1', '0', '0', '0', '2750', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1152', 'Katana Green', 'jp_katana3', 's', '1', '1', '1', '0', '0', '0', '2748', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1153', 'Katana Blue', 'jp_katana2', 's', '1', '1', '1', '0', '0', '0', '2747', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1154', 'HC Katana Red', 'jp_katana1', 's', '1', '1', '1', '0', '0', '0', '2751', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1156', 'Tiki Waterfall', 'tiki_waterfall', 's', '3', '2', '1', '0', '0', '0', '2757', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1157', 'Tiki Pig Tray', 'tiki_tray4', 's', '1', '1', '1', '0', '0', '0', '2765', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1158', 'Tiki Fish Tray', 'tiki_tray3', 's', '1', '1', '1', '0', '0', '0', '2753', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1159', 'Tiki Pineapple Plate', 'tiki_tray2', 's', '1', '1', '1', '0', '0', '0', '2768', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1160', 'Tiki Fruit Tray', 'tiki_tray1', 's', '1', '1', '1', '0', '0', '0', '2755', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1161', 'Empty Tray', 'tiki_tray0', 's', '1', '1', '1', '0', '0', '0', '2792', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1162', 'Toucan', 'tiki_toucan', 's', '1', '1', '1', '0', '0', '0', '2756', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1163', 'Beach Torch', 'tiki_torch', 's', '1', '1', '1', '0', '0', '0', '2773', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1164', 'Tribal Statue', 'tiki_statue', 's', '1', '1', '1', '0', '0', '0', '2782', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1165', 'Island Sand Patch', 'tiki_sand', 's', '2', '2', '0', '1', '0', '1', '2798', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1166', 'Tiki Parasol', 'tiki_parasol', 's', '1', '1', '1', '0', '0', '0', '2769', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1167', 'Jungle Patch', 'tiki_junglerug', 's', '2', '2', '0', '1', '0', '1', '2781', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1168', 'Tiki Bar Corner', 'tiki_corner', 's', '1', '1', '1', '1', '0', '0', '2794', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1169', 'Butterflies', 'tiki_bflies', 's', '1', '1', '1', '0', '0', '0', '2785', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1170', 'Tiki Bar Stool', 'tiki_bench', 's', '1', '1', '1.3', '0', '1', '0', '2784', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1171', 'Tiki Bar Desk', 'tiki_bardesk', 's', '1', '1', '1', '1', '0', '0', '2795', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1172', 'tampax_rug', 'tampax_rug', 's', '3', '4', '0', '1', '0', '1', '2754', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1173', 'Sound set 70', 'sound_set_70', 's', '1', '1', '0.2', '1', '0', '0', '2767', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1174', 'Sound set 69', 'sound_set_69', 's', '1', '1', '0.2', '1', '0', '0', '2799', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1175', 'Sound set 68', 'sound_set_68', 's', '1', '1', '0.2', '1', '0', '0', '2793', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1176', 'Sound set 67', 'sound_set_67', 's', '1', '1', '0.2', '1', '0', '0', '2771', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1177', 'Sound set 66', 'sound_set_66', 's', '1', '1', '0.2', '1', '0', '0', '2752', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1178', 'Sound set 65', 'sound_set_65', 's', '1', '1', '0.2', '1', '0', '0', '2766', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20024', 'Square Dining Table', 'table_plasto_square*9', 's', '1', '1', '1', '1', '0', '0', '118', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20021', 'Giant Heart', 'heart', 's', '2', '1', '1', '0', '0', '0', '227', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20016', 'Street Lamp', 'urban_lamp', 's', '1', '1', '1', '1', '0', '0', '3265', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1185', 'Lucky Bamboo', 'noob_plant', 's', '1', '1', '1', '0', '0', '0', '2783', '0', '1', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20018', 'Street Wall', 'urban_wall', 'i', '0', '0', '1', '1', '0', '0', '4244', '1', '1', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20022', 'Champion trophy', 'a0 prizetrophy6_b', 's', '1', '1', '1', '0', '0', '0', '1510', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1197', 'Japanese Teamaker', 'jp_teamaker', 's', '1', '1', '1', '0', '0', '0', '2774', '1', '1', '0', '1', '1', 'vendingmachine', '0', '28', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1198', 'September 2008', 'svnr_uk', 's', '1', '1', '1', '0', '0', '0', '2838', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1199', 'August 2008', 'svnr_nl', 's', '1', '2', '1', '0', '1', '0', '2825', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1200', 'July 2008', 'svnr_it', 's', '2', '1', '1', '0', '1', '0', '2813', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1201', 'October 2008', 'svnr_de', 's', '1', '1', '1', '0', '0', '0', '2801', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1202', 'November 2008', 'svnr_aus', 's', '1', '1', '1', '0', '0', '0', '2836', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1203', 'Accompaniments', 'diner_tray_7', 's', '1', '1', '1', '0', '0', '0', '2840', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1204', 'Vanilla', 'diner_tray_6', 's', '1', '1', '1', '0', '0', '0', '2826', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1205', 'Bacon and Eggs', 'diner_tray_5', 's', '1', '1', '1', '0', '0', '0', '2815', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1206', 'Pancakes', 'diner_tray_4', 's', '1', '1', '1', '0', '0', '0', '2800', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1207', 'Spaghetti Meatballs', 'diner_tray_3', 's', '1', '1', '1', '0', '0', '0', '2841', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1208', 'Steak and Mash', 'diner_tray_2', 's', '1', '1', '1', '0', '0', '0', '2802', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1209', 'Burger and Chips', 'diner_tray_1', 's', '1', '1', '1', '0', '0', '0', '2839', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1210', 'Had your fill', 'diner_tray_0', 's', '1', '1', '0.1', '1', '0', '0', '2837', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1211', 'Aqua Diner Sofa 2', 'diner_sofa_2*1', 's', '1', '1', '1', '0', '1', '0', '2804', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1212', 'Pink Diner Sofa 2', 'diner_sofa_2*2', 's', '1', '1', '1', '0', '1', '0', '2805', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1213', 'Black Diner Sofa 2', 'diner_sofa_2*3', 's', '1', '1', '1', '0', '1', '0', '2806', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1214', 'White Diner Sofa 2', 'diner_sofa_2*4', 's', '1', '1', '1', '0', '1', '0', '2807', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1215', 'Latte Diner Sofa 2', 'diner_sofa_2*5', 's', '1', '1', '1', '0', '1', '0', '2808', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1216', 'Blue Diner Sofa 2', 'diner_sofa_2*6', 's', '1', '1', '1', '0', '1', '0', '2809', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1217', 'Green Diner Sofa 2', 'diner_sofa_2*7', 's', '1', '1', '1', '0', '1', '0', '2810', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1218', 'Yellow Diner Sofa 2', 'diner_sofa_2*8', 's', '1', '1', '1', '0', '1', '0', '2811', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1219', 'Red Diner Sofa 2', 'diner_sofa_2*9', 's', '1', '1', '1', '0', '1', '0', '2812', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1220', 'Diner Shaker', 'diner_shaker', 's', '1', '1', '1', '0', '0', '0', '2814', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1221', 'Diner Floor', 'diner_rug', 's', '2', '2', '0', '1', '0', '1', '2803', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1222', 'Aqua Gumball Machine', 'diner_gumvendor*1', 's', '1', '1', '1', '0', '0', '0', '2827', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1223', 'Pink Gumball Machine', 'diner_gumvendor*2', 's', '1', '1', '1', '0', '0', '0', '2828', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1224', 'Black Gumball Machine', 'diner_gumvendor*3', 's', '1', '1', '1', '0', '0', '0', '2829', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1225', 'White Gumball Machine', 'diner_gumvendor*4', 's', '1', '1', '1', '0', '0', '0', '2830', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1226', 'Latte Gumball Machine', 'diner_gumvendor*5', 's', '1', '1', '1', '0', '0', '0', '2831', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1227', 'Blue Gumball Machine', 'diner_gumvendor*6', 's', '1', '1', '1', '0', '0', '0', '2832', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1228', 'Green Gumball Machine', 'diner_gumvendor*7', 's', '1', '1', '1', '0', '0', '0', '2833', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1229', 'Yellow Gumball Machine', 'diner_gumvendor*8', 's', '1', '1', '1', '0', '0', '0', '2834', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1230', 'Red Gumball Machine', 'diner_gumvendor*9', 's', '1', '1', '1', '0', '0', '0', '2835', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1231', 'Aqua Diner Till', 'diner_cashreg*1', 's', '1', '1', '1', '0', '0', '0', '2816', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1232', 'Pink Diner Till', 'diner_cashreg*2', 's', '1', '1', '1', '0', '0', '0', '2817', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1233', 'Black Diner Till', 'diner_cashreg*3', 's', '1', '1', '1', '0', '0', '0', '2818', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1234', 'White Diner Till', 'diner_cashreg*4', 's', '1', '1', '1', '0', '0', '0', '2819', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1235', 'Latte Diner Till', 'diner_cashreg*5', 's', '1', '1', '1', '0', '0', '0', '2820', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1236', 'Blue Diner Till', 'diner_cashreg*6', 's', '1', '1', '1', '0', '0', '0', '2821', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1237', 'Green Diner Till', 'diner_cashreg*7', 's', '1', '1', '1', '0', '0', '0', '2822', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1238', 'Yellow Diner Till', 'diner_cashreg*8', 's', '1', '1', '1', '0', '0', '0', '2823', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1239', 'Red Diner Till', 'diner_cashreg*9', 's', '1', '1', '1', '0', '0', '0', '2824', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1240', 'Aqua Diner Table', 'diner_table_2*1', 's', '3', '2', '1', '1', '0', '0', '2879', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1241', 'Pink Diner Table', 'diner_table_2*2', 's', '3', '2', '1', '1', '0', '0', '2880', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1242', 'Black Diner Table', 'diner_table_2*3', 's', '3', '2', '1', '1', '0', '0', '2881', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1243', 'White Diner Table', 'diner_table_2*4', 's', '3', '2', '1', '1', '0', '0', '2882', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1244', 'Latte Diner Table', 'diner_table_2*5', 's', '3', '2', '1', '1', '0', '0', '2883', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1245', 'Blue Diner Table', 'diner_table_2*6', 's', '3', '2', '1', '1', '0', '0', '2884', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1246', 'Green Diner Table', 'diner_table_2*7', 's', '3', '2', '1', '1', '0', '0', '2885', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1247', 'Yellow Diner Table', 'diner_table_2*8', 's', '3', '2', '1', '1', '0', '0', '2886', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1248', 'Red Diner Table', 'diner_table_2*9', 's', '3', '2', '1', '1', '0', '0', '2887', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1249', 'Aqua Diner Booth Table', 'diner_table_1*1', 's', '2', '2', '1', '1', '0', '0', '2897', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1250', 'Pink Diner Booth Table', 'diner_table_1*2', 's', '2', '2', '1', '1', '0', '0', '2898', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1251', 'Black Diner Booth Table', 'diner_table_1*3', 's', '2', '2', '1', '1', '0', '0', '2899', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1252', 'White Diner Booth Table', 'diner_table_1*4', 's', '2', '2', '1', '1', '0', '0', '2900', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1253', 'Latte Diner Booth Table', 'diner_table_1*5', 's', '2', '2', '1', '1', '0', '0', '2901', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1254', 'Blue Diner Booth Table', 'diner_table_1*6', 's', '2', '2', '1', '1', '0', '0', '2902', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1255', 'Green Diner Booth Table', 'diner_table_1*7', 's', '2', '2', '1', '1', '0', '0', '2903', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1256', 'Yellow Diner Booth Table', 'diner_table_1*8', 's', '2', '2', '1', '1', '0', '0', '2904', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1257', 'Red Diner Booth Table', 'diner_table_1*9', 's', '2', '2', '1', '1', '0', '0', '2905', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1258', 'Aqua Diner Sofa 1', 'diner_sofa_1*1', 's', '1', '1', '1', '0', '1', '0', '2888', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1259', 'Pink Diner Sofa 1', 'diner_sofa_1*2', 's', '1', '1', '1', '0', '1', '0', '2889', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1260', 'Black Diner Sofa 1', 'diner_sofa_1*3', 's', '1', '1', '1', '0', '1', '0', '2890', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1261', 'White Diner Sofa 1', 'diner_sofa_1*4', 's', '1', '1', '1', '0', '1', '0', '2891', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1262', 'Latte Diner Sofa 1', 'diner_sofa_1*5', 's', '1', '1', '1', '0', '1', '0', '2892', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1263', 'Blue Diner Sofa 1', 'diner_sofa_1*6', 's', '1', '1', '1', '0', '1', '0', '2893', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1264', 'Green Diner Sofa 1', 'diner_sofa_1*7', 's', '1', '1', '1', '0', '1', '0', '2894', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1265', 'Yellow Diner Sofa 1', 'diner_sofa_1*8', 's', '1', '1', '1', '0', '1', '0', '2895', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1266', 'Red Diner Sofa 1', 'diner_sofa_1*9', 's', '1', '1', '1', '0', '1', '0', '2896', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1267', 'Aqua Diner Stool', 'diner_chair*1', 's', '1', '1', '1.4', '0', '1', '0', '2861', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1268', 'Pink Diner Stool', 'diner_chair*2', 's', '1', '1', '1.4', '0', '1', '0', '2862', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1269', 'Black Diner Stool', 'diner_chair*3', 's', '1', '1', '1.4', '0', '1', '0', '2863', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1270', 'White Diner Stool', 'diner_chair*4', 's', '1', '1', '1.4', '0', '1', '0', '2864', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1271', 'Latte Diner Stool', 'diner_chair*5', 's', '1', '1', '1.4', '0', '1', '0', '2865', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1272', 'Blue Diner Stool', 'diner_chair*6', 's', '1', '1', '1.4', '0', '1', '0', '2866', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1273', 'Green Diner Stool', 'diner_chair*7', 's', '1', '1', '1.4', '0', '1', '0', '2867', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1274', 'Yellow Diner Stool', 'diner_chair*8', 's', '1', '1', '1.4', '0', '1', '0', '2868', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1275', 'Red Diner Stool', 'diner_chair*9', 's', '1', '1', '1.4', '0', '1', '0', '2869', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1276', 'Aqua Diner Gate', 'diner_bardesk_gate*1', 's', '1', '1', '0.001', '0', '0', '0', '2842', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1277', 'Pink Diner Gate', 'diner_bardesk_gate*2', 's', '1', '1', '0.001', '0', '0', '0', '2843', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1278', 'Black Diner Gate', 'diner_bardesk_gate*3', 's', '1', '1', '0.001', '0', '0', '0', '2844', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1279', 'White Diner Gate', 'diner_bardesk_gate*4', 's', '1', '1', '0.001', '0', '0', '0', '2845', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1280', 'Latte Diner Gate', 'diner_bardesk_gate*5', 's', '1', '1', '0.001', '0', '0', '0', '2846', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1281', 'Blue Diner Gate', 'diner_bardesk_gate*6', 's', '1', '1', '0.001', '0', '0', '0', '2847', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1282', 'Green Diner Gate', 'diner_bardesk_gate*7', 's', '1', '1', '0.001', '0', '0', '0', '2848', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1283', 'Yellow Diner Gate', 'diner_bardesk_gate*8', 's', '1', '1', '0.001', '0', '0', '0', '2849', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1284', 'Red Diner Gate', 'diner_bardesk_gate*9', 's', '1', '1', '0.001', '0', '0', '0', '2850', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1285', 'Aqua Diner Corner', 'diner_bardesk_corner*1', 's', '1', '1', '1', '1', '0', '0', '2870', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1286', 'Pink Diner Corner', 'diner_bardesk_corner*2', 's', '1', '1', '1', '1', '0', '0', '2871', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1287', 'Black Diner Corner', 'diner_bardesk_corner*3', 's', '1', '1', '1', '1', '0', '0', '2872', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1288', 'Latte Diner Corner', 'diner_bardesk_corner*4', 's', '1', '1', '1', '1', '0', '0', '2873', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1289', 'Blue Diner Corner', 'diner_bardesk_corner*6', 's', '1', '1', '1', '1', '0', '0', '2875', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1290', 'Green Diner Corner', 'diner_bardesk_corner*7', 's', '1', '1', '1', '1', '0', '0', '2876', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1291', 'Yellow Diner Corner', 'diner_bardesk_corner*8', 's', '1', '1', '1', '1', '0', '0', '2877', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1292', 'Red Diner Corner', 'diner_bardesk_corner*9', 's', '1', '1', '1', '1', '0', '0', '2878', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1293', 'Aqua Diner Bar', 'diner_bardesk*1', 's', '1', '1', '1', '1', '0', '0', '2851', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1294', 'Pink Diner Bar', 'diner_bardesk*2', 's', '1', '1', '1', '1', '0', '0', '2852', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1295', 'Black Diner Bar', 'diner_bardesk*3', 's', '1', '1', '1', '1', '0', '0', '2853', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1296', 'White Diner Bar', 'diner_bardesk*4', 's', '1', '1', '1', '1', '0', '0', '2854', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1297', 'Latte Diner Bar', 'diner_bardesk*5', 's', '1', '1', '1', '1', '0', '0', '2855', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1298', 'Blue Diner Bar', 'diner_bardesk*6', 's', '1', '1', '1', '1', '0', '0', '2856', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1299', 'Green Diner Bar', 'diner_bardesk*7', 's', '1', '1', '1', '1', '0', '0', '2857', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1300', 'Yellow Diner Bar', 'diner_bardesk*8', 's', '1', '1', '1', '1', '0', '0', '2858', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1301', 'Red Diner Bar', 'diner_bardesk*9', 's', '1', '1', '1', '1', '0', '0', '2859', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1302', 'ads_dave_cns', 'ads_dave_cns', 's', '1', '1', '1', '0', '0', '0', '2860', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1303', 'easy_carpet name', 'easy_carpet', 's', '4', '4', '0', '1', '0', '1', '2911', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1304', 'easy_bowl2', 'easy_bowl2', 's', '1', '1', '1', '1', '0', '0', '2907', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1305', 'Greek Corner', 'greek_corner', 's', '1', '1', '1', '0', '0', '0', '2910', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1306', 'Enter mortal', 'greek_gate', 's', '2', '1', '0.001', '0', '0', '0', '2908', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1307', 'Greek Pillars', 'greek_pillars', 's', '2', '1', '1', '0', '0', '0', '2909', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1308', 'Greek Seat', 'greek_seat', 's', '1', '1', '0.5', '0', '1', '0', '2906', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1309', 'Greek trophy', 'a0 greektrophy_g', 's', '1', '1', '1', '0', '0', '0', '2622', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1310', 'Greek trophy', 'a0 greektrophy_s', 's', '1', '1', '1', '0', '0', '0', '2623', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1311', 'Greek trophy', 'a0 greektrophy_b', 's', '1', '1', '1', '0', '0', '0', '2624', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1312', 'greek_block', 'greek_block', 's', '2', '1', '0.8', '0', '1', '0', '2915', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1313', 'Glass Table', 'hcc_table', 's', '1', '2', '1', '0', '0', '0', '2923', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1314', 'Bookshelf', 'hcc_shelf', 's', '1', '2', '1', '0', '0', '0', '2917', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1315', 'Low Back Sofa', 'hcc_sofa', 's', '2', '1', '1.2', '0', '1', '0', '2921', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1316', 'Cool look', 'hcc_minibar', 's', '1', '1', '1', '0', '0', '0', '2924', '1', '1', '0', '1', '1', 'vendingmachine', '0', '24', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1317', 'Trendy Stool', 'hcc_chair', 's', '1', '1', '1', '0', '1', '0', '2919', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1318', 'Crime scene', 'det_divider', 's', '2', '1', '1', '0', '0', '0', '2918', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1319', 'netari_carpet', 'netari_carpet', 's', '3', '5', '0', '1', '0', '1', '2916', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1320', 'Chalk Outline', 'det_body', 's', '2', '3', '0', '0', '0', '1', '2922', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1321', 'Antique Stool', 'hcc_stool', 's', '1', '1', '1.2', '0', '1', '0', '2920', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1322', 'Reclining Chair', 'hcc_sofachair', 's', '1', '1', '1.2', '0', '1', '0', '2925', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1323', 'Glass Corner', 'hcc_crnr', 's', '1', '1', '1', '0', '0', '0', '2926', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1324', 'Glass Divider', 'hcc_dvdr', 's', '2', '1', '1', '0', '0', '0', '2927', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1325', 'sob_carpet', 'sob_carpet', 's', '3', '5', '0', '1', '0', '1', '2928', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1326', 'My Hump', 'igor_seat', 's', '1', '1', '1', '0', '1', '0', '2929', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1327', 'The Brain', 'ads_igorbrain', 's', '1', '1', '1', '0', '0', '0', '2936', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1328', 'Igor Switch', 'ads_igorswitch', 's', '1', '1', '1', '0', '0', '0', '2934', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1329', 'ads_711', 'ads_711*1', 's', '1', '1', '1', '0', '0', '0', '2930', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1330', 'ads_711', 'ads_711*2', 's', '1', '1', '1', '0', '0', '0', '2931', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1331', 'ads_711', 'ads_711*3', 's', '1', '1', '1', '0', '0', '0', '2932', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1332', 'ads_711', 'ads_711*4', 's', '1', '1', '1', '0', '0', '0', '2933', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1333', 'Igor Ray Gun', 'ads_igorraygun', 's', '1', '2', '1', '0', '0', '0', '2935', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1334', 'Blood Sink', 'hween08_sink', 's', '1', '1', '1', '0', '0', '0', '2944', '1', '1', '0', '1', '1', 'vendingmachine', '0', '29', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1335', 'Hospital Curtain (blood)', 'hween08_curtain', 's', '3', '1', '1', '0', '0', '0', '2942', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1336', 'Blood Bath', 'hween08_bath', 's', '1', '2', '1', '0', '1', '0', '2948', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1337', 'Life Support (blood)', 'hween08_defibs', 's', '1', '1', '1', '0', '0', '0', '2938', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1338', 'Body Bag', 'hween08_bbag', 's', '1', '3', '1.3', '0', '0', '0', '2943', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1339', 'Hospital Curtain (ooze)', 'hween08_curtain2', 's', '3', '1', '1', '0', '0', '0', '2949', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1340', 'Life Support (ooze)', 'hween08_defibs2', 's', '1', '1', '1', '0', '0', '0', '2939', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1341', 'Hospital Bed (blood)', 'hween08_bed', 's', '1', '3', '2', '0', '0', '0', '2945', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1342', 'Ooze Sink', 'hween08_sink2', 's', '1', '1', '1', '0', '0', '0', '2940', '1', '1', '0', '1', '1', 'vendingmachine', '0', '30', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1343', 'Hospital Bed (ooze)', 'hween08_bed2', 's', '1', '3', '1', '0', '0', '0', '2937', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1344', 'Ooze Bath', 'hween08_bath2', 's', '1', '2', '1', '0', '1', '0', '2947', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1345', 'Manhole', 'hween08_manhole', 's', '1', '1', '1', '0', '0', '0', '2946', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1346', ' poke', 'hween08_trll', 's', '1', '1', '1', '0', '0', '0', '2941', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1347', 'Glass High Bar Table', 'party_table', 's', '1', '1', '1', '1', '0', '0', '2956', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1348', 'Spotlight', 'party_discol', 's', '1', '1', '1', '0', '0', '0', '2963', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1349', 'Stage Block Large', 'party_block2', 's', '2', '2', '0.7', '1', '0', '1', '2950', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1350', 'Bar Corner', 'party_barcorn', 's', '1', '1', '1', '1', '0', '0', '2957', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1351', 'High Class Bar Stool', 'party_chair', 's', '1', '1', '1.3', '0', '1', '0', '2960', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1352', 'Small Stage', 'party_block', 's', '1', '1', '0.9', '1', '0', '1', '2959', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1353', 'Dance Floor Laser', 'party_ravel', 's', '1', '1', '1', '0', '0', '0', '2965', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1354', 'Despite being made a lava', 'party_tube_lava', 's', '1', '1', '1', '0', '0', '0', '2966', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1355', 'Club Tray', 'party_tray', 's', '1', '1', '1', '0', '0', '0', '2955', '1', '1', '0', '1', '1', 'vendingmachine', '0', '31', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1356', 'Scratch it', 'party_djtable', 's', '1', '2', '1', '0', '0', '0', '2954', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1357', 'Disco Floor', 'party_floor', 's', '2', '2', '0', '1', '0', '1', '2958', '1', '1', '0', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1358', 'Glitter Ball', 'party_ball', 's', '1', '1', '0', '0', '0', '1', '2964', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1359', 'Bubbles Machine', 'party_tube_bubble', 's', '1', '1', '1', '0', '0', '0', '2951', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1360', ' MC', 'party_mic', 's', '1', '1', '1', '0', '0', '0', '2953', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1361', 'Dance Floor Beamer', 'party_beamer', 's', '1', '1', '1', '0', '0', '0', '2961', '1', '1', '0', '1', '1', 'default', '7', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1362', 'Bar Centre', 'party_bardesk', 's', '1', '1', '1', '1', '0', '0', '2962', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1363', 'Club seat', 'party_seat', 's', '1', '1', '1.1', '0', '1', '0', '2952', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1364', 'Snow Seat', 'xmas08_snowpl', 's', '1', '1', '1', '0', '1', '1', '3005', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1365', 'Emperor Penguin', 'penguin_basic', 's', '1', '1', '1', '0', '0', '0', '2977', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1366', 'Arctic Penguin Trophy', 'xmas08_trph1', 's', '1', '1', '1', '0', '0', '0', '2972', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1367', 'Musketeer Penguin', 'penguin_musketeer', 's', '1', '1', '1', '0', '0', '0', '2995', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1368', 'Icy table', 'xmas08_table', 's', '2', '2', '1', '1', '0', '0', '3009', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1369', 'Hot Tub', 'xmas08_hottub', 's', '2', '2', '1', '0', '1', '0', '2986', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1370', 'Luchador Penguin', 'penguin_wrestler', 's', '1', '1', '1', '0', '0', '0', '2990', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1371', 'Blow it up', 'fx_explosion', 's', '1', '1', '1', '0', '0', '0', '3011', '0', '0', '0', '0', '1', 'rentals', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1372', 'Robot Penguin', 'penguin_robot', 's', '1', '1', '1', '0', '0', '0', '2969', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1373', 'Icy Christmas Tree', 'xmas08_icetree', 's', '1', '1', '1', '0', '0', '0', '2967', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1374', 'Camp fire', 'campfire', 's', '1', '1', '1', '1', '0', '0', '2974', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1375', 'Ice', 'xmas08_icerug', 's', '2', '2', '0', '1', '0', '1', '3002', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1376', 'Executive Penguin', 'penguin_suit', 's', '1', '1', '1', '0', '0', '0', '3008', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1377', 'December 2008', 'svnr_fi', 's', '1', '1', '1', '0', '0', '0', '2991', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1378', 'Snow Storm', 'xmas_snow', 's', '1', '1', '0', '1', '0', '1', '2982', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1379', 'Hockey Penguin', 'penguin_icehockey', 's', '1', '1', '1', '0', '0', '0', '2988', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1380', 'Pilot Penguin', 'penguin_pilot', 's', '1', '1', '1', '0', '0', '0', '3007', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1381', 'Ballerina Penguin', 'penguin_ballet', 's', '1', '1', '1', '0', '0', '0', '2996', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1382', 'Arctic SFX', 'sound_set_71', 's', '1', '1', '0.2', '1', '0', '0', '3000', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1383', 'Boxer Penguin', 'penguin_boxer', 's', '1', '1', '1', '0', '0', '0', '2979', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1384', 'Fluorescent Penguin', 'penguin_glow', 's', '1', '1', '1', '0', '0', '0', '2993', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1385', 'Summer Penguin', 'penguin_swim', 's', '1', '1', '1', '0', '0', '0', '2984', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1386', 'Sumo Penguin', 'penguin_sumo', 's', '1', '1', '1', '0', '0', '0', '2994', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1387', 'Bubbles', 'xmas08_geysir', 's', '2', '2', '1', '0', '0', '0', '2985', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1388', 'Clown Penguin', 'penguin_clown', 's', '1', '1', '1', '0', '0', '0', '2989', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1389', 'Infected Penguin', 'penguin_infected', 's', '1', '1', '1', '0', '0', '0', '2983', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1390', 'Firestarter', 'fx_flare', 's', '1', '1', '1', '1', '0', '0', '3013', '0', '0', '0', '0', '1', 'rentals', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1391', 'Snowball Lantern Pile', 'xmas08_lantern', 's', '1', '1', '1', '0', '0', '0', '2968', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1392', 'Ice chair', 'xmas08_chair', 's', '1', '1', '1', '0', '1', '0', '3001', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1393', 'Superhero Penguin', 'penguin_super', 's', '1', '1', '1', '0', '0', '0', '2998', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1394', 'Icy Teleport', 'xmas08_telep', 's', '1', '1', '0.001', '0', '0', '0', '2978', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1395', 'Cube Tree', 'xmas08_cubetree', 's', '1', '1', '1', '0', '0', '0', '3006', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1396', 'Disco Penguin', 'penguin_rock', 's', '1', '1', '1', '0', '0', '0', '3010', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1397', 'Ice divider', 'xmas08_dvdr1', 's', '2', '1', '1', '0', '0', '0', '2992', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1398', 'Ice Fish Hole', 'xmas08_hole', 's', '1', '1', '1', '0', '0', '0', '2980', '1', '1', '0', '1', '1', 'vendingmachine', '0', '34', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1399', 'XC Penguin', 'penguin_ski', 's', '1', '1', '1', '0', '0', '0', '2981', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1400', 'Skater Penguin', 'penguin_skater', 's', '1', '1', '1', '0', '0', '0', '2973', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1401', 'Icy Divider Corner', 'xmas08_dvdr2', 's', '1', '1', '1', '0', '0', '0', '2970', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1402', 'Christmas Penguin', 'penguin_elf', 's', '1', '1', '1', '0', '0', '0', '2971', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1403', 'Bunny Penguin', 'penguin_bunny', 's', '1', '1', '1', '0', '0', '0', '2975', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1404', 'Ninja Penguin', 'penguin_ninja', 's', '1', '1', '1', '0', '0', '0', '2976', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1405', 'Magic Penguin', 'penguin_magician', 's', '1', '1', '1', '0', '0', '0', '2997', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1406', 'Beautiful Penguin', 'penguin_hunchback', 's', '1', '1', '1', '0', '0', '0', '3003', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1407', 'Cowboy Penguin', 'penguin_cowboy', 's', '1', '1', '1', '0', '0', '0', '2987', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1408', 'Punk Penguin', 'penguin_punk', 's', '1', '1', '1', '0', '0', '0', '3004', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1409', 'Pirate Penguin', 'penguin_pirate', 's', '1', '1', '1', '0', '0', '0', '2999', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1410', 'ads_ob_pillow name', 'ads_ob_pillow', 's', '1', '1', '1', '0', '1', '0', '3018', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1411', 'Leviathon', 'lostc_merdragon', 's', '1', '3', '1', '0', '0', '0', '3016', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1412', 'Idea Agency Desk', 'ads_cldesk', 's', '2', '2', '1', '0', '0', '0', '3017', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1413', 'Eco Friendly Penguin', 'xmas08_trph2', 's', '1', '1', '1', '0', '0', '0', '3015', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1414', 'Whatever your Idea', 'ads_cltele', 's', '1', '1', '0.001', '0', '0', '0', '3014', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1415', 'Childline Rug', 'ads_clfloor', 's', '3', '5', '0', '0', '0', '1', '3019', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1417', 'Mall tele-door', 'ads_mall_tele', 's', '1', '1', '0.001', '1', '0', '1', '3020', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1418', 'Moongate', 'china_moongt', 's', '1', '3', '0.001', '0', '0', '1', '3024', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1419', 'Lotus Pool', 'bolly_lotus_pool', 's', '2', '2', '0', '0', '0', '0', '3022', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1420', 'Ox Statue', 'china_ox', 's', '1', '1', '1', '0', '0', '0', '3025', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1422', 'Petal Flurry', 'bolly_petals', 's', '2', '2', '0', '1', '0', '1', '3026', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1423', 'Palm Tree', 'bolly_tree', 's', '1', '1', '1', '0', '0', '0', '3042', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1424', 'Swing low', 'bolly_swing', 's', '2', '1', '1.5', '0', '1', '0', '3037', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1425', 'Star Pillow', 'bolly_pillow', 's', '1', '1', '0.8', '0', '1', '0', '3030', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1426', 'Bollywood Corner', 'bolly_corner', 's', '1', '1', '1', '1', '0', '0', '3031', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1427', 'Elephant MiniBar', 'bolly_phant', 's', '1', '1', '1', '0', '0', '0', '3033', '1', '1', '0', '1', '1', 'vendingmachine', '0', '35', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1428', 'Monkey Lamp', 'bolly_monkey_lamp', 's', '1', '1', '1', '0', '0', '0', '3036', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1429', 'Green Curtain', 'bolly_drapeb', 's', '3', '1', '0.001', '0', '0', '0', '3040', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1430', 'Planet of Love', 'planet_of_love', 's', '1', '1', '1', '1', '0', '0', '3044', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1431', 'Chandelier', 'bolly_lamp', 's', '1', '1', '1', '0', '0', '0', '3041', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1432', 'Bollywood Desk', 'bolly_desk', 's', '2', '1', '1', '1', '0', '0', '3034', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1433', 'Vase of Flowers', 'bolly_vase', 's', '1', '1', '1', '0', '0', '0', '3043', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1434', 'Standard Tile', 'bolly_tile2', 's', '2', '2', '0', '1', '0', '1', '3027', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1435', 'Large Ornamental Table', 'bolly_table', 's', '2', '2', '1', '1', '0', '0', '3035', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1436', 'Yellow Curtain', 'bolly_drapec', 's', '3', '1', '0.001', '0', '0', '0', '3032', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1437', 'Extravagant Fountain', 'bolly_fountain', 's', '2', '2', '1', '0', '0', '0', '3029', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20046', 'Executive Teleport', 'exe_elevator', 's', '1', '1', '0.001', '0', '0', '0', '3305', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1439', 'Ornamental Tile', 'bolly_tile1', 's', '2', '2', '0', '1', '0', '1', '3028', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1440', 'Pink Curtain', 'bolly_drapea', 's', '3', '1', '0.001', '0', '0', '0', '3038', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1441', 'ads_idol_floor1 name', 'ads_idol_floor1', 's', '2', '2', '0', '0', '0', '1', '3045', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1442', 'Inventor\'s Desk', 'ads_igor_dsk', 's', '2', '1', '1', '0', '0', '0', '3049', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1443', 'ads_idol_desk', 'ads_idol_desk', 's', '1', '4', '1', '0', '0', '0', '3050', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1444', 'ads_idol_ch', 'ads_idol_ch', 's', '1', '1', '1.2', '0', '1', '0', '3051', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1445', 'Glass Flask', 'ads_igor_flask', 's', '1', '1', '1', '0', '0', '0', '3046', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1446', 'ads_idol_drape name', 'ads_idol_drape', 's', '3', '1', '0.001', '0', '0', '0', '3048', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1447', 'ads_idol_floor2 name', 'ads_idol_floor2', 's', '2', '2', '0', '0', '0', '1', '3047', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1448', 'Kraken', 'lostc_octopus', 's', '1', '2', '1', '0', '0', '0', '3052', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1449', 'Marble Floor Tile', 'lc_tile1', 's', '2', '2', '0', '1', '0', '1', '3076', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1450', 'Small Jellyfish Lamp', 'lc_medusa2', 's', '1', '1', '1', '0', '0', '0', '3073', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1451', 'Sally Lightfoot', 'lc_crab2', 's', '1', '1', '1', '0', '0', '0', '3068', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1452', 'March Collectable 2009', 'lostc_teleport', 's', '1', '1', '0.001', '0', '0', '1', '3071', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1453', 'ads_idol_piano name', 'ads_idol_piano', 's', '2', '2', '1', '0', '0', '0', '3058', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1454', 'Large Coral Divider', 'lc_coral_divider_hi', 's', '2', '1', '1', '0', '0', '0', '3078', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1455', 'ads_711shelf name', 'ads_711shelf', 's', '1', '2', '1', '0', '0', '0', '3066', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1456', 'Water Tube Corner', 'lc_tubes_corners', 's', '1', '1', '1', '0', '0', '0', '3072', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1457', 'Captain\'s Table', 'lc_table', 's', '2', '2', '1', '1', '0', '0', '3067', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1458', 'Cobbled Stones', 'lc_tile2', 's', '2', '2', '0', '1', '0', '1', '3069', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1459', 'Anemone', 'lc_anemone', 's', '1', '1', '1', '0', '0', '0', '3074', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1460', 'Small Coral Divider', 'lc_coral_divider_low', 's', '2', '1', '1', '0', '0', '0', '3077', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1461', 'Ocean Window Rug', 'lc_glass_floor', 's', '2', '3', '0', '0', '0', '1', '3060', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1462', 'Large Jellyfish Lamp', 'lc_medusa1', 's', '1', '1', '1', '0', '0', '0', '3064', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1463', 'Crab Patch', 'lc_crab1', 's', '2', '2', '1', '0', '0', '0', '3062', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1464', 'ads_idol_jukebox name', 'ads_idol_jukebox*1', 's', '1', '1', '1', '0', '0', '0', '3059', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1465', 'ads_idol_pchair name', 'ads_idol_pchair', 's', '1', '1', '1', '0', '1', '0', '3056', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1466', 'Water Tube Straight', 'lc_tubes_straight', 's', '1', '1', '1', '0', '0', '0', '3065', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1467', 'ads_idol_audChr name', 'ads_idol_audChr', 's', '1', '1', '1', '0', '1', '0', '3057', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1468', 'ads_idol_trax name', 'ads_idol_trax', 's', '1', '1', '1', '0', '0', '0', '3055', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1469', 'ads_idol_tele', 'ads_idol_tele', 's', '1', '1', '0.001', '0', '0', '1', '3053', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1470', 'Wooden Corner', 'lc_corner', 's', '1', '1', '1', '1', '0', '0', '3075', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1471', 'Wooden Stool', 'lc_stool', 's', '1', '1', '1', '0', '1', '0', '3063', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1472', 'No rusty nails', 'lc_chair', 's', '1', '1', '1', '0', '1', '0', '3061', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1473', 'Wooden Bar Desk', 'lc_desk', 's', '2', '1', '1', '1', '0', '0', '3070', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1474', 'ads_idol_mic name', 'ads_idol_mic', 's', '1', '1', '1', '0', '0', '0', '3054', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1475', 'ads_idol_hotspot name', 'ads_idol_hotspot', 's', '1', '1', '0.2', '0', '0', '1', '3080', '1', '1', '0', '1', '1', 'default', '103', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1476', 'ads_idol_clRack name', 'ads_idol_clRack', 's', '3', '1', '1', '0', '0', '0', '3079', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1477', 'ads_idol_voting_ch name', 'ads_idol_voting_ch', 's', '1', '1', '1.2', '0', '1', '0', '3081', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1478', 'Ecotron prize', 'ecotron_box', 's', '1', '1', '1', '1', '0', '0', '3095', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1479', 'Eco Light 2', 'eco_light2', 's', '1', '1', '1', '1', '0', '0', '3082', '0', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1480', 'Eco Stool 3', 'eco_chair3', 's', '1', '1', '1', '0', '1', '0', '3094', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1481', 'Eco Coffee Table 3', 'eco_table3', 's', '2', '2', '1', '1', '0', '0', '3086', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1482', 'Eco Lamp 2', 'eco_lamp2', 's', '1', '1', '1', '1', '0', '0', '3092', '0', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1483', 'Eco Armchair 3', 'eco_sofa3', 's', '1', '1', '1', '0', '1', '0', '3088', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1484', 'Eco Coffee Table 2', 'eco_table2', 's', '2', '2', '1', '1', '0', '0', '3089', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1485', 'Fruit Bowl 2', 'eco_fruits2', 's', '1', '1', '1', '1', '0', '0', '3102', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1486', 'Eco Armchair 1', 'eco_sofa1', 's', '1', '1', '1', '0', '1', '0', '3096', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1487', 'Fruit Bowl 3', 'eco_fruits3', 's', '1', '1', '1', '1', '0', '0', '3104', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1488', 'Eco Light 1', 'eco_light1', 's', '1', '1', '1', '1', '0', '0', '3098', '0', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1489', 'Actually', 'eco_tree1', 's', '1', '1', '1', '0', '0', '0', '3093', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1490', 'Potted Cactus 2', 'eco_cactus2', 's', '1', '1', '1', '1', '0', '0', '3105', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1491', 'Talk To FRANK Brain Lamp', 'ads_frankb', 's', '1', '1', '1', '0', '0', '0', '3111', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1492', 'Road Signs', 'bump_signs', 's', '1', '1', '1', '0', '0', '0', '3090', '1', '1', '0', '0', '1', 'default', '7', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1493', 'Potted Cactus 1', 'eco_cactus1', 's', '1', '1', '1', '1', '0', '0', '3083', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1494', 'Eco Stool 2', 'eco_chair2', 's', '1', '1', '1', '0', '1', '0', '3106', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1495', 'Potted Cactus 3', 'eco_cactus3', 's', '1', '1', '1', '1', '0', '0', '3085', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1496', 'Bumper Tyres', 'bump_tires', 's', '1', '1', '0.8', '1', '0', '0', '3101', '1', '1', '0', '0', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1497', 'Traffic Lights', 'bump_lights', 's', '1', '1', '1', '0', '0', '0', '3103', '1', '1', '0', '0', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1498', 'Eco Lamp 3', 'eco_lamp3', 's', '1', '1', '1', '1', '0', '0', '3091', '0', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1499', 'Eco Coffee Table 1', 'eco_table1', 's', '2', '2', '1', '1', '0', '0', '3099', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1500', 'Eco Stool 1', 'eco_chair1', 's', '1', '1', '1', '0', '1', '0', '3084', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1501', 'Eco Armchair 2', 'eco_sofa2', 's', '1', '1', '1', '0', '1', '0', '3100', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1502', 'Road', 'bump_road', 's', '2', '2', '0', '1', '0', '1', '3110', '1', '1', '0', '0', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1503', 'Fruit Bowl 1', 'eco_fruits1', 's', '1', '1', '1', '1', '0', '0', '3107', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1504', 'Eco Lamp 1', 'eco_lamp1', 's', '1', '1', '1', '1', '0', '0', '3097', '0', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1505', 'Eco Light 3', 'eco_light3', 's', '1', '1', '1', '1', '0', '0', '3108', '0', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1506', 'Pear Tree', 'eco_tree2', 's', '1', '1', '1', '0', '0', '0', '3109', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1507', 'Totem Leg', 'totem_leg', 's', '1', '1', '1.2', '1', '0', '0', '3113', '1', '1', '0', '1', '1', 'default', '9', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1508', 'ads_grefusa_cactus name', 'ads_grefusa_cactus', 's', '1', '1', '1', '0', '0', '0', '3112', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1509', 'ads_idol_tube name', 'ads_idol_tube', 's', '1', '1', '1', '0', '0', '0', '3126', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1510', 'Executive Light', 'exe_light', 's', '1', '1', '0', '1', '0', '1', '3122', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1511', 'ads_idol_cork name', 'ads_idol_cork', 's', '3', '1', '1', '0', '0', '0', '3120', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1512', 'Idea Agency Jukebox', 'ads_cl_jukeb', 's', '1', '1', '1', '0', '0', '0', '3127', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1513', 'Grass patch', 'env_grass', 's', '2', '2', '0', '1', '0', '1', '3129', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1514', 'Forest Trunk Seat', 'env_tree3', 's', '1', '1', '1', '0', '0', '0', '3125', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1515', 'Eco Hedgerow', 'env_bushes', 's', '1', '2', '1', '0', '0', '0', '3115', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1516', 'Eco Hedgerows Gate', 'env_bushes_gate', 's', '1', '2', '0.001', '0', '0', '0', '3128', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1517', 'Executive Gate', 'exe_gate', 's', '1', '1', '0.001', '0', '0', '0', '3119', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1518', 'ads_idol_newsDsk name', 'ads_idol_newsDsk', 's', '2', '2', '1', '0', '0', '0', '3116', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1519', 'Forest Tree Chair', 'env_tree1', 's', '1', '1', '1', '0', '1', '0', '3117', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1520', 'Forest Tree Americana', 'env_tree2', 's', '1', '1', '1', '0', '1', '0', '3123', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1521', 'Cubist Light', 'exe_cubelight', 's', '1', '1', '1', '0', '0', '0', '3121', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1522', 'The Four Seasons Tree', 'env_tree4', 's', '2', '2', '1', '0', '0', '0', '3118', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1523', 'Sphere Lamp', 'exe_artlamp', 's', '1', '1', '1', '0', '0', '0', '3114', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1524', 'ads_idol_ichair name', 'ads_idol_ichair', 's', '1', '1', '1.4', '0', '1', '0', '3124', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1525', 'Wedding Cake', 'tray_cake', 's', '1', '1', '1', '0', '0', '0', '3133', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1526', 'ads_reebok_block2', 'ads_reebok_block2', 's', '2', '2', '0.8', '1', '0', '1', '3132', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1527', 'ads_malaco_rug_name', 'ads_malaco_rug', 's', '3', '3', '0', '0', '0', '1', '3135', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1528', 'Champagne Bucket', 'tray_champagne', 's', '1', '1', '1', '0', '0', '0', '3134', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1529', 'Champagne Tower', 'tray_glasstower', 's', '1', '1', '1', '0', '0', '0', '3130', '1', '1', '0', '1', '1', 'vendingmachine', '0', '40', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1530', 'ads_malaco_gu', 'ads_malaco_gu', 's', '1', '1', '1', '0', '0', '0', '3131', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1531', 'Idea Agency Super Cake', 'ads_clcake', 's', '1', '1', '1', '0', '0', '0', '3139', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1532', 'Idea Agency Sofa', 'ads_cl_sofa', 's', '2', '1', '1', '0', '1', '0', '3137', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1533', 'Function Table', 'ads_idol_tblCloth', 's', '2', '2', '1', '1', '0', '0', '3136', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1534', 'ads_idol_carpet name', 'ads_idol_carpet', 's', '2', '7', '0', '0', '0', '1', '3140', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1535', 'Function Lamp', 'ads_idol_lamp', 's', '1', '1', '0', '1', '0', '1', '3138', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1536', 'Rain Shower', 'country_rain', 's', '1', '1', '0', '1', '0', '1', '3153', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1537', 'Scarecrow', 'country_scarecrow', 's', '1', '1', '1', '0', '0', '0', '3160', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1538', 'Porta-House', 'env_telep', 's', '1', '1', '0.001', '0', '0', '0', '3161', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1539', 'Crop Field', 'country_soil', 's', '2', '2', '0', '1', '0', '1', '3145', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1540', 'Field Grass', 'country_grass', 's', '2', '2', '0', '1', '0', '1', '3162', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1541', 'The Golden Tablet', 'ads_goldtabl', 's', '1', '1', '1', '0', '0', '0', '3151', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1542', 'Witch Mushroom', 'eco_mush1', 's', '1', '1', '1', '1', '0', '0', '3142', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1543', 'Tractor', 'country_trctr', 's', '2', '2', '1', '0', '0', '0', '3147', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1544', 'Stone Wall', 'country_fnc2', 's', '2', '1', '1', '0', '0', '0', '3141', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1545', 'Stick Fence', 'country_fnc1', 's', '2', '1', '1', '0', '0', '0', '3154', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1546', 'Wishing Well', 'country_well', 's', '1', '1', '1', '0', '0', '0', '3149', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1547', 'Fairy Mushroom', 'eco_mush2', 's', '1', '1', '1', '1', '0', '0', '3155', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1548', 'Rainbow', 'country_rbw', 's', '1', '1', '1', '0', '0', '0', '3143', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1549', 'Golden Wheat', 'country_wheat', 's', '2', '2', '1', '0', '0', '0', '3163', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1550', 'Farm Gate', 'country_gate', 's', '2', '1', '0.001', '0', '0', '0', '3150', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1551', 'Country Trax', 'sound_set_72', 's', '1', '1', '0.2', '1', '0', '0', '3144', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1552', 'Wooden Stage', 'country_stage', 's', '2', '2', '1', '1', '0', '1', '3148', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1553', 'ads_calip_cola_1 name', 'ads_calip_cola*1', 's', '1', '1', '1', '0', '0', '0', '3156', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1554', 'ads_calip_cola_2 name', 'ads_calip_cola*2', 's', '1', '1', '1', '0', '0', '0', '3157', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1555', 'ads_calip_cola_3 name', 'ads_calip_cola*3', 's', '1', '1', '1', '0', '0', '0', '3158', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1556', 'ads_calip_cola_4 name', 'ads_calip_cola*4', 's', '1', '1', '1', '0', '0', '0', '3159', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1557', 'Log Bench', 'country_log', 's', '2', '1', '1', '0', '1', '0', '3146', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1558', 'Stone Pile', 'country_fnc3', 's', '1', '1', '1', '0', '0', '0', '3152', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1559', 'Wooden Patio Tile', 'country_patio', 's', '1', '1', '1', '0', '0', '0', '3166', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1560', 'Country Ditch Corner', 'country_corner', 's', '1', '1', '1', '0', '0', '0', '3164', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1561', 'Country Ditch', 'country_ditch', 's', '1', '2', '0.001', '0', '0', '0', '3165', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1562', 'ads_calip_chair name', 'ads_calip_chair', 's', '1', '1', '1', '0', '1', '0', '3168', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1563', 'ads_idol_trophy name', 'ads_idol_trophy', 's', '1', '1', '1', '0', '0', '0', '3169', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1564', 'Totem Spirit Head', 'totem_head', 's', '1', '1', '1.7', '1', '0', '0', '3167', '1', '1', '0', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1565', 'ads_calip_pool name', 'ads_calip_pool', 's', '2', '2', '0', '0', '0', '1', '3182', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1566', 'laptopdesk name', 'laptopdesk', 's', '2', '2', '1', '0', '0', '0', '3173', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1567', 'Skull', 'LT_skull', 's', '1', '1', '1', '0', '0', '0', '3189', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1568', 'Large Tribal Block', 'lt_stage2', 's', '2', '2', '0.9', '1', '0', '1', '3175', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1569', 'Lava Corner', 'lt_lavac', 's', '1', '1', '1', '0', '0', '0', '3180', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1570', 'Tribal Gate', 'lt_gate', 's', '2', '1', '0.001', '0', '0', '0', '3172', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1571', 'Planet of Eternity', 'saturn', 's', '1', '1', '1', '1', '0', '0', '3181', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1572', 'ads_calip_tele name', 'ads_calip_tele', 's', '1', '1', '0.001', '0', '0', '0', '3190', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1573', 'Stone Statue', 'lt_statue', 's', '1', '1', '1', '0', '0', '0', '3185', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1574', 'Tarantula', 'lt_spider', 's', '1', '1', '1', '0', '0', '0', '3178', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1575', 'Tribal Stone Wall', 'lt_stone2', 's', '2', '1', '1.2', '1', '0', '0', '3177', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1576', 'Tribal Seat', 'LT_throne', 's', '1', '1', '1.5', '0', '1', '0', '3171', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1577', 'audChr name', 'audChr', 's', '1', '1', '1', '0', '1', '0', '3179', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1578', 'Moss Patch', 'lt_patch', 's', '2', '2', '0', '1', '0', '1', '3188', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1579', 'Lava Ditch', 'lt_lava', 's', '1', '2', '1', '0', '0', '0', '3176', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1580', 'Small Tribal Torch', 'LT_pillar2', 's', '1', '1', '1', '0', '0', '0', '3170', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1581', 'Ant Hill', 'lt_bughill', 's', '1', '1', '1', '0', '0', '0', '3174', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1582', 'noticeboard name', 'noticeboard', 's', '3', '1', '1', '0', '0', '0', '3186', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1583', 'clrack name', 'clrack', 's', '3', '1', '0', '1', '0', '0', '3184', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1584', 'Large Tribal Torch', 'LT_pillar', 's', '1', '1', '1', '0', '0', '0', '3187', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1585', 'Small Tribal Block', 'lt_stage1', 's', '1', '1', '0.9', '1', '0', '1', '3183', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1586', 'transparent_floor name', 'transparent_floor', 's', '2', '2', '0', '1', '0', '1', '3199', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1587', 'ads_calip_lava name', 'ads_calip_lava', 's', '1', '1', '1', '0', '0', '0', '3197', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1588', 'Tribal Stone Corner', 'lt_stone1', 's', '1', '1', '1.2', '1', '0', '0', '3196', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1589', 'ads_calip_fan', 'ads_calip_fan', 's', '1', '1', '1', '0', '0', '0', '3198', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1590', 'voting_ch name', 'voting_ch', 's', '1', '1', '1.3', '0', '1', '0', '3201', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1591', 'Quick Coffee Stop', 'ads_mall_coffeem', 's', '1', '1', '1', '0', '0', '0', '3202', '1', '1', '0', '1', '1', 'vendingmachine', '0', '41', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1592', 'Totem Planet', 'totem_planet', 's', '1', '1', '1', '0', '0', '0', '3200', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1593', 'Don\'t worry', 'SF_reactor', 's', '1', '1', '1', '1', '0', '0', '3212', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1594', 'Pack all you want', 'SF_crate_2', 's', '2', '1', '1', '1', '0', '0', '3204', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1595', 'Space Crew Chair', 'SF_chair_blue', 's', '1', '1', '1.2', '0', '1', '0', '3207', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1596', 'Cryogenic Bed', 'sf_pod', 's', '1', '3', '1.36', '0', '0', '0', '3219', '1', '1', '0', '1', '1', 'bed', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1597', 'Command Console', 'SF_panel1', 's', '1', '1', '1', '0', '0', '0', '3217', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1598', 'Starship Table', 'SF_table', 's', '2', '2', '1', '1', '0', '0', '3220', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1599', 'Welcome aboard', 'SF_chair_green', 's', '1', '1', '1.2', '0', '1', '0', '3215', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1600', 'Small Crate', 'SF_crate_1', 's', '1', '1', '1', '1', '0', '0', '3205', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1601', 'Alien Lifeform', 'SF_alien', 's', '1', '1', '1', '0', '0', '0', '3210', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1602', 'Engineering Console', 'SF_panel2', 's', '2', '1', '1', '0', '0', '0', '3218', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1603', 'Display Gate', 'sf_gate', 's', '2', '1', '0.001', '0', '0', '0', '3221', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1604', 'Navigation Panel', 'SF_panel3', 's', '1', '1', '1', '0', '0', '0', '3208', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1605', 'Starship Floor 2', 'SF_floor_2', 's', '2', '2', '0', '1', '0', '1', '3211', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1606', 'Sci Fi Lamp', 'SF_lamp', 's', '1', '1', '1', '0', '0', '0', '3224', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1607', 'Captain\'s Chair', 'SF_chair_red', 's', '1', '1', '1.2', '0', '1', '0', '3223', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1608', 'Transparent Floor', 'sf_floor', 's', '2', '4', '0', '1', '0', '1', '3213', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1609', 'Starship Roof', 'sf_roof', 's', '2', '4', '0', '1', '0', '1', '3203', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1610', 'Light Pole', 'sf_stick', 's', '1', '1', '1', '0', '0', '0', '3206', '1', '1', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1611', 'Starship Floor 1', 'SF_floor_1', 's', '2', '2', '0', '1', '0', '1', '3222', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1612', ' sweets', 'ads_mall_kiosk', 's', '1', '2', '1', '0', '0', '0', '3216', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1613', 'Futuristic Teleport', 'sf_tele', 's', '1', '1', '0.001', '0', '0', '0', '3214', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1614', 'Sci Fi Roller', 'sf_roller', 's', '1', '1', '0.5', '1', '0', '1', '3209', '1', '1', '0', '1', '1', 'roller', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1615', 'Hot Trophy', 'prizetrophy_hot', 's', '1', '1', '1', '0', '0', '0', '3229', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1616', 'Pink Inflatable Raft', 'summer_raft1', 's', '1', '1', '1', '0', '1', '0', '3228', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1617', 'Cool Trophy', 'prizetrophy_cool', 's', '1', '1', '1', '0', '0', '0', '3225', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1618', 'Blue Inflatable Raft', 'summer_raft2', 's', '1', '1', '1', '0', '1', '0', '3227', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1619', 'ads_elisa_gnome name', 'ads_elisa_gnome', 's', '1', '1', '1', '0', '0', '0', '3226', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1620', 'Summer Cool Box', 'summer_icebox', 's', '1', '1', '1', '0', '0', '0', '3231', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1621', 'ads_oc_soda', 'ads_oc_soda', 's', '1', '1', '1', '0', '0', '0', '3230', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1622', 'Mars Patch', 'marsrug', 's', '2', '2', '0', '1', '0', '1', '3232', '1', '1', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1623', 'White Candle', 'rela_candle1', 's', '1', '1', '1', '0', '0', '0', '3238', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20066', 'Dead Tree', 'tree2', 's', '1', '1', '1', '0', '0', '0', '2104', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1625', 'Red Candles', 'rela_candles2', 's', '1', '1', '1', '0', '0', '0', '3245', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1626', 'Stones', 'rela_stone', 's', '1', '1', '0.5', '0', '0', '1', '3233', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1627', 'Wicker Chair', 'rela_hchair', 's', '1', '1', '1.3', '0', '1', '0', '3247', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1628', 'Red Candle', 'rela_candle2', 's', '1', '1', '1', '0', '0', '0', '3244', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1629', 'ads_711', 'ads_711*5', 's', '1', '1', '1', '0', '0', '0', '3241', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1630', 'ads_711', 'ads_711*6', 's', '1', '1', '1', '0', '0', '0', '3242', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1631', 'ads_711', 'ads_711*7', 's', '1', '1', '1', '0', '0', '0', '3243', '1', '1', '0', '1', '1', 'vendingmachine', '0', '19', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1632', 'Purple Candle', 'rela_candle3', 's', '1', '1', '1', '0', '0', '0', '3235', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1633', 'Asteroid', 'pix_asteroid', 's', '1', '1', '1', '1', '0', '0', '3237', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1634', 'Bushy Houseplant', 'rela_plant', 's', '1', '1', '1', '0', '0', '0', '3246', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1635', 'White Candles', 'rela_candles1', 's', '1', '1', '1', '0', '0', '0', '3234', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1636', 'Purple Candles', 'rela_candles3', 's', '1', '1', '1', '0', '0', '0', '3236', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1637', 'Orchid', 'rela_orchid', 's', '1', '1', '1', '0', '0', '0', '3239', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1638', 'Rocks', 'rela_rock', 's', '1', '1', '0.8', '0', '1', '0', '3248', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1639', 'ktchn_stove name', 'ktchn_stove', 's', '2', '1', '1', '0', '0', '0', '3256', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1640', 'ktchn_light name', 'ktchn_light', 's', '2', '1', '0', '1', '0', '1', '3258', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1641', 'ktchn_plates name', 'ktchn_plates', 's', '1', '1', '1', '0', '0', '0', '3263', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1642', 'ktchn_countr_1 name', 'ktchn_countr_1', 's', '1', '1', '1', '1', '0', '0', '3261', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1643', 'ktchn_pots name', 'ktchn_pots', 's', '2', '1', '0', '1', '0', '1', '3252', '1', '1', '0', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1644', 'ktchn_cornr name', 'ktchn_cornr', 's', '1', '1', '1', '0', '0', '0', '3257', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1645', 'ktchn_desk name', 'ktchn_desk', 's', '2', '1', '1', '1', '0', '0', '3260', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1646', 'ktchn_trash name', 'ktchn_trash', 's', '1', '1', '1', '0', '0', '0', '3264', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1647', 'ktchn_countr_2 name', 'ktchn_countr_2', 's', '2', '1', '1', '1', '0', '0', '3253', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1648', 'ktchn_bBlock name', 'ktchn_bBlock', 's', '1', '1', '1', '0', '0', '0', '3255', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1649', 'ktchn_dvdr name', 'ktchn_dvdr', 's', '2', '1', '1', '0', '0', '0', '3259', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1650', 'ktchn_inspctr name', 'ktchn_inspctr', 's', '1', '1', '1', '1', '0', '0', '3250', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1651', 'ktchn_fridge name', 'ktchn_fridge', 's', '1', '1', '1', '1', '0', '0', '3249', '1', '1', '0', '1', '1', 'vendingmachine', '0', '3,36,37,38', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1652', 'ads_1800tele', 'ads_1800tele', 's', '1', '1', '0.001', '0', '0', '0', '3251', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1653', 'ktchn_sink name', 'ktchn_sink', 's', '2', '1', '1', '0', '0', '0', '3262', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1654', 'ktchn_gate name', 'ktchn_gate', 's', '2', '1', '0.001', '0', '0', '0', '3254', '1', '1', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1655', 'Pad of stickies', 'post.it', 'i', '0', '0', '1', '0', '0', '0', '1', '0', '0', '0', '0', '1', 'postit', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1656', 'Heart Stickies', 'post.it.vd', 'i', '0', '0', '1', '0', '0', '0', '2', '0', '0', '0', '0', '1', 'postit', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20067', 'Green Hatch', 'divider_poly3*7', 's', '1', '1', '0.001', '0', '0', '0', '1930', '1', '1', '0', '1', '1', 'gate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20068', 'Idea Agency Lava Lamp', 'ads_cllava2', 's', '1', '1', '1', '0', '0', '0', '3021', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1665', 'Gothic Ectoplasm Fountain', 'gothicfountain', 'i', '0', '0', '1', '0', '0', '0', '4002', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1666', 'Retro Wall Lamp', 'hc_wall_lamp', 'i', '0', '0', '1', '0', '0', '0', '4003', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1667', 'Industrial Turbine', 'industrialfan', 'i', '0', '0', '1', '0', '0', '0', '4004', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1668', 'Gothic Torch', 'torch', 'i', '0', '0', '1', '0', '0', '0', '4005', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1669', 'Heart Light', 'val_heart', 'i', '0', '0', '1', '0', '0', '0', '4006', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1670', 'Mirror', 'wallmirror', 'i', '0', '0', '1', '0', '0', '0', '4007', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1671', 'Ninja Stars', 'jp_ninjastars', 'i', '0', '0', '1', '0', '0', '0', '4008', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1672', 'Habbowood Mirror', 'habw_mirror', 'i', '0', '0', '1', '0', '0', '0', '4009', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1673', 'So you gotta ask yourself', 'habbowheel', 'i', '0', '0', '1', '0', '0', '0', '4010', '1', '1', '0', '1', '1', 'habbowheel', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1674', 'Skull Guitar', 'guitar_skull', 'i', '0', '0', '1', '0', '0', '0', '4011', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1675', 'V Guitar', 'guitar_v', 'i', '0', '0', '1', '0', '0', '0', '4012', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1676', 'Christmas Lights', 'xmas_light', 'i', '0', '0', '1', '0', '0', '0', '4015', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1677', 'Anchor', 'hrella_poster_3', 'i', '0', '0', '1', '0', '0', '0', '4016', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1678', 'Life Buoy', 'hrella_poster_2', 'i', '0', '0', '1', '0', '0', '0', '4013', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1679', 'Porthole', 'hrella_poster_1', 'i', '0', '0', '1', '0', '0', '0', '4014', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1680', 'Swords', 'sw_swords', 'i', '0', '0', '1', '0', '0', '0', '4017', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1681', 'Mysterious Necklace', 'sw_stone', 'i', '0', '0', '1', '0', '0', '0', '4018', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1682', 'Ventilation Duct', 'sw_hole', 'i', '0', '0', '1', '0', '0', '0', '4019', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1683', 'Mood Light', 'roomdimmer', 'i', '0', '0', '1', '0', '0', '0', '4027', '1', '1', '0', '1', '1', 'dimmer', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1684', 'Bubble Juice Can', 'md_logo_wall', 'i', '0', '0', '1', '0', '0', '0', '4023', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1685', 'Kakejiku Hokusai', 'jp_sheet3', 'i', '0', '0', '1', '0', '0', '0', '4021', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1686', 'Kakejiku Ninjya', 'jp_sheet2', 'i', '0', '0', '1', '0', '0', '0', '4026', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1687', 'Kakejiku Ziritsu', 'jp_sheet1', 'i', '0', '0', '1', '0', '0', '0', '4024', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1688', 'Ancestral Scimitars', 'arabian_swords', 'i', '0', '0', '1', '0', '0', '0', '4020', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1689', 'Arabian Window Frame', 'arabian_wndw', 'i', '0', '0', '1', '0', '0', '0', '4022', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1690', 'Jungle Wallplant', 'tiki_wallplnt', 'i', '0', '0', '1', '0', '0', '0', '4030', '0', '0', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1691', 'Surfboard', 'tiki_surfboard', 'i', '0', '0', '1', '0', '0', '0', '4028', '1', '1', '0', '1', '1', 'default', '9', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1692', 'tampax_wall', 'tampax_wall', 'i', '0', '0', '1', '0', '0', '0', '4029', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1693', 'Single Window', 'window_single_default', 'i', '0', '0', '1', '0', '0', '0', '4031', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1694', 'Double Window', 'window_double_default', 'i', '0', '0', '1', '0', '0', '0', '4032', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1695', 'Window', 'noob_window_double', 'i', '0', '0', '1', '0', '0', '0', '4033', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1696', 'Bay Window', 'window_triple', 'i', '0', '0', '1', '0', '0', '0', '4045', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1697', 'Glass Square Window', 'window_square', 'i', '0', '0', '1', '0', '0', '0', '4036', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1698', 'Large Romantic Window', 'window_romantic_wide', 'i', '0', '0', '1', '0', '0', '0', '4041', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1699', 'Small Romantic Window', 'window_romantic_narrow', 'i', '0', '0', '1', '0', '0', '0', '4037', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1700', 'Grunge Window', 'window_grunge', 'i', '0', '0', '1', '0', '0', '0', '4044', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1701', 'Golden Window', 'window_golden', 'i', '0', '0', '1', '0', '0', '0', '4035', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1702', 'Large Oriental Window', 'window_chinese_wide', 'i', '0', '0', '1', '0', '0', '0', '4034', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1703', 'Small Oriental Window', 'window_chinese_narrow', 'i', '0', '0', '1', '0', '0', '0', '4038', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1704', 'Basic Window', 'window_basic', 'i', '0', '0', '1', '0', '0', '0', '4042', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1705', 'Large 70s Window', 'window_70s_wide', 'i', '0', '0', '1', '0', '0', '0', '4039', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1706', 'Small 70s Window', 'window_70s_narrow', 'i', '0', '0', '1', '0', '0', '0', '4040', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1707', 'Sunny Delight', 'ads_sunnyd', 'i', '0', '0', '1', '0', '0', '0', '4043', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1708', 'Good grub', 'window_diner2', 'i', '0', '0', '1', '0', '0', '0', '4046', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1709', 'Large Diner Window', 'window_diner', 'i', '0', '0', '1', '0', '0', '0', '4049', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1710', 'Diner Side Table', 'diner_walltable', 'i', '0', '0', '1', '0', '0', '0', '4048', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1711', 'ads_dave_wall', 'ads_dave_wall', 'i', '0', '0', '1', '0', '0', '0', '4047', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1712', 'Window', 'window_hole', 'i', '0', '0', '1', '0', '0', '0', '4052', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1713', 'easy_poster', 'easy_poster', 'i', '0', '0', '1', '0', '0', '0', '4051', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1714', 'ads_nokia_logo name', 'ads_nokia_logo', 'i', '0', '0', '1', '0', '0', '0', '4050', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1715', 'ads_nokia_phone name', 'ads_nokia_phone', 'i', '0', '0', '1', '0', '0', '0', '4053', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1717', 'Skyscraper Window', 'window_skyscraper', 'i', '0', '0', '1', '0', '0', '0', '4054', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1718', 'netari_poster', 'netari_poster', 'i', '0', '0', '1', '0', '0', '0', '4057', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1719', 'Bullet Hole', 'det_bhole', 'i', '0', '0', '1', '0', '0', '0', '4056', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1720', 'Red V Guitar', 'ads_campguitar', 'i', '0', '0', '1', '0', '0', '0', '4058', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1721', 'Nuclear Radiation Sign', 'hween08_rad', 'i', '0', '0', '1', '0', '0', '0', '4059', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1722', 'Broken Window (small)', 'hween08_wndwb', 'i', '0', '0', '1', '0', '0', '0', '4061', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1723', 'Broken Window (large)', 'hween08_wndw', 'i', '0', '0', '1', '0', '0', '0', '4062', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1724', 'Biohazard Sign', 'hween08_bio', 'i', '0', '0', '1', '0', '0', '0', '4063', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1725', 'X-Ray Light Box', 'hw_08_xray', 'i', '0', '0', '1', '0', '0', '0', '4060', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1726', 'Red Gothic Fountain', 'gothicfountain2', 'i', '0', '0', '1', '0', '0', '0', '4065', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20052', 'Volturi Crest', 'ads_twi_crest', 'i', '0', '0', '1', '1', '0', '0', '4275', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1728', 'TBD Central Musical TV', 'ads_cmusic', 'i', '0', '0', '1', '0', '0', '0', '4067', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1729', 'Stand up or sitting down', 'party_wc_boy', 'i', '0', '0', '1', '0', '0', '0', '4070', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1730', 'Big Wall Lights', 'party_led', 'i', '0', '0', '1', '0', '0', '0', '4066', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1731', 'Neon Heart Light', 'party_neon5', 'i', '0', '0', '1', '0', '0', '0', '4074', '1', '1', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1732', 'Neon Right Arrows', 'party_neon1', 'i', '0', '0', '1', '0', '0', '0', '4069', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1733', 'Neon Left Arrows', 'party_neon2', 'i', '0', '0', '1', '0', '0', '0', '4073', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1734', 'Girls Toilets', 'party_wc_girl', 'i', '0', '0', '1', '0', '0', '0', '4068', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1735', 'Neon Pink Flamingo', 'party_neon3', 'i', '0', '0', '1', '0', '0', '0', '4075', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1736', 'Bar Shelf', 'party_shelf', 'i', '0', '0', '1', '0', '0', '0', '4071', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1737', 'Neon Skull Light', 'party_neon4', 'i', '0', '0', '1', '0', '0', '0', '4072', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1738', 'Snowy Posters', 'xmas08_wallpaper', 'i', '0', '0', '1', '0', '0', '0', '4077', '0', '0', '0', '1', '1', 'roomeffect', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1739', 'Icy Wall', 'xmas08_icewall', 'i', '0', '0', '1', '0', '0', '0', '4076', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1741', 'Idea Agency Plasma 1', 'ads_clwall1', 'i', '0', '0', '1', '0', '0', '0', '4082', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1742', 'Idea Agency Plasma 2', 'ads_clwall2', 'i', '0', '0', '1', '0', '0', '0', '4078', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1743', 'Idea Agency Plasma 3', 'ads_clwall3', 'i', '0', '0', '1', '0', '0', '0', '4079', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1744', 'ads_ob_wall', 'ads_ob_wall', 'i', '0', '0', '1', '0', '0', '0', '4081', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1745', 'Mall Window', 'ads_mall_window', 'i', '0', '0', '1', '0', '0', '0', '4083', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1746', 'Dragon Poster', 'china_pstr2', 'i', '0', '0', '1', '0', '0', '0', '4085', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1747', 'Chinese Wall Lamp', 'china_light', 'i', '0', '0', '1', '0', '0', '0', '4086', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1748', 'Ox Poster', 'china_pstr1', 'i', '0', '0', '1', '0', '0', '0', '4084', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1749', 'Bolly Window', 'bolly_wdw_wd', 'i', '0', '0', '1', '0', '0', '0', '4087', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1750', 'Monster Plan Poster', 'ads_igor_wall', 'i', '0', '0', '1', '0', '0', '0', '4090', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1751', 'Evil Bone', 'ads_igorevilb', 'i', '0', '0', '1', '0', '0', '0', '4089', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1752', 'ads_idol_wall name', 'ads_idol_wall', 'i', '0', '0', '1', '0', '0', '0', '4088', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1753', 'Mall Furni Showroom', 'ads_mall_winfur', 'i', '0', '0', '1', '0', '0', '0', '4092', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1754', 'Mall Pet Shop Window', 'ads_mall_winpet', 'i', '0', '0', '1', '0', '0', '0', '4091', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1755', 'Rock Wall', 'lc_wall1', 'i', '0', '0', '1', '0', '0', '0', '4095', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1756', 'Aquarium Window', 'lc_window2', 'i', '0', '0', '1', '0', '0', '0', '4096', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1757', 'Wooden Window', 'lc_window1', 'i', '0', '0', '1', '0', '0', '0', '4094', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1758', 'American Idol TV', 'ads_idol_tv', 'i', '0', '0', '1', '0', '0', '0', '4093', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1759', 'Coral Wall', 'lc_wall2', 'i', '0', '0', '1', '0', '0', '0', '4097', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1760', 'ads_idol_mirror name', 'ads_idol_mirror', 'i', '0', '0', '1', '0', '0', '0', '4099', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1761', 'Mall Cinema Window', 'ads_mall_wincin', 'i', '0', '0', '1', '0', '0', '0', '4098', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1762', 'Strum', 'ads_mall_winmus', 'i', '0', '0', '1', '0', '0', '0', '4101', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1763', 'Mall Beauty Salon', 'ads_mall_winbea', 'i', '0', '0', '1', '0', '0', '0', '4100', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1764', 'Eco Curtain 1', 'eco_curtains1', 'i', '0', '0', '1', '0', '0', '0', '4105', '0', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1765', 'Mall Idea Agency Window', 'ads_mall_winchi', 'i', '0', '0', '1', '0', '0', '0', '4103', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1766', 'Eco Curtain 3', 'eco_curtains3', 'i', '0', '0', '1', '0', '0', '0', '4104', '0', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1767', 'Eco Curtain 2', 'eco_curtains2', 'i', '0', '0', '1', '0', '0', '0', '4102', '0', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1768', 'Mall Ice Cream Parlour Window', 'ads_mall_winice', 'i', '0', '0', '1', '0', '0', '0', '4109', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1769', 'Whatever your sporting dibble', 'ads_mall_winspo', 'i', '0', '0', '1', '0', '0', '0', '4106', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1770', 'ads_idol_logo name', 'ads_idol_logo', 'i', '0', '0', '1', '0', '0', '0', '4108', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1771', 'World Map', 'exe_map', 'i', '0', '0', '1', '0', '0', '0', '4110', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1772', 'Wall Fall', 'exe_wfall', 'i', '0', '0', '1', '0', '0', '0', '4107', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1773', 'ads_lin_wh_c name', 'ads_lin_wh_c', 'i', '0', '0', '1', '0', '0', '0', '4115', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1774', 'ads_malaco_tv name', 'ads_malaco_tv', 'i', '0', '0', '1', '0', '0', '0', '4113', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1775', 'ads_puffet_tv name', 'ads_puffet_tv', 'i', '0', '0', '1', '0', '0', '0', '4111', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1776', 'ads_reebok_tv name', 'ads_reebok_tv', 'i', '0', '0', '1', '0', '0', '0', '4112', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1777', 'Forest Wall Poster', 'country_forestwall', 'i', '0', '0', '1', '0', '0', '0', '4114', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1778', 'Marble Fireplace', 'country_fp', 'i', '0', '0', '1', '0', '0', '0', '4117', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1779', 'Farmhouse Wall', 'country_wall', 'i', '0', '0', '1', '0', '0', '0', '4118', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1780', 'Ye Olde Lantern', 'country_lantern', 'i', '0', '0', '1', '0', '0', '0', '4116', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1781', 'Norwegian Flag', 'flag_norway', 'i', '0', '0', '1', '0', '0', '0', '4119', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1782', 'Diner Poster', 'diner_poster', 'i', '0', '0', '1', '0', '0', '0', '4120', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1783', '', 'lt_jngl_wall', 'i', '0', '0', '1', '0', '0', '0', '4121', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1784', 'ads_mirror name', 'ads_mirror', 'i', '0', '0', '1', '0', '0', '0', '4122', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1785', 'lt_wall', 'lt_wall', 'i', '0', '0', '1', '0', '0', '0', '4123', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1787', 'Starship Window', 'sf_window', 'i', '0', '0', '1', '0', '0', '0', '4224', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1788', 'Starship Wall', 'sf_wall2', 'i', '0', '0', '1', '0', '0', '0', '4228', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1789', 'ads_wwe_poster name', 'ads_wwe_poster', 'i', '0', '0', '1', '0', '0', '0', '4226', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1790', 'Fly me to the moon', 'ads_mall_wintra', 'i', '0', '0', '1', '0', '0', '0', '4225', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1791', 'Starship Corner', 'sf_wall3', 'i', '0', '0', '1', '0', '0', '0', '4223', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1793', 'ads_veet name', 'ads_veet', 'i', '0', '0', '1', '0', '0', '0', '4222', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1794', 'Wall Tiles', 'rela_wall', 'i', '0', '0', '1', '0', '0', '0', '4232', '1', '1', '0', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1795', 'flag_belgium', 'flag_belgium', 'i', '0', '0', '1', '0', '0', '0', '4229', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1796', 'flag_portugal', 'flag_portugal', 'i', '0', '0', '1', '0', '0', '0', '4231', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1797', 'ads_mall_wingar', 'ads_mall_wingar', 'i', '0', '0', '1', '0', '0', '0', '4230', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1798', 'ktchn_wall name', 'ktchn_wall', 'i', '0', '0', '1', '0', '0', '0', '4235', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1799', 'ads_mall_winclo', 'ads_mall_winclo', 'i', '0', '0', '1', '0', '0', '0', '4236', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1800', 'ktchn_oven name', 'ktchn_oven', 'i', '0', '0', '1', '0', '0', '0', '4234', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1801', 'ktchn_knives name', 'ktchn_knives', 'i', '0', '0', '1', '0', '0', '0', '4233', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1802', 'Mood Controller (Large)', 'dimmer_fuse6', 'i', '0', '0', '1', '0', '0', '0', '4240', '1', '1', '0', '1', '1', 'dimmer', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1803', 'Mood Switch (Large)', 'dimmer_swtch', 'i', '0', '0', '1', '0', '0', '0', '4237', '1', '1', '0', '1', '1', 'dimmer', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1804', 'Mood Controller (Small)', 'dimmer_fuse2', 'i', '0', '0', '1', '0', '0', '0', '4239', '1', '1', '0', '1', '1', 'dimmer', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('1805', 'Mood Switch (Small)', 'dimmer_buttn', 'i', '0', '0', '1', '0', '0', '0', '4238', '1', '1', '0', '1', '1', 'dimmer', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19877', '', 'avatar_effect9', 'e', '1', '1', '1', '0', '0', '0', '9', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19878', '', 'avatar_effect6', 'e', '1', '1', '1', '0', '0', '0', '6', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19879', '', 'avatar_effect16', 'e', '1', '1', '1', '0', '0', '0', '16', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19880', '', 'avatar_effect2', 'e', '1', '1', '1', '0', '0', '0', '2', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19881', '', 'avatar_effect14', 'e', '1', '1', '1', '0', '0', '0', '14', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19882', '', 'avatar_effect15', 'e', '1', '1', '1', '0', '0', '0', '15', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19883', '', 'avatar_effect3', 'e', '1', '1', '1', '0', '0', '0', '3', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19884', '', 'avatar_effect17', 'e', '1', '1', '1', '0', '0', '0', '17', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19885', '', 'avatar_effect18', 'e', '1', '1', '1', '0', '0', '0', '18', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19886', '', 'avatar_effect1', 'e', '1', '1', '1', '0', '0', '0', '1', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19887', '', 'avatar_effect4', 'e', '1', '1', '1', '0', '0', '0', '4', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19888', '', 'avatar_effect5', 'e', '1', '1', '1', '0', '0', '0', '5', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19889', '', 'avatar_effect7', 'e', '1', '1', '1', '0', '0', '0', '7', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19890', '', 'avatar_effect8', 'e', '1', '1', '1', '0', '0', '0', '8', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19891', '', 'avatar_effect10', 'e', '1', '1', '1', '0', '0', '0', '10', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19892', '', 'avatar_effect12', 'e', '1', '1', '1', '0', '0', '0', '12', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19893', '', 'avatar_effect13', 'e', '1', '1', '1', '0', '0', '0', '13', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19894', '', 'a2 l', 'i', '1', '1', '1', '0', '0', '0', '3002', '0', '0', '0', '1', '0', 'roomeffect', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19895', '', 'a2 t', 'i', '1', '1', '1', '0', '0', '0', '3001', '0', '0', '0', '1', '0', 'roomeffect', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19896', '', 'wallpaper 1', 'i', '1', '1', '1', '0', '0', '0', '3001', '0', '0', '0', '1', '0', 'roomeffect', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19926', '', 'landscape 10', 'i', '1', '1', '1', '0', '0', '0', '4055', '0', '0', '0', '1', '0', 'roomeffect', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19938', '', 'hween09_floor', 's', '2', '2', '0', '1', '0', '1', '3288', '0', '0', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19939', '', 'hween09_jar', 's', '1', '1', '1', '0', '0', '0', '3287', '0', '0', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19940', 'City Bench (Clean)', 'urban_bench_plain', 's', '2', '1', '1', '0', '1', '0', '3284', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19941', '', 'hween09_organ', 's', '2', '1', '1', '0', '0', '0', '3282', '0', '0', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19942', '', 'byesw_hand', 's', '1', '1', '1.35', '0', '1', '0', '3291', '0', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19943', '', 'byesw_hotel', 's', '1', '1', '1', '0', '0', '0', '3289', '0', '1', '0', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19944', '', 'hween09_table', 's', '1', '3', '1', '0', '0', '0', '3286', '0', '0', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19945', '', 'hween09_chair', 's', '1', '1', '1', '0', '1', '0', '3295', '0', '0', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19946', '', 'hween09_mirror', 's', '1', '1', '1', '0', '1', '0', '3293', '0', '0', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19947', 'Trap Door', 'hween09_hatch', 's', '2', '2', '0.001', '0', '0', '1', '3285', '0', '0', '0', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19948', '', 'hween09_ghost', 's', '1', '1', '1', '0', '0', '0', '3290', '0', '0', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19949', '', 'hween09_tv', 's', '2', '1', '1', '0', '0', '0', '3292', '0', '0', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19950', '', 'hween09_chandelier', 's', '1', '1', '1', '0', '0', '1', '3294', '0', '0', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19951', '', 'hween09_crnr1', 'i', '0', '0', '1', '0', '0', '0', '4247', '0', '0', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19952', '', 'hween09_paint', 'i', '0', '0', '1', '0', '0', '0', '4263', '0', '0', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19953', '', 'hween09_treewall', 'i', '0', '0', '1', '0', '0', '0', '4269', '0', '0', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19954', '', 'hween09_wall1', 'i', '0', '0', '1', '0', '0', '0', '4257', '0', '0', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19955', '', 'hween09_stonewall', 'i', '0', '0', '1', '0', '0', '0', '4259', '0', '0', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19956', '', 'hween09_win', 'i', '0', '0', '1', '0', '0', '0', '4271', '0', '0', '0', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19957', '', 'avatar_effect22', 'e', '1', '1', '1', '0', '0', '0', '22', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19958', '', 'avatar_effect19', 'e', '1', '1', '1', '0', '0', '0', '19', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19959', '', 'avatar_effect20', 'e', '1', '1', '1', '0', '0', '0', '20', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19960', '', 'avatar_effect21', 'e', '1', '1', '1', '0', '0', '0', '21', '0', '0', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19989', 'Snowman Base', 'xm09_man_a', 's', '1', '1', '1', '1', '0', '0', '3330', '1', '1', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19971', 'Snowman Middle', 'xm09_man_b', 's', '1', '1', '0.8', '1', '0', '0', '3328', '1', '1', '0', '1', '1', 'default', '9', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19972', 'Snowman Head', 'xm09_man_c', 's', '1', '1', '1', '0', '0', '0', '3329', '1', '1', '0', '1', '1', 'default', '8', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19973', 'Christmas Table', 'xm09_table', 's', '2', '6', '1', '1', '0', '0', '3335', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19974', '6-Seater Bench', 'xm09_bench', 's', '6', '1', '1', '0', '1', '0', '3340', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19976', 'Snowy Fir Trees', 'xm09_firwall', 'i', '0', '0', '1', '0', '0', '0', '4307', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19977', 'Snowy Forest', 'xm09_forestwall', 'i', '0', '0', '1', '0', '0', '0', '4308', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19978', 'Lodge Wall', 'xm09_lodgewall', 'i', '0', '0', '1', '1', '0', '0', '4311', '0', '1', '0', '1', '1', 'default', '8', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19979', 'Gold Heart Bauble', 'xm09_bauble_25', 'i', '0', '0', '1', '1', '0', '0', '4286', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19980', 'Silver Heart Bauble', 'xm09_bauble_26', 'i', '0', '0', '1', '1', '0', '0', '4306', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19981', 'Pink Heart Bauble', 'xm09_bauble_27', 'i', '0', '0', '1', '1', '0', '0', '4279', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19982', 'Pink Heart Bauble', 'xm09_bauble_27', 'i', '0', '0', '1', '1', '0', '0', '4313', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19983', 'Blue Heart Bauble', 'xm09_bauble_23', 'i', '0', '0', '1', '1', '0', '0', '4292', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19984', 'Green Heart Bauble', 'xm09_bauble_24', 'i', '0', '0', '1', '1', '0', '0', '4278', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19985', 'Candy Cane', 'xm09_candyCane', 's', '1', '1', '1', '0', '0', '0', '3314', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19986', 'Big Stocking', 'xm09_stocking', 'i', '0', '0', '1', '1', '0', '0', '4280', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19994', 'Fountain', 'ads_twi_fountn', 's', '2', '2', '1', '0', '0', '0', '3301', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19995', 'Clock Tower wall', 'ads_twi_dvdr2', 's', '2', '1', '1', '0', '0', '0', '3302', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19996', 'Standing Rose Bouquet', 'ads_twi_roses', 's', '1', '1', '1', '0', '0', '0', '3304', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19997', 'Cake on Table with Presents', 'ads_twi_table', 's', '2', '2', '1', '0', '0', '0', '3297', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19998', 'Volturi Royal Chair', 'ads_twi_chair', 's', '1', '1', '1', '0', '1', '0', '3300', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('19999', 'Half wall', 'ads_twi_dvdr1', 's', '2', '1', '1', '0', '0', '0', '3303', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20000', 'Broken Piano', 'ads_twi_piano', 's', '2', '2', '1', '0', '0', '0', '3299', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20001', 'ads_twi_tower name', 'ads_twi_tower', 's', '1', '1', '1', '0', '0', '0', '3298', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20002', 'Toolbox', 'ads_twi_toolbx', 's', '1', '1', '1', '0', '0', '0', '3296', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20003', 'Mist', 'ads_twi_mist', 's', '1', '1', '0', '1', '0', '1', '3308', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20011', 'Water Hydrant', 'urban_wpost', 's', '1', '1', '1', '0', '0', '0', '3272', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20010', 'Pavement Slab', 'urban_sidewalk', 's', '2', '2', '0.2', '1', '0', '1', '3274', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20008', 'City Bench (Dirty)', 'urban_bench', 's', '2', '1', '1', '0', '1', '0', '3269', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20007', 'Taxi Sofa', 'urban_carsofa', 's', '2', '1', '1', '0', '1', '0', '3268', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20014', 'Concrete Block', 'urban_blocker', 's', '1', '1', '1', '0', '0', '0', '3270', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20013', 'Garbage Bin', 'urban_bin', 's', '1', '1', '1', '0', '0', '0', '3266', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20012', 'Mesh Fencing', 'urban_fence', 's', '1', '2', '1', '0', '0', '0', '3267', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20015', 'Basketball Pole', 'urban_bsktbll', 's', '1', '1', '1', '0', '0', '0', '3271', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20025', 'Terracotta Pillar', 'pillar*6', 's', '1', '1', '1', '0', '0', '0', '1609', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20026', 'Urban Iced Bookcase', 'shelves_norja*4', 's', '1', '1', '1', '0', '0', '0', '1795', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20027', 'Black Mode Double Bed', 'bed_polyfon*2', 's', '2', '3', '1.8', '0', '0', '0', '1895', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20028', 'Blue Iced Angle', 'divider_nor5*6', 's', '1', '1', '1', '0', '0', '0', '1995', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20029', 'Valentine\'s Cauldron', 'val_cauldron', 's', '1', '1', '1', '0', '0', '0', '2103', '1', '1', '0', '1', '1', 'vendingmachine', '0', '25', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20030', 'Aqua Pura Module 5', 'pura_mdl5*1', 's', '1', '1', '1', '0', '1', '0', '2509', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20031', 'Aqua One Way Gate', 'one_way_door*1', 's', '1', '1', '0.001', '0', '0', '0', '2597', '1', '1', '0', '1', '1', 'onewaygate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20032', 'Power Globe', 'exe_globe', 's', '1', '1', '1', '0', '0', '0', '2672', '1', '1', '0', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20034', 'Latte Diner Corner', 'diner_bardesk_corner*5', 's', '1', '1', '1', '1', '0', '0', '2874', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20035', 'Bubbles', 'fx_bubble', 's', '1', '1', '1', '1', '0', '0', '3012', '0', '0', '0', '0', '1', 'rentals', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20036', 'Safety Cone', 'bump_tottero', 's', '1', '1', '1', '0', '0', '0', '3087', '1', '1', '0', '0', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20037', 'ads_calip_parasol name', 'ads_calip_parasol', 's', '1', '1', '1', '0', '0', '0', '3195', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20041', '2010 Poster', 'year2010', 'i', '0', '0', '1', '1', '0', '0', '4313', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20042', 'Party Lantern', 'party_lantern', 's', '1', '1', '0', '1', '0', '1', '3327', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20043', 'Party Lights', 'party_lights', 'i', '0', '0', '1', '0', '0', '0', '4310', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20047', 'Soothing Stick', 'rela_stick', 's', '1', '1', '1', '0', '0', '0', '3240', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20048', 'Mall Lift', 'ads_mall_elevator', 's', '1', '1', '0.001', '0', '0', '0', '3306', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20050', 'Flatscreen TV', 'xm09_infotv', 'i', '0', '0', '1', '1', '0', '0', '4309', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20051', 'Twilight Trophy', 'ads_twi_trophy', 's', '1', '1', '1', '1', '0', '0', '3311', '1', '1', '0', '1', '1', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20053', 'Painting', 'ads_twi_paint', 'i', '0', '0', '1', '1', '0', '0', '4272', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20054', 'Window with Candles', 'ads_twi_windw', 'i', '0', '0', '1', '1', '0', '0', '4277', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20055', 'Truck and Motorcycles', 'ads_twi_bwall2', 'i', '0', '0', '1', '1', '0', '0', '4276', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20056', 'Dream Catcher', 'ads_twi_dreamc', 'i', '0', '0', '1', '1', '0', '0', '4273', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20057', 'Barn Wall', 'ads_twi_bwall1', 'i', '0', '0', '1', '1', '0', '0', '4274', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20059', 'Arabian Wall', 'arabian_wall', 'i', '0', '0', '1', '1', '0', '0', '4287', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20060', 'DEAL_HC_1', 'DEAL_HC_1', 'h', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'default', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20072', 'ads_gsArcade_1 name', 'ads_gsArcade_1', 's', '1', '1', '1', '1', '0', '0', '3277', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20063', 'Hot Choc Machine', 'xm09_cocoa', 's', '1', '1', '1', '1', '0', '0', '3337', '1', '1', '0', '1', '1', 'vendingmachine', '0', '10', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20064', 'Astro-Bar', 'sf_mbar', 's', '1', '1', '1', '1', '0', '0', '3273', '1', '1', '0', '1', '1', 'vendingmachine', '0', '44', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20074', 'Silver MTV EMA Trophy', 'ads_mtvtrophy_silver', 's', '1', '1', '1', '0', '0', '0', '3281', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20075', 'ads_spang_sleep', 'ads_spang_sleep', 's', '1', '3', '0.8', '1', '0', '0', '3280', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20076', 'Gold MTV EMA Trophy', 'ads_mtvtrophy_gold', 's', '1', '1', '1', '0', '0', '0', '3279', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20077', 'ktchn_hlthNut name', 'ktchn_hlthNut', 's', '1', '1', '1', '1', '0', '0', '3307', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20078', 'Chicken', 'petfood8', 's', '1', '1', '1', '1', '0', '0', '3325', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20079', 'nest_plow_reg', 'nest_plow_reg', 's', '1', '1', '1', '1', '0', '0', '3318', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20080', 'Yellow Pet Snuggle', 'nest_snug_yel', 's', '1', '1', '1', '1', '0', '0', '3319', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20081', 'Salmon', 'petfood9', 's', '1', '1', '1', '1', '0', '0', '3322', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20082', 'Leveling Cake', 'petfood10', 's', '1', '1', '1', '1', '0', '0', '3326', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20083', 'Ice Apples', 'petfood7', 's', '1', '1', '1', '1', '0', '0', '3321', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20084', 'Red Apples', 'petfood6', 's', '1', '1', '1', '1', '0', '0', '3323', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20085', 'Green Pet Snuggle', 'nest_snug_grn', 's', '1', '1', '1', '1', '0', '0', '3310', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20086', 'nest_snug_red', 'nest_snug_red', 's', '1', '1', '1', '1', '0', '0', '3317', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20087', 'Green Pet Snuggle', 'nest_snug_grn', 's', '1', '1', '1', '1', '0', '0', '3023', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20088', 'nest_plow_bro', 'nest_plow_bro', 's', '1', '1', '1', '1', '0', '0', '3309', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20089', 'Red Pet Pillow', 'nest_plow_red', 's', '1', '1', '1', '1', '0', '0', '3320', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20090', 'nest_snug_blu', 'nest_snug_blu', 's', '1', '1', '1', '1', '0', '0', '3315', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20091', 'Green Apples', 'petfood5', 's', '1', '1', '1', '1', '0', '0', '3324', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20092', 'Blue Pet Pillow', 'nest_plow_blu', 's', '1', '1', '1', '1', '0', '0', '3316', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20093', 'Giant Bauble', 'xm09_lrgBauble', 's', '1', '1', '1', '1', '0', '0', '3313', '1', '1', '0', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20094', 'nest_dirt', 'nest_dirt', 's', '1', '1', '1', '1', '0', '0', '3331', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20095', 'nest_snug_prp', 'nest_snug_prp', 's', '1', '1', '1', '1', '0', '0', '3332', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20096', 'nest_nest', 'nest_nest', 's', '1', '1', '1', '1', '0', '0', '3334', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20097', 'nest_nails', 'nest_nails', 's', '1', '1', '1', '1', '0', '0', '3336', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20098', 'nest_basket', 'nest_basket', 's', '1', '1', '1', '1', '0', '0', '3333', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20099', 'Polar Bear Nest', 'nest_ice', 's', '1', '1', '1', '1', '0', '0', '3339', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20100', 'nest_plow_skl', 'nest_plow_skl', 's', '1', '1', '1', '1', '0', '0', '3341', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20101', 'nest_snug_bla', 'nest_snug_bla', 's', '1', '1', '1', '1', '0', '0', '3338', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20102', 'The Moodi Machine', 'ads_cl_moodi', 's', '1', '1', '1', '1', '0', '0', '3342', '1', '1', '0', '1', '1', 'vendingmachine', '1', '46,47,45', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20103', 'org_chairpnk', 'org_chairpnk', 's', '1', '1', '1.2', '0', '1', '0', '3354', '1', '1', '0', '1', '1', 'default', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20104', 'org_tblpnk', 'org_tblpnk', 's', '1', '1', '1', '1', '0', '0', '3352', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20105', 'org_lampblk', 'org_lampblk', 's', '1', '1', '1.2', '0', '0', '0', '3353', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20106', 'org_lamppnk', 'org_lamppnk', 's', '1', '1', '1.2', '0', '0', '0', '3348', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20107', 'org_table', 'org_table', 's', '2', '2', '1', '1', '0', '0', '3356', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20108', 'china_tiger', 'china_tiger', 's', '1', '1', '1', '1', '0', '0', '3344', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20109', 'xm09_trophy name', 'xm09_trophy', 's', '1', '1', '1', '1', '0', '0', '3351', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20110', 'china_plmTree name', 'china_plmTree', 's', '1', '1', '1', '1', '0', '0', '3355', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20111', 'org_chairblk', 'org_chairblk', 's', '1', '1', '1.2', '0', '1', '0', '3349', '1', '1', '0', '1', '1', 'default', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20112', 'org_tblblk', 'org_tblblk', 's', '1', '1', '1', '1', '0', '0', '3347', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20113', 'org_chrblk', 'org_chrblk', 's', '1', '1', '1.2', '0', '1', '0', '3345', '1', '1', '0', '1', '1', 'default', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20114', 'china_tigrSeat name', 'china_tigrSeat', 's', '1', '2', '1', '1', '0', '0', '3346', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20115', 'org_chrpnk', 'org_chrpnk', 's', '1', '1', '1.2', '0', '1', '0', '3350', '1', '1', '0', '1', '1', 'default', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20116', 'ads_chups name', 'ads_chups', 's', '1', '1', '1', '1', '0', '0', '3367', '1', '1', '0', '1', '1', 'vendingmachine', '1', '48', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20117', 'bling_fridge', 'bling_fridge', 's', '1', '1', '1', '0', '0', '0', '3366', '1', '1', '0', '1', '1', 'vendingmachine', '0', '50', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20118', 'petfood12 name', 'petfood12', 's', '1', '1', '1', '1', '0', '0', '3370', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20119', 'ads_droetker_paula name', 'ads_droetker_paula', 's', '1', '1', '1', '1', '0', '0', '3365', '1', '1', '0', '1', '1', 'vendingmachine', '1', '49', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20120', 'petfood11 name', 'petfood11', 's', '1', '1', '1', '1', '0', '0', '3358', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20121', 'bling_chair_a', 'bling_chair_a', 's', '1', '1', '1', '0', '1', '0', '3368', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20122', 'petfood13 name', 'petfood13', 's', '1', '1', '1', '1', '0', '0', '3359', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20123', 'bling_pool', 'bling_pool', 's', '3', '1', '0.01', '0', '1', '0', '3369', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20124', 'bling_toilet', 'bling_toilet', 's', '1', '1', '1.2', '0', '1', '0', '3362', '1', '1', '0', '1', '1', 'default', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20125', 'val09_floor', 'val09_floor', 's', '2', '2', '0', '1', '0', '1', '3363', '1', '1', '0', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20126', 'bling_chair_c', 'bling_chair_c', 's', '1', '1', '1', '0', '1', '0', '3361', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20127', 'bling_chair_b', 'bling_chair_b', 's', '1', '1', '1', '0', '1', '0', '3360', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20128', 'bling_shwr name', 'bling_shwr', 's', '1', '1', '0', '1', '0', '1', '3396', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20129', 'bling_bed name', 'bling_bed', 's', '2', '3', '1.6', '0', '1', '0', '3364', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20130', 'bling_sofa', 'bling_sofa', 's', '2', '1', '1.5', '0', '1', '0', '3371', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20131', 'val09_floor2', 'val09_floor2', 's', '2', '2', '0', '1', '0', '1', '3357', '1', '1', '0', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20132', 'teddy_basic', 'teddy_basic', 's', '1', '1', '1', '1', '0', '0', '3393', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20133', 'teddy_pendergrass', 'teddy_pendergrass', 's', '1', '1', '1', '1', '0', '0', '3384', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20134', 'val_hSeat_1 name', 'val_hSeat*1', 's', '1', '1', '1', '0', '1', '0', '3386', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20135', 'val_hSeat_2 name', 'val_hSeat*2', 's', '1', '1', '1', '0', '1', '0', '3387', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20136', 'val_hSeat_3 name', 'val_hSeat*3', 's', '1', '1', '1', '0', '1', '0', '3388', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20137', 'val_hSeat_4 name', 'val_hSeat*4', 's', '1', '1', '1', '0', '1', '0', '3389', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20138', 'val_hSeat_5 name', 'val_hSeat*5', 's', '1', '1', '1', '0', '1', '0', '3390', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20139', 'val_hSeat_6 name', 'val_hSeat*6', 's', '1', '1', '1', '0', '1', '0', '3391', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20140', 'val_hSeat_7 name', 'val_hSeat*7', 's', '1', '1', '1', '0', '1', '0', '3392', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20141', 'Valentines gift basket', 'val_basket', 's', '1', '1', '1', '1', '0', '0', '3382', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20142', 'teddy_bear', 'teddy_bear', 's', '1', '1', '1', '1', '0', '0', '3385', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20143', 'teddy_pink', 'teddy_pink', 's', '1', '1', '1', '1', '0', '0', '3383', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20144', 'bling_fridge_restricted name', 'bling_fridge_restricted', 's', '1', '1', '1', '0', '0', '0', '3394', '1', '1', '0', '1', '1', 'vendingmachine', '0', '50', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20145', 'ads_percyrock name', 'ads_percyrock', 's', '2', '2', '1', '1', '0', '0', '3395', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20146', 'Bubble Juice Can', 'md_can', 'i', '0', '0', '1', '1', '0', '0', '4025', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20147', 'ads_idol_l_logo name', 'ads_idol_l_logo', 'i', '0', '0', '1', '1', '0', '0', '4243', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20148', 'Latin American Idol TV', 'ads_idol_l_tv', 'i', '0', '0', '1', '1', '0', '0', '4245', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20149', 'Big MTV', 'ads_mtv_bigtv', 'i', '0', '0', '1', '1', '0', '0', '4241', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20150', 'Small MTV', 'ads_mtv_tv', 'i', '0', '0', '1', '1', '0', '0', '4242', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20151', 'flag_singapore', 'flag_singapore', 'i', '0', '0', '1', '1', '0', '0', '4249', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20152', 'Old Curtain', 'hween09_curt', 'i', '0', '0', '1', '1', '0', '0', '4266', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20153', 'flag_columbia', 'flag_columbia', 'i', '0', '0', '1', '1', '0', '0', '4258', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20154', 'flag_chile', 'flag_chile', 'i', '0', '0', '1', '1', '0', '0', '4256', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20155', 'flag_ecuador', 'flag_ecuador', 'i', '0', '0', '1', '1', '0', '0', '4268', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20156', 'flag_dominicanrepublic', 'flag_dominicanrepublic', 'i', '0', '0', '1', '1', '0', '0', '4265', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20157', 'flag_newzealand', 'flag_newzealand', 'i', '0', '0', '1', '1', '0', '0', '4260', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20158', 'flag_malaysia', 'flag_malaysia', 'i', '0', '0', '1', '1', '0', '0', '4252', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20159', 'Loading Poster', 'byesw_loadscreen', 'i', '0', '0', '1', '1', '0', '0', '4267', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20160', 'flag_venezl', 'flag_venezl', 'i', '0', '0', '1', '1', '0', '0', '4254', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20161', 'flag_algeria', 'flag_algeria', 'i', '0', '0', '1', '1', '0', '0', '4270', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20162', 'flag_tunisia', 'flag_tunisia', 'i', '0', '0', '1', '1', '0', '0', '4248', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20163', 'flag_panama', 'flag_panama', 'i', '0', '0', '1', '1', '0', '0', '4262', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20164', 'flag_mexico', 'flag_mexico', 'i', '0', '0', '1', '1', '0', '0', '4250', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20165', 'flag_argentina', 'flag_argentina', 'i', '0', '0', '1', '1', '0', '0', '4261', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20166', 'flag_philippines', 'flag_philippines', 'i', '0', '0', '1', '1', '0', '0', '4251', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20167', 'flag_greece', 'flag_greece', 'i', '0', '0', '1', '1', '0', '0', '4253', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20168', 'flag_peru', 'flag_peru', 'i', '0', '0', '1', '1', '0', '0', '4246', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20169', 'flag_morocco', 'flag_morocco', 'i', '0', '0', '1', '1', '0', '0', '4264', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20170', 'flag_turkey', 'flag_turkey', 'i', '0', '0', '1', '1', '0', '0', '4255', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20171', 'Blue Long Bauble', 'xm09_bauble_12', 'i', '0', '0', '1', '1', '0', '0', '4304', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20172', 'Purple Long Bauble', 'xm09_bauble_16', 'i', '0', '0', '1', '1', '0', '0', '4303', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20173', 'Red Long Bauble', 'xm09_bauble_17', 'i', '0', '0', '1', '1', '0', '0', '4281', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20174', 'Silver Long Bauble', 'xm09_bauble_15', 'i', '0', '0', '1', '1', '0', '0', '4301', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20175', 'Silver Round Bauble', 'xm09_bauble_10', 'i', '0', '0', '1', '1', '0', '0', '4293', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20176', 'Gold Round Bauble', 'xm09_bauble_9', 'i', '0', '0', '1', '1', '0', '0', '4294', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20177', 'Green Long Bauble', 'xm09_bauble_18', 'i', '0', '0', '1', '1', '0', '0', '4298', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20178', 'Green Long Bauble', 'xm09_bauble_13', 'i', '0', '0', '1', '1', '0', '0', '4299', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20179', 'Blue Round Bauble', 'xm09_bauble_2', 'i', '0', '0', '1', '1', '0', '0', '4297', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20180', 'Red Round Bauble', 'xm09_bauble_1', 'i', '0', '0', '1', '1', '0', '0', '4300', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20181', 'Red Heart Bauble', 'xm09_bauble_22', 'i', '0', '0', '1', '1', '0', '0', '4302', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20182', 'Green Round Bauble', 'xm09_bauble_3', 'i', '0', '0', '1', '1', '0', '0', '4285', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20183', 'Silver Long Bauble', 'xm09_bauble_21', 'i', '0', '0', '1', '1', '0', '0', '4305', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20184', 'Green Round Bauble', 'xm09_bauble_8', 'i', '0', '0', '1', '1', '0', '0', '4295', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20185', 'Gold Round Bauble', 'xm09_bauble_4', 'i', '0', '0', '1', '1', '0', '0', '4282', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20186', 'Silver Round Bauble', 'xm09_bauble_5', 'i', '0', '0', '1', '1', '0', '0', '4288', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20187', 'Red Long Bauble', 'xm09_bauble_11', 'i', '0', '0', '1', '1', '0', '0', '4289', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20188', 'Gold Long Bauble', 'xm09_bauble_20', 'i', '0', '0', '1', '1', '0', '0', '4296', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20190', 'val_table1 name', 'val_table1', 's', '1', '1', '1', '0', '0', '0', '3397', '1', '1', '0', '1', '1', 'default', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20191', 'Gold Long Bauble', 'xm09_bauble_14', 'i', '0', '0', '1', '1', '0', '0', '4290', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20192', 'Blue Round Bauble', 'xm09_bauble_7', 'i', '0', '0', '1', '1', '0', '0', '4291', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20193', 'Red Round Bauble', 'xm09_bauble_6', 'i', '0', '0', '1', '1', '0', '0', '4284', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20194', 'Blue Long Bauble', 'xm09_bauble_19', 'i', '0', '0', '1', '1', '0', '0', '4283', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20195', 'china_pstr3 name', 'china_pstr3', 'i', '0', '0', '1', '1', '0', '0', '4314', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20196', 'ads_tv_jaapuisto name', 'ads_tv_jaapuisto', 'i', '0', '0', '1', '1', '0', '0', '4315', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20197', 'Empire State Building Clock', 'ads_percyw', 'i', '0', '0', '1', '1', '0', '0', '4322', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20198', 'val09_wdrobe_b', 'val09_wdrobe_b', 'i', '0', '0', '1', '1', '0', '0', '4320', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20199', 'val09_wall2', 'val09_wall2', 'i', '0', '0', '1', '1', '0', '0', '4316', '1', '1', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20200', 'bling_sink', 'bling_sink', 'i', '0', '0', '1', '1', '0', '0', '4319', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20201', 'val09_wall1', 'val09_wall1', 'i', '0', '0', '1', '1', '0', '0', '4318', '1', '1', '0', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20202', 'bling_cabinet', 'bling_cabinet', 'i', '0', '0', '1', '1', '0', '0', '4321', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20204', 'val09_wdrobe_g', 'val09_wdrobe_g', 'i', '0', '0', '1', '1', '0', '0', '4317', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20207', 'rare_ironmaiden name', 'rare_ironmaiden', 's', '1', '1', '0.001', '0', '0', '0', '3399', '1', '1', '0', '1', '1', 'teleport', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20208', 'rare_trex name', 'rare_trex', 's', '3', '7', '1', '0', '0', '0', '3398', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20209', 'beanstalk', 'beanstalk', 's', '1', '1', '1', '1', '0', '0', '3401', '1', '1', '0', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20210', 'rare_vdoll name', 'rare_vdoll', 's', '1', '1', '1', '0', '0', '0', '3403', '1', '1', '1', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20211', 'Sofa Mamut', 'Sofa Mamut', 's', '2', '1', '1', '0', '1', '0', '3402', '1', '1', '1', '1', '1', 'default', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20212', 'crystal_patch', 'crystal_patch', 's', '3', '3', '0', '0', '0', '1', '3400', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20213', 'ads_boost_surfb name', 'ads_boost_surfb', 'i', '0', '0', '1', '1', '0', '0', '4323', '1', '1', '0', '1', '1', 'default', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20214', 'ads_tlc_wheel name', 'ads_tlc_wheel', 'i', '0', '0', '1', '1', '0', '0', '4324', '1', '1', '0', '1', '1', 'habbowheel', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20220', 'Pigs', 'a0 pet5', 's', '1', '1', '1', '1', '0', '0', '1532', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20221', 'White moon lupine', 'garden_lupin4', 's', '1', '1', '0.000000001', '0', '0', '0', '3419', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20222', 'Gold rush', 'garden_mursu3', 's', '1', '1', '1', '0', '0', '0', '3408', '1', '1', '0', '1', '1', 'default', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20223', 'Purple Lupine', 'garden_lupin5', 's', '1', '1', '1', '0', '0', '0', '3411', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20224', 'Violet Blossom', 'garden_seed', 's', '1', '1', '1', '0', '0', '0', '3406', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20225', 'Snapping teleporter', 'garden_flytrap', 's', '1', '1', '0.001', '0', '0', '0', '3420', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20226', 'Pink pandemic', 'garden_flo3', 's', '1', '1', '1', '1', '0', '1', '3426', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20227', 'Belching pod', 'garden_volcano', 's', '2', '2', '1', '0', '0', '0', '3424', '1', '1', '0', '1', '1', 'alert', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20228', 'Wonder lamp', 'garden_flolamp', 's', '1', '1', '1', '0', '0', '0', '3415', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20229', 'Red rush', 'garden_mursu2', 's', '1', '1', '1', '0', '0', '0', '3412', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20230', 'Star flower', 'garden_jyrki', 's', '1', '1', '1', '0', '0', '0', '3405', '1', '1', '0', '1', '1', 'default', '8', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20231', 'White rush', 'garden_mursu4', 's', '1', '1', '1', '0', '0', '0', '3414', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20232', 'Garden leaves', 'garden_leaves', 's', '1', '1', '1', '0', '0', '0', '3425', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20233', 'Sky blue lupine', 'garden_lupin2', 's', '1', '1', '1', '0', '0', '0', '3416', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20234', 'Red lupine', 'garden_lupin3', 's', '1', '1', '1', '0', '0', '0', '3407', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20235', 'Pink rush', 'garden_mursu', 's', '1', '1', '1', '0', '0', '0', '3404', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20238', 'Bauhinia orchid tree', 'garden_orchtree', 's', '1', '1', '1', '0', '0', '0', '3413', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20237', 'Yellow happiness', 'garden_flo2', 's', '1', '1', '0', '1', '0', '1', '3409', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20239', 'Orange lupine', 'garden_lupin1', 's', '1', '1', '1', '0', '0', '0', '3421', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20240', 'Weird staring bush', 'garden_staringbush', 's', '1', '3', '1', '0', '0', '0', '3417', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20241', 'ads_grefusa_yum name', 'ads_grefusa_yum', 's', '1', '1', '1', '1', '0', '0', '3423', '1', '1', '0', '1', '1', 'vendingmachine', '1', '51, 52', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20242', 'Blue passion', 'garden_flo1', 's', '1', '1', '1', '1', '0', '1', '3418', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20243', 'Duck grass', 'garden_jungle', 's', '1', '1', '0', '1', '0', '0', '3422', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20244', 'merger_chest name', 'merger_chest', 's', '2', '1', '1', '0', '0', '0', '3455', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20245', 'Suave Fireplace', 'hc2_frplc', 's', '1', '2', '1', '0', '0', '0', '3458', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20246', 'Leather Bar Stool', 'hc2_barchair', 's', '1', '1', '1.7', '0', '1', '0', '3439', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20247', 'runway_display name', 'runway_display', 's', '1', '1', '1', '0', '0', '0', '3457', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20248', 'runway_bigchr_5 name', 'runway_bigchr_5', 's', '1', '1', '0.8', '1', '1', '0', '3463', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20249', 'runway_bigchr_4 name', 'runway_bigchr_4', 's', '1', '1', '0.8', '1', '1', '0', '3435', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20250', 'VIP Duvan', 'hc3_dc', 's', '1', '3', '1', '0', '0', '0', '3461', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20252', 'Glass Table', 'hc2_sofatbl', 's', '2', '2', '0.5', '1', '0', '0', '3434', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20253', 'runway_stool name', 'runway_stool', 's', '1', '1', '1.2', '0', '1', '0', '3442', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20254', 'runway_dvdr name', 'runway_dvdr', 's', '2', '1', '1', '0', '0', '0', '3456', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20255', 'runway_block_2 name', 'runway_block_2', 's', '2', '2', '0.8', '1', '0', '1', '3443', '1', '1', '0', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20256', 'runway_bigchr_1 name', 'runway_bigchr_1', 's', '1', '1', '0.8', '0', '1', '0', '3462', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20257', 'Black Lamp', 'hc2_biglamp', 's', '1', '1', '1', '0', '0', '0', '3446', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20258', 'Leather Sofa', 'hc2_sofa', 's', '2', '1', '1', '0', '1', '0', '3452', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20259', 'Trendy Rug', 'hc2_carpet', 's', '3', '5', '0', '1', '0', '1', '3440', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20260', 'runway_block_1 name', 'runway_block_1', 's', '2', '2', '0.8', '1', '0', '1', '3433', '1', '1', '0', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20261', 'runway_bench name', 'runway_bench', 's', '2', '1', '1.4', '0', '1', '0', '3464', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20262', 'runway_chair_2 name', 'runway_chair_2', 's', '1', '1', '1.4', '0', '1', '0', '3429', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20263', 'ads_cheetos name', 'ads_cheetos', 's', '1', '1', '1', '0', '0', '0', '3453', '1', '1', '0', '1', '1', 'vendingmachine', '1', '51, 52', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20264', 'VIP Coffee Table', 'hc3_table', 's', '2', '2', '0.5', '1', '0', '0', '3466', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20265', 'runway_bigchr_3 name', 'runway_bigchr_3', 's', '1', '1', '0.8', '1', '1', '0', '3454', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20266', 'VIP Stool', 'hc3_stool', 's', '1', '1', '1.7', '0', '1', '0', '3448', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20267', 'VIP Sofa', 'hc3_sofa', 's', '2', '1', '1', '0', '1', '0', '3441', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20268', 'runway_bigchr_2 name', 'runway_bigchr_2', 's', '1', '1', '0.8', '1', '1', '0', '3427', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20269', 'Leather Armchair', 'hc2_armchair', 's', '1', '1', '1', '1', '1', '0', '3436', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20270', 'runway_table_2 name', 'runway_table_2', 's', '2', '1', '1', '0', '0', '0', '3444', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20271', 'runway_table_1 name', 'runway_table_1', 's', '3', '2', '1', '1', '0', '0', '3460', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20272', 'runway_manqn_1 name', 'runway_manqn_1', 's', '1', '1', '1', '0', '0', '0', '3437', '1', '1', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20273', 'Leather Duvan', 'hc2_dvn', 's', '1', '3', '1', '0', '0', '0', '3459', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20274', 'VIP Light', 'hc3_light', 's', '2', '1', '0', '1', '0', '1', '3465', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20275', 'VIP Shelves', 'hc3_shelf', 's', '3', '1', '1.75', '1', '0', '0', '3438', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20276', 'runway_head name', 'runway_head', 's', '1', '1', '1', '1', '0', '0', '3432', '1', '1', '0', '1', '1', 'default', '7', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20277', 'runway_manqn_2 name', 'runway_manqn_2', 's', '1', '1', '1', '0', '0', '0', '3467', '1', '1', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20278', 'Black Divider', 'hc2_divider', 's', '1', '3', '1', '0', '0', '0', '3449', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20279', 'Espresso Machine', 'hc2_coffee', 's', '1', '1', '1', '0', '0', '0', '3450', '1', '1', '0', '1', '1', 'vendingmachine', '0', '9,8,14,15,6,10,11,12,17,13', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20280', 'Service Trolley', 'hc2_cart', 's', '1', '1', '1', '0', '0', '0', '3430', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20281', 'VIP Bar Desk', 'hc3_bard', 's', '2', '1', '1.05', '1', '0', '0', '3445', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20282', 'VIP Lamp', 'hc3_hugelamp', 's', '1', '1', '0', '1', '0', '1', '3447', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20283', 'VIP Divider', 'hc3_divider', 's', '1', '3', '1', '0', '0', '0', '3431', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20284', 'Black Vase', 'hc2_vase', 's', '1', '1', '1', '0', '0', '0', '3428', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20285', 'runway_chair_1 name', 'runway_chair_1', 's', '1', '1', '1.4', '0', '1', '0', '3451', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20286', 'Green been vines', 'garden_wall', 'i', '0', '0', '1', '1', '0', '0', '4325', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20287', 'ads_tv_yle name', 'ads_tv_yle', 'i', '0', '0', '1', '1', '0', '0', '4326', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20288', 'VIP Wall Art', 'hc3_walldeco', 'i', '0', '0', '1', '1', '0', '0', '4329', '1', '1', '0', '1', '1', 'default', '10', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20289', 'runway_shelf name', 'runway_shelf', 'i', '0', '0', '1', '1', '0', '0', '4327', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20290', 'ads_nokia_x6 name', 'ads_nokia_x6', 'i', '0', '0', '1', '1', '0', '0', '4330', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20291', 'ads_target_wall name', 'ads_target_wall', 'i', '0', '0', '1', '1', '0', '0', '4332', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20292', 'runway_fabric name', 'runway_fabric', 'i', '0', '0', '1', '1', '0', '0', '4331', '1', '1', '0', '1', '1', 'default', '8', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20293', 'ads_latrobe_flag name', 'ads_latrobe_flag', 'i', '0', '0', '1', '1', '0', '0', '4328', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20295', 'Camera', 'camera', 's', '1', '1', '1', '0', '0', '0', '263', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20296', 'Holly', 'holly', 'i', '0', '0', '0', '1', '0', '0', '4001', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20299', 'Wetting Ice Sculpture', 'wed_icesculp', 's', '1', '1', '3', '0', '0', '0', '3488', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20300', 'Wedding Car', 'wed_carsofa', 's', '2', '1', '1.25', '0', '1', '0', '3493', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20297', 'Wedding Arch', 'wed_arch', 's', '3', '1', '0.001', '1', '0', '1', '3483', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20298', 'Wedding Plant', 'wed_plant', 's', '1', '1', '1', '0', '0', '0', '3482', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20301', 'Terrier', 'a0 pet3', 's', '1', '1', '1', '1', '0', '0', '4026', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20303', 'Bear', 'a0 pet4', 's', '1', '1', '1', '1', '0', '0', '4027', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20304', 'Cat', 'a0 pet1', 's', '1', '1', '1', '1', '0', '0', '453', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20305', 'Dog', 'a0 pet0', 's', '1', '1', '1', '1', '0', '0', '452', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20306', 'Crocodile', 'a0 pet2', 's', '1', '1', '1', '1', '0', '0', '1290', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20392', 'Cereal', 'ads_chocapic', 's', '2', '1', '1', '0', '0', '0', '3486', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20393', 'TV Chocapic', 'ads_tv_chocapic_01', 'i', '0', '0', '0', '0', '0', '0', '4335', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20394', 'Poster Super Pop', 'ads_super_pop', 'i', '0', '0', '0', '0', '0', '0', '4333', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20395', 'Caja Fiesta', 'party_crate1_1', 's', '0', '1', '1', '0', '0', '0', '3487', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20396', 'Caja Fiesta', 'party_crate1_2', 's', '0', '1', '1', '0', '0', '0', '3489', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20397', 'Caja Fiesta', 'party_crate1_3', 's', '0', '1', '1', '0', '0', '0', '3481', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20398', 'Caja Fiesta', 'party_crate1_4', 's', '0', '1', '1', '0', '0', '0', '3485', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20399', 'Caja Fiesta', 'party_crate2_1', 's', '0', '1', '1', '0', '0', '0', '3480', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20400', 'Caja Fiesta', 'party_crate2_2', 's', '0', '1', '1', '0', '0', '0', '3490', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20401', 'Caja Fiesta', 'party_crate2_3', 's', '0', '1', '1', '0', '0', '0', '3491', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20402', 'Caja Fiesta', 'party_crate2_4', 's', '0', '1', '1', '0', '0', '0', '3492', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20403', 'Stereo Fiesta', 'party_djset', 's', '1', '3', '3', '0', '0', '0', '3484', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20354', 'fball_score_y', 'fball_score_y', 's', '1', '1', '1', '0', '0', '0', '3506', '1', '1', '0', '1', '1', 'yellow_score', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20353', 'fball_score_r', 'fball_score_r', 's', '1', '1', '1', '0', '0', '0', '3522', '1', '1', '0', '1', '1', 'red_score', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20352', 'fball_score_g', 'fball_score_g', 's', '1', '1', '1', '0', '0', '0', '3512', '1', '1', '0', '1', '1', 'green_score', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20351', 'fball_score_b', 'fball_score_b', 's', '1', '1', '1', '0', '0', '0', '3496', '1', '1', '0', '1', '1', 'blue_score', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20350', 'fball_ptch8 name', 'fball_ptch8', 's', '3', '3', '0', '1', '0', '0', '3502', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20349', 'fball_ptch7 name', 'fball_ptch7', 's', '3', '3', '0', '1', '0', '0', '3509', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20348', 'fball_ptch6 name', 'fball_ptch6', 's', '3', '3', '0', '1', '0', '0', '3517', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20347', 'fball_ptch5 name', 'fball_ptch5', 's', '3', '3', '0', '1', '0', '0', '3498', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20346', 'fball_ptch4 name', 'fball_ptch4', 's', '3', '3', '0', '1', '0', '0', '3504', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20345', 'fball_ptch3 name', 'fball_ptch3', 's', '3', '3', '0', '1', '0', '0', '3513', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20344', 'fball_ptch2 name', 'fball_ptch2', 's', '3', '3', '0', '1', '0', '0', '3511', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20343', 'fball_ptch1', 'fball_ptch1', 's', '3', '3', '0', '1', '0', '0', '3524', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20342', 'fball_ptch0', 'fball_ptch0', 's', '3', '3', '0', '1', '0', '0', '3520', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20341', 'fball_counter name', 'fball_counter', 's', '2', '1', '1', '0', '0', '0', '3525', '1', '1', '0', '1', '1', 'counter', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20340', 'fball_gate name', 'fball_gate', 's', '1', '1', '0', '0', '0', '1', '3516', '1', '1', '0', '1', '1', 'fbgate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20339', 'fball_light name', 'fball_light', 's', '1', '1', '1', '0', '0', '0', '3499', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20338', 'fball_goal_y name', 'fball_goal_y', 's', '3', '1', '0', '1', '0', '1', '3523', '1', '1', '0', '1', '1', 'yellow_goal', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20337', 'fball_goal_r name', 'fball_goal_r', 's', '3', '1', '0', '1', '0', '1', '3514', '1', '1', '0', '1', '1', 'red_goal', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20336', 'fball_goal_g', 'fball_goal_g', 's', '3', '1', '0', '1', '0', '1', '3519', '1', '1', '0', '1', '1', 'green_goal', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20335', 'fball_goal_b name', 'fball_goal_b', 's', '3', '1', '0', '1', '0', '1', '3515', '1', '1', '0', '1', '1', 'blue_goal', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20334', 'fball_fnc3 name', 'fball_fnc3', 's', '1', '3', '1', '0', '0', '0', '3495', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20333', 'fball_fnc1 name', 'fball_fnc1', 's', '1', '1', '1', '0', '0', '0', '3501', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20332', 'fball_crnr name', 'fball_crnr', 's', '1', '1', '1', '0', '0', '0', '3503', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20331', 'fball_cote name', 'fball_cote', 's', '3', '1', '0', '0', '0', '0', '3507', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20330', 'fball_bench name', 'fball_bench', 's', '3', '1', '1', '0', '1', '0', '3494', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20329', 'fball_ball5 name', 'fball_ball5', 's', '1', '1', '0', '0', '0', '1', '3518', '1', '1', '0', '1', '1', 'ball', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20328', 'fball_ball4 name', 'fball_ball4', 's', '1', '1', '0', '0', '0', '1', '3521', '1', '1', '0', '1', '1', 'ball', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20327', 'fball_ball3 name', 'fball_ball3', 's', '1', '1', '0', '0', '0', '1', '3497', '1', '1', '0', '1', '1', 'ball', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20326', 'fball_ball2 name', 'fball_ball2', 's', '1', '1', '0', '0', '0', '1', '3510', '1', '1', '0', '1', '1', 'ball', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20325', 'fball_ball name', 'fball_ball', 's', '1', '1', '0', '0', '0', '1', '3508', '1', '1', '0', '1', '1', 'ball', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20324', 'fball_audbench name', 'fball_audbench', 's', '4', '1', '1', '0', '1', '0', '3500', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20323', 'fball_trophy name', 'fball_trophy', 's', '1', '1', '1', '0', '0', '0', '3505', '1', '1', '0', '1', '1', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20428', 'Pac-Sun', 'ads_capri_arcade', 's', '2', '1', '1', '0', '0', '0', '3553', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20427', 'Arbolito Sun', 'ads_capri_tree', 's', '2', '1', '1', '0', '0', '0', '3546', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20426', 'Tubo De Lava Capri', 'ads_capri_lava', 's', '0', '1', '1', '0', '0', '0', '3536', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20425', 'Silla CapriSun', 'ads_capri_chair', 's', '0', '1', '1', '0', '1', '0', '3535', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20404', 'Efecto Lido', 'avatar_effect29', 'e', '1', '1', '1', '0', '0', '0', '29', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20415', 'Vikingo', 'avatar_effect27', 'e', '1', '1', '1', '0', '0', '0', '27', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20317', 'cmp_fish_s name', 'cmp_fish_s', 's', '1', '2', '1', '0', '0', '0', '3468', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20316', 'cmp_fish_r name', 'cmp_fish_r', 's', '1', '2', '1', '0', '0', '0', '3477', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20315', 'cmp_fish_gr name', 'cmp_fish_gr', 's', '1', '2', '1', '0', '0', '0', '3474', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20314', 'cmp_fish_g name', 'cmp_fish_g', 's', '1', '2', '1', '0', '0', '0', '3475', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20313', 'cmp_fish_bk name', 'cmp_fish_bk', 's', '1', '2', '1', '0', '0', '0', '3469', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20917', 'cmp_fish_s name', 'cmp_fish_s', 's', '1', '2', '1', '0', '0', '0', '3468', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21217', 'cmp_fish_s name', 'cmp_fish_s', 's', '1', '2', '1', '0', '0', '0', '3468', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21216', 'cmp_fish_r name', 'cmp_fish_r', 's', '1', '2', '1', '0', '0', '0', '3477', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21215', 'cmp_fish_gr name', 'cmp_fish_gr', 's', '1', '2', '1', '0', '0', '0', '3474', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21214', 'cmp_fish_g name', 'cmp_fish_g', 's', '1', '2', '1', '0', '0', '0', '3475', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21213', 'cmp_fish_bk name', 'cmp_fish_bk', 's', '1', '2', '1', '0', '0', '0', '3469', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21298', 'cmp_fish_b name', 'cmp_fish_b', 's', '1', '2', '1', '0', '0', '0', '3472', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25367', 'bw_ball', 'bw_ball', 's', '1', '1', '1', '0', '0', '1', '3547', '1', '1', '0', '1', '1', 'ball', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25366', 'bw_table', 'bw_table', 's', '2', '2', '1', '1', '0', '0', '3545', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25365', 'bw_chair', 'bw_chair', 's', '1', '1', '0.8', '1', '1', '0', '3544', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25364', 'bw_sboard', 'bw_sboard', 's', '2', '1', '0', '0', '0', '0', '3543', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25363', 'bw_croc', 'bw_croc', 's', '1', '3', '1', '1', '1', '0', '3542', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25362', 'bw_water_2', 'bw_water_2', 's', '2', '2', '0.1', '1', '0', '1', '3541', '1', '1', '0', '1', '1', 'water', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25361', 'bw_shower', 'bw_shower', 's', '1', '1', '2', '1', '0', '0', '3540', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25360', 'bw_ccnuts', 'bw_ccnuts', 's', '1', '1', '1', '0', '0', '0', '3539', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25359', 'bw_fin', 'bw_fin', 's', '1', '1', '1', '1', '0', '0', '3538', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25357', 'bw_sofa', 'bw_sofa', 's', '2', '1', '1', '1', '1', '0', '3533', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25355', 'bw_lgchair', 'bw_lgchair', 's', '1', '1', '3', '0', '1', '0', '3529', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25354', 'bw_boat', 'bw_boat', 's', '2', '2', '1', '1', '1', '0', '3527', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('39911', 'prison_dvdr2', 'prison_dvdr2', 's', '2', '1', '3.5', '1', '0', '0', '3532', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('39912', 'prison_gate', 'prison_gate', 's', '1', '1', '0.1', '0', '0', '0', '3526', '1', '1', '0', '1', '1', 'gate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('39913', 'prison_dvdr1', 'prison_dvdr1', 's', '1', '1', '3.5', '1', '0', '0', '3534', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('39914', 'prison_stone', 'prison_stone', 's', '1', '1', '1', '0', '0', '0', '3537', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('39915', 'prison_tower', 'prison_tower', 's', '1', '1', '3', '1', '0', '1', '3531', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('39916', 'prison_crnr', 'prison_crnr', 's', '1', '1', '3.5', '1', '0', '0', '3528', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('39917', 'hc3_stereo', 'hc3_stereo', 's', '3', '1', '1', '1', '0', '0', '3470', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20450', 'Trofeo Pulgar', 'prizetrophy_thumb', 's', '1', '1', '1', '0', '0', '0', '3410', '1', '1', '0', '1', '0', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('39918', 'Jarr?n VIP', 'hc3_vase', 's', '0', '1', '1', '0', '0', '0', '3185', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('96401', 'Submarino', 'cmp_sub', 's', '7', '1', '3', '0', '0', '0', '3478', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('96400', 'Nobox Amarillo', 'cmp_nobox_3', 's', '1', '1', '1', '0', '0', '0', '3473', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('96398', 'Nobox Rojo', 'cmp_nobox', 's', '1', '1', '1', '0', '0', '0', '3476', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('96399', 'Nobox Azul', 'cmp_nobox_2', 's', '1', '1', '1', '0', '0', '0', '3471', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95394', 'bw_sofa_p', 'bw_sofa_p', 's', '2', '1', '1', '1', '1', '0', '3561', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95393', 'bw_sofa_g', 'bw_sofa_g', 's', '2', '1', '1', '1', '1', '0', '3575', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95392', 'bw_van_g', 'bw_van_g', 's', '2', '2', '1', '0', '1', '0', '3574', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95391', 'bw_van_p', 'bw_van_p', 's', '2', '2', '1', '0', '1', '0', '3570', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95390', 'bw_table_p', 'bw_table_p', 's', '2', '1', '0', '1', '0', '0', '3578', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95389', 'bw_table_g', 'bw_table_g', 's', '2', '2', '1', '1', '0', '0', '3566', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95388', 'bw_sboard_p', 'bw_sboard_p', 's', '2', '1', '0', '0', '0', '0', '3571', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('59918', 'Vase vip', 'hc3_vase', 's', '1', '1', '1', '1', '0', '0', '3479', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95387', 'bw_sboard_g', 'bw_sboard_g', 's', '2', '1', '0', '0', '0', '0', '3562', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95371', 'Lava', 'Lava', 's', '0', '0', '0', '0', '0', '0', '3021', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95386', 'bw_fnc_crnr_p', 'bw_fnc_crnr_p', 's', '1', '2', '1', '0', '0', '0', '3576', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95385', 'bw_pool_b1', 'bw_pool_b1', 's', '1', '1', '1', '1', '0', '0', '3560', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95374', 'ads_grefusa_surfb', 'ads_grefusa_surfb', 'i', '0', '0', '0', '0', '0', '0', '3600', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95375', 'ads_pepsi0', 'ads_pepsi0', 's', '1', '1', '3', '0', '0', '0', '3554', '1', '1', '0', '1', '1', 'vendingmachine', '1', '55', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95384', 'bw_pool_a1', 'bw_pool_a1', 's', '1', '1', '1', '1', '1', '0', '3577', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95383', 'bw_pool_a3', 'bw_pool_a3', 's', '1', '1', '0', '1', '0', '0', '3556', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95382', 'bw_pool_a2', 'bw_pool_a2', 's', '2', '1', '1', '1', '0', '0', '3564', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95381', 'bw_pool_b2', 'bw_pool_b2', 's', '2', '1', '1', '1', '0', '0', '3565', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95380', 'bw_mttrss_g', 'bw_mttrss_g', 's', '1', '3', '0.8', '1', '0', '0', '3558', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25368', 'bw_mttrss', 'bw_mttrss', 's', '1', '3', '0.8', '1', '1', '0', '3548', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25369', 'bw_van', 'bw_van', 's', '2', '2', '1', '0', '1', '0', '3549', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25371', 'bw_fnc_crnr', 'bw_fnc crnr', 's', '1', '2', '1', '1', '0', '0', '3551', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('25372', 'bw_fnc', 'bw_fnc', 's', '2', '1', '1', '1', '0', '0', '3552', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('59919', 'Mandibula', 'bw_jaws', 'i', '0', '0', '0', '0', '0', '0', '3602', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('59939', 'Mandibula', 'bw_jaws', 'i', '0', '0', '0', '0', '0', '0', '3602', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95376', 'bw_fnc_p', 'bw_fnc_p', 's', '2', '1', '1', '1', '0', '0', '3569', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95377', 'bw_fnc_crnr_g', 'bw_fnc_crnr_g', 's', '1', '2', '1', '1', '0', '0', '3563', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95378', 'bw_sofa_p', 'bw_sofa_p', 's', '2', '1', '1', '1', '1', '1', '3567', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95379', 'bw_boat_g', 'bw_boat_g', 's', '2', '2', '0.8', '1', '1', '0', '3568', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95395', 'bw_fnc_g name', 'bw_fnc_g', 's', '2', '1', '1', '1', '0', '0', '3557', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('95397', 'bw_tele', 'bw_tele', 's', '1', '1', '3', '0', '0', '0', '3550', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21001', 'Bast??n de mando', 'avatar_effect26', 'e', '1', '1', '1', '0', '0', '0', '26', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21002', 'Llamaradas', 'avatar_effect25', 'e', '1', '1', '1', '0', '0', '0', '25', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21003', 'Bajo Lluvia', 'avatar_effect24', 'e', '1', '1', '1', '0', '0', '0', '24', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('21004', 'Levitaci??n', 'avatar_effect23', 'e', '1', '1', '1', '0', '0', '0', '23', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('96402', '', 'newitem', 's', '1', '1', '1', '1', '0', '0', '1', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10289', 'easel_0', 'easel_0', 's', '1', '1', '1', '0', '0', '0', '3582', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10290', 'easel_1', 'easel_1', 's', '1', '1', '1', '0', '0', '0', '3594', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10291', 'easel_2', 'easel_2', 's', '1', '1', '1', '0', '0', '0', '3603', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10292', 'easel_3', 'easel_3', 's', '1', '1', '1', '1', '0', '0', '3596', '1', '1', '0', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10293', 'easel_4', 'easel_4', 's', '1', '1', '1', '0', '0', '0', '3600', '1', '1', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10294', 'easel_2', 'easel_2', 's', '1', '1', '1', '0', '0', '0', '3603', '1', '1', '0', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10278', 'hosptl_bbag name', 'hosptl_bbag', 's', '1', '3', '1', '0', '0', '0', '3591', '1', '1', '0', '1', '1', 'bed', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10279', 'hosptl_bed', 'hosptl_bed', 's', '1', '3', '2', '0', '0', '0', '3590', '1', '1', '0', '1', '1', 'bed', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10280', 'hosptl_cab1', 'hosptl_cab1', 's', '1', '1', '1', '0', '0', '0', '3586', '1', '1', '0', '1', '1', 'vendingmachine', '2', '35', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10281', 'hosptl_cab2', 'hosptl_cab2', 's', '2', '1', '1', '0', '0', '0', '3608', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10282', 'hosptl_curtain', 'hosptl_curtain', 's', '3', '1', '1', '0', '0', '0', '3588', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10283', 'hosptl_defibs', 'hosptl_defibs', 's', '1', '1', '1', '0', '0', '0', '3606', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10284', 'hosptl_light', 'hosptl_light', 's', '1', '1', '1', '0', '0', '0', '3610', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10285', 'hosptl_seat', 'hosptl_seat', 's', '2', '1', '2', '0', '1', '0', '3611', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10286', 'hosptl_skele', 'hosptl_skele', 's', '1', '1', '1', '0', '0', '0', '3604', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10287', 'hosptl_xray', 'hosptl_xray', 'i', '0', '0', '0', '0', '0', '0', '4339', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10355', 'african_tree2', 'african_tree2', 's', '1', '1', '1', '0', '0', '0', '3605', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10354', 'african_tree1', 'african_tree1', 's', '1', '1', '1', '0', '0', '0', '3584', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10353', 'african_stage', 'african_stage', 's', '2', '2', '1', '1', '0', '1', '3607', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10352', 'african_patch', 'african_patch', 's', '2', '2', '1', '0', '0', '1', '3602', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10351', 'african_fence', 'african_fence', 's', '1', '2', '1', '0', '0', '0', '3579', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('10350', 'african_bones', 'african_bones', 's', '1', '1', '1', '0', '0', '0', '3609', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97419', 'ktchn10_block', 'ktchn10_block', 's', '1', '1', '1', '1', '0', '0', '3589', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97420', 'ktchn10_cabnt', 'ktchn10_cabnt', 'i', '1', '1', '1', '1', '0', '0', '4338', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97421', 'ktchn10_pot', 'ktchn10_pot', 's', '1', '1', '1', '1', '0', '0', '3580', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97422', 'ktchn10_sink', 'ktchn10_sink', 's', '2', '1', '1', '1', '0', '0', '3612', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97423', 'ktchn10_stove', 'ktchn10_stove', 's', '2', '1', '1.2', '1', '0', '0', '3581', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97424', 'ktchn10_tea', 'ktchn10_tea', 's', '1', '1', '1', '1', '0', '0', '3592', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3530', 'bw_water_1', 'bw_water_1', 's', '2', '2', '0.1', '1', '0', '1', '3530', '1', '1', '0', '1', '1', 'water', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97111', 'Cheetos', 'Cheester Rules!', 'e', '1', '1', '1', '0', '0', '0', '31', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568275', 'despicableme_desc', 'despicableme_desc', 'e', '1', '1', '1', '0', '0', '0', '32', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785108', 'bb_painimies2', 'bb_painimies2', 'i', '1', '1', '1', '0', '0', '1', '4342', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785078', 'bb_score_b', 'bb_score_b', 's', '1', '1', '1', '0', '0', '0', '3615', '1', '1', '0', '1', '1', 'blue_score', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785079', 'bb_robo', 'bb_robo', 's', '2', '2', '2', '0', '0', '0', '3616', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785080', 'bb_dragon', 'bb_dragon', 's', '3', '1', '2.5', '0', '0', '0', '3617', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785081', 'bb_ducklight', 'bb_ducklight', 's', '1', '1', '3', '0', '0', '0', '3618', '1', '1', '0', '1', '1', 'default', '8', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785082', 'bb_caterhead', 'bb_caterhead', 's', '1', '1', '1', '0', '0', '0', '3619', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785083', 'bb_cargobox', 'bb_cargobox', 's', '2', '1', '1', '0', '0', '0', '3620', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785084', 'bb_gate_g', 'bb_gate_g', 's', '1', '1', '0', '0', '0', '1', '3621', '1', '1', '0', '1', '1', 'bb_green_gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785085', 'bb_crchair3', 'bb_crchair3', 's', '1', '1', '1', '0', '1', '0', '3622', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785086', 'bb_score_g', 'bb_score_g', 's', '1', '1', '1', '0', '0', '0', '3623', '1', '1', '0', '1', '1', 'green_score', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785087', 'bb_crchair', 'bb_crchair', 's', '1', '1', '1', '0', '1', '0', '3624', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785088', 'bb_crchair2', 'bb_crchair2', 's', '1', '1', '1', '0', '1', '0', '3625', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785089', 'bb_score_y', 'bb_score_y', 's', '1', '1', '1', '0', '0', '0', '3626', '1', '1', '0', '1', '1', 'yellow_score', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785090', 'bb_knj1', 'bb_knj1', 's', '2', '1', '1', '0', '0', '0', '3627', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785091', 'bb_gate_r', 'bb_gate_r', 's', '1', '1', '0', '0', '0', '1', '3628', '1', '1', '0', '1', '1', 'bb_red_gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785092', 'bb_tddhnd', 'bb_tddhnd', 's', '1', '1', '1', '1', '0', '0', '3629', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785093', 'bb_lightdiv', 'bb_lightdiv', 's', '1', '1', '1', '1', '0', '0', '3630', '1', '1', '0', '1', '1', 'default', '8', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785094', 'bb_tddhead', 'bb_tddhead', 's', '2', '2', '2', '0', '0', '0', '3631', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785095', 'bb_pyramid', 'bb_pyramid', 's', '1', '1', '0', '0', '0', '0', '3632', '1', '1', '0', '1', '1', 'gate', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785096', 'bb_patch1', 'bb_patch1', 's', '1', '1', '0.1', '1', '0', '1', '3633', '1', '1', '0', '1', '1', 'bb_patch', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785097', 'bb_fnc3', 'bb_fnc3', 's', '1', '3', '1', '0', '0', '0', '3634', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785098', 'bb_gate_y', 'bb_gate_y', 's', '1', '1', '0', '0', '0', '1', '3635', '1', '1', '0', '1', '1', 'bb_yellow_gate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785099', 'bb_apparatus', 'bb_apparatus', 's', '2', '2', '0', '1', '0', '1', '3637', '1', '1', '0', '1', '1', 'default', '8', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785100', 'bb_caterbody', 'bb_caterbody', 's', '1', '1', '1.7', '1', '1', '0', '3638', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785101', 'bb_knj2', 'bb_knj2', 's', '1', '1', '2', '1', '0', '0', '3639', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785102', 'bb_fnc1', 'bb_fnc1', 's', '1', '1', '1', '0', '0', '0', '3640', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785103', 'bb_puck', 'bb_puck', 's', '1', '1', '0.6', '1', '0', '1', '3641', '1', '1', '0', '1', '1', 'ball', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785104', 'bb_rnd_tele', 'bb_rnd_tele', 's', '1', '1', '0.3', '0', '0', '1', '3642', '1', '1', '0', '1', '1', 'bb_teleport', '8000', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785105', 'bb_gate_b', 'bb_gate_b', 's', '1', '1', '0', '0', '0', '1', '3643', '1', '1', '0', '1', '1', 'bb_blue_gate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785106', 'bb_score_r', 'bb_score_r', 's', '1', '1', '1', '0', '0', '0', '3644', '1', '1', '0', '1', '1', 'red_score', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785107', 'bb_painimies1', 'bb_painimies1', 'i', '1', '1', '1', '0', '0', '1', '4341', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785077', 'bb_crnr', 'bb_crnr', 's', '1', '1', '1', '0', '0', '0', '3614', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785116', 'hween10_fogwall', 'hween10_fogwall', 'i', '1', '1', '1', '0', '0', '1', '4340', '1', '1', '0', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785115', 'hween10_zombie', 'hween10_zombie', 's', '1', '1', '3', '0', '0', '0', '3636', '1', '1', '0', '1', '1', 'vendingmachine', '2', '58', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97222', 'Battle Ball P??rpura', '??A saltar se ha dicho!', 'e', '1', '1', '1', '0', '0', '0', '33', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97333', 'Battle Ball Az??l', '??A saltar se ha dicho!', 'e', '1', '1', '1', '0', '0', '0', '34', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97444', 'Battle Ball Verde', '??A saltar se ha dicho!', 'e', '1', '1', '1', '0', '0', '0', '35', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('97555', 'Battle Ball Amarilla', '??A saltar se ha dicho!', 'e', '1', '1', '1', '0', '0', '0', '36', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568276', 'nest_lion', 'nest_lion', 's', '1', '1', '1', '1', '0', '1', '3601', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568277', 'nest_lion2', 'nest_lion2', 's', '1', '1', '0.5', '1', '0', '1', '3587', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568278', 'nest_rhino', 'nest_rhino', 's', '1', '1', '0.2', '1', '0', '1', '3597', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568279', 'petfood14', 'petfood14', 's', '1', '1', '0', '0', '0', '1', '3599', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568280', 'petfood15', 'petfood15', 's', '1', '1', '0.1', '1', '0', '1', '3583', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('84586', 'Lion', 'a0 pet6', 's', '1', '1', '1', '1', '0', '0', '7457', '1', '1', '0', '1', '1', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('83545', 'Rhino', 'a0 pet7', 's', '1', '1', '1', '1', '0', '0', '5354', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785117', 'hween10_bat', 'hween10_bat', 's', '1', '1', '1', '0', '0', '0', '3662', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785118', 'hween10_card_1', 'hween10_card_1', 'i', '1', '1', '1', '1', '0', '0', '4346', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785119', 'hween10_card_2', 'hween10_card_2', 'i', '1', '1', '1', '1', '0', '0', '4350', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785120', 'hween10_card_3', 'hween10_card_3', 'i', '1', '1', '1', '1', '0', '0', '4345', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785121', 'hween10_card_4', 'hween10_card_4', 'i', '1', '1', '1', '1', '0', '0', '4347', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785122', 'hween10_card_5', 'hween10_card_5', 'i', '1', '1', '1', '1', '0', '0', '4351', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785123', 'hween10_card_6', 'hween10_card_6', 'i', '1', '1', '1', '1', '0', '0', '4348', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785124', 'hween10_chicken', 'hween10_chicken', 's', '2', '1', '3', '0', '0', '0', '3658', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785125', 'hween10_ffly', 'hween10_ffly', 's', '1', '1', '0', '0', '0', '1', '3657', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785126', 'hween10_fog', 'hween10_fog', 's', '2', '2', '0.0001', '1', '0', '1', '3652', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785127', 'hween10_jar', 'hween10_jar', 's', '1', '1', '3', '0', '0', '0', '3651', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785128', 'hween10_logs', 'hween10_logs', 's', '1', '1', '0.05', '1', '0', '1', '3656', '1', '1', '0', '1', '1', 'pressure_pad', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785129', 'hween10_pond', 'hween10_pond', 's', '2', '2', '0.1', '1', '0', '1', '3650', '1', '1', '0', '1', '1', 'water', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785130', 'hween10_portch', 'hween10_potch', 's', '1', '1', '1', '0', '0', '1', '3661', '1', '1', '0', '1', '1', 'default', '7', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785131', 'hween10_skullpost', 'hween10_skullpost', 's', '1', '1', '3', '0', '0', '0', '3654', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785132', 'hween10_swamp', 'hween10_swamp', 's', '2', '2', '0.01', '0', '0', '1', '3649', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785133', 'hween10_tarot', 'hween10_tarot', 's', '1', '1', '1', '1', '0', '0', '3646', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785134', 'hween10_tele', 'hween10_tele', 's', '1', '1', '0.001', '0', '0', '0', '3659', '1', '1', '0', '1', '1', 'teleport', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785135', 'hween10_throne', 'hween10_throne', 's', '1', '1', '1.1', '0', '1', '0', '3660', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785136', 'hween10_tree', 'hween10_tree', 's', '1', '1', '5', '1', '0', '0', '3648', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785137', 'hween10_voodoo1', 'hween10_voodoo1', 's', '1', '1', '3', '1', '0', '0', '3647', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785138', 'hween10_voodoo2', 'hween10_voodoo2', 's', '1', '1', '3', '1', '0', '0', '3653', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785139', 'hween10_voodoo3', 'hween10_voodoo3', 's', '1', '1', '3', '1', '0', '0', '3655', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785140', 'hween10_wallskull', 'hween10_wallskull', 'i', '1', '1', '4', '1', '0', '0', '4349', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89914', 'nest_frog', 'nest_frog', 's', '1', '1', '0.1', '0', '0', '1', '3830', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('972592', 'Efecto Escalofriante', '??Que miedo!', 'e', '1', '1', '1', '0', '0', '0', '37', '0', '0', '0', '0', '0', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('2785109', 'bb_counter', 'bb_counter', 's', '1', '4', '0.1', '0', '0', '0', '3645', '1', '1', '0', '1', '1', 'counter', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568401', 'exe_copier', 'exe_copier', 's', '1', '1', '1', '0', '0', '0', '9215', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568402', 'exe_glassdvdr', 'exe_glassdvdr', 's', '2', '1', '1', '0', '0', '0', '9216', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568403', 'exe_wrkdesk', 'exe_wrkdesk', 's', '2', '1', '1', '0', '0', '0', '9217', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568404', 'exe_seccam', 'exe_seccam', 's', '1', '1', '0', '0', '0', '1', '9218', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('3568405', 'exe_sensor', 'exe_sensor', 'i', '1', '1', '1', '0', '0', '0', '4355', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99000', 'qt_xm10_nest', 'qt_xm10_nest', 's', '1', '1', '1', '0', '0', '0', '3742', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99001', 'qt_xm10_icedragon', 'qt_xm10_icedragon', 's', '1', '1', '1', '0', '0', '0', '3746', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99002', 'qt_xm10_stone', 'qt_xm10_stone', 's', '2', '1', '1', '0', '0', '0', '3747', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99003', 'qt_xm10_icetiger', 'qt_xm10_icetiger', 's', '1', '1', '1', '0', '0', '0', '3728', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99004', 'qt_xm10_trex', 'qt_xm10_trex', 's', '3', '7', '1', '0', '0', '0', '3722', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99005', 'qt_xm10_palm_tree', 'qt_xm10_palm_tree', 's', '1', '1', '3', '0', '0', '0', '3720', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99006', 'qt_xm10_bench', 'qt_xm10_bench', 's', '2', '1', '1', '0', '0', '0', '3750', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99007', 'qt_xm10_icelupin', 'qt_xm10_icelupin', 's', '1', '1', '1', '0', '0', '0', '3732', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99008', 'qt_xm10_xmduck', 'qt_xm10_xmduck', 's', '1', '1', '1', '0', '0', '0', '3719', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99009', 'qt_xm10_iceduck', 'qt_xm10_iceduck', 's', '1', '1', '1', '0', '0', '0', '3727', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99010', 'qt_xm10_bauble1', 'qt_xm10_bauble1', 'i', '1', '1', '1', '0', '0', '0', '4365', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99011', 'qt_xm10_bauble2', 'qt_xm10_bauble2', 'i', '1', '1', '1', '0', '0', '0', '4361', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99012', 'qt_xm10_bauble3', 'qt_xm10_bauble3', 'i', '1', '1', '1', '0', '0', '0', '4368', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99013', 'qt_xm10_iceplasto', 'qt_xm10_iceplasto', 's', '1', '1', '1', '0', '1', '0', '3730', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99014', 'qt_xm10_ice_fish', 'qt_xm10_ice_fish', 's', '1', '2', '3', '0', '0', '0', '3748', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99015', 'qt_xm10_gnome', 'qt_xm10_gnome', 's', '1', '2', '1', '0', '0', '0', '3726', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99016', 'qt_xm10_icesilotable', 'qt_xm10_icesilotable', 's', '1', '1', '1', '0', '0', '0', '3743', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99017', 'qt_xm10_iceteddy', 'qt_xm10_iceteddy', 's', '1', '1', '1', '0', '0', '0', '3734', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99018', 'qt_xm10_elephant', 'qt_xm10_elephant', 's', '1', '1', '1', '0', '0', '0', '3724', '1', '1', '0', '1', '1', 'vendingmachine', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99019', 'qt_xm10_iceclubsofa', 'qt_xm10_iceclubsofa', 's', '2', '1', '1', '0', '1', '0', '3718', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99020', 'es_skating_ice', 'es_skating_ice', 's', '2', '2', '0.01', '1', '0', '1', '3736', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99021', 'es_sidewalk', 'es_sidewalk', 's', '2', '2', '0.2', '0', '0', '1', '3716', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99022', 'es_wpost', 'es_wpost', 's', '1', '1', '1', '0', '0', '0', '3725', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99023', 'es_tagging', 'es_tagging', 's', '1', '1', '3', '0', '0', '0', '3741', '1', '1', '0', '1', '1', 'tagpole', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99024', 'es_santa', 'es_santa', 's', '1', '1', '1', '0', '0', '0', '3740', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99025', 'es_window', 'es_window', 'i', '1', '1', '1', '0', '0', '0', '4367', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99026', 'es_bench', 'es_bench', 's', '2', '1', '1', '0', '1', '0', '3712', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99027', 'es_fnc_1', 'es_fnc_1', 's', '1', '1', '1', '0', '0', '0', '3729', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99028', 'es_fnc_2', 'es_fnc_2', 's', '1', '1', '1', '0', '0', '0', '3714', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99029', 'es_fnc_crnr', 'es_fnc_crnr', 's', '1', '1', '1', '0', '0', '0', '3721', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99030', 'es_epictree', 'es_epictree', 's', '2', '2', '4', '0', '0', '0', '3723', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99031', 'es_icestar_g', 'es_icestar_g', 's', '1', '1', '6', '0', '0', '0', '3731', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99032', 'es_icestar_r', 'es_icestar_r', 's', '1', '1', '6', '0', '0', '0', '3745', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99033', 'es_icestar_y', 'es_icestar_y', 's', '1', '1', '6', '0', '0', '0', '3749', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99034', 'es_icestar', 'es_icestar', 's', '1', '1', '6', '0', '0', '0', '3713', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99035', 'es_puck', 'es_puck', 's', '1', '1', '0', '0', '0', '1', '3739', '1', '1', '0', '1', '1', 'ball', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99036', 'es_roaster', 'es_roaster', 's', '1', '1', '2', '0', '0', '0', '3738', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99037', 'es_lmppst', 'es_lmppst', 's', '1', '1', '4', '0', '0', '0', '3735', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99038', 'es_statue', 'es_statue', 's', '1', '1', '1', '0', '0', '0', '3717', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99904', 'year2011_waver_b', 'year2011_waver_b', 's', '1', '1', '1', '1', '0', '0', '3781', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99905', 'year2011_waver_g', 'year2011_waver_g', 's', '1', '1', '1', '1', '0', '0', '3780', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99906', 'year2011_waver_r', 'year2011_waver_r', 's', '1', '1', '1', '1', '0', '0', '3777', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99907', 'year2011_waver_y', 'year2011_waver_y', 's', '1', '1', '1', '1', '0', '0', '3768', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99908', 'prizetrophy_2011_y', 'prizetrophy_2011_y', 's', '1', '1', '1', '1', '0', '0', '3771', '1', '1', '0', '1', '1', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99909', 'prizetrophy_2011_b', 'prizetrophy_2011_b', 's', '1', '1', '1', '1', '0', '0', '3773', '1', '1', '0', '1', '1', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99910', 'prizetrophy_2011_r', 'prizetrophy_2011_r', 's', '1', '1', '1', '1', '0', '0', '3770', '1', '1', '0', '1', '1', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99911', 'prizetrophy_2011_p', 'prizetrophy_2011_p', 's', '1', '1', '1', '1', '0', '0', '3775', '1', '1', '0', '1', '1', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99912', 'prizetrophy_2011_g', 'prizetrophy_2011_g', 's', '1', '1', '1', '1', '0', '0', '3781', '1', '1', '0', '1', '1', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99913', 'prizetrophy_2011_w', 'prizetrophy_2011_w', 's', '1', '1', '1', '1', '0', '0', '3778', '1', '1', '0', '1', '1', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99914', 'year2011', 'year2011', 'i', '1', '1', '1', '1', '0', '0', '4373', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29281', 'wf_act_move_rotate', 'wf_act_move_rotate', 's', '1', '1', '0.5', '1', '0', '0', '3663', '1', '1', '0', '1', '1', 'wf_act_moverotate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29282', 'wf_wire2', 'wf_wire2', 's', '1', '1', '0', '0', '0', '0', '3664', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29283', 'wf_cnd_time_more_than', 'wf_cnd_time_more_than', 's', '1', '1', '0.5', '1', '0', '0', '3665', '1', '1', '0', '1', '1', 'wired', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29284', 'wf_colortile', 'wf_colortile', 's', '1', '1', '0.1', '0', '0', '1', '3666', '1', '1', '0', '1', '1', 'pressure_pad', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29285', 'wf_floor_switch2', 'wf_floor_switch2', 's', '1', '1', '1', '0', '0', '0', '3667', '1', '1', '0', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29286', 'wf_trg_state_changed', 'wf_trg_state_changed', 's', '1', '1', '0.5', '1', '0', '0', '3668', '1', '1', '0', '1', '1', 'wf_trg_furnistate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29287', 'wf_xtra_random', 'wf_xtra_random', 's', '1', '1', '0.5', '1', '0', '0', '3669', '1', '1', '0', '1', '1', 'wired', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29288', 'wf_xtra_unseen', 'wf_xtra_unseen', 's', '1', '1', '0.5', '1', '0', '0', '3670', '1', '1', '0', '1', '1', 'wired', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29289', 'wf_trg_periodically', 'wf_trg_periodically', 's', '1', '1', '0.5', '1', '0', '0', '3671', '1', '1', '0', '1', '1', 'wf_trg_timer', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29290', 'wf_pyramid', 'wf_pyramid', 's', '1', '1', '0.1', '0', '0', '0', '3672', '1', '1', '0', '1', '1', 'gate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29291', 'wf_trg_score_achieved', 'wf_trg_score_achieved', 's', '1', '1', '0.5', '1', '0', '0', '3673', '1', '1', '0', '1', '1', 'wf_trg_atscore', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29292', 'wf_act_teleport_to', 'wf_act_teleport_to', 's', '1', '1', '0.5', '1', '0', '0', '3674', '1', '1', '0', '1', '1', 'wf_act_moveuser', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29293', 'wf_trg_says_something', 'wf_trg_says_something', 's', '1', '1', '0.5', '1', '0', '0', '3675', '1', '1', '0', '1', '1', 'wf_trg_onsay', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29294', 'wf_colorwheel', 'wf_colorwheel', 's', '1', '1', '1', '0', '0', '0', '3676', '1', '1', '0', '1', '1', 'dice', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29295', 'wf_wire4', 'wf_wire4', 's', '1', '1', '0', '0', '0', '0', '3677', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29296', 'wf_trg_walks_off_furni', 'wf_trg_walks_off_furni', 's', '1', '1', '0.5', '1', '0', '0', '3678', '1', '1', '0', '1', '1', 'wf_trg_offfurni', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29297', 'wf_trg_at_given_time', 'wf_trg_at_given_time', 's', '1', '1', '0.5', '1', '0', '0', '3679', '1', '1', '0', '1', '1', 'wf_trg_attime', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29298', 'wf_trg_game_ends', 'wf_trg_game_ends', 's', '1', '1', '0.5', '1', '0', '0', '3680', '1', '1', '0', '1', '1', 'wf_trg_gameend', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29299', 'wf_act_show_message', 'wf_act_show_message', 's', '1', '1', '0.5', '1', '0', '0', '3681', '1', '1', '0', '1', '1', 'wf_act_saymsg', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29300', 'wf_cnd_time_less_than', 'wf_cnd_time_less_than', 's', '1', '1', '0.5', '1', '0', '0', '3682', '1', '1', '0', '1', '1', 'wired', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29301', 'wf_trg_enter_room', 'wf_trg_enter_room', 's', '1', '1', '0.5', '1', '0', '0', '3683', '1', '1', '0', '1', '1', 'wf_trg_enterroom', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29303', 'wf_act_toggle_state', 'wf_act_toggle_state', 's', '1', '1', '0.5', '1', '0', '0', '3685', '1', '1', '0', '1', '1', 'wf_act_togglefurni', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29304', 'wf_firegate', 'wf_firegate', 's', '1', '1', '0.1', '0', '0', '0', '3686', '1', '1', '0', '1', '1', 'gate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29305', 'wf_ringplate', 'wf_ringplate', 's', '1', '1', '0.1', '0', '0', '1', '3687', '1', '1', '0', '1', '1', 'pressure_pad', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29306', 'wf_pressureplate', 'wf_pressureplate', 's', '1', '1', '0.1', '0', '0', '1', '3688', '1', '1', '0', '1', '1', 'pressure_pad', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29307', 'wf_glowball', 'wf_glowball', 's', '1', '1', '1', '0', '0', '0', '3689', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29309', 'wf_act_reset_timers', 'wf_act_reset_timers', 's', '1', '1', '0.5', '1', '0', '0', '3691', '1', '1', '0', '1', '1', 'wired', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29310', 'wf_cnd_furnis_hv_avtrs', 'wf_cnd_furnis_hv_avtrs', 's', '1', '1', '0.5', '1', '0', '0', '3692', '1', '1', '0', '1', '1', 'wired', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29311', 'wf_arrowplate', 'wf_arrowplate', 's', '1', '1', '0.1', '0', '0', '1', '3693', '1', '1', '0', '1', '1', 'pressure_pad', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29312', 'wf_cnd_trggrer_on_frn', 'wf_cnd_trggrer_on_frn', 's', '1', '1', '0.5', '1', '0', '0', '3694', '1', '1', '0', '1', '1', 'wired', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29313', 'wf_cnd_match_snapshot', 'wf_cnd_match_snapshot', 's', '1', '1', '0.5', '1', '0', '0', '3695', '1', '1', '0', '1', '1', 'wired', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29314', 'wf_wire1', 'wf_wire1', 's', '1', '1', '0', '0', '0', '0', '3696', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29315', 'wf_act_give_score', 'wf_act_give_score', 's', '1', '1', '0.5', '1', '0', '0', '3697', '1', '1', '0', '1', '1', 'wf_act_givepoints', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29316', 'wf_wire3', 'wf_wire3', 's', '1', '1', '0', '0', '0', '0', '3698', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29317', 'wf_glassdoor', 'wf_glassdoor', 's', '1', '1', '0.1', '0', '0', '0', '3699', '1', '1', '0', '1', '1', 'gate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29318', 'wf_act_match_to_sshot', 'wf_act_match_to_sshot', 's', '1', '1', '0.5', '1', '0', '0', '3700', '1', '1', '0', '1', '1', 'wired', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29319', 'wf_floor_switch1', 'wf_floor_switch1', 's', '1', '1', '1', '0', '0', '0', '3701', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29320', 'wf_trg_game_starts', 'wf_trg_game_starts', 's', '1', '1', '0.5', '1', '0', '0', '3702', '1', '1', '0', '1', '1', 'wf_trg_gamestart', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('292308', 'ads_hh_safe', 'ads_hh_safe', 's', '1', '1', '0', '0', '0', '0', '3684', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('29321', 'wf_trg_walks_on_furni', 'wf_trg_walks_on_furni', 's', '1', '1', '0.5', '1', '0', '0', '3703', '1', '1', '0', '1', '1', 'wf_trg_onfurni', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77701', 'bling11_block', 'bling11_block', 's', '1', '1', '2', '1', '0', '0', '3801', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77702', 'bling11_dvd', 'bling11_dvd', 's', '1', '2', '1.6', '1', '0', '0', '3793', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77703', 'bling11_dvn', 'bling11_dnv', 's', '1', '3', '1.2', '0', '0', '0', '3798', '1', '1', '0', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77704', 'bling11_floor', 'bling11_floor', 's', '1', '1', '0.1', '1', '0', '0', '3794', '1', '1', '0', '1', '1', 'default', '9', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77705', 'bling11_pillar', 'bling11_pillar', 's', '1', '1', '3.3', '1', '0', '0', '3802', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77706', 'bling11_plant', 'bling11_plant', 's', '1', '1', '1', '0', '0', '0', '3795', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77707', 'bling11_rug1', 'bling11_rug1', 's', '2', '2', '0.1', '1', '0', '1', '3788', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77708', 'bling11_rug2', 'bling11_rug2', 's', '3', '3', '0.2', '1', '0', '1', '3797', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77709', 'bling11_seat1', 'bling11_seat1', 's', '1', '1', '1', '0', '1', '0', '3800', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77710', 'bling11_seat2', 'bling11_seat2', 's', '1', '1', '1.2', '0', '1', '0', '3799', '1', '1', '0', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77711', 'bling11_slot', 'bling11_slot', 's', '1', '1', '1', '0', '0', '0', '3786', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77712', 'bling11_sofa', 'bling11_sofa', 's', '3', '1', '0.4', '0', '1', '0', '3790', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77713', 'bling11_statue1', 'bling11_statue1', 's', '1', '1', '1', '0', '0', '0', '3791', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77714', 'bling11_statue2', 'bling11_statue2', 's', '2', '2', '1', '0', '0', '0', '3785', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77715', 'bling11_tele', 'bling11_tele', 's', '1', '1', '0.1', '0', '0', '0', '3789', '1', '1', '0', '1', '1', 'teleport', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77716', 'bling11_towels', 'bling11_towels', 's', '1', '1', '1', '0', '0', '0', '3787', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77717', 'val11_floor', 'val11_floor', 's', '2', '2', '0.1', '1', '0', '1', '3792', '1', '1', '0', '1', '1', 'rollerskate', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77801', 'china_rabbit', 'china_rabbit', 's', '1', '1', '1', '0', '0', '0', '3796', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77900', 'qt_val11_holoduck', 'qt_val11_holoduck', 's', '1', '1', '1', '0', '0', '0', '3803', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77901', 'qt_val11_holoheart', 'qt_val11_holoheart', 's', '1', '1', '1', '0', '0', '0', '3813', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77902', 'qt_val11_discoball', 'qt_val11_discoball', 's', '1', '1', '0', '1', '0', '0', '3805', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77903', 'qt_val11_duckformer', 'qt_val11_duckformer', 's', '1', '1', '1', '1', '0', '0', '3809', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77904', 'qt_val11_heartlights', 'qt_val11_heartlights', 'i', '1', '1', '0', '0', '0', '0', '4378', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77905', 'qt_val11_jellychair', 'qt_val11_jellychair', 's', '1', '1', '1', '1', '1', '0', '3810', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77906', 'qt_val11_jellyheart', 'qt_val11_jellyheart', 's', '1', '1', '1', '1', '0', '0', '3811', '1', '1', '0', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77907', 'val11_chair', 'val11_chair', 's', '1', '1', '1.2', '0', '1', '0', '3806', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77908', 'val11_playa', 'val11_playa', 's', '1', '1', '1', '1', '0', '0', '3804', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('77909', 'val11_rail', 'val11_rail', 's', '1', '2', '0.5', '1', '0', '0', '3812', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89915', 'pond', 'pond', 's', '1', '1', '0.01', '0', '0', '1', '3831', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89916', 'val11_present', 'val11_present', 's', '1', '1', '1.2', '1', '0', '0', '3832', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89917', 'prizetrophy_cine', 'prizetrophy_cine', 's', '1', '1', '1', '0', '0', '0', '3833', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89918', 'cine_vipsign', 'cine_vipsign', 's', '1', '1', '1', '0', '0', '0', '3834', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89919', 'limo_b_mid3', 'limo_b_mid3', 's', '2', '1', '1', '0', '0', '0', '3835', '1', '1', '1', '1', '1', 'vendingmachine', '1', '50', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89920', 'limo_b_mid2', 'limo_b_mid2', 's', '2', '1', '0.3', '0', '0', '1', '3836', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89921', 'limo_b_front', 'limo_b_front', 's', '2', '1', '1', '0', '0', '0', '3837', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89922', 'limo_b_mid', 'limo_b_mid', 's', '2', '1', '1.2', '0', '1', '0', '3838', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89923', 'cine_star', 'cine_star', 's', '1', '1', '0.1', '1', '0', '1', '3839', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89924', 'limo_b_back', 'limo_b_back', 's', '2', '1', '1.2', '0', '1', '0', '3840', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89925', 'ads_bigtv_missmix', 'ads_bigtv_missmix', 'i', '1', '1', '1', '0', '0', '0', '4381', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89926', 'cine_curtain', 'cine_curtain', 's', '8', '1', '0.001', '0', '0', '0', '3841', '1', '1', '1', '1', '1', 'gate', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89927', 'cine_screen', 'cine_screen', 's', '8', '1', '1', '0', '0', '0', '3842', '1', '1', '1', '1', '1', 'default', '7', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89928', 'theatre_seat_g', 'theatre_seat_g', 's', '1', '1', '1', '0', '1', '0', '3843', '1', '1', '1', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89929', 'cine_tile', 'cine_tile', 's', '1', '1', '0.1', '0', '0', '1', '3844', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89930', 'cine_bench_b', 'cine_bench_b', 's', '3', '1', '1.1', '0', '1', '0', '3845', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89931', 'theatre_seat_b', 'theatre_seat_b', 's', '1', '1', '1', '0', '1', '0', '3846', '1', '1', '1', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89932', 'cine_roof', 'cine_roof', 's', '3', '3', '0.1', '1', '0', '1', '3847', '1', '1', '1', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89933', 'cine_popcorn', 'cine_popcorn', 's', '1', '1', '1', '0', '0', '0', '3848', '1', '1', '1', '1', '1', 'vendingmachine', '1', '63', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89934', 'cine_bench', 'cine_bench', 's', '3', '1', '1.1', '0', '1', '0', '3849', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89935', 'cine_bench_g', 'cine_bench_g', 's', '3', '1', '1.1', '0', '1', '0', '3850', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89936', 'cine_ticket_booth', 'cine_ticket_booth', 's', '1', '1', '1.5', '0', '1', '0', '3851', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89937', 'cine_projector', 'cine_projector', 's', '1', '1', '1', '0', '0', '0', '3852', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89907', 'gothic_st_glass', 'gothic_st_glass', 'i', '1', '1', '1', '0', '0', '0', '4380', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89908', 'gothic_candles', 'gothic_candles', 's', '1', '1', '1', '0', '0', '0', '3825', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89909', 'gothic_bed', 'gothic_bed', 's', '2', '3', '1.6', '0', '1', '0', '3824', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89910', 'gothic_bowl', 'gothic_bowl', 's', '1', '1', '1', '0', '0', '0', '3828', '1', '1', '1', '1', '1', 'vendingmachine', '1', '62', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89911', 'gothic_desk', 'gothic_desk', 's', '1', '2', '1', '0', '0', '0', '3826', '1', '1', '1', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89912', 'ads_grefu_trophy', 'ads_grefu_trophy', 's', '1', '1', '1', '0', '0', '0', '3827', '1', '1', '1', '1', '1', 'trophy', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89900', 'limo_w_front', 'limo_w_front', 's', '2', '1', '1', '0', '0', '0', '3823', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89901', 'limo_w_mid', 'limo_w_mid', 's', '2', '1', '1', '0', '1', '0', '3819', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89902', 'limo_w_mid2', 'limo_w_mid2', 's', '2', '1', '0.3', '0', '0', '1', '3820', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89903', 'limo_w_back', 'limo_w_back', 's', '2', '1', '1', '0', '1', '0', '3822', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89904', 'petfood19', 'petfood19', 's', '1', '1', '0.001', '0', '0', '1', '3821', '1', '1', '1', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89905', 'petfood18', 'petfood18', 's', '1', '1', '0.001', '0', '0', '1', '3816', '1', '1', '1', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89906', 'petfood17', 'petfood17', 's', '1', '1', '0.001', '0', '0', '1', '3817', '1', '1', '1', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89950', 'fireworks_01', 'fireworks_01', 's', '1', '1', '1', '0', '0', '0', '3772', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89951', 'fireworks_02', 'fireworks_02', 's', '1', '1', '1', '0', '0', '0', '3776', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89952', 'fireworks_03', 'fireworks_03', 's', '1', '1', '1', '0', '0', '0', '3774', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89953', 'fireworks_04', 'fireworks_04', 's', '1', '1', '1', '0', '0', '0', '3784', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89954', 'fireworks_05', 'fireworks_05', 's', '1', '1', '1', '0', '0', '0', '3779', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89955', 'fireworks_06', 'fireworks_06', 's', '1', '1', '1', '0', '0', '0', '3783', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89956', 'fireworks_07', 'fireworks_07', 's', '1', '1', '1', '0', '0', '0', '3782', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89938', 'wf_box', 'wf_box', 's', '1', '1', '1.2', '1', '0', '0', '3853', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89939', 'wf_maze', 'wf_maze', 's', '1', '1', '1', '0', '0', '0', '3854', '1', '1', '1', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89940', 'ads_rangocactus', 'ads_rangocactus', 's', '1', '1', '1', '0', '0', '0', '3855', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89941', 'cine_glass', 'cine_glass', 's', '1', '1', '0.01', '1', '0', '0', '3856', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89942', 'wf_cnd_has_furni_on', 'wf_cnd_has_furni_on', 's', '1', '1', '0.6', '1', '0', '0', '3857', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89943', 'cine_light2', 'cine_light2', 'i', '1', '1', '1', '1', '0', '0', '4382', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89944', 'cine_light1', 'cine_light1', 'i', '1', '1', '1', '1', '0', '0', '4383', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99947', 'cubie_shelf_3_p', 'cubie_shelf_3_p', 's', '2', '1', '1', '1', '0', '0', '3873', '1', '1', '1', '1', '1', 'default', '9', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99948', 'cubie_shelf_4_b', 'cubie_shelf_4_b', 's', '3', '1', '1', '1', '0', '0', '3882', '1', '1', '1', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99949', 'cubie_shelf_1_b', 'cubie_shelf_1_b', 's', '1', '1', '1', '0', '0', '0', '3875', '1', '1', '1', '1', '1', 'default', '14', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99950', 'cubie_shelf_1_p', 'cubie_shelf_1_p', 's', '1', '1', '1', '0', '0', '0', '3874', '1', '1', '1', '1', '1', 'default', '14', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99951', 'cubie_chair_p', 'cubie_chair_p', 's', '1', '1', '1.2', '0', '1', '0', '3879', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99952', 'cubie_shelf_4_p', 'cubie_shelf_4_p', 's', '3', '1', '1', '0', '0', '0', '3866', '1', '1', '1', '1', '1', 'default', '6', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99953', 'cubie_bigtable_p', 'cubie_bigtable_p', 's', '2', '2', '0.5', '1', '0', '1', '3876', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99954', 'cubie_shelf_0_p', 'cubie_shelf_0_p', 's', '1', '1', '0.5', '1', '0', '0', '3884', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99955', 'cubie_beanbag_b', 'cubie_beanbag_b', 's', '1', '1', '1', '0', '1', '0', '3877', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99956', 'cubie_chair_b', 'cubie_chair_b', 's', '1', '1', '1.2', '0', '1', '0', '3859', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99957', 'cubie_bed_b', 'cubie_bed_b', 's', '1', '3', '1.8', '0', '0', '0', '3871', '1', '1', '1', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99958', 'cubie_bigtable_b', 'cubie_bigtable_b', 's', '2', '2', '0.5', '1', '0', '1', '3861', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99959', 'cubie_stool_b', 'cubie_stool_b', 's', '1', '1', '1.2', '0', '1', '0', '3869', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99960', 'cubie_beanbag_p', 'cubie_beanbag_p', 's', '1', '1', '1', '0', '1', '0', '3862', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99961', 'cubie_shelf_0_b', 'cubie_shelf_0_b', 's', '1', '1', '0.5', '1', '0', '0', '3865', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99962', 'cubie_shelf_2_p', 'cubie_shelf_2_p', 's', '2', '1', '1', '1', '0', '0', '3867', '1', '1', '1', '1', '1', 'default', '17', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99963', 'cubie_rug_p', 'cubie_rug_p', 's', '2', '3', '0.1', '1', '0', '1', '3870', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99964', 'cubie_sofaseat_b', 'cubie_sofaseat_b', 's', '1', '1', '1', '0', '1', '0', '3881', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99965', 'cubie_table', 'cubie_table', 's', '1', '2', '1', '1', '0', '0', '3880', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99966', 'cubie_sofaseat_p', 'cubie_sofaseat_p', 's', '1', '1', '1', '0', '1', '0', '3864', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99967', 'cubie_bed_p', 'cubie_bed_p', 's', '1', '3', '1.8', '0', '0', '0', '3868', '1', '1', '1', '1', '1', 'bed', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99968', 'cubie_shelf_3_b', 'cubie_shelf_3_b', 's', '2', '1', '1', '1', '0', '0', '3872', '1', '1', '1', '1', '1', 'default', '9', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99969', 'cubie_shelf_2_b', 'cubie_shelf_2_b', 's', '2', '1', '1', '1', '0', '0', '3883', '1', '1', '1', '1', '1', 'default', '14', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99970', 'cubie_lamp_b', 'cubie_lamp_b', 's', '1', '1', '1', '0', '0', '0', '3858', '1', '1', '1', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99971', 'cubie_stool_p', 'cubie_stool_p', 's', '1', '1', '1.2', '0', '1', '0', '3878', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99972', 'cubie_wallshelf_b', 'cubie_wallshelf_b', 'i', '1', '1', '1', '1', '0', '0', '4389', '1', '1', '1', '1', '1', 'default', '7', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99973', 'cubie_decklight_p', 'cubie_decklight_p', 'i', '1', '1', '1', '1', '0', '0', '4385', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99974', 'cubie_wallshelf_p', 'cubie_wallshelf_p', 'i', '1', '1', '1', '1', '0', '0', '4392', '1', '1', '1', '1', '1', 'default', '7', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99975', 'cubie_decal_0', 'cubie_decal_0', 'i', '1', '1', '1', '1', '0', '0', '4395', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99976', 'cubie_decal_3', 'cubie_decal_3', 'i', '1', '1', '1', '1', '0', '0', '4384', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99977', 'cubie_decal_1_p', 'cubie_decal_1_p', 'i', '1', '1', '1', '1', '0', '0', '4390', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99978', 'cubie_decklight_b', 'cubie_decklight_b', 'i', '1', '1', '1', '1', '0', '0', '4394', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99979', 'cubie_decal_1_b', 'cubie_decal_1_b', 'i', '1', '1', '1', '1', '0', '0', '4386', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99980', 'cubie_decal_2_b', 'cubie_decal_2_b', 'i', '1', '1', '1', '1', '0', '0', '4387', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99981', 'cubie_decal_3_p', 'cubie_decal_3_p', 'i', '1', '1', '1', '1', '0', '0', '4388', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99982', 'cubie_decal_2_p', 'cubie_decal_2_p', 'i', '1', '1', '1', '1', '0', '0', '4393', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99983', 'cubie_decal_3_b', 'cubie_decal_3_b', 'i', '1', '1', '1', '1', '0', '0', '4384', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('80378', 'waasa_rug1', 'waasa_rug1', 's', '2', '4', '0.01', '1', '0', '1', '3899', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('80379', 'waasa_rug2', 'waasa_rug2', 's', '2', '4', '0.01', '1', '0', '1', '3904', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('80380', 'waasa_rug3', 'waasa_rug3', 's', '2', '4', '0.01', '1', '0', '1', '3900', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('80381', 'waasa_rug4', 'waasa_rug4', 's', '2', '4', '0.01', '1', '0', '1', '3902', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('80382', 'waasa_rug5', 'waasa_rug5', 's', '2', '4', '0.01', '1', '0', '1', '3898', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('80383', 'waasa_chair_wood', 'waasa_chair_wood', 's', '1', '1', '1', '0', '1', '0', '3903', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('80384', 'waasa_aquarium', 'waasa_aquarium', 's', '1', '2', '0', '0', '0', '0', '3901', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('80385', 'newbie_nest', 'newbie_nest', 's', '1', '1', '0.01', '0', '0', '1', '3897', '1', '1', '0', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99946', 'cubie_lamp_p', 'cubie_lamp_p', 's', '1', '1', '1', '0', '0', '0', '3863', '1', '1', '1', '1', '1', 'default', '4', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('99945', 'cubie_rug_b', 'cubie_rug_b', 's', '2', '3', '0.1', '1', '0', '1', '3860', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89984', 'newbie_present', 'newbie_present', 's', '1', '1', '1', '1', '0', '0', '3885', '1', '1', '1', '1', '1', 'default', '5', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89985', 'tv_flat', 'tv_flat', 's', '2', '1', '1', '0', '0', '0', '3886', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89986', 'waasa_table2', 'waasa_table2', 's', '2', '1', '1', '1', '0', '0', '3887', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89987', 'computer_flatscreen', 'computer_flatscreen', 's', '1', '1', '1', '0', '0', '0', '3888', '1', '1', '1', '1', '1', 'default', '3', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89988', 'waasa_chair', 'waasa_chair', 's', '1', '1', '1.2', '0', '1', '0', '3889', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89989', 'waasa_ship2', 'waasa_ship2', 's', '2', '1', '1', '0', '0', '0', '3890', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89990', 'waasa_ship1', 'waasa_ship1', 's', '1', '1', '1', '0', '0', '0', '3891', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89991', 'waasa_bunk_bed', 'waasa_bunk_bed', 's', '3', '1', '1', '1', '0', '0', '3892', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89992', 'computer_laptop', 'computer_laptop', 's', '1', '1', '1', '0', '0', '0', '3893', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89993', 'computer_old', 'computer_old', 's', '1', '1', '1', '0', '0', '0', '3894', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89994', 'waasa_table1', 'waasa_table1', 's', '1', '1', '1', '1', '0', '0', '3895', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89995', 'waasa_desk', 'waasa_desk', 's', '2', '1', '1', '1', '0', '0', '3896', '1', '1', '1', '1', '1', 'default', '1', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89996', 'waasa_wall_shelf2', 'waasa_wall_shelf2', 'i', '1', '1', '1', '1', '0', '0', '4396', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('89997', 'waasa_wall_shelf1', 'waasa_wall_shelf1', 'i', '1', '1', '1', '1', '0', '0', '4397', '1', '1', '1', '1', '1', 'default', '2', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20600', 'Spiders', 'a0 pet8', 's', '1', '1', '1', '1', '0', '0', '3817', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20601', 'Frogs', 'a0 pet11', 's', '1', '1', '1', '1', '0', '0', '1532', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20602', 'Chicks', 'a0 pet10', 's', '1', '1', '1', '1', '0', '0', '1532', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');INSERT INTO `furniture` VALUES ('20603', 'Dragon', 'a0 pet12', 's', '1', '1', '1', '1', '0', '0', '10117', '0', '0', '0', '0', '0', 'pet', '0', '0', '0', '0', '0', '0');
-- ------------------------------ Table structure for `group_memberships`-- ----------------------------DROP TABLE IF EXISTS `group_memberships`;CREATE TABLE `group_memberships` (  `groupid` int(11) NOT NULL,  `userid` int(11) NOT NULL,  KEY `groupid` (`groupid`),  KEY `userid` (`userid`)) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ------------------------------ Records of group_memberships-- ----------------------------
-- ------------------------------ Table structure for `group_requests`-- ----------------------------DROP TABLE IF EXISTS `group_requests`;CREATE TABLE `group_requests` (  `groupid` int(11) NOT NULL,  `userid` int(11) NOT NULL,  KEY `groupid` (`groupid`),  KEY `userid` (`userid`)) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ------------------------------ Records of group_requests-- ----------------------------
-- ------------------------------ Table structure for `groups`-- ----------------------------DROP TABLE IF EXISTS `groups`;CREATE TABLE `groups` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(50) NOT NULL,  `desc` varchar(255) NOT NULL,  `badge` varchar(50) NOT NULL,  `ownerid` int(11) NOT NULL,  `created` varchar(50) NOT NULL,  `roomid` int(10) unsigned NOT NULL DEFAULT '0',  `locked` enum('closed','locked','open') NOT NULL DEFAULT 'open',  `privacy` enum('blocked','open') NOT NULL DEFAULT 'open',  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of groups-- ----------------------------
-- ------------------------------ Table structure for `help_subjects`-- ----------------------------DROP TABLE IF EXISTS `help_subjects`;CREATE TABLE `help_subjects` (  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,  `caption` varchar(100) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of help_subjects-- ----------------------------INSERT INTO `help_subjects` VALUES ('1', 'Phoenix - General');INSERT INTO `help_subjects` VALUES ('2', 'Credits, Pixels and Achievements');INSERT INTO `help_subjects` VALUES ('3', 'Catalogue and Furniture');INSERT INTO `help_subjects` VALUES ('4', 'Rooms');INSERT INTO `help_subjects` VALUES ('5', 'Infobus');
-- ------------------------------ Table structure for `help_topics`-- ----------------------------DROP TABLE IF EXISTS `help_topics`;CREATE TABLE `help_topics` (  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,  `subject` int(11) unsigned NOT NULL DEFAULT '1',  `title` varchar(50) NOT NULL,  `body` text NOT NULL,  `known_issue` enum('0','1','2') NOT NULL DEFAULT '0',  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of help_topics-- ----------------------------INSERT INTO `help_topics` VALUES ('1', '1', 'What is Phoenix Hotel?', 'uberHotel is a test platform for the new Habbo Hotel Emulator, UberEmulator. We are using this hotel to test and verify the stability, performance, and functionality of the server. This means the hotel will only be available temporarily, and certain features may be missing or broken.', '2');INSERT INTO `help_topics` VALUES ('2', '1', 'Missing/broken features', 'This article will be updated to reflect an overview of features that are missing or broken.', '2');INSERT INTO `help_topics` VALUES ('3', '2', 'How do I get Credits?', 'You can receive credits in a multitude of ways:\r\n\r\n* By signing up to Uber you receive some credits to get you started.\r\n* You will recieve credit updates at preset intervals.\r\n* You can play games and take part in events and competitions for prizes and credits.\r\n* You can trade other users for credits.', '1');INSERT INTO `help_topics` VALUES ('4', '2', 'How do I get Pixels?', 'You automatically receive pixels every now and then. You can exchange these for effects, special pixel offers, and credits. You also receive pixels by completing achievements.', '1');INSERT INTO `help_topics` VALUES ('5', '2', 'What are achievements and how do I get them?', 'Achievements are special tasks you can complete in the hotel which will give you a certain amount of pixels and a cool badge as reward.', '1');INSERT INTO `help_topics` VALUES ('6', '2', 'Are all achievements available on Uber?', 'We have not yet added all achievements. The ones that are available can be seen under the \'Achievements\' tab in your inventory.', '0');INSERT INTO `help_topics` VALUES ('7', '1', 'Staff on Uber', 'Uber is being maintained and moderated by a relatively small staff team. They are here to make sure everything works correctly and to help our players and keep them safe.\r\n\r\nIn general we do not have any staff openings; if we are looking for staff it will be announced on the homepage, or we will approach players we deem capable.', '2');INSERT INTO `help_topics` VALUES ('8', '3', 'I have a suggestion for new furniture!', 'We do NOT accept any requests for custom furniture or anything along those lines, we only use furniture that is available on the official hotels. If you have suggestions for new furniture, try contacting Habbo. They might like your idea!', '0');INSERT INTO `help_topics` VALUES ('9', '3', 'Why is this piece of furniture missing?', 'We may have not added all furniture yet or we may have purposely decided not to put it up for sale. Please do not contact us about this - we are constantly adding new furniture.', '1');INSERT INTO `help_topics` VALUES ('10', '5', 'Where is the Infobus?', 'The infobus is currently available in the navigator, although bugged.', '1');INSERT INTO `help_topics` VALUES ('11', '3', 'Stacking-related issues', 'The stacking system is a sensitive and complicated mechanism that still requires some work. There is generally no need to report any problems regarding stacking to us, as we are aware of problems relating to it.\r\n\r\nIf there are problems with stacking relating to a specific piece of furniture, then please submit a suggestion or bug report on our UserVoice forum.', '1');INSERT INTO `help_topics` VALUES ('12', '1', 'Support Tickets & User Reports', 'We would just like to urge that the ticket system you will find in this help tool and when reporting users is only intended for SERIOUS requests. Yes, it works, and there is no need to test it. Any requests that are offensive, spam, or in anyway inappropriate may result in a ban.\r\n\r\nAlso, when submitting a help request, please keep in mind that it must be in English.', '2');
-- ------------------------------ Table structure for `items`-- ----------------------------DROP TABLE IF EXISTS `items`;CREATE TABLE `items` (  `id` int(10) unsigned NOT NULL,  `user_id` int(10) NOT NULL,  `room_id` int(10) unsigned NOT NULL DEFAULT '0',  `base_item` int(10) unsigned NOT NULL,  `extra_data` text NOT NULL,  `x` int(11) NOT NULL DEFAULT '0',  `y` int(11) NOT NULL DEFAULT '0',  `z` double NOT NULL DEFAULT '0',  `rot` int(11) NOT NULL DEFAULT '0',  `wall_pos` varchar(100) NOT NULL,  PRIMARY KEY (`id`),  UNIQUE KEY `id` (`id`) USING BTREE,  KEY `userid` (`user_id`) USING BTREE,  KEY `roomid` (`room_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of items-- ----------------------------
-- ------------------------------ Table structure for `linkfilter`-- ----------------------------DROP TABLE IF EXISTS `linkfilter`;CREATE TABLE `linkfilter` (  `externalsite` varchar(80) NOT NULL,  PRIMARY KEY (`externalsite`),  KEY `site` (`externalsite`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of linkfilter-- ----------------------------
-- ------------------------------ Table structure for `messenger_friendships`-- ----------------------------DROP TABLE IF EXISTS `messenger_friendships`;CREATE TABLE `messenger_friendships` (  `user_one_id` int(10) unsigned NOT NULL,  `user_two_id` int(10) unsigned NOT NULL,  KEY `user_one_id` (`user_one_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of messenger_friendships-- ----------------------------
-- ------------------------------ Table structure for `messenger_requests`-- ----------------------------DROP TABLE IF EXISTS `messenger_requests`;CREATE TABLE `messenger_requests` (  `from_id` int(10) unsigned NOT NULL,  `to_id` int(10) unsigned NOT NULL,  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,  PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of messenger_requests-- ----------------------------
-- ------------------------------ Table structure for `moderation_presets`-- ----------------------------DROP TABLE IF EXISTS `moderation_presets`;CREATE TABLE `moderation_presets` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `enabled` enum('0','1') NOT NULL DEFAULT '1',  `type` enum('message','roommessage') NOT NULL DEFAULT 'message',  `message` text NOT NULL,  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of moderation_presets-- ----------------------------INSERT INTO `moderation_presets` VALUES ('2', '1', 'message', 'Your language and/or behavior is unacceptable. Please behave appropriately or expect further action.');INSERT INTO `moderation_presets` VALUES ('3', '1', 'roommessage', 'This room is unacceptable to the hotel management.');INSERT INTO `moderation_presets` VALUES ('14', '1', 'message', 'Speaking a foreign language is against hotel policy, if you cotinue you will be banned.');INSERT INTO `moderation_presets` VALUES ('15', '1', 'message', 'Please report this on our UserVoice - http://uber.uservoice.com/forums/45577-general');INSERT INTO `moderation_presets` VALUES ('16', '1', 'roommessage', 'Speaking a foreign language is against hotel policy, if you cotinue you will be banned.');
-- ------------------------------ Table structure for `moderation_tickets`-- ----------------------------DROP TABLE IF EXISTS `moderation_tickets`;CREATE TABLE `moderation_tickets` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `score` int(11) NOT NULL,  `type` int(11) NOT NULL,  `status` enum('open','picked','resolved','abusive','invalid','deleted') NOT NULL DEFAULT 'open',  `sender_id` int(10) unsigned NOT NULL,  `reported_id` int(10) unsigned NOT NULL,  `moderator_id` int(10) unsigned NOT NULL,  `message` text NOT NULL,  `room_id` int(10) unsigned NOT NULL,  `room_name` varchar(100) NOT NULL,  `timestamp` double NOT NULL,  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of moderation_tickets-- ----------------------------INSERT INTO `moderation_tickets` VALUES ('1', '1', '106', 'invalid', '38', '0', '1', 'Because he wants to reach the top.', '9588', 'Apothecary', '1293798523');INSERT INTO `moderation_tickets` VALUES ('2', '1', '105', 'resolved', '1', '43', '1', 'nigz 4 lf lol osrngosebosbodujrbgosdjbgds', '5919', 'Journey', '1293914038');INSERT INTO `moderation_tickets` VALUES ('3', '1', '106', 'open', '23', '0', '0', 'every time i leave a room i dc n poop', '9590', 'Tailor Training Camp', '1293967304');
-- ------------------------------ Table structure for `navigator_flatcats`-- ----------------------------DROP TABLE IF EXISTS `navigator_flatcats`;CREATE TABLE `navigator_flatcats` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `caption` varchar(100) NOT NULL,  `enabled` enum('0','1') NOT NULL DEFAULT '1',  `min_rank` int(11) NOT NULL DEFAULT '1',  `cantrade` enum('0','1') NOT NULL DEFAULT '1',  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of navigator_flatcats-- ----------------------------INSERT INTO `navigator_flatcats` VALUES ('15', 'No Category', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('1', 'Phoenix Staff Rooms', '1', '4', '1');INSERT INTO `navigator_flatcats` VALUES ('2', 'Competition Category', '0', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('3', 'unused competition category', '0', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('4', 'Themed & RPG Rooms', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('5', 'Restaurant, Bar & Night Club Rooms', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('6', 'Club & Group Rooms', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('7', 'Chat, Chill & Discussion Rooms', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('8', 'Maze & Theme Park Rooms', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('9', 'Trading & Shopping Rooms', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('10', 'Gaming & Race Rooms', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('11', 'Hair Salons & Modelling Rooms', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('12', 'Help Centre, Guide & Service Rooms', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('13', 'School, Daycare & Adoption Rooms', '1', '1', '1');INSERT INTO `navigator_flatcats` VALUES ('14', 'All Other Rooms', '1', '1', '1');
-- ------------------------------ Table structure for `navigator_publics`-- ----------------------------DROP TABLE IF EXISTS `navigator_publics`;CREATE TABLE `navigator_publics` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `ordernum` int(11) NOT NULL DEFAULT '1',  `bannertype` enum('0','1') NOT NULL COMMENT '0 = big, 1 = normal',  `caption` varchar(100) NOT NULL,  `image` text NOT NULL,  `image_type` enum('internal','external') NOT NULL DEFAULT 'internal',  `room_id` int(10) unsigned NOT NULL,  `category` enum('0','1') NOT NULL DEFAULT '0',  `category_parent_id` int(11) NOT NULL DEFAULT '-1',  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of navigator_publics-- ----------------------------INSERT INTO `navigator_publics` VALUES ('1', '1', '1', 'Hotel Reception', 'newbie_lobby', 'internal', '1', '0', '0');INSERT INTO `navigator_publics` VALUES ('2', '3', '1', 'Theatredrome', 'theatredrome_xmas', 'internal', '2', '0', '0');INSERT INTO `navigator_publics` VALUES ('3', '8', '1', 'The Orient', '', 'internal', '3', '0', '0');INSERT INTO `navigator_publics` VALUES ('4', '6', '1', 'Picnic Area', 'picnic', 'internal', '4', '0', '0');INSERT INTO `navigator_publics` VALUES ('5', '5', '1', 'Tea Room', 'tearoom', 'internal', '5', '0', '0');INSERT INTO `navigator_publics` VALUES ('6', '7', '1', 'Dusty Lounge', 'dusty_lounge', 'internal', '6', '0', '0');INSERT INTO `navigator_publics` VALUES ('7', '4', '1', 'Uber Cinema', 'habbo_cinema', 'internal', '7', '0', '0');
-- ------------------------------ Table structure for `permissions_ranks`-- ----------------------------DROP TABLE IF EXISTS `permissions_ranks`;CREATE TABLE `permissions_ranks` (  `rank` int(1) unsigned NOT NULL,  `cmd_update_permissions` enum('1','0') NOT NULL,  `cmd_update_settings` enum('1','0') NOT NULL,  `cmd_update_bots` enum('1','0') NOT NULL,  `cmd_update_catalogue` enum('1','0') NOT NULL,  `cmd_update_navigator` enum('1','0') NOT NULL,  `cmd_update_items` enum('1','0') NOT NULL,  `cmd_award` enum('1','0') NOT NULL,  `cmd_coords` enum('1','0') NOT NULL,  `cmd_override` enum('1','0') NOT NULL,  `cmd_coins` enum('1','0') NOT NULL,  `cmd_pixels` enum('1','0') NOT NULL,  `cmd_ha` enum('1','0') NOT NULL,  `cmd_hal` enum('1','0') NOT NULL,  `cmd_freeze` enum('1','0') NOT NULL,  `cmd_enable` enum('1','0') NOT NULL,  `cmd_roommute` enum('1','0') NOT NULL,  `cmd_setspeed` enum('1','0') NOT NULL,  `cmd_masscredits` enum('1','0') NOT NULL,  `cmd_globalcredits` enum('1','0') NOT NULL,  `cmd_roombadge` enum('1','0') NOT NULL,  `cmd_massbadge` enum('1','0') NOT NULL,  `cmd_userinfo` enum('1','0') NOT NULL,  `cmd_shutdown` enum('1','0') NOT NULL,  `cmd_givebadge` enum('1','0') NOT NULL,  `cmd_invisible` enum('1','0') NOT NULL,  `cmd_ban` enum('1','0') NOT NULL,  `cmd_superban` enum('1','0') NOT NULL,  `cmd_roomkick` enum('1','0') NOT NULL,  `cmd_roomalert` enum('1','0') NOT NULL,  `cmd_mute` enum('1','0') NOT NULL,  `cmd_unmute` enum('1','0') NOT NULL,  `cmd_alert` enum('1','0') NOT NULL,  `cmd_motd` enum('1','0') NOT NULL,  `cmd_kick` enum('1','0') NOT NULL,  `cmd_update_filter` enum('1','0') NOT NULL,  `acc_anyroomrights` enum('1','0') NOT NULL,  `acc_anyroomowner` enum('1','0') NOT NULL,  `acc_supporttool` enum('1','0') NOT NULL,  `acc_chatlogs` enum('1','0') NOT NULL,  `acc_enter_fullrooms` enum('1','0') NOT NULL,  `acc_enter_anyroom` enum('1','0') NOT NULL,  `acc_restrictedrooms` enum('1','0') NOT NULL,  `acc_unkickable` enum('1','0') NOT NULL,  `acc_unbannable` enum('1','0') NOT NULL,  `cmd_removebadge` enum('1','0') NOT NULL DEFAULT '0',  `cmd_summon` enum('1','0') NOT NULL DEFAULT '0',  `cmd_update_bans` enum('1','0') NOT NULL DEFAULT '0',  `cmd_masspixels` enum('1','0') NOT NULL DEFAULT '0',  `cmd_globalpixels` enum('1','0') NOT NULL DEFAULT '0',  `cmd_sa` enum('1','0') NOT NULL DEFAULT '0',  `receive_sa` enum('1','0') NOT NULL DEFAULT '0',  `cmd_ipban` enum('1','0') NOT NULL DEFAULT '0',  `floodtime` int(3) NOT NULL DEFAULT '30',  `cmd_spull` enum('1','0') NOT NULL DEFAULT '0',  `cmd_disconnect` enum('1','0') NOT NULL DEFAULT '0',  `cmd_update_achievements` enum('1','0') NOT NULL DEFAULT '0',  `ignore_friendsettings` enum('1','0') NOT NULL DEFAULT '0',  `cmd_update_texts` enum('1','0') NOT NULL DEFAULT '0',  `cmd_points` enum('1','0') NOT NULL DEFAULT '0',  `cmd_teleport` enum('1','0') NOT NULL DEFAULT '0',  `cmd_masspoints` enum('1','0') NOT NULL DEFAULT '0',  `cmd_globalpoints` enum('1','0') NOT NULL DEFAULT '0',  `cmd_empty` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_sql` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_badge` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_effect` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_award` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_send` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_credits` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_pixels` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_points` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_rank` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_roomusers` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userhasachievement` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userhasbadge` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userhasvip` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userhaseffect` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userrank` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_usercredits` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userpixels` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userpoints` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_dance` enum('0','1') NOT NULL DEFAULT '0',  `wired_give_respect` enum('0','1') NOT NULL DEFAULT '0',  `wired_give_handitem` enum('0','1') NOT NULL DEFAULT '0',  `cmd_userinfo_viewip` enum('0','1') NOT NULL DEFAULT '0',  `wired_cnd_usergroups` enum('0','1') NOT NULL DEFAULT '0',  `wired_cnd_wearing` enum('0','1') NOT NULL DEFAULT '0',  `wired_cnd_carrying` enum('0','1') NOT NULL DEFAULT '0',  `wired_give_alert` enum('0','1') NOT NULL DEFAULT '0',  `ignore_roommute` enum('0','1') NOT NULL DEFAULT '0',  PRIMARY KEY (`rank`),  UNIQUE KEY `rank` (`rank`) USING BTREE) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ------------------------------ Records of permissions_ranks-- ----------------------------INSERT INTO `permissions_ranks` VALUES ('1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '20', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');INSERT INTO `permissions_ranks` VALUES ('2', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '1', '0', '0', '0', '1', '1', '1', '1', '1', '1', '1', '0', '0', '0', '0', '0', '0', '1', '0', '20', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');INSERT INTO `permissions_ranks` VALUES ('3', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '1', '1', '1', '0', '1', '0', '0', '0', '1', '1', '1', '1', '1', '1', '1', '0', '0', '0', '0', '0', '1', '1', '0', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');INSERT INTO `permissions_ranks` VALUES ('4', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '1', '1', '1', '1', '1', '0', '1', '0', '0', '0', '1', '1', '1', '1', '1', '1', '1', '0', '0', '0', '0', '0', '1', '1', '0', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');INSERT INTO `permissions_ranks` VALUES ('5', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '1', '0', '0', '1', '1', '0', '0', '0', '0', '0', '1', '0', '0', '0', '1', '0', '1', '1', '1', '1', '1', '0', '1', '0', '1', '0', '1', '1', '1', '1', '1', '1', '1', '0', '0', '0', '0', '0', '1', '1', '0', '5', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');INSERT INTO `permissions_ranks` VALUES ('6', '0', '0', '0', '0', '0', '0', '1', '1', '1', '1', '1', '1', '1', '0', '1', '1', '0', '0', '0', '1', '1', '1', '0', '1', '0', '1', '1', '1', '1', '1', '1', '1', '1', '1', '0', '1', '1', '1', '1', '1', '1', '1', '1', '1', '0', '0', '0', '0', '0', '1', '1', '1', '5', '0', '0', '0', '1', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');INSERT INTO `permissions_ranks` VALUES ('7', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '0', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '0', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '0');
-- ------------------------------ Table structure for `permissions_users`-- ----------------------------DROP TABLE IF EXISTS `permissions_users`;CREATE TABLE `permissions_users` (  `userid` int(11) unsigned NOT NULL,  `cmd_update_permissions` enum('1','0') NOT NULL,  `cmd_update_settings` enum('1','0') NOT NULL,  `cmd_update_bots` enum('1','0') NOT NULL,  `cmd_update_catalogue` enum('1','0') NOT NULL,  `cmd_update_navigator` enum('1','0') NOT NULL,  `cmd_update_items` enum('1','0') NOT NULL,  `cmd_award` enum('1','0') NOT NULL,  `cmd_coords` enum('1','0') NOT NULL,  `cmd_override` enum('1','0') NOT NULL,  `cmd_coins` enum('1','0') NOT NULL,  `cmd_pixels` enum('1','0') NOT NULL,  `cmd_ha` enum('1','0') NOT NULL,  `cmd_hal` enum('1','0') NOT NULL,  `cmd_freeze` enum('1','0') NOT NULL,  `cmd_enable` enum('1','0') NOT NULL,  `cmd_roommute` enum('1','0') NOT NULL,  `cmd_setspeed` enum('1','0') NOT NULL,  `cmd_masscredits` enum('1','0') NOT NULL,  `cmd_globalcredits` enum('1','0') NOT NULL,  `cmd_roombadge` enum('1','0') NOT NULL,  `cmd_massbadge` enum('1','0') NOT NULL,  `cmd_userinfo` enum('1','0') NOT NULL,  `cmd_shutdown` enum('1','0') NOT NULL,  `cmd_givebadge` enum('1','0') NOT NULL,  `cmd_invisible` enum('1','0') NOT NULL,  `cmd_ban` enum('1','0') NOT NULL,  `cmd_superban` enum('1','0') NOT NULL,  `cmd_roomkick` enum('1','0') NOT NULL,  `cmd_roomalert` enum('1','0') NOT NULL,  `cmd_mute` enum('1','0') NOT NULL,  `cmd_unmute` enum('1','0') NOT NULL,  `cmd_alert` enum('1','0') NOT NULL,  `cmd_motd` enum('1','0') NOT NULL,  `cmd_kick` enum('1','0') NOT NULL,  `cmd_update_filter` enum('1','0') NOT NULL,  `acc_anyroomrights` enum('1','0') NOT NULL,  `acc_anyroomowner` enum('1','0') NOT NULL,  `acc_supporttool` enum('1','0') NOT NULL,  `acc_chatlogs` enum('1','0') NOT NULL,  `acc_enter_fullrooms` enum('1','0') NOT NULL,  `acc_enter_anyroom` enum('1','0') NOT NULL,  `acc_restrictedrooms` enum('1','0') NOT NULL,  `acc_unkickable` enum('1','0') NOT NULL,  `acc_unbannable` enum('1','0') NOT NULL,  `cmd_removebadge` enum('1','0') NOT NULL DEFAULT '0',  `cmd_summon` enum('1','0') NOT NULL DEFAULT '0',  `cmd_update_bans` enum('1','0') NOT NULL DEFAULT '0',  `cmd_masspixels` enum('1','0') NOT NULL DEFAULT '0',  `cmd_globalpixels` enum('1','0') NOT NULL DEFAULT '0',  `cmd_sa` enum('1','0') NOT NULL DEFAULT '0',  `receive_sa` enum('1','0') NOT NULL DEFAULT '0',  `cmd_ipban` enum('1','0') NOT NULL DEFAULT '0',  `floodtime` int(3) NOT NULL DEFAULT '30',  `cmd_spull` enum('1','0') NOT NULL DEFAULT '0',  `cmd_disconnect` enum('1','0') NOT NULL DEFAULT '0',  `cmd_update_achievements` enum('1','0') NOT NULL DEFAULT '0',  `ignore_friendsettings` enum('1','0') NOT NULL DEFAULT '0',  `cmd_update_texts` enum('1','0') NOT NULL DEFAULT '0',  `cmd_points` enum('1','0') NOT NULL DEFAULT '0',  `cmd_teleport` enum('1','0') NOT NULL DEFAULT '0',  `cmd_masspoints` enum('1','0') NOT NULL DEFAULT '0',  `cmd_globalpoints` enum('1','0') NOT NULL DEFAULT '0',  `cmd_empty` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_roomusers` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userhasachievement` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userhasbadge` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userhasvip` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userhaseffect` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userrank` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_usercredits` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userpixels` enum('1','0') NOT NULL DEFAULT '0',  `wired_cnd_userpoints` enum('1','0') NOT NULL DEFAULT '0',  `wired_give_dance` enum('0','1') NOT NULL DEFAULT '0',  `wired_give_respect` enum('0','1') NOT NULL DEFAULT '0',  `wired_give_handitem` enum('0','1') NOT NULL DEFAULT '0',  `wired_cnd_usergroups` enum('0','1') NOT NULL DEFAULT '0',  `wired_cnd_wearing` enum('0','1') NOT NULL DEFAULT '0',  `wired_cnd_carrying` enum('0','1') NOT NULL DEFAULT '0',  `wired_give_alert` enum('0','1') NOT NULL DEFAULT '0',  `ignore_roommute` enum('0','1') NOT NULL DEFAULT '0',  PRIMARY KEY (`userid`),  UNIQUE KEY `userid` (`userid`) USING BTREE) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ------------------------------ Records of permissions_users-- ----------------------------
-- ------------------------------ Table structure for `permissions_vip`-- ----------------------------DROP TABLE IF EXISTS `permissions_vip`;CREATE TABLE `permissions_vip` (  `cmdPush` enum('0','1') NOT NULL DEFAULT '1',  `cmdPull` enum('0','1') NOT NULL DEFAULT '1',  `cmdFlagme` enum('0','1') NOT NULL DEFAULT '1',  `cmdMimic` enum('0','1') NOT NULL DEFAULT '1',  `cmdMoonwalk` enum('0','1') NOT NULL DEFAULT '1',  `cmdFollow` enum('1','0') NOT NULL DEFAULT '1') ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of permissions_vip-- ----------------------------INSERT INTO `permissions_vip` VALUES ('1', '1', '1', '1', '1', '1');
-- ------------------------------ Table structure for `quests`-- ----------------------------DROP TABLE IF EXISTS `quests`;CREATE TABLE `quests` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `type` varchar(100) NOT NULL,  `action` varchar(100) NOT NULL,  `needofcount` int(10) NOT NULL DEFAULT '1',  `enabled` enum('0','1') NOT NULL DEFAULT '1',  `level_num` int(10) NOT NULL DEFAULT '1',  `pixel_reward` int(10) NOT NULL DEFAULT '50',  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of quests-- ----------------------------INSERT INTO `quests` VALUES ('1', 'room_builder', 'MOVE_ITEM', '3', '1', '1', '50');INSERT INTO `quests` VALUES ('2', 'identity', 'CHANGE_FIGURE', '1', '1', '1', '50');INSERT INTO `quests` VALUES ('3', 'social', 'CHAT_WITH_SOMEONE', '1', '1', '6', '50');INSERT INTO `quests` VALUES ('4', 'social', 'REQUEST_FRIEND', '1', '1', '2', '50');INSERT INTO `quests` VALUES ('5', 'social', 'GIVE_RESPECT', '1', '1', '3', '50');INSERT INTO `quests` VALUES ('7', 'room_builder', 'ROTATE_ITEM', '3', '1', '2', '50');INSERT INTO `quests` VALUES ('6', 'social', 'DANCE', '1', '1', '5', '50');INSERT INTO `quests` VALUES ('8', 'social', 'WAVE', '1', '1', '4', '50');INSERT INTO `quests` VALUES ('9', 'room_builder', 'STACKITEM', '3', '1', '3', '50');INSERT INTO `quests` VALUES ('10', 'room_builder', 'PICKUPITEM', '1', '1', '4', '50');INSERT INTO `quests` VALUES ('11', 'room_builder', 'PLACEWALLPAPER', '1', '1', '7', '50');INSERT INTO `quests` VALUES ('12', 'room_builder', 'SWITCHSTATE', '3', '1', '6', '50');INSERT INTO `quests` VALUES ('13', 'room_builder', 'PLACEFLOOR', '1', '1', '8', '50');INSERT INTO `quests` VALUES ('14', 'room_builder', 'PLACEITEM', '1', '1', '5', '50');INSERT INTO `quests` VALUES ('15', 'social', 'ENTEROTHERSROOM', '1', '1', '1', '50');INSERT INTO `quests` VALUES ('16', 'identity', 'WEARBADGE', '1', '1', '3', '50');INSERT INTO `quests` VALUES ('17', 'identity', 'CHANGEMOTTO', '1', '1', '2', '50');INSERT INTO `quests` VALUES ('18', 'explore', 'FINDLIFEGUARDTOWER', '1', '1', '1', '50');INSERT INTO `quests` VALUES ('19', 'explore', 'SWIM', '1', '1', '2', '50');INSERT INTO `quests` VALUES ('20', 'explore', 'FINDSURFBOARD', '1', '1', '3', '50');INSERT INTO `quests` VALUES ('21', 'explore', 'FINDBEETLE', '1', '1', '4', '50');INSERT INTO `quests` VALUES ('22', 'explore', 'FINDNEONFLOOR', '1', '1', '5', '50');INSERT INTO `quests` VALUES ('23', 'explore', 'FINDDISCOBALL', '1', '1', '6', '50');INSERT INTO `quests` VALUES ('24', 'explore', 'FINDJUKEBOX', '1', '1', '7', '50');
-- ------------------------------ Table structure for `ranks`-- ----------------------------DROP TABLE IF EXISTS `ranks`;CREATE TABLE `ranks` (  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,  `name` varchar(50) NOT NULL,  `badgeid` varchar(5) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of ranks-- ----------------------------INSERT INTO `ranks` VALUES ('1', 'User', null);INSERT INTO `ranks` VALUES ('2', 'VIP', 'VIP');INSERT INTO `ranks` VALUES ('3', 'Silver Hobba', 'NWB');INSERT INTO `ranks` VALUES ('4', 'Gold Hobba', 'HBA');INSERT INTO `ranks` VALUES ('5', 'Super Hobba', 'HBA');INSERT INTO `ranks` VALUES ('6', 'Moderator', 'ADM');INSERT INTO `ranks` VALUES ('7', 'Administrator', 'ADM');
-- ------------------------------ Table structure for `room_ads`-- ----------------------------DROP TABLE IF EXISTS `room_ads`;CREATE TABLE `room_ads` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `ad_image` text NOT NULL,  `ad_image_orig` text NOT NULL,  `ad_link` text NOT NULL,  `views` int(11) NOT NULL DEFAULT '0',  `views_limit` int(11) NOT NULL DEFAULT '0' COMMENT '0 = unlimited',  `enabled` enum('0','1') NOT NULL DEFAULT '1',  PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of room_ads-- ----------------------------
-- ------------------------------ Table structure for `room_items_moodlight`-- ----------------------------DROP TABLE IF EXISTS `room_items_moodlight`;CREATE TABLE `room_items_moodlight` (  `item_id` int(10) unsigned NOT NULL,  `enabled` enum('0','1') NOT NULL DEFAULT '0',  `current_preset` int(11) NOT NULL,  `preset_one` text NOT NULL,  `preset_two` text NOT NULL,  `preset_three` text NOT NULL,  KEY `item_id` (`item_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of room_items_moodlight-- ----------------------------
-- ------------------------------ Table structure for `room_models`-- ----------------------------DROP TABLE IF EXISTS `room_models`;CREATE TABLE `room_models` (  `id` varchar(100) NOT NULL,  `door_x` int(11) NOT NULL,  `door_y` int(11) NOT NULL,  `door_z` double NOT NULL,  `door_dir` int(4) NOT NULL DEFAULT '2',  `heightmap` text NOT NULL,  `public_items` text NOT NULL,  `club_only` enum('0','1') NOT NULL DEFAULT '0',  PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of room_models-- ----------------------------INSERT INTO `room_models` VALUES ('model_a', '3', '5', '0', '2', 'xxxxxxxxxxxx\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_b', '0', '5', '0', '2', 'xxxxxxxxxxxx\r\nxxxxx0000000\r\nxxxxx0000000\r\nxxxxx0000000\r\nxxxxx0000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_c', '4', '7', '0', '2', 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_d', '4', '7', '0', '2', 'xxxxxxxxxxxx\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_e', '1', '5', '0', '2', 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_f', '2', '5', '0', '2', 'xxxxxxxxxxxx\r\nxxxxxxx0000x\r\nxxxxxxx0000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nx0000000000x\r\nx0000000000x\r\nx0000000000x\r\nx0000000000x\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_i', '0', '10', '0', '2', 'xxxxxxxxxxxxxxxxx\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nxxxxxxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_j', '0', '10', '0', '2', 'xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_k', '0', '13', '0', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_l', '0', '16', '0', '2', 'xxxxxxxxxxxxxxxxxxxxx\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nxxxxxxxxxxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_m', '0', '15', '0', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_n', '0', '16', '0', '2', 'xxxxxxxxxxxxxxxxxxxxx\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx000000xxxxxxxx000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000xxxxxxxx000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nxxxxxxxxxxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_g', '1', '7', '1', '2', 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxx1111000000\r\nxx1111000000\r\nxx1111000000\r\nxx1111000000\r\nxx1111000000\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_q', '10', '4', '2', '2', 'xxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx2222xxxxxxxxxxxxxx\r\nx2222xxxxxxxxxxxxxx\r\nx2222211111xx000000\r\nx222221111110000000\r\nx222221111110000000\r\nx2222211111xx000000\r\nxx22xxx1111xxxxxxxx\r\nxx11xxx1111xxxxxxxx\r\nx1111xx1111xx000000\r\nx1111xx111110000000\r\nx1111xx111110000000\r\nx1111xx1111xx000000\r\nxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_o', '0', '18', '1', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx00000000xxxx\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_r', '10', '4', '3', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxx333333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nx4444433333xxxxxxxxxxxxxx\r\nx4444433333xxxxxxxxxxxxxx\r\nx44444333333222xx000000xx\r\nx44444333333222xx000000xx\r\nxxx44xxxxxxxx22xx000000xx\r\nxxx33xxxxxxxx11xx000000xx\r\nxxx33322222211110000000xx\r\nxxx33322222211110000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_p', '0', '23', '2', '2', 'xxxxxxxxxxxxxxxxxxx\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx22222222xxxx\r\nxxxxxxx11111111xxxx\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx2222xx11111111xxxx\r\nx2222xx00000000xxxx\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\n22222xx000000000000\r\nx2222xx000000000000\r\nxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_h', '4', '4', '1', '2', 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('old_skool', '2', '1', '0', '2', 'xx0xxxxxxxxxxxxxx\r\n0000000xxx00000xx\r\n0000000x0000000xx\r\n0000000xxxxxxxxxx\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n00000000000000000\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x', 'SLHk49mobiles_chair3QBPAHHHk410mobiles_chair3RBPAHHHk411mobiles_chair3SBPAHHHk412mobiles_chair3PCPAHHHe101mobiles_chair1IRBHPAHe1010mobiles_chair1RBRBHPAHe110mobiles_chair1HSBHJHb111mobiles_table2ISBHHHc112mobiles_table3JSBHHHe113mobiles_chair1KSBHRAHb1110mobiles_table2RBSBHHHc1111mobiles_table3SBSBHHHa121mobiles_table1IPCHHHd122mobiles_table4JPCHHHe129mobiles_chair1QBPCHJHa1210mobiles_table1RBPCHHHd1211mobiles_table4SBPCHHHe1212mobiles_chair1PCPCHRAHe131mobiles_chair1IQCHHHe1311mobiles_chair1SBQCHHHe150mobiles_chair1HSCHPAHe170mobiles_chair1HQDHJHb171mobiles_table2IQDHHHc172mobiles_table3JQDHHHe173mobiles_chair1KQDHRAHa181mobiles_table1IRDHHHd182mobiles_table4JRDHHHe192mobiles_chair1JSDHHHe211mobiles_chair1IQEHPAHb216mobiles_table2RAQEHHHc217mobiles_table3SAQEHHHe2112mobiles_chair1PCQEHPAHe220mobiles_chair1HREHJHb221mobiles_table2IREHHHc222mobiles_table3JREHHHe223mobiles_chair1KREHRAHe225mobiles_chair1QAREHJHa226mobiles_table1RAREHHHd227mobiles_table4SAREHHHe228mobiles_chair1PBREHRAHe2211mobiles_chair1SBREHJHb2212mobiles_table2PCREHHHc2213mobiles_table3QCREHHHe2214mobiles_chair1RCREHRAHa231mobiles_table1ISEHHHd232mobiles_table4JSEHHHa2312mobiles_table1PCSEHHHd2313mobiles_table4QCSEHHHe241mobiles_chair1IPFHHHe247mobiles_chair1SAPFHPAHe2413mobiles_chair1QCPFHH', '0');INSERT INTO `room_models` VALUES ('pizza', '5', '27', '1', '2', 'xxxxxxxxx0000000\r\nx11111x1xx000000\r\n11xxxxx111x00000\r\n11x1111111xx0000\r\n11x1111111100000\r\nxxx1111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n11111111111xxxxx\r\n1111111111xxxxxx\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n11xx11xx11111111\r\nxxxx11xxxxxxxxxx\r\nxxxx11xxxxxxxxxx', 'QGHa015pizza_plant1SCHHJHe314pizza_sofa1RCKHPAHE315pizza_sofa2SCKHPAHc515pizza_tableSCQAHJHb60pizza_plant2HRAIJHf614pizza_sofa3RCRAHHHF615pizza_sofa4SCRAHHHd81pizza_chairIPBIPAHd82pizza_chairJPBIPAHc102pizza_tableJRBIJHe1014pizza_sofa1RCRBHPAHE1015pizza_sofa2SCRBHPAHd111pizza_chairISBIHHd112pizza_chairJSBIHHc1215pizza_tableSCPCHJHf1314pizza_sofa3RCQCHHHF1315pizza_sofa4SCQCHHHd161pizza_chairIPDIPAHd162pizza_chairJPDIPAHc182pizza_tableJRDIJHd191pizza_chairISDIHHd192pizza_chairJSDIHHd2111pizza_chairSBQEIJHd2114pizza_chairRCQEIRAHd2211pizza_chairSBREIJHc2213pizza_tableQCREIHHd2214pizza_chairRCREIRAHa250pizza_plant1HQFIJHa2515pizza_plant1SCQFIJ', '0');INSERT INTO `room_models` VALUES ('pub_a', '15', '25', '0', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222222111xxx\r\nxxxxxxxxx2222222222111xxx\r\nxxxxxxxxx2222222222000xxx\r\nxxxxxxxxx2222222222000xxx\r\nxxxxxxxxx2222222222000xxx\r\nxxxxxxxxx2222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333332222222222222000xxx\r\nx333332222222222222000xxx\r\nx333332222222222222000xxx\r\nx333332222222222222000xxx\r\nx333333332222222222000xxx\r\nxxxxx31111112222222000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', 'SWHS119pub_sofa2SDIIPAHs120pub_sofaPEIIPAHs121pub_sofaQEIIPAHq211bardesk1SBJJHHc212pub_chairPCJJRAHQ311bardesk2SBKJHHq411bardesk1SBPAJHHc412pub_chairPCPAJRAHQ511bardesk2SBQAJHHf518pub_fenceRDQAJIHq611bardesk1SBRAJHHc612pub_chairPCRAJRAHf618pub_fenceRDRAJHHQ711bardesk2SBSAJHHf718pub_fenceRDSAJHHq811bardesk1SBPBJHHc812pub_chairPCPBJRAHf818pub_fenceRDPBJHHw910bardesk4RBQBJHHW911bardesk3SBQBJHHf918pub_fenceRDQBJHHf1018pub_fenceRDRBJHHC112pub_chair2JSBKPAHC113pub_chair2KSBKPAHC115pub_chair2QASBKPAHC116pub_chair2RASBKPAHf118pub_fencePBSBKIHf1118pub_fenceRDSBJHHf128pub_fencePBPCKHHf1218pub_fenceRDPCJHHf138pub_fencePBQCKHHC139pub_chair2QBQCJJHk1314pub_chair3RCQCJJHT1315pub_table2SCQCJIHk1316pub_chair3PDQCJRAHf1318pub_fenceRDQCJHHf148pub_fencePBRCKJHC149pub_chair2QBRCJJHk1414pub_chair3RCRCJJHT1415pub_table2SCRCJJHk1416pub_chair3PDRCJRAHf1418pub_fenceRDRCJHHt151pub_tableISCKHHf155pub_fenceQASCKIHf1518pub_fenceRDSCJHHS161pub_sofa2IPDKJHf165pub_fenceQAPDKHHf1618pub_fenceRDPDJHHs171pub_sofaIQDKJHf175pub_fenceQAQDKHHk1713pub_chair3QCQDJPAHk1714pub_chair3RCQDJPAHk1715pub_chair3SCQDJPAHk1716pub_chair3PDQDJPAHf1718pub_fenceRDQDJHHs181pub_sofaIRDKJHf185pub_fenceQARDKHHT1813pub_table2QCRDJQAHT1814pub_table2RCRDJRAHT1815pub_table2SCRDJRAHT1816pub_table2PDRDJPAHf1818pub_fenceRDRDJHHs192pub_sofaJSDKHHS193pub_sofa2KSDKHHf195pub_fenceQASDKHHk1913pub_chair3QCSDJHHk1914pub_chair3RCSDJHHk1915pub_chair3SCSDJHHk1916pub_chair3PDSDJHHf1918pub_fenceRDSDJHHf201pub_fenceIPEKQAHf202pub_fenceJPEKRAHf203pub_fenceKPEKRAHf204pub_fencePAPEKRAHf205pub_fenceQAPEKKHf2018pub_fenceRDPEJHHS217pub_sofa2SAQEIPAHs218pub_sofaPBQEIPAHf2112pub_fencePCQEJQAHf2113pub_fenceQCQEJRAHf2114pub_fenceRCQEJRAHf2115pub_fenceSCQEJRAHf2116pub_fencePDQEJRAHf2117pub_fenceQDQEJRAHf2118pub_fenceRDQEJKHS226pub_sofa2RAREIJHt2215pub_tableSCREHHHC2216pub_chair2PDREHPAHC2217pub_chair2QDREHPAHs236pub_sofaRASEIJHT238pub_table2PBSEIIHs246pub_sofaRAPFIJHT248pub_table2PBPFIHHs256pub_sofaRAQFIJHT258pub_table2PBQFIJ', '0');INSERT INTO `room_models` VALUES ('newbie_lobby', '2', '11', '0', '2', 'xxxxxxxxxxxxxxxx000000\r\nxxxxx0xxxxxxxxxx000000\r\nxxxxx00000000xxx000000\r\nxxxxx000000000xx000000\r\n0000000000000000000000\r\n0000000000000000000000\r\n0000000000000000000000\r\n0000000000000000000000\r\n0000000000000000000000\r\nxxxxx000000000000000xx\r\nxxxxx000000000000000xx\r\nx0000000000000000000xx\r\nx0000000000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxxx0000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxx000000000000xxxxx\r\nxxxxx000000000000xxxxx', 'SOHa016crl_lampPDHHHHy017crl_sofa2cQDHHPAHw018crl_sofa2bRDHHPAHv019crl_sofa2aSDHHPAHa020crl_lampPEHHHHb116crl_chairPDIHJHa27crl_lampSAJHHHa211crl_lampSBJHHHb216crl_chairPDJHJHc35crl_pillarQAKHHHb37crl_chairSAKHJHu39crl_table1bQBKHHHs311crl_sofa1cSBKHRAHb316crl_chairPDKHJHA319crl_table2bSDKHHHz320crl_table2aPEKHHHa40crl_lampHPAHHHy41crl_sofa2cIPAHPAHw42crl_sofa2bJPAHPAHv43crl_sofa2aKPAHPAHa44crl_lampPAPAHHHt49crl_table1aQBPAHHHr411crl_sofa1bSBPAHRAHh415crl_wall2aSCPAHHHa416crl_lampPDPAHHHb50crl_chairHQAHJHb57crl_chairSAQAHJHq511crl_sofa1aSBQAHRAHA62crl_table2bJRAHHHz63crl_table2aKRAHHHa611crl_lampSBRAHHHb70crl_chairHSAHJHa80crl_lampHPBHHHD81crl_sofa3cIPBHHHC82crl_sofa3bJPBHHHB83crl_sofa3aKPBHHHa84crl_lampPAPBHHHo819crl_barchair2SDPBHHHp820crl_tablebarPEPBHHHo821crl_barchair2QEPBHHHE95crl_pillar2QAQBHHHc99crl_pillarQBQBHHHP158crl_desk1aPBSCHHHO159crl_deskiQBSCHHHN1510crl_deskhRBSCHHHM1610crl_deskgRBPDHHHL1710crl_deskfRBQDHHHK1810crl_deskeRBRDHHHK1910crl_deskeRBSDHHHK2010crl_deskeRBPEHHHK2110crl_deskeRBQEHHHK2210crl_deskeRBREHHHK2310crl_deskeRBSEHHHG247crl_wallbSAPFHHHK2410crl_deskeRBPFHHHF257crl_wallaSAQFHHHH258crl_desk1bPBQFHHHI259crl_desk1cQBQFHHHJ2510crl_desk1dRBQFHHHd2712crl_lamp2PCSFHHHf2713crl_cabinet2QCSFHHHe2714crl_cabinet1RCSFHHHd2715crl_lamp2SCSFHH', '0');INSERT INTO `room_models` VALUES ('tearoom', '21', '19', '1', '6', 'xxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxx3333x33333333x\r\n333333xx3333x33333333x\r\n3333333x3333x33333333x\r\n3333333x3333x33333333x\r\n3333333xxxxxx33333333x\r\n333333333333333333333x\r\n333333333333333333333x\r\n333333333333333333333x\r\n333333333333333333333x\r\n33333333222x333333333x\r\n33333333222x333333333x\r\n33333333222x333333333x\r\n33333333222x333333333x\r\n33333333111x333333333x\r\n33333333111x333333333x\r\n33333333111x333333333x\r\nxxxxxxxx111xxxxxxxxxxx\r\n11111111111111111111xx\r\n1111111111111111111111\r\n1111111111111111111111\r\n11111111111111111111xx', 'QIHh113hardwoodsofa1QCIKPAHi114hardwoodsofa2RCIKPAHj115hardwoodsofa3SCIKPAHc116teabambooPDIKHHh118hardwoodsofa1RDIKPAHi119hardwoodsofa2SDIKPAHj120hardwoodsofa3PEIKPAHl313teasmalltable1QCKKHHk315teasmalltable2SCKKHHl318teasmalltable1RDKKHHk320teasmalltable2PEKKHHe62teastoolJRAKPAHe63teastoolKRAKPAHf68chinastoolredPBRAKPAHf69chinastoolredQBRAKPAHf610chinastoolredRBRAKPAHf611chinastoolredSBRAKPAHa82teatable1JPBKHHb83teatable2KPBKHHm92teastool2JQBKHHm93teastool2KQBKHHe916teastoolPDQBKPAHe917teastoolQDQBKPAHa1116teatable1PDSBKHHb1117teatable2QDSBKHHe122teastoolJPCKPAHe123teastoolKPCKPAHm1216teastool2PDPCKHHm1217teastool2QDPCKHHa142teatable1JRCKHHb143teatable2KRCKHHm152teastool2JSCKHHm153teastool2KSCKHHd180teavaseHRDIHHg190chinastoolgreenHSDIJHg200chinastoolgreenHPEIJHd210teavaseHQEIH', '0');INSERT INTO `room_models` VALUES ('rooftop', '17', '12', '4', '2', '44xxxxxxxxxxxxxxxxxx\r\n444xxxxxxxxxxx444444\r\n4444xxxxxxxxxx444444\r\n44444xxxx4xxxx444444\r\n444444xxx44xxx444444\r\n44444444444444444444\r\n44444444444444444444\r\n44444444444444444444\r\n44444444xx44xx44xx44\r\n44444444xx44xx44xx44\r\n44444444444444444444\r\n44444444444444444444\r\n44444444444444444444\r\nx444444x444444xx4444\r\nx444444x444444xx333x\r\nx444444x444444xx222x\r\nx444444x444444xx11xx\r\nx444444x444444xxxxxx', 'PKHa10rooftop_minichairHIPAPAHd116rooftop_flatcurbPDIPAPAHe117rooftop_flatcurb2QDIPAPAHc20rooftop_rodtableHJPAHHa21rooftop_minichairIJPARAHa30rooftop_minichairHKPAHHd416rooftop_flatcurbPDPAPAHHe417rooftop_flatcurb2QDPAPAHHa62rooftop_minichairJRAPAPAHa71rooftop_minichairISAPAJHc72rooftop_rodtableJSAPAHHa73rooftop_minichairKSAPARAHa82rooftop_minichairJPBPAHHa90rooftop_minichairHQBPAPAHb100rooftop_emptytableHRBPAHHa110rooftop_minichairHSBPAHHd131rooftop_flatcurbIQCPAJHd136rooftop_flatcurbRAQCPARAHd138rooftop_flatcurbPBQCPAJHd1313rooftop_flatcurbQCQCPARAHf141rooftop_flatcurb3IRCPAJHf146rooftop_flatcurb3RARCPARAHf148rooftop_flatcurb3PBRCPAJHf1413rooftop_flatcurb3QCRCPARAHf151rooftop_flatcurb3ISCPAJHf156rooftop_flatcurb3RASCPARAHf158rooftop_flatcurb3PBSCPAJHf1513rooftop_flatcurb3QCSCPARAHf161rooftop_flatcurb3IPDPAJHf166rooftop_flatcurb3RAPDPARAHf168rooftop_flatcurb3PBPDPAJHf1613rooftop_flatcurb3QCPDPARAHg171rooftop_flatcurb4IQDPAHHf172rooftop_flatcurb3JQDPAHHf173rooftop_flatcurb3KQDPAHHf174rooftop_flatcurb3PAQDPAHHf175rooftop_flatcurb3QAQDPAHHh176rooftop_flatcurb5RAQDPAHHg178rooftop_flatcurb4PBQDPAHHf179rooftop_flatcurb3QBQDPAHHf1710rooftop_flatcurb3RBQDPAHHf1711rooftop_flatcurb3SBQDPAHHf1712rooftop_flatcurb3PCQDPAHHh1713rooftop_flatcurb5QCQDPAH', '0');INSERT INTO `room_models` VALUES ('rooftop_2', '4', '9', '0', '2', 'x0000x000\r\nxxxxxx000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\nxxx000xxx\r\nxxx000xxx', 'RDHk08rooftop_bigchairPBHHPAHl18rooftop_bigtablePBIHHHj20rooftop_sofabHJHPAHi21rooftop_sofaIJHPAHk28rooftop_bigchairPBJHHHk38rooftop_bigchairPBKHPAHl48rooftop_bigtablePBPAHHHj50rooftop_sofabHQAHHHi51rooftop_sofaIQAHHHk58rooftop_bigchairPBQAHHHj60rooftop_sofabHRAHPAHi61rooftop_sofaIRAHPAHj67rooftop_sofabSARAHPAHi68rooftop_sofaPBRAHPAHj90rooftop_sofabHQBHHHi91rooftop_sofaIQBHHHj97rooftop_sofabSAQBHHHi98rooftop_sofaPBQBHH', '0');INSERT INTO `room_models` VALUES ('star_lounge', '37', '36', '0', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx2222x4444442222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222x444x32222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222xx4xx22222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222222111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222222111xxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333x22222222222222xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333x22222222222222xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333x22222222221111xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333xx2x22222220000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx333333332222222000000xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx333333332222222x0000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx33333332222222x0000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxx222222000000xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'PXHk1521star_tableQESCJHHa1522star_sofaRESCJPAHb1523star_sofa2SESCJPAHz1524palmPFSCJHHb1621star_sofa2QEPDJJHQ1632dj1PHPDJHHW1633dj2QHPDJHHE1634dj3RHPDJHHa1721star_sofaQEQDJJHm1728star_microphonePGQDPAHHb1821star_sofa2QERDJJHa1835star_sofaSHRDJRAHa1921star_sofaQESDJJHb1935star_sofa2SHSDJRAHb2021star_sofa2QEPEJJHb2024star_sofa2PFPEJJHa2032star_sofaPHPEJRAHa2035star_sofaSHPEJRAHa2121star_sofaQEQEJJHa2124star_sofaPFQEJJHb2132star_sofa2PHQEJRAHb2135star_sofa2SHQEJRAHc2221star_sofachairQEREJJHk2224star_tablePFREJHHb2225star_sofa2QFREJHHa2226star_sofaRFREJHHb2230star_sofa2RGREJHHa2231star_sofaSGREJHHk2232star_tablePHREJHHk2235star_tableSHREJHHz2321palmQESEJHHa2335star_sofaSHSEJRAHp2422bar10REPFJHHb2435star_sofa2SHPFJRAHa2437star_sofaQIPFIPAHb2438star_sofa2RIPFIPAHa2439star_sofaSIPFIPAHb2440star_sofa2PJPFIPAHo2522bar9REQFJHHb2525star_sofa2QFQFJHHa2526star_sofaRFQFJHHb2530star_sofa2RGQFJHHa2531star_sofaSGQFJHHa2535star_sofaSHQFJRAHb2536star_sofa2PIQFIJHi2622bar8RERFJHHX2625palm1QFRFJHHV2626palm3RFRFJHHC2630palm2RGRFJHHB2631palm4SGRFJHHb2635star_sofa2SHRFJRAHa2636star_sofaPIRFIJHk2639star_tableSIRFIHHk2640star_tablePJRFIHHu2722bar7RESFJHHa2725star_sofaQFSFJPAHb2726star_sofa2RFSFJPAHa2730star_sofaRGSFJPAHb2731star_sofa2SGSFJPAHk2735star_tableSHSFJHHz2736palmPISFIHHk2737star_tableQISFIHHy2822bar6REPGJHHt2922bar5REQGJHHk2925star_tableQFQGJHHk2926star_tableRFQGJHHk3016star_tablePDRGKHHr3022bar4RERGJHHb3116star_sofa2PDSGKJHe3122bar3RESGJHHb3125star_sofa2QFSGJHHa3126star_sofaRFSGJHHa3130star_sofaRGSGJRAHa3216star_sofaPDPHKJHw3222bar2REPHJHHB3225palm4QFPHJHHX3226palm1RFPHJHHb3230star_sofa2RGPHJRAHb3316star_sofa2PDQHKJHq3322bar1REQHJHHa3325star_sofaQFQHJPAHb3326star_sofa2RFQHJPAHa3330star_sofaRGQHJRAHa3416star_sofaPDRHKJHb3430star_sofa2RGRHJRAHV3435palm3SHRHHHHC3436palm2PIRHHHHk3516star_tablePDSHKHHa3530star_sofaRGSHJRAHb3630star_sofa2RGPIJRAHc3725star_sofachairQFQIJHHb3726star_sofa2RFQIJHHa3727star_sofaSFQIJHHb3728star_sofa2PGQIJHHa3729star_sofaQGQIJHHk3730star_tableRGQIJH', '0');INSERT INTO `room_models` VALUES ('netcafe', '22', '12', '0', '2', 'xxxxx1111xxxxxxxxxxx1xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxxxxx0000000000000xxxx\r\n111111100000000000000xxxx\r\n111111100000000000000xxxx\r\n111111100000000000000xxxx\r\nxxxx11100000000000000xxxx\r\nx1xx11100000000000000xxxx\r\nx1xx11100000000000000xxxx\r\nx1xx111000000000000000000\r\nx1xx111000000000000000000\r\nxxxx111000000000000000000\r\nxxxx11100000000000000xxxx\r\nxxxx1110000000xx11111xxxx\r\nxxxxx111110000x111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxx1111100001111111xxxx', 'RRHi06shift1RAHIPAHj07shift2SAHIPAHm110mRBIIHHl113lQCIIHHk116kPDIIHHk119kSDIIHHh35kukat6QAKIHHg36kukat5RAKIHHc312kukat2PCKIHHb313kukat1QCKIHHc319kukat2SDKIHHb320kukat1PEKIHHi412shift1PCPAHPAHj413shift2QCPAHPAHi419shift1SDPAHPAHj420shift2PEPAHPAHi50shift1HQAIPAHj51shift2IQAIPAHi52shift1JQAIPAHj53shift2KQAIPAHk715kSCSAHJHo716table2PDSAHRAHz717tablecornerQDSAHHHm718mRDSAHRAHl815lSCPBHJHo816table2PDPBHPAHl818lRDPBHRAHm94mPAQBIRAHk99kQBQBHJHp910table3RBQBHRAHz911tablecornerSBQBHHHm912mPCQBHRAHk915kSCQBHJHo916table2PDQBHJHk918kRDQBHRAHk104kPARBIRAHm109mQBRBHJHp1010table3RBRBHPAHm1012mPCRBHRAHm1015mSCRBHJHo1016table2PDRBHHHk1018kRDRBHRAHl114lPASBIRAHl119lQBSBHJHp1110table3RBSBHJHl1112lPCSBHRAHk124kPAPCIRAHl129lQBPCHJHp1210table3RBPCHHHk1212kPCPCHRAHm134mPAQCIRAHc165kukat2QAPDIHHb166kukat1RAPDIHHc167kukat2SAPDIHHb168kukat1PBPDIHHe169kukat3QBPDIHHd1615kukka2SCPDIHHf179kukat4QBQDIHHk186kRARDIRAHe189kukat3QBRDIHHs1820sofabig3PERDIRAHf199kukat4QBSDIHHn1917table1QDSDIPAHz1918tablecornerRDSDIHHr1920sofabig2PESDIRAHn2017table1QDPEIJHr2020sofabig2PEPEIRAHm216mRAQEIRAHn2117table1QDQEIHHq2120sofabig1PEQEIRAHv2316sofalittle3PDSEIHHu2317sofalittle2QDSEIHHt2318sofalittle1RDSEIHHa2320kukkaPESEIH', '0');INSERT INTO `room_models` VALUES ('dusty_lounge', '14', '1', '2', '4', 'xxxxxxxxxxxxxx22xxxxxxxxxxxxx\r\nxxxxxxxxxx222x222x2xxxxxxxxxx\r\nxxxxxxx33322222222223xxxxxxx3\r\nxxxxxxx33322222222223xxxxxxx3\r\nxxxxxxx33322222222223x33333x3\r\nxxxxxxx33322222222223x33333x3\r\nxx111xx33322222222223xxxxxxx3\r\nxx111xxx332222222222333333333\r\nxx111xxxx32222222222333333333\r\nxx111xxxxxx222222222333333333\r\nxx111xxxxxxx1111111x333333333\r\nxx111xxxxxxx1111111x222222222\r\nxx111xxxxxx111111111111111111\r\nxx111xxxxxx111111111111111111\r\n11111xxxxxx111111111111111111\r\n11111xxxxxx111111111111111111\r\n11x11xxxxxx111111111111111111\r\n11xxxxxxxxx11111111111111111x\r\nx11xxxxxxxxx1111111x1111111xx\r\nxx11xxxxxxx111111111111111xxx\r\nxxx11xxxxxx11111111111111xxxx\r\nxxxx11111111111111111111xxxxx\r\nxxxxx11111111111111xxxxxxxxxx\r\nxxxxxxxxxxx11111111xxxxxxxxxx\r\nxxxxxxxxxxx11111111xxxxxxxxxx', 'QHHc48greenchair2PBPAKPAHd49greenchair1QBPAKPAHc68greenchair2PBRAKHHd69greenchair1QBRAKHHa620dustylampPERAKJHa628dustylampPGRAKJHc73greenchair2KSAIPAHd74greenchair1PASAIPAHc93greenchair2KQBIHHd94greenchair1PAQBIHHb1021yellowchairQERBKJHb1023yellowchairSERBKRAHb1026yellowchairRFRBKJHb1028yellowchairPGRBKRAHc1211greenchair2SBPCIJHc133greenchair2KQCIPAHd134greenchair1PAQCIPAHd1311greenchair1SBQCIJHa1411dustylampSBRCIJHc153greenchair2KSCIHHd154greenchair1PASCIHHc1511greenchair2SBSCIJHb1524yellowchairPFSCIPAHd1611greenchair1SBPDIJHb1722yellowchairREQDIJHa1724dustylampPFQDIJHb1726yellowchairRFQDIRAHa1911dustylampSBSDIJHb1924yellowchairPFSDIHHc2312greenchair2PCSEIJHc2314greenchair2RCSEIRAHd2412greenchair1PCPFIJHd2414greenchair1RCPFIRA', '0');INSERT INTO `room_models` VALUES ('orient', '35', '22', '0', '6', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx00000000xxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1000000000xxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xx000x000xx111x111xxx\r\nxxxxxxxxxxxxxx1xx000x000xxxxxx1111xx\r\nxxxxxxxxxxxxxx1xx000x000x111111111xx\r\nxxxxxxxxxxxxxx1xx000x000x111111111xx\r\nxxx111111111111xx000x000x111111111xx\r\nxxx1xxxxxxxxxxxxx000x000x111111111xx\r\nxxx1x1111111111000000000x111111111xx\r\nxxx1x1111111111000000000xx1111111xxx\r\nxxx1x11xxxxxx11000000000xx1111111100\r\nxxx111xxxxxxx11000000000011111111100\r\nxxx111xxxxxxx11000000000011111111100\r\nxxxxx1xxxxxxx11000000000011111111100\r\nxxxxx11xxxxxx11000000000xx1111111100\r\nxxxxx1111111111000000000xx1111111xxx\r\nxxxxx1111111111xx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x00xx11xxxx111xx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxx11111111xx', 'SOHd1017benchQDRBHJHd1019benchSDRBHRAHd1021benchQERBHJHd1023benchSERBHRAHd1117benchQDSBHJHd1119benchSDSBHRAHd1121benchQESBHJHd1123benchSESBHRAHb1132koc_chairPHSBIPAHd1217benchQDPCHJHd1219benchSDPCHRAHd1221benchQEPCHJHd1223benchSEPCHRAHb1231koc_chairSGPCIJHa1232koc_tablePHPCIHHb1233koc_chairQHPCIRAHd1317benchQDQCHJHd1319benchSDQCHRAHd1321benchQEQCHJHd1323benchSEQCHRAHb1325koc_chairQFQCIPAHb1332koc_chairPHQCIHHd1417benchQDRCHJHd1419benchSDRCHRAHd1421benchQERCHJHd1423benchSERCHRAHa1425koc_tableQFRCIHHb1426koc_chairRFRCIRAHd1517benchQDSCHJHd1519benchSDSCHRAHd1521benchQESCHJHd1523benchSESCHRAHb1525koc_chairQFSCIHHb1529koc_chairQGSCIJHa1530koc_tableRGSCIHHb1531koc_chairSGSCIRAHb1630koc_chairRGPDIHHc2425chairf1QFPFIJHc2433chairf1QHPFIRAHd2517benchQDQFHJHd2519benchSDQFHRAHd2521benchQEQFHJHd2523benchSEQFHRAHc2525chairf1QFQFIJHc2533chairf1QHQFIRAHd2617benchQDRFHJHd2619benchSDRFHRAHd2621benchQERFHJHd2623benchSERFHRAHc2625chairf1QFRFIJHc2633chairf1QHRFIRAHd2717benchQDSFHJHd2719benchSDSFHRAHd2721benchQESFHJHd2723benchSESFHRAHd2817benchQDPGHJHd2819benchSDPGHRAHd2821benchQEPGHJHd2823benchSEPGHRAHd2917benchQDQGHJHd2919benchSDQGHRAHd2921benchQEQGHJHd2923benchSEQG`hFFRA', '0');INSERT INTO `room_models` VALUES ('custom_model', '0', '0', '0', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx0000000000000xxxx\r\nxxxxxxxxxxx000000000000000xxx\r\nxxxxxxxxxx00000000000000000xx\r\nxxxxxxxxxx00000000000000000xx\r\nxxxxxxxxxx00000000000000000xx\r\nxxxxxxxxxx11111111111111111xx\r\nxxxxxxxxxx22222222222222222xx\r\nxxxxxxxxxx22222222222222222xx\r\nxxxxxxxxxx22222222222222222xx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('theater', '20', '27', '0', '0', 'XXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXX111111111XXXXXXX\r\nXXXXXXX11111111100000XX\r\nXXXX00X11111111100000XX\r\nXXXX00x11111111100000XX\r\n4XXX00X11111111100000XX\r\n4440000XXXXXXXXX00000XX\r\n444000000000000000000XX\r\n4XX000000000000000000XX\r\n4XX0000000000000000000X\r\n44400000000000000000000\r\n44400000000000000000000\r\n44X0000000000000000O000\r\n44X11111111111111111000\r\n44X11111111111111111000\r\n33X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22211111111111111111000\r\n22211111111111111111000\r\nXXXXXXXXXXXXXXXXXXXX00X\r\nXXXXXXXXXXXXXXXXXXXX00X', 'QKHm1011micSBRBIHHd112thchair2JSBPAJHd122thchair2JPCPAJHd152thchair2JSCPAJHc156thchair1RASCHHHc157thchair1SASCHHHc158thchair1PBSCHHHc159thchair1QBSCHHHc1510thchair1RBSCHHHc1512thchair1PCSCHHHc1513thchair1QCSCHHHc1514thchair1RCSCHHHc1515thchair1SCSCHHHc1516thchair1PDSCHHHd162thchair2JPDPAJHc206thchair1RAPEIHHc207thchair1SAPEIHHc208thchair1PBPEIHHc209thchair1QBPEIHHc2010thchair1RBPEIHHc2012thchair1PCPEIHHc2013thchair1QCPEIHHc2014thchair1RCPEIHHc2015thchair1SCPEIHHc2016thchair1PDPEIHHc236thchair1RASEIHHc237thchair1SASEIHHc238thchair1PBSEIHHc239thchair1QBSEIHHc2310thchair1RBSEIHHc2312thchair1PCSEIHHc2313thchair1QCSEIHHc2314thchair1RCSEIHHc2315thchair1SCSEIHHc2316thchair1PDSEIHHc266thchair1RARFIHHc267thchair1SARFIHHc268thchair1PBRFIHHc269thchair1QBRFIHHc2610thchair1RBRFIHHc2612thchair1PCRFIHHc2613thchair1QCRFIHHc2614thchair1RCRFIHHc2615thchair1SCRFIHHc2616thchair1PDRFIH', '0');INSERT INTO `room_models` VALUES ('picnic', '16', '5', '2', '4', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxx22222xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\n22xxxxxxxxxxxxx22xxxxxxxxxxxxxxxxxxxxx\r\n2222222222222222222x222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222xxx222222222222222222222222\r\n2222222222xx33x22222222222222222222222\r\n222222222xx3333x2222222222222222222222\r\n222222222x333333x222222222222222222222\r\n222222222x333333x222222222222222222222\r\n2222222222x3332x2222222222222222222222\r\n22222222222x33x22222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222x22222xxxx22222222222222222222\r\n22222222222222xxxx22222222222222222222\r\n22222222222222xxx222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222', 'PcHh710hedge7RBSAJPAHh711hedge7SBSAJPAHh712hedge7PCSAJPAHh713hedge7QCSAJPAHy714hedge8RCSAJPAHs718hedge2RDSAJPAHh719hedge7SDSAJPAHh720hedge7PESAJPAHh721hedge7QESAJPAHz814hedge9RCPBJPAHz818hedge9RDPBJPAHv93hedge5KQBJPAHz103hedge9KRBJPAHc1112picnic_dummychair1PCSBKPAHc1113picnic_dummychair1QCSBKPAHc1114picnic_dummychair1RCSB`hFFPAHc1310picnic_dummychair1RBQCKJHc1315picnic_dummychair1SCQCKRAHb1321picnic_groundQEQCJPAHb147picnic_groundSARCJPAHc1410picnic_dummychair1RBRCKJHc1415picnic_dummychair1SCRCKRAHb1519picnic_groundSDSCJJHb1523picnic_groundSESCJRAHb165picnic_groundQAPDJJHb169picnic_groundQBPDJRAHL1620picnic_cloth1PEPDJJHL176picnic_cloth1RAQDJJHb1721picnic_groundQEQDJHHb187picnic_groundSARDJHHa190picnic_redbench2HSDJJHA200picnic_redbench1HPEJJHw2011hedge6SBPEJPAHh2012hedge7PCPEJPAHh2013hedge7QCPEJPAHt2014hedge3RCPEJPAHu2017hedge4QDPEJPAHh2018hedge7RDPEJPAHh2019hedge7SDPEJPAHy2020hedge8PEPEJPAHv2111hedge5SBQEJPAHM2112picnic_bench1PCQEJPAHN2113picnic_bench2QCQEJPAHO2114picnic_bench3RCQEJPAHM2117picnic_bench1QDQEJPAHN2118picnic_bench2RDQEJPAHO2119picnic_bench3SDQEJPAHv2120hedge5PEQEJPAHa220picnic_redbench2HREJJHv2211hedge5SBREJPAHv2220hedge5PEREJPAHb2225picnic_groundQFREJPAHA230picnic_redbench1HSEJJHv2311hedge5SBSEJPAHM2312picnic_bench1PCSEJJHM2319picnic_bench1SDSEJRAHv2320hedge5PESEJPAHc246picnic_dummychair1RAPFJPAHd247picnic_dummychair4SAPFJPAHe248picnic_dummychair6PBPFJPAHv2411hedge5SBPFJPAHN2412picnic_bench2PCPFJJHN2419picnic_bench2SDPFJRAHv2420hedge5PEPFJPAHb2423picnic_groundSEPFJJHb2427picnic_groundSFPFJRAHK255picnic_stumpQAQFJJHv2511hedge5SBQFJPAHN2512picnic_bench2PCQFJJHN2519picnic_bench2SDQFJRAHv2520hedge5PEQFJPAHG2524picnic_cloth2PFQFJJHK267picnic_stumpSARFJHHv2611hedge5SBRFJPAHO2612picnic_bench3PCRFJJHH2614picnic_fireplace1RCRFJHHI2616picnic_fireplace2PDRFJJHO2619picnic_bench3SDRFJRAHv2620hedge5PERFJPAHb2625picnic_groundQFRFJHHz2711hedge9SBSFJPAHQ2712picnic_lemonadePCSFJPAHz2720hedge9PESFJPAHE298picnic_firewood2PBQGJHHa300picnic_redbench2HRGJJHD308picnic_firewood1PBRGJHHA310picnic_redbench1HSGJJHD318picnic_firewood1PBSGJHHM3112picnic_bench1PCSGJPAHN3113picnic_bench2QCSGJPAHO3114picnic_bench3RCSGJPAHM3118picnic_bench1RDSGJPAHN3119picnic_bench2SDSGJPAHO3120picnic_bench3PESGJPAHf3127picnic_carrotSFSGJHHf3128picnic_carrotPGSGJHHf3129picnic_carrotQGSGJHHf3130picnic_carrotRGSGJHHf3131picnic_carrotSGSGJHHD328picnic_firewood1PBPHJHHF3212picnic_table2PCPHJJHP3214picnic_tableRCPHJJHF3218picnic_table2RDPHJJHP3220picnic_tablePEPHJJHr333hedge1KQHJPAHD338picnic_firewood1PBQHJHHM3312picnic_bench1PCQHJHHN3313picnic_bench2QCQHJHHO3314picnic_bench3RCQHJHHM3318picnic_bench1RDQHJHHN3319picnic_bench2SDQHJHHO3320picnic_bench3PEQHJHHg3327picnic_cabbageSFQHJHHg3328picnic_cabbagePGQHJHHg3329picnic_cabbageQGQHJHHv343hedge5KRHJPAHD348picnic_firewood1PBRHJHHv353hedge5KSHJPAHD358picnic_firewood1PBSHJHHv363hedge5KPIJPAHD368picnic_firewood1PBPIJHHD378picnic_firewood1PBQIJHHM3712picnic_bench1PCQIJPAHN3713picnic_bench2QCQIJPAHO3714picnic_bench3RCQIJPAHM3718picnic_bench1RDQIJPAHN3719picnic_bench2SDQIJPAHO3720picnic_bench3PEQIJPAHD388picnic_firewood1PBRIJHHF3812picnic_table2PCRIJJHP3814picnic_tableRCRIJJHF3818picnic_table2RDRIJJHP3820picnic_tablePERIJJHJ398picnic_firewood3PBSIJHHM3912picnic_bench1PCSIJHHN3913picnic_bench2QCSIJHHO3914picnic_bench3RCSIJHHM3918picnic_bench1RDSIJHHN3919picnic_bench2SDSIJHHO3920picnic_bench3PESIJH', '0');INSERT INTO `room_models` VALUES ('cinema_a', '20', '27', '1', '0', 'xxxxxxx1xx11111111xxxxxx\r\nxxx1111111111111111xxxxx\r\nxxx111xxxx1111111111xxxx\r\nxxxx2xxxxxxxxxxxxxxxxxxx\r\nxx3x3x333311xxxxxxxxxx11\r\nxx3333333311111111111111\r\nxx3333333311111111111111\r\nxx3333333311111111122111\r\nxx3333333311x22222222111\r\nxx3333333311x22222222111\r\nxx3333333311xxxxxxxxx111\r\nxx3333333311111111111111\r\nxx3333333311111111111111\r\nxx3333333311111111111111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\n333333332111111xxxx11111\r\n333333332111111111111111\r\n333333332111111111111111\r\n333333332111111111111111\r\nxx3333332111111111111111\r\nxxxxxxxxxxxxxxxxxxx11111\r\nxxxxxxxxxxxxxxxxxxx11111\r\nxxxxxxxxxxxxxxxxxxx11111', 'PUHC42orangeJPAKHHA47loungey_chairSAPAKJHV48loungey_tablebigbPBPAKHHA49loungey_chairQBPAKRAHA52loungey_chairJQAKPAHA57loungey_chairSAQAKJHU58loungey_tablebigaPBQAKHHA59loungey_chairQBQAKRAHB62loungey_tableJRAKHHA72loungey_chairJSAKHHh713theater_chairQCSAIHHh714theater_chairRCSAIHHh715theater_chairSCSAIHHh716theater_chairPDSAIHHh717theater_chairQDSAIHHh718theater_chairRDSAIHHz721stairQESAIHHL89lightpoleQBPBKHHq813pomomaskiQCPBJJHq814pomomaskiRCPBJHHq815pomomaskiSCPBJHHq816pomomaskiPDPBJHHq817pomomaskiQDPBJHHq818pomomaskiRDPBJHHq819pomomaskiSDPBJIHz821stairQEPBIHHC92orangeJQBKHHh913theater_chairQCQBJHHh914theater_chairRCQBJHHh915theater_chairSCQBJHHh916theater_chairPDQBJHHh917theater_chairQDQBJHHh918theater_chairRDQBJHHh919theater_chairSDQBJHHh920theater_chairPEQBJHHz921stairQEQBIHHA102loungey_chairJRBKPAHA109loungey_chairQBRBKPAHB112loungey_tableJSBKHHB119loungey_tableQBSBKHHA122loungey_chairJPCKHHA129loungey_chairQBPCKHHd1217cubicb_chairQDPCIRAHc1219cubico_chairSDPCIJHd1315cubicb_chairSCQCIJHL1319lightpoleSDQCIHHd1320cubicb_chairPEQCIRAHL149lightpoleQBRCKHHA152loungey_chairJSCKPAHd1514cubicb_chairRCSCIPAHc1519cubico_chairSDSCIPAHB162loungey_tableJPDKHHA167loungey_chairSAPDKJHB168loungey_tablePBPDKJHA169loungey_chairQBPDKRAHd1613cubicb_chairQCPDIJHd1614cubicb_chairRCPDIRAHC1619orangeSDPDIHHA172loungey_chairJQDKHHA177loungey_chairSAQDKJHB178loungey_tablePBQDKJHA179loungey_chairQBQDKRAHd1719cubicb_chairSDQDIJHC182orangeJRDKHHd1814cubicb_chairRCRDIPAHK192bardesqueJSDKHHK202bardesqueJPEKIHb203bar_chairKPEKRAHL209lightpoleQBPEKHHd2014cubicb_chairRCPEIHHd2019cubicb_chairSDPEIJHc2020cubico_chairPEPEIRAHK212bardesqueJQEKIHb213bar_chairKQEKRAHd2119cubicb_chairSDQEIHHK222bardesqueJREKIHb223bar_chairKREKRAHL2216lightpolePDREIHHc2218cubico_chairRDREIHHK232bardesqueJSEKIHb233bar_chairKSEKRAHK242bardesqueJPFKIHb243bar_chairKPFKRAHK252bardesqueJQFKJ', '0');INSERT INTO `room_models` VALUES ('the_den', '3', '22', '0', '0', '00000000xxxxxxxx\r\n0000000000000000\r\n0000000000000000\r\n000000000000xx00\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx\r\nGV00000000xxxxxxxx\r\n0000000000000000\r\n0000000000000000\r\n000000000000xx00\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx', '', '0');INSERT INTO `room_models` VALUES ('model_s', '0', '3', '0', '2', 'xxxxxx\r\nx00000\r\nx00000\r\n000000\r\nx00000\r\nx00000\r\nx00000\r\nx00000', '', '0');INSERT INTO `room_models` VALUES ('park_a', '2', '15', '0', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx00xxxxxxxxxxxx\r\nxxxxxxxxxxxxx0x00xxxxxxxxxxx0x000xxxxxxxxxxx\r\nxxxxxxxxxxxx0000000000000000000000xxxxxxxxxx\r\nxxxxxxxxxxx000000000000000000000000xxxxxxxxx\r\nxxxxxxxxxxx0000000000000000000000000xxxxxxxx\r\nxxxxxxxxxxx00000000000000000000000000xxxxxxx\r\nxxxxxxxx000000000000000000000000000000xxxxxx\r\nxxxxxxx00000000000000000000000000000000xxxxx\r\nxxxxxxx000000000000000000000000000000000xxxx\r\nxxxxxxx0000000000000000000000000000000000xxx\r\nxxxxxxxxx000000000000000000000000000000000xx\r\n00000000000000000000xx00000000000000000000xx\r\n0000000000000000000xxxx00000000000xxxxxxx0xx\r\n0000000000000000000xxxx00000000000x00000xxxx\r\nxxxxx00x0000000000xxxxx0xxxxxx0000x0000000xx\r\nxxxxx0000000000000xxxxx0xx000x0000x000000xxx\r\nxxxxx0000000000000xxxxx0x000000000x00000xxxx\r\nxxxxx000000x0000000xxxx0x000000000xxx00xxxxx\r\nxxxxxxxx000x0000000xxx00xxx000000x0000xxxxxx\r\nxxxxxxxx000x000000xxxx0x0000000000000xxxxxxx\r\nxxxxxxxx000x000000011100000000000000xxxxxxxx\r\nxxxxxxxx000x00000001110000000000000xxxxxxxxx\r\nxxxxxxxxx00x0000000111x00000000x00xxxxxxxxxx\r\nxxxxxxxxxx0x0000000xxx0000000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx000000xxxx0000000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx000000xxx00xxxxx00xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxx0xx000x00xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxx0x000000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxxxx00000xxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxxxx00xxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxx0xxxxxxxxxxxxxxxxxxxx', 'RPHN527parkfence2SFQAHHHN529parkfence2QGQAHHHM619parkfence1SDRAHHHO620parkfence3PERAHPAHO621parkfence3QERAHPAHO622parkfence3RERAHPAHN623parkfence2SERAHPAHO624parkfence3PFRAHPAHO625parkfence3QFRAHPAHO626parkfence3RFRAHPAHM627parkfence1SFRAHJHO629parkfence3QGRAHJHN717parkfence2QDSAHHHO719parkfence3SDSAHJHO723parkfence3SESAHJHO727parkfence3SFSAHJHO729parkfence3QGSAHJHO817parkfence3QDPBHJHO819parkfence3SDPBHJHN821parkfence2QEPBHHHO823parkfence3SEPBHJHN825parkfence2QFPBHHHO827parkfence3SFPBHJHO829parkfence3QGPBHJHL98bench2PBQBHPAHK99benchQBQBHPAHO917parkfence3QDQBHJHN919parkfence2SDQBHRAHO921parkfence3QEQBHJHN923parkfence2SEQBHRAHO925parkfence3QFQBHJHN927parkfence2SFQBHRAHO929parkfence3QGQBHJHO1017parkfence3QDRBHJHO1021parkfence3QERBHJHO1025parkfence3QFRBHJHO1029parkfence3QGRBHJHL117bench2SASBHJHM1117parkfence1QDSBHPAHO1118parkfence3RDSBHPAHO1119parkfence3SDSBHPAHO1120parkfence3PESBHPAHN1121parkfence2QESBHJHO1122parkfence3RESBHPAHO1123parkfence3SESBHPAHO1124parkfence3PFSBHPAHN1125parkfence2QFSBHJHO1126parkfence3RFSBHPAHO1127parkfence3SFSBHPAHO1128parkfence3PGSBHPAHM1129parkfence1QGSBHRAHK127benchSAPCHJHL1635bench2SHPDHJHL1637bench2QIPDHPAHK1638benchRIPDHPAHK1735benchSHQDHJHL1827bench2SFRDHPAHK1828benchPGRDHPAHL1835bench2SHRDHJHL1925bench2QFSDHJHK1935benchSHSDHJHK2025benchQFPEHJHL2925bench2QFQGHPAHK2926benchRFQGHPAHL3023bench2SERGHJHK3123benchSESGHJ@`SGSBMRDPBPA0.0I2Mqueue_tile2JMPGRAH0.0I2Mqueue_tile2SAMPFSAJ0.0I2Mqueue_tile2QBMRFSAPA0.0I2Mqueue_tile2SFMSERBJ0.0I2Mqueue_tile2SCMRFPBPA0.0I2Mqueue_tile2REMPGQBH0.0I2Mqueue_tile2PGMPFRBH0.0I2Mqueue_tile2PCMPEPBH0.0I2Mqueue_tile2QGMRFRBJ0.0I2Mqueue_tile2QDMRDQBPA0.0I2Mqueue_tile2RFMRERBJ0.0I2Mqueue_tile2PFMSDRBJ0.0I2Mqueue_tile2PDMPGPBH0.0I2Mqueue_tile2RGMSFRBJ0.0I2Mqueue_tile2RAMRESAPA0.0I2Mqueue_tile2RBMPGSAH0.0I2Mqueue_tile2SDMREQBPA0.0I2Mqueue_tile2QEMRFQBPA0.0I2Mqueue_tile2RCMPFPBH0.0I2Mqueue_tile2KMRDSAPA0.0I2Mqueue_tile2PAMPESAJ0.0I2Mqueue_tile2PBMQFSAJ0.0I2Mqueue_tile2IMPGQAH0.0I2Mqueue_tile2SEMRDRBJ0.0I2Mqueue_tile2QCMREPBPA0.0I2Mqueue_tile2SGMPGRBH0.0I2Mqueue_tile2QAMQESAJ0.0I2Mqueue_tile2QFMPERBH0.0I2Mqueue_tile2RDMPEQBH0.0I2Mqueue_tile2PEMPFQBH0.0I2Mqueue_tile2', '0');INSERT INTO `room_models` VALUES ('park_b', '11', '2', '0', '6', '0000x0000000\r\n0000xx000000\r\n000000000000\r\n00000000000x\r\n000000000000\r\n00x0000x0000', '', '0');INSERT INTO `room_models` VALUES ('model_0', '0', '4', '0', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\n000000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_v', '0', '3', '2', '2', 'xxxxxxxxxxxxxxxxxxxx\r\nx222221111111111111x\r\nx222221111111111111x\r\n2222221111111111111x\r\nx222221111111111111x\r\nx222221111111111111x\r\nx222221111111111111x\r\nxxxxxxxx1111xxxxxxxx\r\nxxxxxxxx0000xxxxxxxx\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxxxxxxx00000000000x\r\nx000000x00000000000x\r\nx000000x0000xxxxxxxx\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nxxxxxxxx0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_t', '0', '3', '2', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\n2222222222222222222222222222x\r\nx222222222222222222222222222x\r\nx2222xxxxxx222222xxxxxxx2222x\r\nx2222xxxxxx111111xxxxxxx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xx11xxx1111xxxx11xx2222x\r\nx2222xx11xxx0000xxxx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx2222xx11xxxxxxxxxxx11xx2222x\r\nx2222xx11xxxxxxxxxxx11xx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xxxxxxxxxxxxxxxxxxx2222x\r\nx2222xxxxxxxxxxxxxxxxxxx2222x\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_x', '0', '12', '0', '2', 'xxxxxxxxxxxxxxxxxxxx\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxx00xxx0000xxx00xxx\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\n0000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000xxxxxx000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_w', '0', '3', '2', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx2222xx1111111111xx11111111\r\nx2222xx1111111111xx11111111\r\n222222111111111111111111111\r\nx22222111111111111111111111\r\nx22222111111111111111111111\r\nx22222111111111111111111111\r\nx2222xx1111111111xx11111111\r\nx2222xx1111111111xx11111111\r\nx2222xx1111111111xxxx1111xx\r\nx2222xx1111111111xxxx0000xx\r\nxxxxxxx1111111111xx00000000\r\nxxxxxxx1111111111xx00000000\r\nx22222111111111111000000000\r\nx22222111111111111000000000\r\nx22222111111111111000000000\r\nx22222111111111111000000000\r\nx2222xx1111111111xx00000000\r\nx2222xx1111111111xx00000000\r\nx2222xxxx1111xxxxxxxxxxxxxx\r\nx2222xxxx0000xxxxxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_z', '0', '9', '0', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\n000000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_u', '0', '17', '1', '2', 'xxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\n11111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nxxxxxxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_y', '0', '3', '0', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx0000000000xx0000x\r\nx00000000xx0000000000xx0000x\r\n000000000xx0000000000xx0000x\r\nx00000000xx0000000000xx0000x\r\nx00000000xx0000xx0000xx0000x\r\nx00000000xx0000xx0000xx0000x\r\nx00000000xx0000xx0000000000x\r\nx00000000xx0000xx0000000000x\r\nxxxxx0000xx0000xx0000000000x\r\nxxxxx0000xx0000xx0000000000x\r\nxxxxx0000xx0000xxxxxxxxxxxxx\r\nxxxxx0000xx0000xxxxxxxxxxxxx\r\nx00000000xx0000000000000000x\r\nx00000000xx0000000000000000x\r\nx00000000xx0000000000000000x\r\nx00000000xx0000000000000000x\r\nx0000xxxxxxxxxxxxxxxxxx0000x\r\nx0000xxxxxxxxxxxxxxxxxx0000x\r\nx00000000000000000000000000x\r\nx00000000000000000000000000x\r\nx00000000000000000000000000x\r\nx00000000000000000000000000x\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_oscar', '0', '15', '1', '2', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx11xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111111111111100000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111111111111100000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx11xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_b2g', '0', '0', '0', '2', 'xxxxxxxxxxxxxx\r\nx00000x000000x\r\nx000000000000x\r\nx00000x000000x\r\nx00000x000000x\r\nx00000x000000x\r\nx00000x000000x\r\nxxx0xxx000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx00000xx00000x\r\nxxxxxxxxxxxxxx', '', '1');INSERT INTO `room_models` VALUES ('model_opening', '0', '23', '2', '2', 'xxxxxxxxxxxxxxxxxxx\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx2222xx111111111111\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\n22222xx000000000000\r\nx2222xx000000000000\r\nxxxxxxxxxxxxxxxxxxx', '', '1');
-- ------------------------------ Table structure for `room_rights`-- ----------------------------DROP TABLE IF EXISTS `room_rights`;CREATE TABLE `room_rights` (  `room_id` int(10) unsigned NOT NULL,  `user_id` int(10) unsigned NOT NULL,  KEY `room_id` (`room_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of room_rights-- ----------------------------
-- ------------------------------ Table structure for `rooms`-- ----------------------------DROP TABLE IF EXISTS `rooms`;CREATE TABLE `rooms` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `roomtype` enum('public','private') NOT NULL DEFAULT 'private',  `caption` varchar(100) NOT NULL DEFAULT 'Room',  `owner` varchar(75) NOT NULL DEFAULT '',  `description` varchar(255) NOT NULL DEFAULT '',  `category` int(11) NOT NULL DEFAULT '0',  `state` enum('open','locked','password') NOT NULL DEFAULT 'open',  `users_now` int(11) NOT NULL DEFAULT '0',  `users_max` int(11) NOT NULL DEFAULT '25',  `model_name` varchar(50) NOT NULL,  `public_ccts` varchar(50) NOT NULL DEFAULT '',  `score` int(11) NOT NULL DEFAULT '0',  `tags` varchar(100) NOT NULL DEFAULT '',  `icon_bg` int(11) NOT NULL DEFAULT '1',  `icon_fg` int(11) NOT NULL DEFAULT '0',  `icon_items` varchar(50) NOT NULL DEFAULT '',  `password` varchar(30) NOT NULL DEFAULT '',  `wallpaper` varchar(10) NOT NULL DEFAULT '0.0',  `floor` varchar(10) NOT NULL DEFAULT '0.0',  `landscape` varchar(10) NOT NULL DEFAULT '0.0',  `allow_pets` enum('0','1') NOT NULL DEFAULT '1',  `allow_pets_eat` enum('0','1') NOT NULL DEFAULT '0',  `allow_walkthrough` enum('0','1') NOT NULL DEFAULT '0',  `allow_hidewall` enum('0','1') NOT NULL DEFAULT '0',  `wallthick` int(1) NOT NULL DEFAULT '0',  `floorthick` int(1) NOT NULL DEFAULT '0',  `achievement` int(11) NOT NULL DEFAULT '0',  PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
-- ------------------------------ Records of rooms-- ----------------------------INSERT INTO `rooms` VALUES ('1', 'public', 'Welcome Lobby', '', 'Where we give you a warm welcome to the hotel!', '0', 'open', '0', '50', 'newbie_lobby', 'hh_room_nlobby', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0', '0', '0', '0');INSERT INTO `rooms` VALUES ('2', 'public', 'Theatredrome', '', 'For mass assemblies and gatherings.', '0', 'open', '0', '50', 'theater', 'hh_room_theater', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0', '0', '0', '0');INSERT INTO `rooms` VALUES ('3', 'public', 'Club Orient', '', 'Come and relax, dance under the lights or chill out with a cup of tea in this oriental styled club.', '0', 'open', '0', '30', 'orient', 'hh_room_orient', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0', '0', '0', '0');INSERT INTO `rooms` VALUES ('4', 'public', 'Picnic Area', '', 'Enjoy the ever-lasting summer sun with a fresh picnic, even in winter!', '0', 'open', '0', '50', 'picnic', 'hh_room_picnic', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0', '0', '0', '0');INSERT INTO `rooms` VALUES ('5', 'public', 'Tea Room', '', 'Have a relaxing cup of fruit, herbal or even everyday tea in this Chinese themed tea house.', '0', 'open', '0', '30', 'tearoom', 'hh_room_tearoom', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0', '0', '0', '0');INSERT INTO `rooms` VALUES ('6', 'public', 'Dusty Lounge', '', 'Origninally where the hotel air conditioning emptied its filters, this dusty, old void is now a beautifully decorated lounge!', '0', 'open', '0', '30', 'dusty_lounge', 'hh_room_dustylounge', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0', '0', '0', '0');INSERT INTO `rooms` VALUES ('7', 'public', 'Cinema', '', 'Watch or perform, the choice is yours!', '0', 'open', '0', '50', 'cinema_a', 'hh_room_cinema', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0', '0', '0', '0');
-- ------------------------------ Table structure for `server_settings`-- ----------------------------DROP TABLE IF EXISTS `server_settings`;CREATE TABLE `server_settings` (  `motd` text NOT NULL,  `timer` int(11) NOT NULL DEFAULT '15',  `pixels` int(11) NOT NULL DEFAULT '15',  `credits` int(11) NOT NULL DEFAULT '75',  `enable_chatlogs` enum('0','1') NOT NULL DEFAULT '1',  `enable_roomlogs` enum('0','1') NOT NULL DEFAULT '1',  `vipclothesforhcusers` enum('1','0') NOT NULL DEFAULT '1',  `MaxRoomsPerUser` int(4) NOT NULL DEFAULT '50',  `enable_externalchatlinks` enum('disabled','blacklist','whitelist') NOT NULL DEFAULT 'disabled',  `enable_securesessions` enum('1','0') NOT NULL DEFAULT '1',  `enable_cmdlogs` enum('0','1') NOT NULL DEFAULT '1',  `allow_friendfurnidrops` enum('0','1') NOT NULL DEFAULT '1',  `enable_cmd_redeemcredits` enum('0','1') NOT NULL DEFAULT '1',  `points` int(11) NOT NULL DEFAULT '0',  `pixels_max` int(15) NOT NULL DEFAULT '0',  `credits_max` int(15) NOT NULL DEFAULT '0',  `points_max` int(15) NOT NULL DEFAULT '0',  `enable_antiddos` enum('0','1') NOT NULL DEFAULT '1',  `MaxPetsPerRoom` int(2) NOT NULL DEFAULT '15',  `MarketPlaceTax` int(2) NOT NULL DEFAULT '1',  `MaxMarketPlacePrice` int(9) NOT NULL DEFAULT '10000',  `unload_crashedrooms` enum('0','1') NOT NULL DEFAULT '1',  `ShowUsersAndRoomsInAbout` enum('0','1') NOT NULL DEFAULT '1',  `idlesleep` int(6) NOT NULL DEFAULT '300',  `idlekick` int(6) NOT NULL DEFAULT '1200',  `ip_lastforbans` enum('0','1') NOT NULL DEFAULT '0') ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of server_settings-- ----------------------------INSERT INTO `server_settings` VALUES ('Please change your motd \\nYou can find this message in your server_settings table :)', '15', '15', '75', '1', '1', '1', '50', 'disabled', '1', '1', '1', '1', '0', '0', '0', '0', '1', '15', '1', '10000', '1', '1', '300', '1200', '0');
-- ------------------------------ Table structure for `server_status`-- ----------------------------DROP TABLE IF EXISTS `server_status`;CREATE TABLE `server_status` (  `status` enum('0','1','2') NOT NULL DEFAULT '0',  `users_online` int(11) NOT NULL DEFAULT '0',  `rooms_loaded` int(11) NOT NULL DEFAULT '0',  `server_ver` text NOT NULL,  `stamp` double NOT NULL,  `userpeak` int(11) NOT NULL DEFAULT '0') ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of server_status-- ----------------------------INSERT INTO `server_status` VALUES ('0', '0', '0', 'Phoenix v3.9.0 (Build 14615)', '1346780784', '0');
-- ------------------------------ Table structure for `soundtracks`-- ----------------------------DROP TABLE IF EXISTS `soundtracks`;CREATE TABLE `soundtracks` (  `id` int(6) NOT NULL,  `name` varchar(100) NOT NULL,  `author` varchar(50) NOT NULL,  `track` text NOT NULL,  `length` int(4) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ------------------------------ Records of soundtracks-- ----------------------------INSERT INTO `soundtracks` VALUES ('1', 'The Ballad of Bonnie Blonde', 'Pixel! at the Disco', '1:371,8;374,4;378,4;0,4;378,4;0,4;377,4;378,4;0,6;371,4;0,4;370,3;377,2;0,7:2:353,24;358,4;363,4;353,10;367,4;353,4;367,4;353,8:3:0,4;291,2;365,2;0,2;365,2;377,2;365,2;377,2;365,2;377,2;0,2;359,4;352,4;357,1;0,1;365,2;0,2;292,4;0,3;357,1;292,4;0,3;357,1;292,4;296,4:4:0,2;368,22;354,4;368,26;361,8:', '124');INSERT INTO `soundtracks` VALUES ('2', 'Push the Call for Help', 'BanzaiBabes', '1:317,6;318,4;319,4;317,4;319,4;0,2:2:0,2;316,4;0,4;316,4;0,4;316,4;0,2:3:0,6;321,4;323,4;322,10:4:0,18;321,2;324,2;0,2:', '48');INSERT INTO `soundtracks` VALUES ('3', 'Monotone Hotel Sounds', 'Doorman Frank', '1:4,24:2:2,24:3:0,24:4:0,24:', '48');INSERT INTO `soundtracks` VALUES ('4', 'Haven\'t Friend Request You Yet', 'Micheal Bauble', '1:280,4;281,4;282,4;283,4;284,4;285,4;286,4;287,4;288,4:2:0,36:3:0,36:4:0,36:', '72');INSERT INTO `soundtracks` VALUES ('5', 'Sounds That Fit Double Rainbows', 'Kallomies', '1:200,12;199,3;201,1;200,28:2:0,2;190,1;0,1;191,1;0,1;192,1;0,1;190,2;191,1;192,1;190,2;0,1;193,2;190,2;191,1;0,1;190,1;192,2;0,1;191,2;178,2;0,1;178,2;0,1;178,2;0,2;177,2;0,1;176,4:3:0,8;176,2;0,1;177,2;0,3;179,2;0,2;177,2;0,2;176,2;0,1;178,6;0,1;178,2;0,2;177,4;176,2:4:0,8;197,16;0,20:', '88');INSERT INTO `soundtracks` VALUES ('6', 'Gold Coin Digger', 'Kayne Quest', '1:104,10;102,8;104,4;102,8;104,4:2:0,2;181,8;182,8;181,4;182,8;130,2;106,2:3:0,2;105,2;106,2;186,3;187,1;185,1;184,1;185,1;184,1;185,1;184,1;185,1;187,1;186,3;187,1;185,1;184,1;185,1;184,1;185,1;184,1;185,1;184,1;72,1;100,2;0,1:4:0,4;103,6;133,1;101,1;133,1;101,1;133,1;101,1;133,1;101,1;103,4;133,1;101,1;133,1;101,1;133,1;101,1;133,1;101,1;105,2;101,1;0,1:', '68');INSERT INTO `soundtracks` VALUES ('7', 'Too Lost In Lido', 'BanzaiBabes', '1:317,4;408,7;0,1;410,16;413,4;406,4;410,8;412,4:2:0,2;321,2;443,22;91,2;317,8;443,8;412,2;0,2:3:0,3;320,2;0,7;414,4;445,4;412,2;323,2;412,4;96,2;412,2;414,4;445,7;448,1;317,4:4:0,3;324,2;0,6;448,1;0,6;96,2;322,4;96,2;99,2;322,4;412,2;0,2;322,2;96,2;322,2;0,1;324,2;0,3:', '96');INSERT INTO `soundtracks` VALUES ('8', 'Pixelrazzi', 'Lady BlaBla', '1:0,3;167,1;163,2;0,2;142,2;163,2;142,2;163,2;142,2;163,2;142,2;0,1;88,1;142,2;163,2;142,2;163,2;142,2;163,2;142,2;163,2:2:89,16;0,2;143,4;119,4;143,4;89,2;119,4;143,4:3:0,3;121,2;0,1;164,2;140,8;141,6;0,1;168,1;141,16:4:0,2;139,2;123,4;143,8;144,2;89,2;144,2;0,1;90,1;144,2;89,2;0,2;89,2;144,2;89,2;0,2;89,2:', '80');INSERT INTO `soundtracks` VALUES ('9', 'Touch the Skyscraper', 'Kayne Quest', '1:274,4;275,4;276,8;274,4;276,4;274,4:2:0,4;278,4;279,4;273,12;277,3;0,1:3:0,4;429,2;0,4;430,2;429,2;340,2;342,4;429,2;261,2;342,4:4:0,2;340,2;0,3;429,2;0,1;259,2;271,4;254,12:', '56');INSERT INTO `soundtracks` VALUES ('10', 'About VIP Now', 'BanzaiBabes', '1:152,20;146,1;0,1;152,4;151,4;152,20;153,4:2:0,8;145,12;146,1;0,1;145,4;0,1;151,2;0,1;145,20;0,1;150,2;0,1:3:0,10;150,2;146,1;0,1;150,2;146,1;0,1;150,2;146,1;0,7;151,2;0,2;150,2;146,1;0,1;150,2;146,1;0,1;150,2;0,1;146,1;0,1;146,1;0,1;146,3;0,4:4:0,4;148,2;147,2;148,2;147,2;148,2;147,2;148,2;147,2;148,4;147,2;148,6;147,2;148,2;147,2;148,2;147,2;148,2;147,2;148,2;147,2;0,4:', '108');INSERT INTO `soundtracks` VALUES ('11', 'The Good Trade', 'Kayne Quest', '1:108,4;135,8;130,2;108,2;135,8;127,28:2:0,3;131,9;104,2;0,2;131,8;108,4;102,4;0,8;92,6;0,6:3:134,4;140,8;0,1;133,1;136,2;140,6;0,10;143,16;108,4:4:0,2;104,2;0,1;133,1;0,3;133,1;134,4;0,1;104,2;133,1;0,3;133,1;0,24;136,2;0,4:', '104');INSERT INTO `soundtracks` VALUES ('12', 'I Write Bans not Tragedies', 'Pixel! at the Disco', '1:248,4;247,4;252,4;251,8;245,4;250,4;252,4:2:359,4;250,4;359,4;345,8;0,4;359,8:3:0,3;347,1;359,4;352,8;342,4;350,4;342,4;350,4:4:0,3;357,1;334,4;246,4;343,12;334,4;340,2;0,1;347,1:', '64');INSERT INTO `soundtracks` VALUES ('13', 'Furni Face', 'Lady BlaBla', '1:379,4;45,4;0,1;205,2;42,5;37,4;384,2;41,4;42,5;0,2:2:0,3;199,3;0,1;383,3;519,4;515,8;519,8;39,2;0,1:3:0,2;205,2;382,4;522,2;516,12;518,8;0,3:4:0,4;386,2;0,2;43,1;0,1;207,3;202,1;520,8;44,2;0,2;520,4;207,3:', '66');INSERT INTO `soundtracks` VALUES ('14', 'Habbowood', 'Micheal Bauble', '1:280,4;265,4;264,4;263,8;0,16:2:262,4;263,8;266,4;267,4;264,12;262,4:3:0,4;268,8;269,4;270,4;268,8;282,4;285,4:4:0,20;74,4;75,3;81,3;0,6:', '72');INSERT INTO `soundtracks` VALUES ('15', 'Party Trax', 'Aerokid', '1:12,16;3,4;19,8;0,2;29,8;0,16:2:13,4;14,4;10,8;0,4;2,8;0,1;33,1;32,18;16,2;32,2;16,2:3:0,2;15,1;17,1;5,4;7,2;24,1;8,1;4,4;0,2;24,1;6,1;0,4;22,4;0,2;28,4;30,4;31,2;16,2;31,2;16,2;20,1;21,1;20,1;21,1;20,1;21,1;20,1;21,1:4:18,2;0,2;10,4;5,22;35,2;0,20;24,1;17,1:', '100');INSERT INTO `soundtracks` VALUES ('16', 'Who Dares Stacks', 'Rage Against the Fuse', '1:255,4;310,7;0,9;310,14;0,4:2:0,3;309,1;308,7;309,1;308,7;309,1;308,7;309,1;308,7;309,1;0,2:3:0,4;162,7;0,1;162,7;0,1;162,15;0,3:4:0,6;135,4;135,4;135,4;0,2;135,4;135,4;135,4;135,4;0,2:5:0,14;155,2;0,2;155,2;314,1;315,1;314,1;315,1;314,1;315,1;314,1;0,1;314,1;315,1;314,1;315,1;314,1;315,1;314,1;315,1;0,2:6:0,12;311,1;0,1;311,1;0,1;311,1;0,1;311,1;0,1;311,1;0,5;155,2;311,1;0,1;311,1;0,1;311,1;0,3;311,1;0,1:', '76');
-- ------------------------------ Table structure for `system_stats`-- ----------------------------DROP TABLE IF EXISTS `system_stats`;CREATE TABLE `system_stats` (  `id` int(5) NOT NULL AUTO_INCREMENT,  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,  `users` int(5) NOT NULL DEFAULT '0',  `rooms` int(5) NOT NULL DEFAULT '0',  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ------------------------------ Records of system_stats-- ----------------------------INSERT INTO `system_stats` VALUES ('1', '2011-01-14 20:51:56', '1', '0');
-- ------------------------------ Table structure for `tele_links`-- ----------------------------DROP TABLE IF EXISTS `tele_links`;CREATE TABLE `tele_links` (  `tele_one_id` int(10) unsigned NOT NULL,  `tele_two_id` int(10) unsigned NOT NULL,  KEY `tele_one_id` (`tele_one_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of tele_links-- ----------------------------
-- ------------------------------ Table structure for `texts`-- ----------------------------DROP TABLE IF EXISTS `texts`;CREATE TABLE `texts` (  `identifier` varchar(50) NOT NULL,  `display_text` text NOT NULL,  PRIMARY KEY (`identifier`),  KEY `identifier` (`identifier`)) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ------------------------------ Records of texts-- ----------------------------INSERT INTO `texts` VALUES ('cmd_about_desc', ':about - Server Information');INSERT INTO `texts` VALUES ('cmd_about_name', 'info');INSERT INTO `texts` VALUES ('cmd_alert_desc', ':alert <username> <message> - Alerts the target user with the message provided');INSERT INTO `texts` VALUES ('cmd_alert_name', 'alert');INSERT INTO `texts` VALUES ('cmd_award_desc', ':award <username> <achievement id> - The target user unlocks the selected achievement');INSERT INTO `texts` VALUES ('cmd_award_name', 'award');INSERT INTO `texts` VALUES ('cmd_ban_desc', ':ban <username> <time in seconds> - Bans the targetted user for the specified time in seconds. Minimum ban length of 10 minutes (600).');INSERT INTO `texts` VALUES ('cmd_ban_name', 'ban');INSERT INTO `texts` VALUES ('cmd_buy_desc', ':buy <count> - Modifies the quantity of your next catalogue purchase');INSERT INTO `texts` VALUES ('cmd_buy_name', 'buy');INSERT INTO `texts` VALUES ('cmd_coins_desc', ':coins <username> <amount> - Gives the target user the set amount of credits');INSERT INTO `texts` VALUES ('cmd_coins_name', 'coins');INSERT INTO `texts` VALUES ('cmd_commands_name', 'commands');INSERT INTO `texts` VALUES ('cmd_coords_desc', ':coords - Returns your current co-ordinates');INSERT INTO `texts` VALUES ('cmd_coords_name', 'coords');INSERT INTO `texts` VALUES ('cmd_disablediagonal_desc', ':disablediagonal - Disable diagonal walking in the room');INSERT INTO `texts` VALUES ('cmd_disablediagonal_name', 'disablediagonal');INSERT INTO `texts` VALUES ('cmd_disconnect_name', 'disconnect');INSERT INTO `texts` VALUES ('cmd_emptyitems_desc', ':emptyitems - Clears your inventory');INSERT INTO `texts` VALUES ('cmd_emptyitems_name', 'emptyitems');INSERT INTO `texts` VALUES ('cmd_emptyitems_success', 'Inventory items cleared!');INSERT INTO `texts` VALUES ('cmd_emptypets_desc', ':emptypets - Removes all pets from your inventory');INSERT INTO `texts` VALUES ('cmd_emptypets_name', 'emptypets');INSERT INTO `texts` VALUES ('cmd_emptypets_success', 'Inventory pets cleared!');INSERT INTO `texts` VALUES ('cmd_empty_desc', ':empty <username> - Clears targets inventory');INSERT INTO `texts` VALUES ('cmd_empty_name', 'empty');INSERT INTO `texts` VALUES ('cmd_enable_desc', ':enable <effect id> - Applies the provided effect ID to yourself');INSERT INTO `texts` VALUES ('cmd_enable_name', 'enable');INSERT INTO `texts` VALUES ('cmd_error_disabled', 'This command has been disabled by the hotel owner, sorry!');INSERT INTO `texts` VALUES ('cmd_error_permission_vip', 'This command is restricted to VIP members only, for more info on VIP check out the website!');INSERT INTO `texts` VALUES ('cmd_flagme_desc', ':flagme - Allows you to change your username');INSERT INTO `texts` VALUES ('cmd_flagme_name', 'flagme');INSERT INTO `texts` VALUES ('cmd_follow_desc', ':follow <username> - Follows the target whether they\'re a friend or not');INSERT INTO `texts` VALUES ('cmd_follow_name', 'follow');INSERT INTO `texts` VALUES ('cmd_freeze_desc', ':freeze <username> - Disables pathfinding for the targetted user, thus freezing them in place');INSERT INTO `texts` VALUES ('cmd_freeze_name', 'freeze');INSERT INTO `texts` VALUES ('cmd_givebadge_desc', ':givebadge <username> <badge id> - Gives the targetted user the specified badge');INSERT INTO `texts` VALUES ('cmd_givebadge_name', 'givebadge');INSERT INTO `texts` VALUES ('cmd_globalcredits_desc', ':globalcredits <amount> - Gives all users the specified amount of credits, including offline users');INSERT INTO `texts` VALUES ('cmd_globalcredits_name', 'globalcredits');INSERT INTO `texts` VALUES ('cmd_globalpixels_desc', ':globalpixels <amount> - Gives all users the specified amount of pixels, including offline users');INSERT INTO `texts` VALUES ('cmd_globalpixels_name', 'globalpixels');INSERT INTO `texts` VALUES ('cmd_globalpoints_desc', ':globalpoints <amount> - Gives all users the specified amount of points, including offline users');INSERT INTO `texts` VALUES ('cmd_globalpoints_name', 'globalpoints');INSERT INTO `texts` VALUES ('cmd_hal_desc', ':hal <url> <message> - Sends out a hotel-wide alert with the provided message and a link to the provided url');INSERT INTO `texts` VALUES ('cmd_hal_name', 'hal');INSERT INTO `texts` VALUES ('cmd_hal_title', 'Notice from Hotel Management:');INSERT INTO `texts` VALUES ('cmd_ha_desc', ':ha <message> - Sends out a hotel-wide alert with the provided message');INSERT INTO `texts` VALUES ('cmd_ha_name', 'ha');INSERT INTO `texts` VALUES ('cmd_ha_title', 'Important Notice from Hotel Management');INSERT INTO `texts` VALUES ('cmd_invisible_desc', ':invisible - Puts you into spectator mode, you won\'t be visible to anyone else, you\'ll need to reload the hotel to remove this effect');INSERT INTO `texts` VALUES ('cmd_invisible_name', 'invisible');INSERT INTO `texts` VALUES ('cmd_ipban_desc', ':ipban <user> - Permanently bans the targetted user and applies an IP ban');INSERT INTO `texts` VALUES ('cmd_ipban_name', 'ipban');INSERT INTO `texts` VALUES ('cmd_kick_desc', ':kick <username> <reason> - Kicks the target user from the room with the reason provided');INSERT INTO `texts` VALUES ('cmd_kick_name', 'kick');INSERT INTO `texts` VALUES ('cmd_massbadge_desc', ':massbadge <badge id> - Gives all online users the specified badge');INSERT INTO `texts` VALUES ('cmd_massbadge_name', 'massbadge');INSERT INTO `texts` VALUES ('cmd_masscredits_desc', ':masscredits <amount> - Gives all online users the specified amount of credits');INSERT INTO `texts` VALUES ('cmd_masscredits_name', 'masscredits');INSERT INTO `texts` VALUES ('cmd_masspixels_desc', ':masspixels <amount> - Gives all online users the specified amount of pixels');INSERT INTO `texts` VALUES ('cmd_masspixels_name', 'masspixels');INSERT INTO `texts` VALUES ('cmd_masspoints_desc', ':masspoints <amount> - Gives all online users the specified amount of points');INSERT INTO `texts` VALUES ('cmd_masspoints_name', 'masspoints');INSERT INTO `texts` VALUES ('cmd_mimic_desc', ':mimic <username> - Copies the target users looks and applies them to yourself');INSERT INTO `texts` VALUES ('cmd_mimic_name', 'mimic');INSERT INTO `texts` VALUES ('cmd_moonwalk_desc', ':moonwalk - Toggles the ability to moonwalk');INSERT INTO `texts` VALUES ('cmd_moonwalk_name', 'moonwalk');INSERT INTO `texts` VALUES ('cmd_motd_desc', ':motd <username> <message> - Alerts the target user with the message provided');INSERT INTO `texts` VALUES ('cmd_motd_name', 'motd');INSERT INTO `texts` VALUES ('cmd_mute_desc', ':mute <username> - Mutes the targetted user');INSERT INTO `texts` VALUES ('cmd_mute_name', 'mute');INSERT INTO `texts` VALUES ('cmd_override_desc', ':override - Enables you to ignore pathfinding and walk across/through any surface');INSERT INTO `texts` VALUES ('cmd_override_name', 'override');INSERT INTO `texts` VALUES ('cmd_pickall_desc', ':pickall - Pick up all furni');INSERT INTO `texts` VALUES ('cmd_pickall_name', 'pickall');INSERT INTO `texts` VALUES ('cmd_pixels_desc', ':pixels <username> <amount> - Gives the target user the set amount of pixels');INSERT INTO `texts` VALUES ('cmd_pixels_name', 'pixels');INSERT INTO `texts` VALUES ('cmd_points_desc', ':points <username> <amount> - Gives the target user the set amount of points');INSERT INTO `texts` VALUES ('cmd_points_name', 'points');INSERT INTO `texts` VALUES ('cmd_pull_desc', ':pull <username> - Pulls the target user to yourself');INSERT INTO `texts` VALUES ('cmd_pull_name', 'pull');INSERT INTO `texts` VALUES ('cmd_push_desc', ':push <username> - Pushes the target user 1 step away from yourself');INSERT INTO `texts` VALUES ('cmd_push_name', 'push');INSERT INTO `texts` VALUES ('cmd_redeemcreds_desc', ':convertcredits - Turns all exchange items in your hand back into coins');INSERT INTO `texts` VALUES ('cmd_redeemcreds_name', 'convertcredits');INSERT INTO `texts` VALUES ('cmd_removebadge_desc', ':removebadge <username> <badge id> - Removes the specified badge from the targetted user');INSERT INTO `texts` VALUES ('cmd_removebadge_name', 'removebadge');INSERT INTO `texts` VALUES ('cmd_ride_desc', ':ride <horsename> - Allows you to ride a horse');INSERT INTO `texts` VALUES ('cmd_ride_err_nothorse', 'You cannot ride other users or small animals, sorry! :(');INSERT INTO `texts` VALUES ('cmd_ride_err_riding', 'You need to :dismount before you can ride another animal!');INSERT INTO `texts` VALUES ('cmd_ride_err_swimming', 'You cannot ride animals while taking a swim, sorry! :(');INSERT INTO `texts` VALUES ('cmd_ride_err_toofar', 'You need to get close to ride this animal!');INSERT INTO `texts` VALUES ('cmd_ride_err_tooslow', 'That animal already has a rider, sorry! :(');INSERT INTO `texts` VALUES ('cmd_ride_instr_getoff', 'To get off the animal you can use :dismount or :getoff');INSERT INTO `texts` VALUES ('cmd_ride_name', 'ride');INSERT INTO `texts` VALUES ('cmd_roomalert_desc', ':roomalert <message> - Alerts everyone in the current room with the message provided');INSERT INTO `texts` VALUES ('cmd_roomalert_name', 'roomalert');INSERT INTO `texts` VALUES ('cmd_roombadge_desc', ':roombadge <badge id> - Gives all users in the current room the specified badge');INSERT INTO `texts` VALUES ('cmd_roombadge_name', 'roombadge');INSERT INTO `texts` VALUES ('cmd_roominfo_name', 'roominfo');INSERT INTO `texts` VALUES ('cmd_roomkick_desc', ':roomkick <reason> - Kicks everyone from the current room with the reason provided');INSERT INTO `texts` VALUES ('cmd_roomkick_name', 'roomkick');INSERT INTO `texts` VALUES ('cmd_roommute_desc', ':roommute - Enables/Disables a room-wide mute');INSERT INTO `texts` VALUES ('cmd_roommute_name', 'roommute');INSERT INTO `texts` VALUES ('cmd_sa_desc', ':sa <message> - Sends a message to other staff members with the receive_sa permission');INSERT INTO `texts` VALUES ('cmd_sa_name', 'sa');INSERT INTO `texts` VALUES ('cmd_sa_title', 'Staff Announcement');INSERT INTO `texts` VALUES ('cmd_setmax_desc', ':setmax <count> Updates maximum allowed users in the room');INSERT INTO `texts` VALUES ('cmd_setmax_name', 'setmax');INSERT INTO `texts` VALUES ('cmd_setspeed_desc', ':setspeed <speed> - Changes the speed of rollers in the current room');INSERT INTO `texts` VALUES ('cmd_setspeed_name', 'setspeed');INSERT INTO `texts` VALUES ('cmd_shutdown_desc', ':shutdown - Immediately begins a server shutdown');INSERT INTO `texts` VALUES ('cmd_shutdown_name', 'shutdown');INSERT INTO `texts` VALUES ('cmd_spull_desc', ':spull <username> - Forces the target user to walk towards you');INSERT INTO `texts` VALUES ('cmd_spull_name', 'spull');INSERT INTO `texts` VALUES ('cmd_summon_desc', ':summon <username> - Forces the target user to load your current room');INSERT INTO `texts` VALUES ('cmd_summon_name', 'summon');INSERT INTO `texts` VALUES ('cmd_superban_desc', ':superban <username> - Permanently bans the targetted user');INSERT INTO `texts` VALUES ('cmd_superban_name', 'superban');INSERT INTO `texts` VALUES ('cmd_teleport_desc', ':teleport - Clicking on a location will teleport you to it - walking is for losers!');INSERT INTO `texts` VALUES ('cmd_teleport_name', 'teleport');INSERT INTO `texts` VALUES ('cmd_unload_desc', ':unload - Unloads the room');INSERT INTO `texts` VALUES ('cmd_unload_name', 'unload');INSERT INTO `texts` VALUES ('cmd_unmute_desc', ':unmute <username> - Unmutes the targetted user');INSERT INTO `texts` VALUES ('cmd_unmute_name', 'unmute');INSERT INTO `texts` VALUES ('cmd_update_achievements_desc', ':update_achievements - Reloads achievements data from the database');INSERT INTO `texts` VALUES ('cmd_update_achievements_name', 'update_achievements');INSERT INTO `texts` VALUES ('cmd_update_bans_desc', ':update_bans - Re-applies all active bans from the bans database');INSERT INTO `texts` VALUES ('cmd_update_bans_name', 'update_bans');INSERT INTO `texts` VALUES ('cmd_update_bots_desc', ':update_bots - Reloads the bots from the bots table');INSERT INTO `texts` VALUES ('cmd_update_bots_name', 'update_bots');INSERT INTO `texts` VALUES ('cmd_update_catalogue_desc', ':update_catalogue - Reloads the catalogue pages and items from the database');INSERT INTO `texts` VALUES ('cmd_update_catalogue_name', 'update_catalogue');INSERT INTO `texts` VALUES ('cmd_update_filter_desc', ':update_filter - Reloads the hotel filter from the database');INSERT INTO `texts` VALUES ('cmd_update_filter_name', 'update_filter');INSERT INTO `texts` VALUES ('cmd_update_items_desc', ':update_items - Reloads the furniture settings from the furniture table');INSERT INTO `texts` VALUES ('cmd_update_items_name', 'update_items');INSERT INTO `texts` VALUES ('cmd_update_navigator_desc', ':update_navigator - Reloads the room models and navigator settings');INSERT INTO `texts` VALUES ('cmd_update_navigator_name', 'update_navigator');INSERT INTO `texts` VALUES ('cmd_update_permissions_desc', ':update_permissions - Reloads the permissions settings from the database');INSERT INTO `texts` VALUES ('cmd_update_permissions_name', 'update_permissions');INSERT INTO `texts` VALUES ('cmd_update_settings_desc', ':update_settings - Re-applies the settings from the server_settings table');INSERT INTO `texts` VALUES ('cmd_update_settings_name', 'update_settings');INSERT INTO `texts` VALUES ('cmd_update_texts_desc', ':update_texts - Updates texts from database');INSERT INTO `texts` VALUES ('cmd_update_texts_name', 'update_texts');INSERT INTO `texts` VALUES ('cmd_userinfo_desc', ':userinfo <username> - Returns some information about the target user to you');INSERT INTO `texts` VALUES ('cmd_userinfo_name', 'userinfo');INSERT INTO `texts` VALUES ('emu_cleandb', 'Cleaning up database..');INSERT INTO `texts` VALUES ('emu_connectdb', 'Connecting to database..');INSERT INTO `texts` VALUES ('emu_loadroles', 'Loading Roles..');INSERT INTO `texts` VALUES ('emu_loadsettings', 'Loading Settings..');INSERT INTO `texts` VALUES ('emu_loadtexts', 'Loading Texts..');INSERT INTO `texts` VALUES ('emu_sso_wrong', 'Login error: Your SSO ticket was incorrect');INSERT INTO `texts` VALUES ('emu_sso_wrong_secure', ' AND/OR your current IP doesn\'t match our database ');INSERT INTO `texts` VALUES ('error_maxpets', 'There are too many pets in this room. The maximum number of pets in a room is :');INSERT INTO `texts` VALUES ('error_muted', 'You are muted.');INSERT INTO `texts` VALUES ('error_roomunload', 'Oops, something went wrong with the room you were in, sorry!');INSERT INTO `texts` VALUES ('guidebot_welcome1', 'Hello and welcome to Habboon! I am a bot Guide and I\'m here to help you.');INSERT INTO `texts` VALUES ('guidebot_welcome2', 'I can give you tips and hints on what to do here, just ask me a question :)');INSERT INTO `texts` VALUES ('marketplace_error_credits', 'Sorry, you don\'t have enough credits!');INSERT INTO `texts` VALUES ('marketplace_error_expired', 'Sorry, this offer has expired.');INSERT INTO `texts` VALUES ('mod_error_permission_ban', 'You do not have permission to ban that user.');INSERT INTO `texts` VALUES ('mod_error_permission_caution', 'You do not have permission to caution that user, sending as a regular message instead.');INSERT INTO `texts` VALUES ('mod_error_permission_kick', 'You do not have permission to kick that user.');INSERT INTO `texts` VALUES ('mod_inappropriate_roomdesc', 'Inappropriate to Hotel Managament');INSERT INTO `texts` VALUES ('mod_inappropriate_roomname', 'Inappropriate to Hotel Managament');INSERT INTO `texts` VALUES ('mod_tool_category1', 'Room Problems');INSERT INTO `texts` VALUES ('mod_tool_category1_problem1', 'Door Problem');INSERT INTO `texts` VALUES ('mod_tool_category1_problem2', 'Final Warning');INSERT INTO `texts` VALUES ('mod_tool_category1_problem3', 'Persisting Issue');INSERT INTO `texts` VALUES ('mod_tool_category1_problem4', 'Swearing Issue');INSERT INTO `texts` VALUES ('mod_tool_category1_problem5', 'Forum Assist');INSERT INTO `texts` VALUES ('mod_tool_category1_problem6', 'Flooding Room');INSERT INTO `texts` VALUES ('mod_tool_category1_problem7', 'Room Name');INSERT INTO `texts` VALUES ('mod_tool_category1_problem8', 'Furni Loading');INSERT INTO `texts` VALUES ('mod_tool_category1_solution1', 'Please check that there is nothing blocking the doorway. If the problem persists please report it again and we will investigate further.');INSERT INTO `texts` VALUES ('mod_tool_category1_solution2', 'This is your final warning regarding your actions within Habboon. The next step will be a ban.');INSERT INTO `texts` VALUES ('mod_tool_category1_solution3', 'We understand that the problem you were having is continuing to occur. Please update us with all the details. ');INSERT INTO `texts` VALUES ('mod_tool_category1_solution4', 'The language you are using in the room is not acceptable and is insulting other users please stop doing this or you will be kicked, possibly banned from habboon.');INSERT INTO `texts` VALUES ('mod_tool_category1_solution5', 'Please go to **************.com and submit your problem in the Habboon forums.');INSERT INTO `texts` VALUES ('mod_tool_category1_solution6', 'Attention, we\'ve noticed you are filling up the chat with mindless and senseless speech. This is what is known as flooding the room. Please stop doing this immeadiately or you will be kicked from the room.');INSERT INTO `texts` VALUES ('mod_tool_category1_solution7', 'Please change your room name otherwise we will do it.');INSERT INTO `texts` VALUES ('mod_tool_category1_solution8', 'Furniture not loading in rooms is a rare occurance in Habboon. Please try reloading Habboon, or clearing your internet browsers cache. There are tutorials on how to on our help website. Go to habboon.com/help. ');INSERT INTO `texts` VALUES ('mod_tool_category2', 'Player Support');INSERT INTO `texts` VALUES ('mod_tool_category2_problem1', 'Player Bug');INSERT INTO `texts` VALUES ('mod_tool_category2_problem2', 'Login Problem');INSERT INTO `texts` VALUES ('mod_tool_category2_problem3', 'Report Bug');INSERT INTO `texts` VALUES ('mod_tool_category2_problem4', 'CFH Abuse');INSERT INTO `texts` VALUES ('mod_tool_category2_problem5', 'Private Information');INSERT INTO `texts` VALUES ('mod_tool_category2_problem6', 'SWF Error');INSERT INTO `texts` VALUES ('mod_tool_category2_problem7', 'Cache');INSERT INTO `texts` VALUES ('mod_tool_category2_problem8', 'Temp. Problem');INSERT INTO `texts` VALUES ('mod_tool_category2_solution1', 'Thank you for contacting us regarding the bug. Please report it to the uservoice. www.habboon.uservoice.com');INSERT INTO `texts` VALUES ('mod_tool_category2_solution2', 'Please use the uservoice forum to report this problem. www.habboon.uservoice.com');INSERT INTO `texts` VALUES ('mod_tool_category2_solution3', 'Please report all bugs to our uservoice forum. www.habboon.uservoice.com');INSERT INTO `texts` VALUES ('mod_tool_category2_solution4', 'Please stop abusing the call for help system. It is only to be used in the event of an EMERGENCY. If you have general questions please seek the advice of an eXpert.');INSERT INTO `texts` VALUES ('mod_tool_category2_solution5', 'It is unsafe to give out your personal information.');INSERT INTO `texts` VALUES ('mod_tool_category2_solution6', 'Please report this bug and how to recreate the bug and post it at our uservoice forum. www.habboon.uservoice.com');INSERT INTO `texts` VALUES ('mod_tool_category2_solution7', 'If you are having problems with your comptuer memory, clear your cache.');INSERT INTO `texts` VALUES ('mod_tool_category2_solution8', 'Delete your temporary history!');INSERT INTO `texts` VALUES ('mod_tool_category3', 'Users Problems');INSERT INTO `texts` VALUES ('mod_tool_category3_problem1', 'Scamming');INSERT INTO `texts` VALUES ('mod_tool_category3_problem2', 'Trading Scam');INSERT INTO `texts` VALUES ('mod_tool_category3_problem3', 'Disconnection');INSERT INTO `texts` VALUES ('mod_tool_category3_problem4', 'Room Blocking');INSERT INTO `texts` VALUES ('mod_tool_category3_problem5', 'Freezing');INSERT INTO `texts` VALUES ('mod_tool_category3_problem6', 'Job Info');INSERT INTO `texts` VALUES ('mod_tool_category3_problem7', 'Flooding');INSERT INTO `texts` VALUES ('mod_tool_category3_problem8', 'Updates');INSERT INTO `texts` VALUES ('mod_tool_category3_solution1', 'There is no need to report scammers on Habboon. Habboon gives away 50 free coins every 15 minutes (along with Pixels) therefore it is useless to report scammers when our services are free. Please Note: All trading done within Habboon is done at your own risk.');INSERT INTO `texts` VALUES ('mod_tool_category3_solution2', 'If you have been scammed by trade in Habboon we can only apologise, there is no way of us retreiving the furniture that you have lost. Please note that all trading done on Habboon is done at your own risk, you should be vigilent when trading. ');INSERT INTO `texts` VALUES ('mod_tool_category3_solution3', 'There are often times when we are updating the hotel or there may be a slight bug within the system that would cause you to disconnect. Disconnections shouldn\'t happen often, if they do please seek help on our forums at **************.com');INSERT INTO `texts` VALUES ('mod_tool_category3_solution4', 'If there is a user in a room whom is blocking your path, ask the room owner to remove the user from the room. If the room ownwer is not there, please let us know and we will come and assist you.');INSERT INTO `texts` VALUES ('mod_tool_category3_solution5', 'Can explain us what happens to cause the freezing?');INSERT INTO `texts` VALUES ('mod_tool_category3_solution6', 'Please do not ask to be Staff in Habboon.Staff members are chosen from the eXpert team. To become a member of hotel staff first you must be an eXpert. To become an eXpert you must be active on the hotel, friendly, buid some good rooms. Please be patient if you do all of these things, we are bound to notice you. ');INSERT INTO `texts` VALUES ('mod_tool_category3_solution7', 'Attention, we\'ve noticed you\'re flooding or spamming Habboon with text. Please do not continue doing this or you will be kicked and even possibly banned from Habboon. Thank-You.\r\n');INSERT INTO `texts` VALUES ('mod_tool_category3_solution8', 'Updates are conducted when needed in Habboon to give users the best experience possible we thank you for taking the time to contact us regarding updates on the hotel. If there are new things to add to the hotel you can be sure they are coming in the future.\r\n');INSERT INTO `texts` VALUES ('mod_tool_category4', 'Debug Problems');INSERT INTO `texts` VALUES ('mod_tool_category4_problem1', 'Lag');INSERT INTO `texts` VALUES ('mod_tool_category4_problem2', 'Disconnection');INSERT INTO `texts` VALUES ('mod_tool_category4_problem3', 'SSO Problem');INSERT INTO `texts` VALUES ('mod_tool_category4_problem4', 'Char. Filter');INSERT INTO `texts` VALUES ('mod_tool_category4_problem5', 'System Check');INSERT INTO `texts` VALUES ('mod_tool_category4_problem6', 'WireEncoding Error');INSERT INTO `texts` VALUES ('mod_tool_category4_problem7', 'BASE64 Error');INSERT INTO `texts` VALUES ('mod_tool_category4_problem8', 'Flash Player Problem');INSERT INTO `texts` VALUES ('mod_tool_category4_solution1', 'Try to leave the room or perhaps reload the hotel to get rid of the lag.');INSERT INTO `texts` VALUES ('mod_tool_category4_solution2', 'Often times we are updating the hotel or there may be a slight bug within the system that would cause a disconnection. Although it is rare, please bear with us while we update our services.');INSERT INTO `texts` VALUES ('mod_tool_category4_solution3', 'Please contact us by posting on our uservoice forum. www.habboon.uservoice.com');INSERT INTO `texts` VALUES ('mod_tool_category4_solution4', 'Can you say the username? We\'ll take action if needed.');INSERT INTO `texts` VALUES ('mod_tool_category4_solution5', 'We already checking everything and debuging stuff');INSERT INTO `texts` VALUES ('mod_tool_category4_solution6', 'Please contact us by posting on our uservoice forum. www.habboon.uservoice.com');INSERT INTO `texts` VALUES ('mod_tool_category4_solution7', 'Please contact us by posting on our uservoice forum. www.habboon.uservoice.com');INSERT INTO `texts` VALUES ('mod_tool_category4_solution8', 'Please contact us by posting on our uservoice forum. www.habboon.uservoice.com');INSERT INTO `texts` VALUES ('mod_tool_category5', 'System Problems');INSERT INTO `texts` VALUES ('mod_tool_category5_problem1', 'Version');INSERT INTO `texts` VALUES ('mod_tool_category5_problem2', 'SWF Build');INSERT INTO `texts` VALUES ('mod_tool_category5_problem3', 'Freeze');INSERT INTO `texts` VALUES ('mod_tool_category5_problem4', 'Name Filter');INSERT INTO `texts` VALUES ('mod_tool_category5_problem5', 'Nickname Filter');INSERT INTO `texts` VALUES ('mod_tool_category5_problem6', 'Catalogue Issue');INSERT INTO `texts` VALUES ('mod_tool_category5_problem7', 'Swearing Filter');INSERT INTO `texts` VALUES ('mod_tool_category5_problem8', 'Update Filter');INSERT INTO `texts` VALUES ('mod_tool_category5_solution1', 'Habboon is always in the latest possible version.');INSERT INTO `texts` VALUES ('mod_tool_category5_solution2', 'Currenly We use the same version like Habbo.com');INSERT INTO `texts` VALUES ('mod_tool_category5_solution3', 'Can explain us what happens to cause the freezing?\"');INSERT INTO `texts` VALUES ('mod_tool_category5_solution4', 'Can you say the username? We\'ll take action if needed.');INSERT INTO `texts` VALUES ('mod_tool_category5_solution5', 'Can you say the usersname? We\'ll take action if needed.');INSERT INTO `texts` VALUES ('mod_tool_category5_solution6', 'What item are you trying to buy and what section is it in? If possible could you report this bug to our uservoice forum? www.habboon.uservoice.com');INSERT INTO `texts` VALUES ('mod_tool_category5_solution7', 'If possible, leave the room and ignore the user. If their speech is highly inappropriate and is offending other users send another call. We\'ll take care of it.');INSERT INTO `texts` VALUES ('mod_tool_category5_solution8', 'We will update your words in the filter Thanks for your report.');INSERT INTO `texts` VALUES ('mod_tool_category6', 'Common Issues');INSERT INTO `texts` VALUES ('mod_tool_category6_problem1', 'eXpert Info');INSERT INTO `texts` VALUES ('mod_tool_category6_problem2', 'Moderator Info');INSERT INTO `texts` VALUES ('mod_tool_category6_problem3', 'Rights Info');INSERT INTO `texts` VALUES ('mod_tool_category6_problem4', 'Weekly Rare');INSERT INTO `texts` VALUES ('mod_tool_category6_problem5', 'Coins');INSERT INTO `texts` VALUES ('mod_tool_category6_problem6', 'Swearing');INSERT INTO `texts` VALUES ('mod_tool_category6_problem7', 'Inappropriate Actions');INSERT INTO `texts` VALUES ('mod_tool_category6_problem8', 'Staff Members');INSERT INTO `texts` VALUES ('mod_tool_category6_solution1', 'Habboon hires eXperts based on many things. Users must be active within Habboon, friendly and stay out of trouble, Users wanting to become eXperts shouldn\'t ask to be. We look for users who have a decent amount of furni filled rooms. Please wait for us to recognize you, do not ask to be an eXpert. It will only lower your chances.');INSERT INTO `texts` VALUES ('mod_tool_category6_solution2', 'Habboon Moderators are promoted from eXperts. Please do not ask to be a Moderator, it is very inappropriate to ask to be staff. If you are caught pestering staff you may be kicked from the room.');INSERT INTO `texts` VALUES ('mod_tool_category6_solution3', 'If you have given users rights to move furniture in your room and they have let you down by trashing your room, this is not something we can govern. It\'s upto you whom you give room rights out to. We suggest you are more careful as to whom you give room rights out to in the future. We apologise we can\'t be of anymore help.');INSERT INTO `texts` VALUES ('mod_tool_category6_solution4', 'The weekly rare listed in the catalouge under limited edition is changed at the beginning or near the end of the week. Please wait till then for a new rare to be released.');INSERT INTO `texts` VALUES ('mod_tool_category6_solution5', 'Coins are distributed every 15 minutes along with pixels. Open the catalouge to find out other easy ways to get coins.');INSERT INTO `texts` VALUES ('mod_tool_category6_solution6', 'Your language has been deemed inappropriate and adverse action may be taken on your account if you do not stop.');INSERT INTO `texts` VALUES ('mod_tool_category6_solution7', 'Your actions have been deemed inappropriate and adverse action may be taken on your account if you do not stop.');INSERT INTO `texts` VALUES ('mod_tool_category6_solution8', 'If you would like to see which Staff members are currently online. Please go to the habboon homepage, click community then Staff and eXperts. It will say next to the name which are online and offline. ');INSERT INTO `texts` VALUES ('mus_alert_title', 'Important Notice from Hotel Management');INSERT INTO `texts` VALUES ('mus_hal_tail', 'Sent from Housekeeping');INSERT INTO `texts` VALUES ('mus_hal_title', 'Notice from Hotel Management:');INSERT INTO `texts` VALUES ('mus_ha_title', 'Important Notice from Hotel Management');INSERT INTO `texts` VALUES ('pet_breeds_0', 'QFHHIHHIIHHJIHHKIHHPAIHHQAIHHRAIHHSAIHHPBIHHQBIHHRBIHHSBIHHPCIHHQCIHHRCIHHSCIHHPDIHHQDIHHRDIHHSDIHHPEIHHQEIHHREIHHSEIHHPFIH');INSERT INTO `texts` VALUES ('pet_breeds_1', 'QFIHIHIIIHIJIHIKIHIPAIHIQAIHIRAIHISAIHIPBIHIQBIHIRBIHISBIHIPCIHIQCIHIRCIHISCIHIPDIHIQDIHIRDIHISDIHIPEIHIQEIHIREIHISEIHIPFIH');INSERT INTO `texts` VALUES ('pet_breeds_10', 'IRBHIH');INSERT INTO `texts` VALUES ('pet_breeds_11', 'RCSBIIHSBJIHSBKIHSBPAIHSBQAIHSBRAIHSBPBHHSBQBIHSBRBIHSBSBIHSBPCIHSBQCIHSBSCIHSBRDIH');INSERT INTO `texts` VALUES ('pet_breeds_12', 'RAPCHIHPCIIHPCJIHPCKIHPCPAIHPCQAIH');INSERT INTO `texts` VALUES ('pet_breeds_13', 'KQCRHIHQCRGIHQCKIH');INSERT INTO `texts` VALUES ('pet_breeds_14', 'PBRCHIHRCIIHRCJIHRCKHIRCPAIHRCQAIHRCRAIHRCSAIH');INSERT INTO `texts` VALUES ('pet_breeds_15', 'ISCHIH');INSERT INTO `texts` VALUES ('pet_breeds_16', 'IPDHIH');INSERT INTO `texts` VALUES ('pet_breeds_17', 'IQDHIH');INSERT INTO `texts` VALUES ('pet_breeds_18', 'IRDHIH');INSERT INTO `texts` VALUES ('pet_breeds_19', 'ISDHIH');INSERT INTO `texts` VALUES ('pet_breeds_2', 'PCJHIHJIIHJJIHJKIHJPAIHJQAIHJRAIHJSAIHJPBIHJQBIHJRBIHJSBIH');INSERT INTO `texts` VALUES ('pet_breeds_20', 'IPEHIH');INSERT INTO `texts` VALUES ('pet_breeds_21', 'IQEHIH');INSERT INTO `texts` VALUES ('pet_breeds_22', 'IREHIH');INSERT INTO `texts` VALUES ('pet_breeds_23', 'ISEHIH');INSERT INTO `texts` VALUES ('pet_breeds_24', 'IPFHIH');INSERT INTO `texts` VALUES ('pet_breeds_25', 'IQFHIH');INSERT INTO `texts` VALUES ('pet_breeds_26', 'IRFHIH');INSERT INTO `texts` VALUES ('pet_breeds_27', 'ISFHIH');INSERT INTO `texts` VALUES ('pet_breeds_28', 'IPGHIH');INSERT INTO `texts` VALUES ('pet_breeds_29', 'IQGHIH');INSERT INTO `texts` VALUES ('pet_breeds_3', 'SAKHIHKIIHKJIHKKIHKPAIHKQAIHKRAIH');INSERT INTO `texts` VALUES ('pet_breeds_30', 'IRGHIH');INSERT INTO `texts` VALUES ('pet_breeds_4', 'PAPAHIHPAIIHPAJIHPAKIH');INSERT INTO `texts` VALUES ('pet_breeds_5', 'SAQAHIHQAIIHQAJIHQAKIHQAQAIHQASAIHQAPBIH');INSERT INTO `texts` VALUES ('pet_breeds_6', 'QCRAHIHRAIIHRAJIHRAKIHRAPAIHRAQAIHRARAHIRASAHIRAPBHIRAQBHIRARBHIRASBIHRAPCHI');INSERT INTO `texts` VALUES ('pet_breeds_7', 'PBSAHIHSAIIHSAJIHSAKHISAPAIHSAQAIHSARAIHSASAIH');INSERT INTO `texts` VALUES ('pet_breeds_8', 'QCPBHIHPBIIHPBJIHPBKIHPBPAIHPBQAIHPBRAIHPBSAIHPBPBIHPBQBIHPBRBIHPBSBIHPBRCIH');INSERT INTO `texts` VALUES ('pet_breeds_9', 'QBQBHIHQBIIHQBJIHQBKIHQBPAIHQBQAIHQBRAIHQBSAIHQBPBIH');INSERT INTO `texts` VALUES ('pet_chatter_bear1', 'Rawwwwwr');INSERT INTO `texts` VALUES ('pet_chatter_bear2', '*roars*');INSERT INTO `texts` VALUES ('pet_chatter_bear3', 'Grrrr');INSERT INTO `texts` VALUES ('pet_chatter_bear4', '*sniff sniff*');INSERT INTO `texts` VALUES ('pet_chatter_bear5', '*yawns*');INSERT INTO `texts` VALUES ('pet_chatter_cat1', 'Purrrrr');INSERT INTO `texts` VALUES ('pet_chatter_cat2', 'Meeeeeow!');INSERT INTO `texts` VALUES ('pet_chatter_cat3', '*yawns*');INSERT INTO `texts` VALUES ('pet_chatter_cat4', '*purrs*');INSERT INTO `texts` VALUES ('pet_chatter_cat5', 'meow :3');INSERT INTO `texts` VALUES ('pet_chatter_chic1', 'tweet tweet');INSERT INTO `texts` VALUES ('pet_chatter_chic2', '*flaps wings*');INSERT INTO `texts` VALUES ('pet_chatter_chic3', 'AWK AWK');INSERT INTO `texts` VALUES ('pet_chatter_chic4', '*pecks*');INSERT INTO `texts` VALUES ('pet_chatter_chic5', '*runs around pointlessly*');INSERT INTO `texts` VALUES ('pet_chatter_croc1', '*feels like eating my owner*');INSERT INTO `texts` VALUES ('pet_chatter_croc2', 'tick, tock, tick, tock');INSERT INTO `texts` VALUES ('pet_chatter_croc3', '*snaps jaws*');INSERT INTO `texts` VALUES ('pet_chatter_croc4', 'Rrrr.. Grrrrr');INSERT INTO `texts` VALUES ('pet_chatter_croc5', '*yawns*');INSERT INTO `texts` VALUES ('pet_chatter_dog1', 'woof woof woof!!!');INSERT INTO `texts` VALUES ('pet_chatter_dog2', 'Hooooowl');INSERT INTO `texts` VALUES ('pet_chatter_dog3', '*wags tail*');INSERT INTO `texts` VALUES ('pet_chatter_dog4', '*chases tail*');INSERT INTO `texts` VALUES ('pet_chatter_dog5', '*pants*');INSERT INTO `texts` VALUES ('pet_chatter_dragon1', '*flies around*');INSERT INTO `texts` VALUES ('pet_chatter_dragon2', '*thinks about torching things*');INSERT INTO `texts` VALUES ('pet_chatter_dragon3', '*looks for something to fry*');INSERT INTO `texts` VALUES ('pet_chatter_dragon4', '*eyes you up*');INSERT INTO `texts` VALUES ('pet_chatter_dragon5', '*soars down*');INSERT INTO `texts` VALUES ('pet_chatter_frog1', 'Ribbit..');INSERT INTO `texts` VALUES ('pet_chatter_frog2', '*bounces around*');INSERT INTO `texts` VALUES ('pet_chatter_frog3', '*croaks*');INSERT INTO `texts` VALUES ('pet_chatter_frog4', 'rrrribbit!');INSERT INTO `texts` VALUES ('pet_chatter_frog5', '*stretches*');INSERT INTO `texts` VALUES ('pet_chatter_generic1', 'Hmm..');INSERT INTO `texts` VALUES ('pet_chatter_generic2', '*looks for food*');INSERT INTO `texts` VALUES ('pet_chatter_generic3', '*Humms*');INSERT INTO `texts` VALUES ('pet_chatter_generic4', '*looks at*');INSERT INTO `texts` VALUES ('pet_chatter_generic5', '*looks for water*');INSERT INTO `texts` VALUES ('pet_chatter_horse1', 'neiiigh');INSERT INTO `texts` VALUES ('pet_chatter_horse2', '*trots around*');INSERT INTO `texts` VALUES ('pet_chatter_horse3', 'Neeeigh');INSERT INTO `texts` VALUES ('pet_chatter_horse4', '*looks at*');INSERT INTO `texts` VALUES ('pet_chatter_horse5', '*flicks tail*');INSERT INTO `texts` VALUES ('pet_chatter_lion1', 'Rawwrrrr');INSERT INTO `texts` VALUES ('pet_chatter_lion2', '*stares*');INSERT INTO `texts` VALUES ('pet_chatter_lion3', 'Grrrr');INSERT INTO `texts` VALUES ('pet_chatter_lion4', '*roars*');INSERT INTO `texts` VALUES ('pet_chatter_lion5', '*looks at*');INSERT INTO `texts` VALUES ('pet_chatter_monkey1', 'Oo oo oo (I wanna be like you-oo-oo!)');INSERT INTO `texts` VALUES ('pet_chatter_monkey2', '*swings around*');INSERT INTO `texts` VALUES ('pet_chatter_monkey3', 'Ooo oo!');INSERT INTO `texts` VALUES ('pet_chatter_monkey4', '*looks at*');INSERT INTO `texts` VALUES ('pet_chatter_monkey5', '*grooms myself*');INSERT INTO `texts` VALUES ('pet_chatter_pig1', 'Oink Oink!');INSERT INTO `texts` VALUES ('pet_chatter_pig2', '*snorts*');INSERT INTO `texts` VALUES ('pet_chatter_pig3', '*sniffs around*');INSERT INTO `texts` VALUES ('pet_chatter_pig4', 'Oink!');INSERT INTO `texts` VALUES ('pet_chatter_pig5', '*looks for mud*');INSERT INTO `texts` VALUES ('pet_chatter_rhino1', 'CHARGEEEEE!');INSERT INTO `texts` VALUES ('pet_chatter_rhino2', '*stomps around*');INSERT INTO `texts` VALUES ('pet_chatter_rhino3', '*snorts*');INSERT INTO `texts` VALUES ('pet_chatter_rhino4', '*prepares to charge*');INSERT INTO `texts` VALUES ('pet_chatter_rhino5', 'ARGHHHHHHHHHH!!');INSERT INTO `texts` VALUES ('pet_chatter_spider1', '*spins a web*');INSERT INTO `texts` VALUES ('pet_chatter_spider2', '*crawls around*');INSERT INTO `texts` VALUES ('pet_chatter_spider3', '*sneaks up on you*');INSERT INTO `texts` VALUES ('pet_chatter_spider4', '*hangs around*');INSERT INTO `texts` VALUES ('pet_chatter_spider5', '*looks at*');INSERT INTO `texts` VALUES ('pet_chatter_turtle1', '*hides in my shell*');INSERT INTO `texts` VALUES ('pet_chatter_turtle2', '*pokes head out of shell*');INSERT INTO `texts` VALUES ('pet_chatter_turtle3', '*casually walks along*');INSERT INTO `texts` VALUES ('pet_chatter_turtle4', '*looks at you*');INSERT INTO `texts` VALUES ('pet_chatter_turtle5', 'o.O');INSERT INTO `texts` VALUES ('pet_cmd_beg', 'beg');INSERT INTO `texts` VALUES ('pet_cmd_dead', 'dead');INSERT INTO `texts` VALUES ('pet_cmd_free', 'free');INSERT INTO `texts` VALUES ('pet_cmd_here', 'here');INSERT INTO `texts` VALUES ('pet_cmd_jump', 'jump');INSERT INTO `texts` VALUES ('pet_cmd_lay', 'lay');INSERT INTO `texts` VALUES ('pet_cmd_sit', 'sit');INSERT INTO `texts` VALUES ('pet_cmd_sleep', 'sleep');INSERT INTO `texts` VALUES ('pet_cmd_stay', 'stay');INSERT INTO `texts` VALUES ('pet_cmd_stfu', 'shutup');INSERT INTO `texts` VALUES ('pet_cmd_talk', 'talk');INSERT INTO `texts` VALUES ('pet_response_confused1', '*confused*');INSERT INTO `texts` VALUES ('pet_response_confused2', 'What?');INSERT INTO `texts` VALUES ('pet_response_confused3', 'Huh?');INSERT INTO `texts` VALUES ('pet_response_confused4', 'Meh..');INSERT INTO `texts` VALUES ('pet_response_confused5', 'Hmm..?');INSERT INTO `texts` VALUES ('pet_response_confused6', '?');INSERT INTO `texts` VALUES ('pet_response_confused7', ':s');INSERT INTO `texts` VALUES ('pet_response_refusal1', '*ignores you*');INSERT INTO `texts` VALUES ('pet_response_refusal2', '*refuses*');INSERT INTO `texts` VALUES ('pet_response_refusal3', 'No, you do it!');INSERT INTO `texts` VALUES ('pet_response_refusal4', 'Who do you think I am??');INSERT INTO `texts` VALUES ('pet_response_refusal5', 'I\'m not your slave!');INSERT INTO `texts` VALUES ('pet_response_silent', '*shuts up*');INSERT INTO `texts` VALUES ('pet_response_sleep', 'ZzzZZZzzzzZzz');INSERT INTO `texts` VALUES ('pet_response_sleeping1', 'ZzZzzzzz');INSERT INTO `texts` VALUES ('pet_response_sleeping2', 'Tired... *sleeps*');INSERT INTO `texts` VALUES ('pet_response_sleeping3', '*sleeping*');INSERT INTO `texts` VALUES ('pet_response_sleeping4', 'ZzZzzZ');INSERT INTO `texts` VALUES ('pet_response_sleeping5', 'Zzzz Zzzz Zzzz');INSERT INTO `texts` VALUES ('trade_error_roomdisabled', 'Trading has been disabled in this room, sorry!');INSERT INTO `texts` VALUES ('trade_error_targetdisabled', 'That user has disabled trading.');INSERT INTO `texts` VALUES ('wired_error_permissions', 'Saving item failed, you do not have permission to play with this item');
-- ------------------------------ Table structure for `user_achievements`-- ----------------------------DROP TABLE IF EXISTS `user_achievements`;CREATE TABLE `user_achievements` (  `user_id` int(10) unsigned NOT NULL,  `achievement_id` int(10) unsigned NOT NULL,  `achievement_level` int(11) NOT NULL,  KEY `user_id` (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_achievements-- ----------------------------
-- ------------------------------ Table structure for `user_badges`-- ----------------------------DROP TABLE IF EXISTS `user_badges`;CREATE TABLE `user_badges` (  `user_id` int(10) unsigned NOT NULL,  `badge_id` varchar(100) NOT NULL,  `badge_slot` int(11) NOT NULL DEFAULT '0',  KEY `user_id` (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_badges-- ----------------------------
-- ------------------------------ Table structure for `user_effects`-- ----------------------------DROP TABLE IF EXISTS `user_effects`;CREATE TABLE `user_effects` (  `user_id` int(10) unsigned NOT NULL,  `effect_id` int(11) NOT NULL DEFAULT '1',  `total_duration` int(11) NOT NULL DEFAULT '3600',  `is_activated` enum('0','1') NOT NULL DEFAULT '0',  `activated_stamp` double NOT NULL DEFAULT '0',  KEY `user_id` (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_effects-- ----------------------------
-- ------------------------------ Table structure for `user_favorites`-- ----------------------------DROP TABLE IF EXISTS `user_favorites`;CREATE TABLE `user_favorites` (  `user_id` int(10) unsigned NOT NULL,  `room_id` int(10) unsigned NOT NULL,  KEY `user_id` (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_favorites-- ----------------------------
-- ------------------------------ Table structure for `user_ignores`-- ----------------------------DROP TABLE IF EXISTS `user_ignores`;CREATE TABLE `user_ignores` (  `user_id` int(10) unsigned NOT NULL,  `ignore_id` int(10) unsigned NOT NULL,  KEY `user_id` (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_ignores-- ----------------------------
-- ------------------------------ Table structure for `user_info`-- ----------------------------DROP TABLE IF EXISTS `user_info`;CREATE TABLE `user_info` (  `user_id` int(11) NOT NULL,  `bans` int(11) NOT NULL DEFAULT '0',  `cautions` int(11) NOT NULL DEFAULT '0',  `reg_timestamp` double NOT NULL DEFAULT '0',  `login_timestamp` double NOT NULL DEFAULT '0',  `cfhs` int(11) NOT NULL DEFAULT '0',  `cfhs_abusive` int(11) NOT NULL DEFAULT '0',  PRIMARY KEY (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_info-- ----------------------------
-- ------------------------------ Table structure for `user_pets`-- ----------------------------DROP TABLE IF EXISTS `user_pets`;CREATE TABLE `user_pets` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `user_id` int(10) unsigned NOT NULL,  `room_id` int(10) unsigned NOT NULL,  `name` varchar(32) NOT NULL DEFAULT 'Unnamed',  `race` varchar(3) NOT NULL DEFAULT '000',  `color` varchar(6) NOT NULL DEFAULT 'FFFFFF',  `type` int(10) unsigned NOT NULL,  `expirience` int(11) NOT NULL,  `energy` int(11) NOT NULL,  `nutrition` int(11) NOT NULL DEFAULT '100',  `respect` int(11) NOT NULL DEFAULT '0',  `createstamp` double NOT NULL DEFAULT '0',  `x` int(11) NOT NULL DEFAULT '0',  `y` int(11) NOT NULL DEFAULT '0',  `z` double NOT NULL DEFAULT '0',  PRIMARY KEY (`id`),  KEY `user_id` (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_pets-- ----------------------------
-- ------------------------------ Table structure for `user_presents`-- ----------------------------DROP TABLE IF EXISTS `user_presents`;CREATE TABLE `user_presents` (  `item_id` int(10) unsigned NOT NULL,  `base_id` int(10) unsigned NOT NULL,  `amount` int(11) NOT NULL,  `extra_data` text NOT NULL,  KEY `item_id` (`item_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_presents-- ----------------------------
-- ------------------------------ Table structure for `user_quests`-- ----------------------------DROP TABLE IF EXISTS `user_quests`;CREATE TABLE `user_quests` (  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,  `user_id` int(10) unsigned NOT NULL,  `quest_id` int(10) unsigned NOT NULL,  PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_quests-- ----------------------------
-- ------------------------------ Table structure for `user_roomvisits`-- ----------------------------DROP TABLE IF EXISTS `user_roomvisits`;CREATE TABLE `user_roomvisits` (  `user_id` int(10) unsigned NOT NULL,  `room_id` int(10) unsigned NOT NULL,  `entry_timestamp` double NOT NULL,  `exit_timestamp` double NOT NULL,  `hour` int(11) NOT NULL,  `minute` int(11) NOT NULL,  KEY `user_id` (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_roomvisits-- ----------------------------
-- ------------------------------ Table structure for `user_stats`-- ----------------------------DROP TABLE IF EXISTS `user_stats`;CREATE TABLE `user_stats` (  `id` int(7) NOT NULL,  `RoomVisits` int(7) NOT NULL DEFAULT '0',  `OnlineTime` int(7) NOT NULL DEFAULT '0',  `Respect` int(6) NOT NULL DEFAULT '0',  `RespectGiven` int(6) NOT NULL DEFAULT '0',  `GiftsGiven` int(6) NOT NULL DEFAULT '0',  `GiftsReceived` int(6) NOT NULL DEFAULT '0',  `DailyRespectPoints` int(1) NOT NULL DEFAULT '3',  `DailyPetRespectPoints` int(1) NOT NULL DEFAULT '3',  `AchievementScore` int(7) NOT NULL DEFAULT '0',  `quest_id` int(10) unsigned NOT NULL DEFAULT '0',  `quest_progress` int(10) NOT NULL DEFAULT '0',  `lev_builder` int(10) NOT NULL DEFAULT '0',  `lev_social` int(10) NOT NULL DEFAULT '0',  `lev_identity` int(10) NOT NULL DEFAULT '0',  `lev_explore` int(10) NOT NULL DEFAULT '0',  `groupid` int(11) NOT NULL DEFAULT '0',  PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_stats-- ----------------------------
-- ------------------------------ Table structure for `user_subscriptions`-- ----------------------------DROP TABLE IF EXISTS `user_subscriptions`;CREATE TABLE `user_subscriptions` (  `user_id` int(10) unsigned NOT NULL,  `subscription_id` varchar(50) NOT NULL,  `timestamp_activated` int(11) NOT NULL,  `timestamp_expire` int(11) NOT NULL,  KEY `user_id` (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_subscriptions-- ----------------------------
-- ------------------------------ Table structure for `user_tags`-- ----------------------------DROP TABLE IF EXISTS `user_tags`;CREATE TABLE `user_tags` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `user_id` int(10) unsigned NOT NULL,  `tag` varchar(100) NOT NULL,  PRIMARY KEY (`id`),  KEY `user_id` (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_tags-- ----------------------------
-- ------------------------------ Table structure for `user_wardrobe`-- ----------------------------DROP TABLE IF EXISTS `user_wardrobe`;CREATE TABLE `user_wardrobe` (  `user_id` int(10) unsigned NOT NULL,  `slot_id` int(10) unsigned NOT NULL,  `look` varchar(255) NOT NULL,  `gender` enum('F','M') NOT NULL DEFAULT 'M',  KEY `user_id` (`user_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of user_wardrobe-- ----------------------------
-- ------------------------------ Table structure for `users`-- ----------------------------DROP TABLE IF EXISTS `users`;CREATE TABLE `users` (  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,  `username` varchar(50) NOT NULL,  `real_name` varchar(100) NOT NULL DEFAULT '',  `password` varchar(50) NOT NULL,  `mail` varchar(50) NOT NULL DEFAULT 'defaultuser@meth0d.org',  `auth_ticket` text NOT NULL,  `rank` int(11) unsigned NOT NULL DEFAULT '1',  `credits` int(11) NOT NULL DEFAULT '50000',  `vip_points` int(11) NOT NULL DEFAULT '0',  `activity_points` int(11) NOT NULL DEFAULT '0',  `activity_points_lastupdate` double NOT NULL DEFAULT '0',  `look` varchar(255) NOT NULL DEFAULT 'hr-115-42.hd-190-1.ch-215-62.lg-285-91.sh-290-62',  `gender` enum('M','F') NOT NULL DEFAULT 'M',  `motto` varchar(50) NOT NULL,  `account_created` varchar(50) NOT NULL,  `last_online` varchar(50) NOT NULL,  `online` enum('0','1') NOT NULL DEFAULT '0',  `ip_last` varchar(120) NOT NULL,  `ip_reg` varchar(120) NOT NULL,  `home_room` int(10) unsigned NOT NULL DEFAULT '0',  `respect` int(11) NOT NULL DEFAULT '0',  `daily_respect_points` int(11) NOT NULL DEFAULT '3',  `daily_pet_respect_points` int(11) NOT NULL DEFAULT '3',  `newbie_status` int(11) NOT NULL DEFAULT '0',  `is_muted` enum('0','1') NOT NULL DEFAULT '0',  `mutant_penalty` enum('0','1','2') NOT NULL DEFAULT '0',  `mutant_penalty_expire` int(11) NOT NULL DEFAULT '0',  `block_newfriends` enum('0','1') NOT NULL DEFAULT '0',  `hide_online` enum('0','1') NOT NULL DEFAULT '0',  `hide_inroom` enum('0','1') NOT NULL DEFAULT '0',  `mail_verified` varchar(6) NOT NULL DEFAULT '0',  `vip` enum('0','1') NOT NULL DEFAULT '0',  `volume` int(3) NOT NULL DEFAULT '100',  `accept_trading` enum('0','1') NOT NULL DEFAULT '1',  PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of users-- ----------------------------
-- ------------------------------ Table structure for `vouchers`-- ----------------------------DROP TABLE IF EXISTS `vouchers`;CREATE TABLE `vouchers` (  `code` varchar(50) NOT NULL,  `credits` int(11) NOT NULL DEFAULT '0',  `pixels` int(11) NOT NULL DEFAULT '0',  `vip_points` int(11) NOT NULL DEFAULT '0',  KEY `code` (`code`) USING BTREE) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of vouchers-- ----------------------------
-- ------------------------------ Table structure for `wired_items`-- ----------------------------DROP TABLE IF EXISTS `wired_items`;CREATE TABLE `wired_items` (  `item_id` int(9) NOT NULL,  `extra1` text NOT NULL,  `extra2` text NOT NULL,  `extra3` text NOT NULL,  `extra4` text NOT NULL,  `extra5` text NOT NULL,  PRIMARY KEY (`item_id`),  UNIQUE KEY `item_id` (`item_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of wired_items-- ----------------------------
-- ------------------------------ Table structure for `wordfilter`-- ----------------------------DROP TABLE IF EXISTS `wordfilter`;CREATE TABLE `wordfilter` (  `word` varchar(100) NOT NULL,  `replacement` varchar(100) NOT NULL,  `strict` enum('1','0') NOT NULL,  PRIMARY KEY (`word`),  UNIQUE KEY `word` (`word`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ------------------------------ Records of wordfilter-- ----------------------------

Thank you so much for all you sorry for my bad English
 
Back
Top