/*
MySQL Data Transfer
Source Host: localhost
Source Database: dropdb
Target Host: localhost
Target Database: dropdb
Date: 10-6-2008 23:04:53
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for catalogue_deals
-- ----------------------------
CREATE TABLE `catalogue_deals` (
`id` int(10) NOT NULL COMMENT 'The ID of this deal [the part after "deal"]',
`tid` int(10) NOT NULL COMMENT 'The template ID of the item that should be in this deal',
`amount` int(10) NOT NULL COMMENT 'The amount, of how many items of the type _TID should be in this deal'
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for catalogue_items
-- ----------------------------
CREATE TABLE `catalogue_items` (
`tid` int(10) NOT NULL auto_increment COMMENT 'The template ID of this item. Unique',
`name_cct` varchar(110) collate latin1_general_ci NOT NULL COMMENT 'The CCT name [sprite] of this item',
`typeid` int(1) NOT NULL COMMENT 'The typeid of this item. 0 = poster/null, 1 = solid, 2 = seat, 3 = bed, 4 = rug',
`length` int(2) NOT NULL COMMENT 'The length of this item',
`width` int(2) NOT NULL COMMENT 'The width of this item',
`top` double(4,2) NOT NULL COMMENT 'The top of this item, used with stacking/sitting [the height of this item]',
`colour` varchar(100) collate latin1_general_ci NOT NULL COMMENT 'The colour of this item, default = 0,0,0, but HTML colors are useable too',
`door` enum('0','1') collate latin1_general_ci NOT NULL default '0' COMMENT 'Specifies if this item can be used as door true/false.',
`tradeable` enum('0','1') collate latin1_general_ci NOT NULL default '1' COMMENT 'Specifies if this item can be traded between users',
`recycleable` enum('0','1') collate latin1_general_ci NOT NULL default '1' COMMENT 'Specifies if this item is allowed to put in the Recycler',
`catalogue_id_page` int(3) NOT NULL COMMENT 'Specifies the ID of the catalogue page this item is on. -1 = on no page, set this for items that arent''in catalogue but have to be cached [or previous bought instances will appear as PH boxes]',
`catalogue_id_index` int(5) NOT NULL COMMENT 'The index of this item on _CATALOGUE_ID_PAGE. If this is 1, then it appears as first on the page. Sorted ascending',
`catalogue_name` varchar(100) collate latin1_general_ci NOT NULL default '' COMMENT 'The displayname of this item in the catalogue',
`catalogue_description` varchar(200) collate latin1_general_ci NOT NULL COMMENT 'The description of this item in the catalogue',
`catalogue_cost` int(5) NOT NULL COMMENT 'The price of this item in the catalogue',
PRIMARY KEY (`tid`)
) ENGINE=MyISAM AUTO_INCREMENT=1002 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for catalogue_pages
-- ----------------------------
CREATE TABLE `catalogue_pages` (
`indexid` tinyint(3) NOT NULL,
`minrank` tinyint(1) NOT NULL,
`indexname` varchar(100) collate latin1_general_ci NOT NULL,
`displayname` varchar(100) collate latin1_general_ci NOT NULL,
`style_layout` varchar(100) collate latin1_general_ci NOT NULL,
`img_header` varchar(100) collate latin1_general_ci default NULL,
`img_side` text collate latin1_general_ci,
`label_description` text collate latin1_general_ci,
`label_misc` text collate latin1_general_ci,
`label_moredetails` varchar(150) collate latin1_general_ci default NULL,
PRIMARY KEY (`indexid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for cms_alerts
-- ----------------------------
CREATE TABLE `cms_alerts` (
`id` int(11) NOT NULL auto_increment,
`userid` int(11) NOT NULL,
`alert` text NOT NULL,
`type` enum('1','2') NOT NULL default '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=61 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for cms_content
-- ----------------------------
CREATE TABLE `cms_content` (
`contentkey` text NOT NULL,
`contentvalue` text NOT NULL,
`setting_title` text NOT NULL,
`setting_desc` text NOT NULL,
`fieldtype` enum('1','2','3') NOT NULL default '1',
`category` varchar(1) NOT NULL default '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for cms_forum_posts
-- ----------------------------
CREATE TABLE `cms_forum_posts` (
`id` int(11) NOT NULL auto_increment,
`threadid` int(11) NOT NULL default '0',
`message` text NOT NULL,
`author` varchar(25) NOT NULL,
`date` varchar(30) NOT NULL,
`edit_date` varchar(30) NOT NULL,
`edit_author` varchar(25) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for cms_forum_threads
-- ----------------------------
CREATE TABLE `cms_forum_threads` (
`id` int(4) NOT NULL auto_increment,
`type` tinyint(4) NOT NULL,
`title` varchar(30) NOT NULL,
`author` varchar(25) NOT NULL,
`date` varchar(35) NOT NULL,
`lastpost_author` varchar(25) NOT NULL,
`lastpost_date` varchar(35) NOT NULL,
`views` int(11) NOT NULL,
`posts` tinyint(4) NOT NULL,
`unix` varchar(40) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for cms_help
-- ----------------------------
CREATE TABLE `cms_help` (
`id` int(11) NOT NULL auto_increment,
`username` varchar(25) collate latin1_general_ci NOT NULL,
`ip` varchar(50) collate latin1_general_ci NOT NULL,
`message` mediumtext collate latin1_general_ci NOT NULL,
`date` varchar(50) collate latin1_general_ci NOT NULL,
`picked_up` enum('0','1') collate latin1_general_ci NOT NULL,
`subject` varchar(50) collate latin1_general_ci NOT NULL,
`roomid` int(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='HoloCMS';
-- ----------------------------
-- Table structure for cms_homes_catalouge
-- ----------------------------
CREATE TABLE `cms_homes_catalouge` (
`id` int(11) NOT NULL auto_increment,
`name` text NOT NULL,
`type` varchar(1) NOT NULL,
`subtype` varchar(1) NOT NULL,
`data` text NOT NULL,
`price` int(11) NOT NULL,
`amount` int(11) NOT NULL default '1',
`category` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=304 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for cms_homes_group_linker
-- ----------------------------
CREATE TABLE `cms_homes_group_linker` (
`userid` int(11) NOT NULL,
`groupid` int(11) NOT NULL,
`active` varchar(1) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for cms_homes_inventory
-- ----------------------------
CREATE TABLE `cms_homes_inventory` (
`id` int(11) NOT NULL auto_increment,
`userid` int(11) NOT NULL,
`type` varchar(1) NOT NULL,
`subtype` varchar(1) NOT NULL,
`data` text NOT NULL,
`amount` varchar(3) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=287 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for cms_homes_stickers
-- ----------------------------
CREATE TABLE `cms_homes_stickers` (
`id` int(11) NOT NULL auto_increment,
`userid` int(11) NOT NULL,
`x` varchar(6) NOT NULL default '1' COMMENT 'left',
`y` varchar(6) NOT NULL default '1' COMMENT 'top',
`z` varchar(6) NOT NULL default '1' COMMENT 'z-index',
`data` text NOT NULL,
`type` varchar(1) NOT NULL default '1',
`subtype` varchar(1) NOT NULL default '0' COMMENT 'Widget Type (if widget)',
`skin` text NOT NULL,
`groupid` int(11) NOT NULL default '-1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=526 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for cms_minimail
-- ----------------------------
CREATE TABLE `cms_minimail` (
`userid` int(11) NOT NULL,
`senderid` int(11) NOT NULL,
`subject` varchar(30) NOT NULL,
`date` varchar(30) NOT NULL,
`message` text NOT NULL,
`read` enum('0','1') NOT NULL default '0',
`id` int(11) NOT NULL auto_increment,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for cms_news
-- ----------------------------
CREATE TABLE `cms_news` (
`num` int(4) NOT NULL auto_increment,
`title` text collate latin1_general_ci NOT NULL,
`category` text collate latin1_general_ci NOT NULL,
`topstory` varchar(100) collate latin1_general_ci NOT NULL,
`short_story` text collate latin1_general_ci NOT NULL,
`story` longtext collate latin1_general_ci NOT NULL,
`date` date NOT NULL,
`author` text collate latin1_general_ci NOT NULL,
PRIMARY KEY (`num`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='HoloCMS';
-- ----------------------------
-- Table structure for cms_posts
-- ----------------------------
CREATE TABLE `cms_posts` (
`id` int(11) NOT NULL auto_increment,
`thread` int(11) NOT NULL,
`poster` varchar(25) NOT NULL,
`date` varchar(25) NOT NULL,
`post` text NOT NULL,
`modified` varchar(50) NOT NULL,
`modified_by` varchar(25) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='HoloCMS';
-- ----------------------------
-- Table structure for cms_system
-- ----------------------------
CREATE TABLE `cms_system` (
`sitename` varchar(30) collate latin1_general_ci NOT NULL,
`shortname` varchar(30) collate latin1_general_ci NOT NULL,
`site_closed` enum('0','1') collate latin1_general_ci NOT NULL COMMENT 'Maintenance Mode',
`enable_sso` enum('0','1') collate latin1_general_ci NOT NULL,
`language` varchar(2) collate latin1_general_ci NOT NULL,
`ip` varchar(50) collate latin1_general_ci NOT NULL,
`port` varchar(5) collate latin1_general_ci NOT NULL,
`texts` varchar(250) collate latin1_general_ci NOT NULL,
`variables` varchar(250) collate latin1_general_ci NOT NULL,
`dcr` varchar(250) collate latin1_general_ci NOT NULL,
`reload_url` varchar(250) collate latin1_general_ci NOT NULL,
`localhost` enum('0','1') collate latin1_general_ci NOT NULL COMMENT 'Local server?',
`start_credits` int(11) NOT NULL default '0',
`admin_notes` text collate latin1_general_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='HoloCMS';
-- ----------------------------
-- Table structure for cms_tags
-- ----------------------------
CREATE TABLE `cms_tags` (
`id` int(255) NOT NULL auto_increment,
`owner` varchar(25) collate latin1_general_ci NOT NULL,
`tag` varchar(25) collate latin1_general_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=91 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='HoloCMS';
-- ----------------------------
-- Table structure for cms_threads
-- ----------------------------
CREATE TABLE `cms_threads` (
`id` int(11) NOT NULL auto_increment,
`title` varchar(20) NOT NULL,
`views` varchar(4) NOT NULL,
`replies` varchar(4) NOT NULL,
`starter` varchar(25) NOT NULL,
`lastposter` varchar(25) NOT NULL,
`lastpostdate` varchar(25) NOT NULL,
`lastposttime` varchar(50) NOT NULL,
`startdate` varchar(25) NOT NULL,
`unix` varchar(50) NOT NULL,
`firstpostid` int(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='HoloCMS';
-- ----------------------------
-- Table structure for cms_transactions
-- ----------------------------
CREATE TABLE `cms_transactions` (
`id` int(11) NOT NULL auto_increment,
`date` varchar(20) NOT NULL,
`amount` varchar(10) NOT NULL,
`descr` text NOT NULL,
`userid` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=494 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for cms_wardrobe
-- ----------------------------
CREATE TABLE `cms_wardrobe` (
`userid` int(11) NOT NULL,
`slotid` varchar(1) NOT NULL,
`figure` text NOT NULL,
`gender` varchar(1) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Table structure for furniture
-- ----------------------------
CREATE TABLE `furniture` (
`id` int(10) NOT NULL auto_increment COMMENT 'The ID of this item',
`tid` int(10) NOT NULL COMMENT 'The template ID of this item',
`ownerid` int(10) NOT NULL COMMENT 'The ID of the user that owns this item',
`roomid` int(10) NOT NULL COMMENT 'The room ID the item is in. If it''s 0, then it''s in the hand of OWNERID, if it''s -1, then it''s in a present and not opened yet, if it''s -2, then it''s in the Recycler',
`x` smallint(6) NOT NULL COMMENT 'The X of the item in a room',
`y` smallint(6) NOT NULL COMMENT 'The Y of the item in a room',
`z` smallint(6) NOT NULL COMMENT 'The Z [rotation] of the item in a room',
`h` double(4,2) NOT NULL default '0.00' COMMENT 'The H [height, double] of the item in a room',
`var` text collate latin1_general_ci COMMENT 'The variable of the item, specifying it''s turned on/off etc, :S',
`wallpos` varchar(200) collate latin1_general_ci default NULL COMMENT 'Wallitems only. The location on the wall where the item is',
`teleportid` int(10) default NULL COMMENT 'Teleporters only. The ID of the teleporter that links to this one',
`soundmachine_soundset` int(2) default NULL,
`soundmachine_machineid` int(10) default NULL,
`soundmachine_slot` int(1) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for furniture_moodlight
-- ----------------------------
CREATE TABLE `furniture_moodlight` (
`id` int(11) NOT NULL,
`roomid` int(11) NOT NULL,
`preset_cur` int(1) NOT NULL default '0',
`preset_1` varchar(75) collate latin1_general_ci default NULL,
`preset_2` varchar(75) collate latin1_general_ci default NULL,
`preset_3` varchar(75) collate latin1_general_ci default NULL,
PRIMARY KEY (`id`,`roomid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for furniture_presents
-- ----------------------------
CREATE TABLE `furniture_presents` (
`id` int(10) NOT NULL,
`itemid` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for furniture_stickies
-- ----------------------------
CREATE TABLE `furniture_stickies` (
`id` int(10) NOT NULL,
`text` text collate latin1_general_ci,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for groups_details
-- ----------------------------
CREATE TABLE `groups_details` (
`id` int(10) NOT NULL auto_increment,
`name` varchar(45) collate latin1_general_ci NOT NULL,
`description` varchar(200) collate latin1_general_ci NOT NULL,
`ownerid` int(10) NOT NULL,
`roomid` int(10) NOT NULL,
`created` varchar(50) collate latin1_general_ci NOT NULL,
`badge` text collate latin1_general_ci NOT NULL,
`type` varchar(1) collate latin1_general_ci NOT NULL,
PRIMARY KEY (`id`,`name`)
) ENGINE=MyISAM AUTO_INCREMENT=44 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for groups_memberships
-- ----------------------------
CREATE TABLE `groups_memberships` (
`userid` int(10) NOT NULL,
`groupid` int(10) NOT NULL,
`member_rank` enum('3','2','1') collate latin1_general_ci NOT NULL default '3',
`is_current` enum('0','1') collate latin1_general_ci NOT NULL default '0',
`is_pending` enum('0','1') collate latin1_general_ci NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for messenger_friendrequests
-- ----------------------------
CREATE TABLE `messenger_friendrequests` (
`userid_from` int(10) NOT NULL default '0',
`userid_to` int(10) NOT NULL default '0',
`requestid` int(10) NOT NULL default '0',
PRIMARY KEY (`userid_from`,`userid_to`,`requestid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for messenger_friendships
-- ----------------------------
CREATE TABLE `messenger_friendships` (
`userid` bigint(20) NOT NULL,
`friendid` bigint(20) NOT NULL,
KEY `index extreme` (`userid`),
KEY `extreme the 2nd` (`friendid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for messenger_messages
-- ----------------------------
CREATE TABLE `messenger_messages` (
`userid` int(15) NOT NULL,
`friendid` int(15) NOT NULL,
`messageid` int(11) NOT NULL,
`sent_on` text collate latin1_general_ci NOT NULL,
`message` text collate latin1_general_ci NOT NULL,
PRIMARY KEY (`userid`,`messageid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for rank_fuserights
-- ----------------------------
CREATE TABLE `rank_fuserights` (
`id` int(3) NOT NULL auto_increment,
`minrank` int(1) NOT NULL,
`fuseright` varchar(100) collate latin1_general_ci NOT NULL,
PRIMARY KEY (`id`,`fuseright`)
) ENGINE=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for ranks
-- ----------------------------
CREATE TABLE `ranks` (
`rankid` int(1) NOT NULL,
`rankname` varchar(15) collate latin1_general_ci default NULL,
`ignoreFilter` int(1) NOT NULL,
`receiveCFH` int(1) NOT NULL,
`enterAllRooms` int(1) NOT NULL,
`seeAllOwners` int(1) NOT NULL,
`adminCatalogue` int(1) NOT NULL,
`staffFloor` int(1) NOT NULL,
`rightsEverywhere` int(4) NOT NULL,
PRIMARY KEY (`rankid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for room_ads
-- ----------------------------
CREATE TABLE `room_ads` (
`roomid` int(10) NOT NULL,
`img` text collate latin1_general_ci NOT NULL,
`uri` text collate latin1_general_ci NOT NULL,
PRIMARY KEY (`roomid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for room_bans
-- ----------------------------
CREATE TABLE `room_bans` (
`roomid` int(10) NOT NULL,
`userid` int(10) NOT NULL,
`ban_expire` varchar(50) collate latin1_general_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for room_categories
-- ----------------------------
CREATE TABLE `room_categories` (
`id` int(3) NOT NULL default '0',
`parent` int(3) NOT NULL default '0',
`type` int(1) NOT NULL default '1',
`name` varchar(100) collate latin1_general_ci NOT NULL default 'Non-named category',
`access_rank_min` int(2) NOT NULL,
`access_rank_hideforlower` enum('0','1') collate latin1_general_ci NOT NULL,
`trading` enum('0','1') collate latin1_general_ci NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for room_modeldata
-- ----------------------------
CREATE TABLE `room_modeldata` (
`model` varchar(100) collate latin1_general_ci NOT NULL,
`roomomatic_subscr_only` int(1) NOT NULL default '0',
`door_x` int(3) NOT NULL,
`door_y` int(3) NOT NULL,
`door_h` int(3) NOT NULL,
`door_z` int(1) NOT NULL,
`heightmap` text collate latin1_general_ci NOT NULL,
`publicroom_items` text collate latin1_general_ci NOT NULL,
`swimmingpool` enum('1','0') collate latin1_general_ci NOT NULL,
`specialcast_emitter` varchar(15) collate latin1_general_ci default NULL,
`specialcast_interval` int(10) default NULL,
`specialcast_rnd_min` int(10) default NULL,
`specialcast_rnd_max` int(10) default NULL,
PRIMARY KEY (`model`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for room_modeldata_triggers
-- ----------------------------
CREATE TABLE `room_modeldata_triggers` (
`id` int(5) NOT NULL auto_increment,
`model` varchar(100) collate latin1_general_ci NOT NULL,
`object` varchar(100) collate latin1_general_ci NOT NULL,
`x` int(5) NOT NULL default '0',
`y` int(5) NOT NULL default '0',
`stepx` int(5) NOT NULL,
`stepy` int(5) NOT NULL,
`goalx` int(5) NOT NULL,
`goaly` int(5) NOT NULL,
`roomid` int(10) NOT NULL default '0',
`state` enum('0','1') collate latin1_general_ci NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for room_rights
-- ----------------------------
CREATE TABLE `room_rights` (
`roomid` int(11) NOT NULL,
`userid` int(10) NOT NULL,
KEY `index` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for room_votes
-- ----------------------------
CREATE TABLE `room_votes` (
`roomid` int(11) NOT NULL,
`userid` int(11) NOT NULL,
`vote` int(2) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for roombots
-- ----------------------------
CREATE TABLE `roombots` (
`id` int(10) NOT NULL auto_increment,
`roomid` int(10) NOT NULL,
`name` varchar(50) collate latin1_general_ci NOT NULL,
`mission` varchar(100) collate latin1_general_ci default NULL,
`figure` text collate latin1_general_ci NOT NULL,
`x` int(5) NOT NULL,
`y` int(5) NOT NULL,
`z` int(1) NOT NULL,
`freeroam` enum('1','0') collate latin1_general_ci NOT NULL default '0',
`message_noshouting` varchar(200) collate latin1_general_ci NOT NULL default 'Shouting is not neccessary.',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for roombots_coords
-- ----------------------------
CREATE TABLE `roombots_coords` (
`id` int(10) NOT NULL,
`x` int(5) NOT NULL,
`y` int(5) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for roombots_texts
-- ----------------------------
CREATE TABLE `roombots_texts` (
`id` int(10) NOT NULL,
`type` enum('shout','say') collate latin1_general_ci NOT NULL,
`text` varchar(255) collate latin1_general_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for roombots_texts_triggers
-- ----------------------------
CREATE TABLE `roombots_texts_triggers` (
`id` int(10) NOT NULL,
`words` text collate latin1_general_ci NOT NULL,
`replies` text collate latin1_general_ci NOT NULL,
`serve_replies` text collate latin1_general_ci NOT NULL,
`serve_item` varchar(20) collate latin1_general_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for rooms
-- ----------------------------
CREATE TABLE `rooms` (
`id` int(10) NOT NULL auto_increment,
`name` varchar(25) collate latin1_general_ci NOT NULL,
`description` varchar(125) collate latin1_general_ci default NULL,
`owner` varchar(15) collate latin1_general_ci default NULL,
`category` int(3) NOT NULL default '0',
`model` varchar(100) collate latin1_general_ci NOT NULL,
`ccts` text collate latin1_general_ci,
`floor` int(3) NOT NULL default '0',
`wallpaper` int(3) NOT NULL default '0',
`state` int(11) NOT NULL default '0' COMMENT '0 = open, 1 = closed, 2 = password, 3 = hc only, 4 = staff',
`password` varchar(15) collate latin1_general_ci default NULL,
`showname` enum('0','1') collate latin1_general_ci NOT NULL default '1',
`superusers` enum('0','1') collate latin1_general_ci NOT NULL default '0',
`visitors_now` int(3) NOT NULL default '0',
`visitors_max` int(3) NOT NULL default '25',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=201 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for soundmachine_playlists
-- ----------------------------
CREATE TABLE `soundmachine_playlists` (
`machineid` int(10) NOT NULL,
`songid` int(10) NOT NULL,
`pos` int(3) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for soundmachine_songs
-- ----------------------------
CREATE TABLE `soundmachine_songs` (
`id` int(10) NOT NULL auto_increment,
`userid` int(10) NOT NULL,
`title` varchar(100) collate latin1_general_ci NOT NULL,
`machineid` int(10) NOT NULL,
`length` int(3) NOT NULL,
`data` text collate latin1_general_ci NOT NULL,
`burnt` enum('0','1') collate latin1_general_ci NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=58 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for system
-- ----------------------------
CREATE TABLE `system` (
`onlinecount` int(3) NOT NULL default '0',
`onlinecount_peak` int(10) NOT NULL,
`connections_accepted` int(10) NOT NULL,
`activerooms` int(10) NOT NULL,
`activerooms_peak` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for system_chatlog
-- ----------------------------
CREATE TABLE `system_chatlog` (
`username` varchar(15) collate latin1_general_ci NOT NULL,
`roomid` int(10) NOT NULL,
`mtime` time NOT NULL default '00:00:00',
`message` varchar(200) collate latin1_general_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for system_config
-- ----------------------------
CREATE TABLE `system_config` (
`id` int(10) NOT NULL auto_increment,
`skey` varchar(100) collate latin1_general_ci NOT NULL,
`sval` text collate latin1_general_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for system_recycler
-- ----------------------------
CREATE TABLE `system_recycler` (
`rclr_cost` int(5) NOT NULL,
`rclr_reward` int(10) NOT NULL,
PRIMARY KEY (`rclr_cost`,`rclr_reward`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for system_stafflog
-- ----------------------------
CREATE TABLE `system_stafflog` (
`id` int(5) NOT NULL auto_increment,
`action` varchar(12) collate latin1_general_ci NOT NULL,
`message` text collate latin1_general_ci,
`note` text collate latin1_general_ci,
`userid` int(11) NOT NULL,
`targetid` int(11) default NULL,
`timestamp` varchar(50) collate latin1_general_ci default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=485 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for system_strings
-- ----------------------------
CREATE TABLE `system_strings` (
`id` int(5) NOT NULL auto_increment,
`stringid` varchar(100) collate latin1_general_ci NOT NULL default 'null',
`var_en` text collate latin1_general_ci,
`var_de` text collate latin1_general_ci,
PRIMARY KEY (`id`,`stringid`)
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for users
-- ----------------------------
CREATE TABLE `users` (
`id` int(15) NOT NULL auto_increment,
`name` varchar(50) collate latin1_general_ci NOT NULL,
`password` varchar(100) collate latin1_general_ci NOT NULL,
`rank` int(1) NOT NULL,
`email` varchar(100) collate latin1_general_ci NOT NULL,
`birth` varchar(100) collate latin1_general_ci NOT NULL,
`hbirth` varchar(100) collate latin1_general_ci NOT NULL,
`figure` varchar(150) collate latin1_general_ci NOT NULL,
`sex` varchar(5) collate latin1_general_ci NOT NULL,
`mission` varchar(50) collate latin1_general_ci default NULL,
`consolemission` varchar(50) collate latin1_general_ci default NULL,
`credits` int(7) NOT NULL default '0',
`tickets` int(5) NOT NULL default '0',
`badge_status` enum('0','1') collate latin1_general_ci NOT NULL default '1',
`lastvisit` varchar(50) collate latin1_general_ci default NULL,
`figure_swim` varchar(100) collate latin1_general_ci default NULL,
`user` text collate latin1_general_ci,
`postcount` bigint(20) NOT NULL default '0',
`ticket_sso` varchar(39) collate latin1_general_ci default NULL,
`ipaddress_last` varchar(100) collate latin1_general_ci default NULL,
`online` text collate latin1_general_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for users_badges
-- ----------------------------
CREATE TABLE `users_badges` (
`userid` int(15) NOT NULL,
`badgeid` varchar(5) collate latin1_general_ci NOT NULL default '',
`iscurrent` enum('0','1') collate latin1_general_ci NOT NULL default '0',
PRIMARY KEY (`userid`,`badgeid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for users_bans
-- ----------------------------
CREATE TABLE `users_bans` (
`userid` varchar(30) collate latin1_general_ci NOT NULL default '',
`ipaddress` varchar(100) collate latin1_general_ci default NULL,
`date_expire` varchar(50) collate latin1_general_ci default NULL,
`descr` text collate latin1_general_ci
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for users_club
-- ----------------------------
CREATE TABLE `users_club` (
`userid` bigint(6) NOT NULL,
`months_expired` int(4) default NULL,
`months_left` int(4) default NULL,
`date_monthstarted` varchar(25) collate latin1_general_ci default NULL,
PRIMARY KEY (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for users_favourites
-- ----------------------------
CREATE TABLE `users_favourites` (
`userid` int(10) NOT NULL,
`roomid` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for users_recycler
-- ----------------------------
CREATE TABLE `users_recycler` (
`userid` int(10) NOT NULL,
`session_started` varchar(100) collate latin1_general_ci NOT NULL,
`session_reward` int(10) NOT NULL,
PRIMARY KEY (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for vouchers
-- ----------------------------
CREATE TABLE `vouchers` (
`voucher` varchar(20) collate latin1_general_ci NOT NULL default '',
`type` enum('item','credits') collate latin1_general_ci NOT NULL default 'credits',
`credits` int(5) default NULL,
PRIMARY KEY (`voucher`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Table structure for wordfilter
-- ----------------------------
CREATE TABLE `wordfilter` (
`word` varchar(100) collate latin1_general_ci NOT NULL,
PRIMARY KEY (`word`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `catalogue_deals` VALUES ('1', '1', '6');
INSERT INTO `catalogue_deals` VALUES ('1', '419', '3');
INSERT INTO `catalogue_deals` VALUES ('1', '471', '5');
INSERT INTO `catalogue_deals` VALUES ('1', '398', '1');
INSERT INTO `catalogue_items` VALUES ('1', 'rare_parasol*0', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#94f718', '0', '1', '1', '6', '1', 'Green Parasol', 'Block those rays!', '25');
INSERT INTO `catalogue_items` VALUES ('2', 'floor', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '2', 'floor', 'Floor', '3');
INSERT INTO `catalogue_items` VALUES ('3', 'wallpaper 1', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '3', 'wallpaper', 'wallpaper', '3');
INSERT INTO `catalogue_items` VALUES ('4', 'wallpaper 2', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '4', 'wallpaper', 'wallpaper', '3');
INSERT INTO `catalogue_items` VALUES ('5', 'wallpaper 3', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '5', 'wallpaper', 'wallpaper', '3');
INSERT INTO `catalogue_items` VALUES ('6', 'wallpaper 4', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '6', 'wallpaper', 'wallpaper', '3');
INSERT INTO `catalogue_items` VALUES ('7', 'wallpaper 5', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '7', 'wallpaper', 'wallpaper', '3');
INSERT INTO `catalogue_items` VALUES ('8', 'wallpaper 6', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '8', 'wallpaper', 'wallpaper', '3');
INSERT INTO `catalogue_items` VALUES ('9', 'wallpaper 7', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '9', 'wallpaper', 'wallpaper', '3');
INSERT INTO `catalogue_items` VALUES ('10', 'wallpaper 8', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '10', 'wallpaper', 'wallpaper', '3');
INSERT INTO `catalogue_items` VALUES ('11', 'wallpaper 9', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '11', 'wallpaper', 'wallpaper', '3');
INSERT INTO `catalogue_items` VALUES ('12', 'wallpaper 10', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '12', 'wallpaper', 'wallpaper', '3');
INSERT INTO `catalogue_items` VALUES ('13', 'wallpaper 11', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '13', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('14', 'wallpaper 12', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '14', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('15', 'wallpaper 13', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '15', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('16', 'wallpaper 14', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '16', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('17', 'wallpaper 15', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '17', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('18', 'wallpaper 16', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '18', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('19', 'wallpaper 17', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '19', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('20', 'wallpaper 18', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '20', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('21', 'wallpaper 19', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '21', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('22', 'wallpaper 20', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '22', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('23', 'wallpaper 21', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '23', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('24', 'wallpaper 22', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '24', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('25', 'wallpaper 23', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '25', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('26', 'wallpaper 24', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '26', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('27', 'wallpaper 25', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '27', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('28', 'wallpaper 26', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '28', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('29', 'wallpaper 27', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '29', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('30', 'wallpaper 28', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '30', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('31', 'wallpaper 29', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '31', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('32', 'wallpaper 30', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '32', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('33', 'wallpaper 31', '0', '0', '0', '0.00', '0', '0', '0', '0', '7', '33', 'wallpaper', 'wallpaper', '5');
INSERT INTO `catalogue_items` VALUES ('34', 'nest', '1', '1', '1', '0.00', '0,0,0', '0', '0', '1', '8', '34', 'Basket', 'Night, night', '20');
INSERT INTO `catalogue_items` VALUES ('35', 'nest', '1', '1', '1', '0.00', '0,0,0', '0', '0', '1', '8', '35', 'Basket', 'Night, night', '20');
INSERT INTO `catalogue_items` VALUES ('36', 'nest', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '8', '36', 'Basket', 'Night, night', '20');
INSERT INTO `catalogue_items` VALUES ('37', 'deal97', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '0', '37', 'Doggy Bones', 'Natural nutrition for the barking one', '2');
INSERT INTO `catalogue_items` VALUES ('38', 'deal98', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '0', '38', 'Sardines', 'Fresh catch of the day', '2');
INSERT INTO `catalogue_items` VALUES ('39', 'deal99', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '0', '39', 'Cabbage', 'Health food for pets', '2');
INSERT INTO `catalogue_items` VALUES ('40', 'deal96', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '0', '40', 'T-Bones', 'For the croc!', '2');
INSERT INTO `catalogue_items` VALUES ('41', 'petfood1', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '9', '41', 'Doggy Bones', 'Natural nutrition for the barking one', '1');
INSERT INTO `catalogue_items` VALUES ('42', 'petfood2', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '9', '42', 'Sardines', 'Fresh catch of the day', '1');
INSERT INTO `catalogue_items` VALUES ('43', 'petfood3', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '9', '43', 'Cabbage', 'Health food for pets', '1');
INSERT INTO `catalogue_items` VALUES ('44', 'petfood4', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '9', '44', 'T-Bones', 'For the croc!', '1');
INSERT INTO `catalogue_items` VALUES ('45', 'waterbowl*1', '1', '1', '1', '0.00', '#ff3f3f,#ffffff,#ffffff', '0', '1', '1', '9', '45', 'Red Water Bowl', 'Aqua unlimited', '2');
INSERT INTO `catalogue_items` VALUES ('46', 'waterbowl*2', '1', '1', '1', '0.00', '#3fff3f,#ffffff,#ffffff', '0', '1', '1', '9', '46', 'Green Water Bowl', 'Aqua unlimited', '2');
INSERT INTO `catalogue_items` VALUES ('47', 'waterbowl*3', '1', '1', '1', '0.00', '#ffff00,#ffffff,#ffffff', '0', '1', '1', '9', '47', 'Yellow Water Bowl', 'Aqua unlimited', '2');
INSERT INTO `catalogue_items` VALUES ('48', 'waterbowl*4', '1', '1', '1', '0.00', '#0099ff,#ffffff,#ffffff', '0', '1', '1', '9', '48', 'Blue Water Bowl', 'Aqua unlimited', '2');
INSERT INTO `catalogue_items` VALUES ('49', 'waterbowl*5', '1', '1', '1', '0.00', '#bf7f00,#ffffff,#ffffff', '0', '1', '1', '9', '49', 'Brown Water Bowl', 'Aqua unlimited', '2');
INSERT INTO `catalogue_items` VALUES ('50', 'goodie2', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '9', '50', 'Chocolate Mouse', 'For gourmet kittens', '1');
INSERT INTO `catalogue_items` VALUES ('51', 'goodie1', '1', '1', '1', '0.00', '#ff4cbf,#ffffff', '0', '1', '1', '9', '51', 'Marzipan Man', 'Crunchy Dog Treat', '1');
INSERT INTO `catalogue_items` VALUES ('52', 'goodie1*1', '1', '1', '1', '0.00', '#3fffff,#ffffff', '0', '1', '1', '9', '52', 'Marzipan Man', 'Crunchy Dog Treat', '1');
INSERT INTO `catalogue_items` VALUES ('53', 'goodie1*2', '1', '1', '1', '0.00', '#ffbf00,#ffffff', '0', '1', '1', '9', '53', 'Marzipan Man', 'Crunchy Dog Treat', '1');
INSERT INTO `catalogue_items` VALUES ('54', 'toy1', '1', '1', '1', '0.00', '#ff0000,#ffff00,#ffffff,#ffffff', '0', '1', '1', '9', '54', 'Rubber Ball', 'it\'s bouncy-tastic', '2');
INSERT INTO `catalogue_items` VALUES ('55', 'toy1*1', '1', '1', '1', '0.00', '#ff7f00,#007f00,#ffffff,#ffffff', '0', '1', '1', '9', '55', 'Rubber Ball', 'it\'s bouncy-tastic', '2');
INSERT INTO `catalogue_items` VALUES ('56', 'toy1*2', '1', '1', '1', '0.00', '#003f7f,#ff00bf,#ffffff,#ffffff', '0', '1', '1', '9', '56', 'Rubber Ball', 'it\'s bouncy-tastic', '2');
INSERT INTO `catalogue_items` VALUES ('57', 'toy1*3', '1', '1', '1', '0.00', '#bf1900,#00bfbf,#ffffff,#ffffff', '0', '1', '1', '9', '57', 'Rubber Ball', 'it\'s bouncy-tastic', '2');
INSERT INTO `catalogue_items` VALUES ('58', 'toy1*4', '1', '1', '1', '0.00', '#000000,#ffffff,#ffffff,#ffffff', '0', '1', '1', '9', '58', 'Rubber Ball', 'it\'s bouncy-tastic', '2');
INSERT INTO `catalogue_items` VALUES ('59', 'silo_studydesk', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '10', '59', 'Area Quest Desk', 'For the true Habbo Scholars', '15');
INSERT INTO `catalogue_items` VALUES ('60', 'bed_silo_two', '3', '2', '3', '2.00', '0,0,0', '0', '1', '1', '10', '60', 'Double Bed', 'Plain and simple x2', '3');
INSERT INTO `catalogue_items` VALUES ('61', 'bed_silo_one', '3', '1', '3', '2.00', '0,0,0', '0', '1', '1', '10', '61', 'Single Bed', 'Plain and simple', '3');
INSERT INTO `catalogue_items` VALUES ('62', 'shelves_silo', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '10', '62', 'Bookcase', 'For nic naks and art deco books', '3');
INSERT INTO `catalogue_items` VALUES ('63', 'sofa_silo', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#A2C6C8,#A2C6C8,#A2C6C8,#A2C6C8', '0', '1', '1', '10', '63', 'Two-Seater Sofa', 'Cushioned, understated comfort', '3');
INSERT INTO `catalogue_items` VALUES ('64', 'sofachair_silo', '1', '1', '1', '1.00', '#ffffff,#ffffff,#A2C6C8,#A2C6C8,#ffffff', '0', '1', '1', '10', '64', 'Armchair', 'Large, but worth it', '3');
INSERT INTO `catalogue_items` VALUES ('65', 'table_silo_small', '1', '1', '1', '1.10', '#ffffff,#A2C6C8,#ffffff,#A2C6C8', '0', '1', '1', '10', '65', 'Occasional Table', 'For those random moments', '1');
INSERT INTO `catalogue_items` VALUES ('66', 'divider_silo3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#A2C6C8', '1', '1', '1', '10', '66', 'Gate (lockable)', 'Form following function', '6');
INSERT INTO `catalogue_items` VALUES ('67', 'divider_silo2', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '10', '67', 'Screen', 'Stylish sectioning', '3');
INSERT INTO `catalogue_items` VALUES ('68', 'divider_silo1', '1', '1', '1', '0.00', '#ffffff,#A2C6C8,0,#A2C6C8', '0', '1', '1', '10', '68', 'Corner Shelf', 'Neat and natty', '3');
INSERT INTO `catalogue_items` VALUES ('69', 'chair_silo', '2', '1', '1', '1.10', '#ffffff,#ffffff,#A2C6C8,#A2C6C8,#ffffff', '0', '1', '1', '10', '69', 'Dining Chair', 'Keep it simple', '3');
INSERT INTO `catalogue_items` VALUES ('70', 'safe_silo', '1', '1', '1', '1.20', '#ffffff,#A2C6C8,#ffffff', '0', '1', '1', '10', '70', 'Safe Minibar', 'Totally shatter-proof!', '3');
INSERT INTO `catalogue_items` VALUES ('71', 'barchair_silo', '1', '1', '1', '0.90', '#ffffff,#A2C6C8,#ffffff', '0', '1', '1', '10', '71', 'Bar Stool', 'Practical and convenient', '3');
INSERT INTO `catalogue_items` VALUES ('72', 'table_silo_med', '1', '2', '2', '0.90', '#ffffff,#8FAEAF', '0', '1', '1', '10', '72', 'Coffee Table', 'Wipe clean and unobtrusive', '3');
INSERT INTO `catalogue_items` VALUES ('73', 'tv_luxus', '1', '1', '3', '0.00', '0,0,0', '0', '1', '1', '11', '73', 'Digital TV', 'Bang up to date', '6');
INSERT INTO `catalogue_items` VALUES ('74', 'wood_tv', '1', '1', '2', '0.00', '0,0,0', '0', '1', '1', '11', '74', 'Large TV', 'For family viewing', '4');
INSERT INTO `catalogue_items` VALUES ('75', 'red_tv', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '75', 'Portable TV', 'Don\'t miss those soaps', '3');
INSERT INTO `catalogue_items` VALUES ('76', 'post.it', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '11', '76', 'Pad of stickies', 'Pad of stickies', '3');
INSERT INTO `catalogue_items` VALUES ('77', 'pizza', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '77', 'Pizza Box', 'You dirty Habbo', '3');
INSERT INTO `catalogue_items` VALUES ('78', 'drinks', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '78', 'Empty Cans', 'Are you a slob too?', '3');
INSERT INTO `catalogue_items` VALUES ('79', 'bottle', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '79', 'Empty Spinning Bottle', 'For interesting games!', '3');
INSERT INTO `catalogue_items` VALUES ('80', 'edice', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '80', 'Holo-dice', 'What\'s your lucky number?', '6');
INSERT INTO `catalogue_items` VALUES ('81', 'habbocake', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '81', 'Cake', 'Save me a slice!', '4');
INSERT INTO `catalogue_items` VALUES ('82', 'menorah', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '82', 'Menorah', 'Light up your room', '3');
INSERT INTO `catalogue_items` VALUES ('83', 'bunny', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '83', 'Squidgy Bunny', 'Yours to cuddle up to', '3');
INSERT INTO `catalogue_items` VALUES ('84', 'poster 44', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '11', '84', 'Mummy', 'Beware the curse...', '3');
INSERT INTO `catalogue_items` VALUES ('85', 'wcandleset', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '85', 'White Candle Plate', 'Simple but stylish', '3');
INSERT INTO `catalogue_items` VALUES ('86', 'rcandleset', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '86', 'Red Candle Plate', 'Simple but stylish', '3');
INSERT INTO `catalogue_items` VALUES ('87', 'ham', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '87', 'Joint of Ham', 'Tuck in', '3');
INSERT INTO `catalogue_items` VALUES ('88', 'hockey_light', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '11', '88', 'Lert', 'Set it off.', '5');
INSERT INTO `catalogue_items` VALUES ('89', 'wall_china', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '12', '89', 'Drakenscherm', 'Voor je eigen Grote Muur', '8');
INSERT INTO `catalogue_items` VALUES ('90', 'corner_china', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '12', '90', 'Voor Grote Muur', 'Stevig en vuurvast', '8');
INSERT INTO `catalogue_items` VALUES ('91', 'china_shelve', '2', '2', '1', '0.00', '0,0,0', '0', '1', '1', '12', '91', 'Lakwerk boekenkast', 'Bewaarder van je boekenschat', '8');
INSERT INTO `catalogue_items` VALUES ('92', 'china_table', '1', '1', '1', '0.90', '0,0,0', '0', '1', '1', '12', '92', 'Yin Yang tafel', 'Exotic and classy', '5');
INSERT INTO `catalogue_items` VALUES ('93', 'chair_china', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '12', '93', 'Yin Yang stoel', 'Zitten in evenwicht', '5');
INSERT INTO `catalogue_items` VALUES ('94', 'poster 57', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '12', '94', 'Kalligrafie', 'Een kwast, vaste hand en concentratie', '3');
INSERT INTO `catalogue_items` VALUES ('95', 'poster 58', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '12', '95', 'Chinese rode knopen', 'Veel geluk!', '5');
INSERT INTO `catalogue_items` VALUES ('96', 'cn_sofa', '2', '3', '1', '1.00', '0,0,0', '0', '1', '1', '12', '96', 'Yin Yang bank', 'Zitten in evenwicht!', '10');
INSERT INTO `catalogue_items` VALUES ('97', 'cn_lamp', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '12', '97', 'Rode lantaarn', 'Zacht licht voor je Habbo Kamer', '15');
INSERT INTO `catalogue_items` VALUES ('98', 'bath', '2', '1', '2', '1.00', '0,0,0', '0', '1', '1', '13', '98', 'Bubble Bath', 'The ultimate in pampering', '6');
INSERT INTO `catalogue_items` VALUES ('99', 'sink', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '13', '99', 'Sink', 'Hot and cold thrown in for no charge', '3');
INSERT INTO `catalogue_items` VALUES ('100', 'duck', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '13', '100', 'Rubber Duck', 'Every bather needs one', '1');
INSERT INTO `catalogue_items` VALUES ('101', 'toilet', '2', '1', '1', '1.10', '0,0,0', '0', '1', '1', '13', '101', 'Loo Seat', 'Loo Seat', '4');
INSERT INTO `catalogue_items` VALUES ('102', 'toilet_red', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '13', '102', 'Loo Seat', 'Loo Seat', '4');
INSERT INTO `catalogue_items` VALUES ('103', 'toilet_yell', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '13', '103', 'Loo Seat', 'Loo Seat', '4');
INSERT INTO `catalogue_items` VALUES ('104', 'tile', '4', '4', '4', '0.00', '0,0,0', '0', '1', '1', '13', '104', 'Floor Tiles', 'In a choice of colours', '3');
INSERT INTO `catalogue_items` VALUES ('105', 'tile_red', '4', '4', '4', '0.00', '0,0,0', '0', '1', '1', '13', '105', 'Floor Tiles', 'In a choice of colours', '3');
INSERT INTO `catalogue_items` VALUES ('106', 'tile_yell', '4', '4', '4', '0.00', '0,0,0', '0', '1', '1', '13', '106', 'Floor Tiles', 'In a choice of colours', '3');
INSERT INTO `catalogue_items` VALUES ('107', 'bardesk_polyfon*5', '1', '2', '1', '1.00', '#ffffff,#ffffff,#FF9BBD,#FF9BBD', '0', '1', '1', '14', '107', 'Candy Bar/desk', 'Perfect for work or play', '3');
INSERT INTO `catalogue_items` VALUES ('108', 'bardeskcorner_polyfon*5', '1', '1', '1', '1.10', '#ffffff,#FF9BBD', '0', '1', '1', '14', '108', 'Candy Corner', 'Tuck it away', '3');
INSERT INTO `catalogue_items` VALUES ('109', 'divider_poly3*5', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#EE7EA4,#EE7EA4', '0', '1', '1', '14', '109', 'Candy Hatch (lockable)', 'All bars should have one', '6');
INSERT INTO `catalogue_items` VALUES ('110', 'sofachair_polyfon_girl', '2', '1', '1', '1.00', '#ffffff,#ffffff,#EE7EA4,#EE7EA4', '0', '1', '1', '14', '110', 'Armchair', 'Think pink', '3');
INSERT INTO `catalogue_items` VALUES ('111', 'sofa_polyfon_girl', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#EE7EA4,#EE7EA4,#E', '0', '1', '1', '14', '111', 'Two-seater Sofa', 'Romantic pink for two', '4');
INSERT INTO `catalogue_items` VALUES ('112', 'carpet_polar*1', '4', '2', '3', '0.00', '#ffbbcf,#ffbbcf,#ffddef', '0', '1', '1', '14', '112', 'Pink Faux-Fur', 'Bear Rug Cute', '4');
INSERT INTO `catalogue_items` VALUES ('113', 'bed_polyfon_girl_one', '3', '1', '3', '2.00', '#ffffff,#ffffff,#ffffff,#EE7EA4,#EE7EA4', '0', '1', '1', '14', '113', 'Armchair', 'Think pink', '3');
INSERT INTO `catalogue_items` VALUES ('114', 'bed_polyfon_girl', '3', '2', '3', '2.00', '#ffffff,#ffffff,#EE7EA4,#EE7EA4', '0', '1', '1', '14', '114', 'Double Bed', 'Snuggle down in princess pink', '4');
INSERT INTO `catalogue_items` VALUES ('115', 'camera', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '15', '115', 'Camera', 'Smile!', '10');
INSERT INTO `catalogue_items` VALUES ('116', 'photo_film', '0', '0', '0', '0.00', '0,0,0', '0', '0', '0', '15', '116', 'Film', 'Film for five photos', '6');
INSERT INTO `catalogue_items` VALUES ('117', 'poster 500', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '117', 'Union Jack', 'The UK flag', '3');
INSERT INTO `catalogue_items` VALUES ('118', 'poster 501', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '118', 'Jolly Roger', 'For pirates everywhere', '3');
INSERT INTO `catalogue_items` VALUES ('119', 'poster 502', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '119', 'The Stars and Stripes', 'The US flag', '3');
INSERT INTO `catalogue_items` VALUES ('120', 'poster 503', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '120', 'The Swiss flag', 'There\'s no holes in this...', '3');
INSERT INTO `catalogue_items` VALUES ('121', 'poster 504', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '121', 'The Bundesflagge', 'The German flag', '3');
INSERT INTO `catalogue_items` VALUES ('122', 'poster 505', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '122', 'The Maple Leaf', 'The Canadian flag', '3');
INSERT INTO `catalogue_items` VALUES ('123', 'poster 506', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '123', 'The flag of Finland', 'To \'Finnish\' your decor...', '3');
INSERT INTO `catalogue_items` VALUES ('124', 'poster 507', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '124', 'The French Tricolore', 'The French flag', '3');
INSERT INTO `catalogue_items` VALUES ('125', 'poster 508', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '125', 'The Spanish flag', 'The flag of Spain', '3');
INSERT INTO `catalogue_items` VALUES ('126', 'poster 509', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '126', 'The Jamaican flag', 'The flag of Jamaica', '3');
INSERT INTO `catalogue_items` VALUES ('127', 'poster 510', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '127', 'The Italian flag', 'The flag of Italy', '3');
INSERT INTO `catalogue_items` VALUES ('128', 'poster 511', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '128', 'The Dutch flag', 'The flag of The Netherlands', '3');
INSERT INTO `catalogue_items` VALUES ('129', 'poster 512', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '129', 'The Irish flag', 'The flag of Ireland', '3');
INSERT INTO `catalogue_items` VALUES ('130', 'poster 513', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '130', 'The Australian flag', 'Aussies rule!', '3');
INSERT INTO `catalogue_items` VALUES ('131', 'poster 514', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '131', 'The EU flag', 'Be proud to be in the Union!', '3');
INSERT INTO `catalogue_items` VALUES ('132', 'poster 515', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '132', 'The Swedish flag', 'Waved by Swedes everywhere', '3');
INSERT INTO `catalogue_items` VALUES ('133', 'poster 516', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '133', 'The English flag', 'Eng-er-land', '3');
INSERT INTO `catalogue_items` VALUES ('134', 'poster 517', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '134', 'The Scottish flag', 'Where\'s your kilt?', '3');
INSERT INTO `catalogue_items` VALUES ('135', 'poster 518', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '135', 'The Welsh flag', 'A fiery dragon for your wall', '3');
INSERT INTO `catalogue_items` VALUES ('136', 'poster 520', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '136', 'The Rainbow Flag', 'Every colour for everyone', '3');
INSERT INTO `catalogue_items` VALUES ('137', 'poster 521', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '137', 'Flag of Brazil', 'The flag of Brazil', '3');
INSERT INTO `catalogue_items` VALUES ('138', 'poster 522', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '138', 'The flag of Japan', 'The flag of Japan', '3');
INSERT INTO `catalogue_items` VALUES ('139', 'poster 523', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '16', '139', 'The flag of India', 'The flag of India', '3');
INSERT INTO `catalogue_items` VALUES ('140', 'poster 2001', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '140', 'Rug on the wall', 'Rug', '10');
INSERT INTO `catalogue_items` VALUES ('141', 'poster 2004', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '141', 'Rastaman', 'Rasta tarjoaa rakkautta', '3');
INSERT INTO `catalogue_items` VALUES ('142', 'poster 2002', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '142', 'Presidentin Muotokuva', 'Presidentin Muotokuva', '10');
INSERT INTO `catalogue_items` VALUES ('143', 'poster 7', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '143', 'Hammer Cabinet', 'for emergencies only', '3');
INSERT INTO `catalogue_items` VALUES ('144', 'poster 12', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '144', 'Skyline Poster', 'skyscrapers at night', '3');
INSERT INTO `catalogue_items` VALUES ('145', 'poster 13', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '145', 'BW Skyline Poster', 'skyscrapers in arty black and white', '3');
INSERT INTO `catalogue_items` VALUES ('146', 'poster 14', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '146', 'Fox Poster', 'a truly cunning design', '3');
INSERT INTO `catalogue_items` VALUES ('147', 'poster 17', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '147', 'Butterfly Cabinet', 'beautiful reproduction butterfly', '3');
INSERT INTO `catalogue_items` VALUES ('148', 'poster 18', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '148', 'Butterfly Cabinet (blue)', 'beautiful reproduction butterfly', '3');
INSERT INTO `catalogue_items` VALUES ('149', 'poster 16', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '149', 'Bars', 'high security for your room', '3');
INSERT INTO `catalogue_items` VALUES ('150', 'poster 1003', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '150', 'UK Map', 'get the lovely isles on your walls', '3');
INSERT INTO `catalogue_items` VALUES ('151', 'poster 15', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '151', 'Himalaya Poster', 'marvellous mountains', '3');
INSERT INTO `catalogue_items` VALUES ('152', 'poster 1006', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '152', 'Hoot Poster', 'The eyes follow you...', '3');
INSERT INTO `catalogue_items` VALUES ('153', 'poster 32', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '153', 'Siva Poster', 'The Auspicious One', '3');
INSERT INTO `catalogue_items` VALUES ('154', 'poster 33', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '154', 'Save the Panda', 'We can\'t bear to lose them', '3');
INSERT INTO `catalogue_items` VALUES ('155', 'poster 2', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '155', 'Carrot Plaque', 'take pride in your veg!', '3');
INSERT INTO `catalogue_items` VALUES ('156', 'poster 3', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '156', 'Fish Plaque', 'smells fishy, looks cool', '3');
INSERT INTO `catalogue_items` VALUES ('157', 'poster 4', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '157', 'Bear Plaque', 'fake of course!', '3');
INSERT INTO `catalogue_items` VALUES ('158', 'poster 5', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '158', 'Duck Poster', 'quacking good design!', '3');
INSERT INTO `catalogue_items` VALUES ('159', 'poster 1', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '159', 'Ancestor Poster', 'a touch of history', '3');
INSERT INTO `catalogue_items` VALUES ('160', 'poster 6', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '160', 'Abstract Poster', 'but is it the right way up?', '3');
INSERT INTO `catalogue_items` VALUES ('161', 'poster 1002', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '161', 'Queen Mum Poster', 'aw, bless...', '3');
INSERT INTO `catalogue_items` VALUES ('162', 'poster 1001', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '162', 'Prince Charles Poster', 'Even walls have ears', '3');
INSERT INTO `catalogue_items` VALUES ('163', 'poster 8', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '163', 'Habbo Colours Poster', 'Habbos come in all colours', '3');
INSERT INTO `catalogue_items` VALUES ('164', 'poster 9', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '164', 'Rainforest Poster', 'do your bit for the environment', '3');
INSERT INTO `catalogue_items` VALUES ('165', 'poster 1004', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '165', 'Eid Mubarak', 'Celebrate with us', '3');
INSERT INTO `catalogue_items` VALUES ('166', 'poster 2006', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '166', 'DJ Throne', 'He is the magic Habbo', '3');
INSERT INTO `catalogue_items` VALUES ('167', 'poster 2008', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '167', 'Green Gecko Art', 'Like a gecko it wont fall of your wall', '3');
INSERT INTO `catalogue_items` VALUES ('168', 'poster 11', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '168', 'Certificate', 'award, charter or the Habbo Way - you decide', '3');
INSERT INTO `catalogue_items` VALUES ('169', 'poster 41', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '169', 'Habbo Golden Record', 'For the best music-makers', '3');
INSERT INTO `catalogue_items` VALUES ('170', 'poster 40', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '170', 'Bonnie Blonde', 'The one and only. Adore her!', '3');
INSERT INTO `catalogue_items` VALUES ('171', 'poster 35', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '171', 'The Habbo Babes 1', 'The Hotel\'s girlband. Dream on!', '3');
INSERT INTO `catalogue_items` VALUES ('172', 'poster 36', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '172', 'The Habbo Babes 2', 'The Hotel\'s girlband. Dream on!', '3');
INSERT INTO `catalogue_items` VALUES ('173', 'poster 37', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '173', 'The Habbo Babes 3', 'The Hotel\'s girlband. Dream on!', '3');
INSERT INTO `catalogue_items` VALUES ('174', 'poster 1005', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '174', 'Johnny Squabble', 'The muscly movie hero', '3');
INSERT INTO `catalogue_items` VALUES ('175', 'poster 34', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '175', 'Scamme\'d', 'Habbo-punk for the never-agreeing', '3');
INSERT INTO `catalogue_items` VALUES ('176', 'poster 39', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '176', 'Screaming Furnies', 'The rock masters of virtual music', '3');
INSERT INTO `catalogue_items` VALUES ('177', 'poster 2000', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '177', 'Suomen kartta', 'Suomen kartta', '3');
INSERT INTO `catalogue_items` VALUES ('178', 'poster 38', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '178', 'Smiling Headbangerz', 'For really TOUGH Habbos!', '3');
INSERT INTO `catalogue_items` VALUES ('179', 'poster 2008', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '179', 'Habbo Cola Poster', 'For serious bubblers', '3');
INSERT INTO `catalogue_items` VALUES ('180', 'poster 2007', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '180', 'The Father Of Habbo', 'The legendary founder of the Hotel', '3');
INSERT INTO `catalogue_items` VALUES ('181', 'poster 2003', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '181', 'Dodgy Geezer', 'Would you trust this man?', '3');
INSERT INTO `catalogue_items` VALUES ('182', 'poster 31', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '182', 'System of a Ban', 'Pure and unbridled nu-metal', '3');
INSERT INTO `catalogue_items` VALUES ('183', 'poster 55', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '17', '183', 'Beach Tree Poster', 'Natural', '3');
INSERT INTO `catalogue_items` VALUES ('184', 'glass_shelf', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '18', '184', 'Glass shelf', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('185', 'glass_sofa', '2', '2', '1', '1.10', '#ffffff,#ABD0D2,#ABD0D2,#ffffff,#ffffff,#ABD0D2,#ffffff,#ABD0D2', '0', '1', '1', '18', '185', 'Glass sofa', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('186', 'glass_table', '1', '2', '2', '0.90', '#ffffff,#ABD0D2,#ABD0D2,#ffffff', '0', '1', '1', '18', '186', 'Glass table', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('187', 'glass_chair', '2', '1', '1', '1.10', '#ffffff,#ABD0D2,#ABD0D2,#ffffff', '0', '1', '1', '18', '187', 'Glass chair', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('188', 'glass_stool', '2', '1', '1', '1.10', '#ffffff,#ABD0D2,#ABD0D2,#ffffff', '0', '1', '1', '18', '188', 'Glass stool', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('189', 'glass_sofa*2', '2', '2', '1', '1.10', '#ffffff,#525252,#525252,#ffffff,#ffffff,#525252,#ffffff,#525252', '0', '1', '1', '18', '189', 'Glass sofa', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('190', 'glass_table*2', '1', '2', '2', '0.90', '#ffffff,#525252,#525252,#ffffff', '0', '1', '1', '18', '190', 'Glass table', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('191', 'glass_chair*2', '2', '1', '1', '1.10', '#ffffff,#525252,#525252,#ffffff', '0', '1', '1', '18', '191', 'Glass chair', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('192', 'glass_stool*2', '2', '1', '1', '1.10', '#ffffff,#525252,#525252,#ffffff', '0', '1', '1', '18', '192', 'Glass stool', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('193', 'glass_sofa*3', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '18', '193', 'Glass sofa', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('194', 'glass_table*3', '1', '2', '2', '0.90', '#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '18', '194', 'Glass table', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('195', 'glass_chair*3', '2', '1', '1', '1.00', '#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '18', '195', 'Glass chair', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('196', 'glass_stool*3', '2', '1', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '18', '196', 'Glass stool', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('197', 'glass_sofa*4', '2', '2', '1', '1.10', '#ffffff,#F7EBBC,#F7EBBC,#ffffff,#ffffff,#F7EBBC,#ffffff,#F7EBBC', '0', '1', '1', '18', '197', 'Glass sofa', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('198', 'glass_table*4', '1', '2', '2', '0.90', '#ffffff,#F7EBBC,#F7EBBC,#ffffff', '0', '1', '1', '18', '198', 'Glass table', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('199', 'glass_chair*4', '2', '1', '1', '1.10', '#ffffff,#F7EBBC,#F7EBBC,#ffffff', '0', '1', '1', '18', '199', 'Glass chair', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('200', 'glass_stool*4', '2', '1', '1', '1.10', '#ffffff,#F7EBBC,#F7EBBC,#ffffff', '0', '1', '1', '18', '200', 'Glass stool', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('201', 'glass_sofa*5', '2', '2', '1', '1.10', '#ffffff,#FF99BC,#FF99BC,#ffffff,#ffffff,#FF99BC,#ffffff,#FF99BC', '0', '1', '1', '18', '201', 'Glass sofa', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('202', 'glass_table*5', '1', '2', '2', '0.90', '#ffffff,#FF99BC,#FF99BC,#ffffff', '0', '1', '1', '18', '202', 'Glass table', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('203', 'glass_chair*5', '2', '1', '1', '1.10', '#ffffff,#FF99BC,#FF99BC,#ffffff', '0', '1', '1', '18', '203', 'Glass chair', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('204', 'glass_stool*5', '2', '1', '1', '1.10', '#ffffff,#FF99BC,#FF99BC,#ffffff', '0', '1', '1', '18', '204', 'Glass stool', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('205', 'glass_sofa*6', '2', '2', '1', '1.10', '#ffffff,#5EAAF8,#5EAAF8,#ffffff,#ffffff,#5EAAF8,#ffffff,#5EAAF8', '0', '1', '1', '18', '205', 'Glass sofa', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('206', 'glass_table*6', '1', '2', '2', '0.90', '#ffffff,#5EAAF8,#5EAAF8,#ffffff', '0', '1', '1', '18', '206', 'Glass table', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('207', 'glass_chair*6', '2', '1', '1', '1.10', '#ffffff,#5EAAF8,#5EAAF8,#ffffff', '0', '1', '1', '18', '207', 'Glass chair', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('208', 'glass_stool*6', '2', '1', '1', '1.10', '#ffffff,#5EAAF8,#5EAAF8,#ffffff', '0', '1', '1', '18', '208', 'Glass stool', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('209', 'glass_sofa*7', '2', '2', '1', '1.10', '#ffffff,#92D13D,#92D13D,#ffffff,#ffffff,#92D13D,#ffffff,#92D13D', '0', '1', '1', '18', '209', 'Glass sofa', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('210', 'glass_table*7', '1', '2', '2', '0.90', '#ffffff,#92D13D,#92D13D,#ffffff', '0', '1', '1', '18', '210', 'Glass table', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('211', 'glass_chair*7', '2', '1', '1', '1.10', '#ffffff,#92D13D,#92D13D,#ffffff', '0', '1', '1', '18', '211', 'Glass chair', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('212', 'glass_stool*7', '2', '1', '1', '1.10', '#ffffff,#92D13D,#92D13D,#ffffff', '0', '1', '1', '18', '212', 'Glass stool', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('213', 'glass_sofa*8', '2', '2', '1', '1.10', '#ffffff,#FFD837,#FFD837,#ffffff,#ffffff,#FFD837,#ffffff,#FFD837', '0', '1', '1', '18', '213', 'Glass sofa', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('214', 'glass_table*8', '1', '2', '2', '0.90', '#ffffff,#FFD837,#FFD837,#ffffff', '0', '1', '1', '18', '214', 'Glass table', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('215', 'glass_chair*8', '2', '1', '1', '1.10', '#ffffff,#FFD837,#FFD837,#ffffff', '0', '1', '1', '18', '215', 'Glass chair', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('216', 'glass_stool*8', '2', '1', '1', '1.10', '#ffffff,#FFD837,#FFD837,#ffffff', '0', '1', '1', '18', '216', 'Glass stool', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('217', 'glass_sofa*9', '2', '2', '1', '1.10', '#ffffff,#E14218,#E14218,#ffffff,#ffffff,#E14218,#ffffff,#E14218', '0', '1', '1', '18', '217', 'Glass sofa', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('218', 'glass_table*9', '1', '2', '2', '0.90', '#ffffff,#E14218,#E14218,#ffffff', '0', '1', '1', '18', '218', 'Glass table', 'Translucent beauty', '4');
INSERT INTO `catalogue_items` VALUES ('219', 'glass_chair*9', '2', '1', '1', '1.10', '#ffffff,#E14218,#E14218,#ffffff', '0', '1', '1', '18', '219', 'Glass chair', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('220', 'glass_stool*9', '2', '1', '1', '1.10', '#ffffff,#E14218,#E14218,#ffffff', '0', '1', '1', '18', '220', 'Glass stool', 'Translucent beauty', '3');
INSERT INTO `catalogue_items` VALUES ('221', 'gothic_chair*3', '2', '1', '1', '1.10', '#ffffff,#dd0000,#ffffff,#dd0000', '0', '1', '1', '19', '221', 'Red Gothic Chair', 'The head of the table', '10');
INSERT INTO `catalogue_items` VALUES ('222', 'gothic_sofa*3', '2', '2', '1', '1.10', '#ffffff,#dd0000,#ffffff,#ffffff,#dd0000,#ffffff', '0', '1', '1', '19', '222', 'Red Gothic Sofa', 'Not great for hiding behind', '7');
INSERT INTO `catalogue_items` VALUES ('223', 'gothic_stool*3', '1', '1', '1', '1.10', '#ffffff,#dd0000,#ffffff', '0', '1', '1', '19', '223', 'Red Gothic Stool', 'Be calm. Be seated', '5');
INSERT INTO `catalogue_items` VALUES ('224', 'gothic_carpet', '4', '2', '4', '0.00', '0,0,0', '0', '1', '1', '19', '224', 'Cobbled Path', 'The route less travelled', '5');
INSERT INTO `catalogue_items` VALUES ('225', 'gothic_carpet2', '4', '2', '4', '0.00', '0,0,0', '0', '1', '1', '19', '225', 'Dungeon Floor', 'What lies beneath?', '5');
INSERT INTO `catalogue_items` VALUES ('226', 'goth_table', '1', '1', '5', '1.00', '0,0,0', '0', '1', '1', '19', '226', 'Gothic Table', 'A table with two heads', '15');
INSERT INTO `catalogue_items` VALUES ('227', 'gothrailing', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '19', '227', 'Gothic Railing', 'Keep out!', '8');
INSERT INTO `catalogue_items` VALUES ('228', 'torch', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '19', '228', 'Gothic Torch', 'Keeping dungeons light', '10');
INSERT INTO `catalogue_items` VALUES ('229', 'gothicfountain', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '19', '229', 'Gothic Fountain', 'The dark side of Habbo', '10');
INSERT INTO `catalogue_items` VALUES ('230', 'gothiccandelabra', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '19', '230', 'Gothic Candleabra', 'Through darkness came light', '10');
INSERT INTO `catalogue_items` VALUES ('231', 'gothgate', '1', '2', '1', '0.00', '0,0,0', '1', '1', '1', '19', '231', 'Gothic Portcullis', 'Don\'t get caught beneath!', '10');
INSERT INTO `catalogue_items` VALUES ('232', 'industrialfan', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '19', '232', 'Industrial Turbine', 'Powerful and resilient', '10');
INSERT INTO `catalogue_items` VALUES ('233', 'grunge_barrel', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '20', '233', 'Flaming Barrel', 'Beacon of light!', '3');
INSERT INTO `catalogue_items` VALUES ('234', 'grunge_bench', '2', '3', '1', '1.10', '0,0,0', '0', '1', '1', '20', '234', 'Bench', 'Laid back seating', '3');
INSERT INTO `catalogue_items` VALUES ('235', 'grunge_candle', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '20', '235', 'Candle Box', 'Late night debate', '2');
INSERT INTO `catalogue_items` VALUES ('236', 'grunge_chair', '2', '1', '1', '1.10', '0,0,0', '0', '1', '1', '20', '236', 'Grunge Chair', 'Alternative chair for alternative people', '4');
INSERT INTO `catalogue_items` VALUES ('237', 'grunge_mattress', '2', '3', '1', '0.80', '0,0,0', '0', '1', '1', '20', '237', 'Grunge Mattress', 'Beats sleeping on the floor!', '3');
INSERT INTO `catalogue_items` VALUES ('238', 'grunge_radiator', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '20', '238', 'Radiator', 'Started cool but now it\'s hot!', '3');
INSERT INTO `catalogue_items` VALUES ('239', 'grunge_shelf', '1', '3', '1', '0.00', '0,0,0', '0', '1', '1', '20', '239', 'Grunge Bookshelf', 'Scrap books and photo albums', '5');
INSERT INTO `catalogue_items` VALUES ('240', 'grunge_sign', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '20', '240', 'Road Sign', 'Bought legitimately from an M1 cafe.', '3');
INSERT INTO `catalogue_items` VALUES ('241', 'grunge_table', '1', '2', '2', '1.00', '0,0,0', '0', '1', '1', '20', '241', 'Grunge Table', 'Students of the round table!', '4');
INSERT INTO `catalogue_items` VALUES ('242', 'CF_1_coin_bronze', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '21', '242', 'Bronze Coin', 'Worth: 1 Habbo Credit', '1');
INSERT INTO `catalogue_items` VALUES ('243', 'CF_5_coin_silver', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '21', '243', 'Silver Coin', 'Worth: 5 Habbo Credits', '5');
INSERT INTO `catalogue_items` VALUES ('244', 'CF_10_coin_gold', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '21', '244', 'Gold Coin', 'Worth: 10 Habbo Credits', '10');
INSERT INTO `catalogue_items` VALUES ('245', 'CF_20_moneybag', '1', '1', '1', '1.00', '0,0,0', '0', '1', '1', '21', '245', 'Money Bag', 'Worth: 20 Habbo Credits', '20');
INSERT INTO `catalogue_items` VALUES ('246', 'CF_50_goldbar', '1', '1', '1', '0.60', '0,0,0', '0', '1', '1', '21', '246', 'Gold Bars', 'Worth: 50 Habbo Credits', '50');
INSERT INTO `catalogue_items` VALUES ('247', 'habbowood_chair', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '22', '247', 'Habbowood Chair', 'null', '5');
INSERT INTO `catalogue_items` VALUES ('248', 'rope_divider', '1', '2', '1', '0.00', '0,0,0', '1', '1', '1', '22', '248', 'Rope Divider', 'null', '5');
INSERT INTO `catalogue_items` VALUES ('249', 'spotlight', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '22', '249', 'Spotlight', 'Light, camera, action!', '15');
INSERT INTO `catalogue_items` VALUES ('250', 'theatre_seat', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '22', '250', 'Theatre Seat', 'It\'s a Theatre Seat', '10');
INSERT INTO `catalogue_items` VALUES ('251', 'rare_icecream_campaign', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '22', '251', 'Icecream Machine', 'null', '25');
INSERT INTO `catalogue_items` VALUES ('252', 'habw_mirror', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '22', '252', 'Habbowood Mirror', 'Starts only!', '10');
INSERT INTO `catalogue_items` VALUES ('253', 'chair_norja', '2', '1', '1', '1.00', '#ffffff,#ffffff,#F7EBBC,#F7EBBC', '0', '1', '1', '23', '253', 'Chair', 'Sleek and chic for each cheek', '3');
INSERT INTO `catalogue_items` VALUES ('254', 'couch_norja', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#F7EBBC,#F7EBBC,#F7EBBC,#F7EBBC', '0', '1', '1', '23', '254', 'Bench', 'Two can perch comfortably', '3');
INSERT INTO `catalogue_items` VALUES ('255', 'table_norja_med', '1', '2', '2', '0.90', '#ffffff,#F7EBBC', '0', '1', '1', '23', '255', 'Coffee Table', 'Elegance embodied', '3');
INSERT INTO `catalogue_items` VALUES ('256', 'shelves_norja', '1', '1', '1', '0.00', '#ffffff,#F7EBBC', '0', '1', '1', '23', '256', 'Bookcase', 'For nic naks and art deco books', '3');
INSERT INTO `catalogue_items` VALUES ('257', 'soft_sofachair_norja', '2', '1', '1', '1.00', '#ffffff,#F7EBBC,#F7EBBC', '0', '1', '1', '23', '257', 'iced sofachair', 'Soft iced sofachair', '3');
INSERT INTO `catalogue_items` VALUES ('258', 'soft_sofa_norja', '2', '2', '1', '1.00', '#ffffff,#F7EBBC,#ffffff,#F7EBBC,#F7EBBC,#F7EBBC', '0', '1', '1', '23', '258', 'iced sofa', 'A soft iced sofa', '4');
INSERT INTO `catalogue_items` VALUES ('259', 'divider_nor2', '1', '2', '1', '0.00', '#ffffff,#ffffff,#F7EBBC,#F7EBBC', '0', '1', '1', '23', '259', 'Ice Bar-Desk', 'Strong, yet soft looking', '3');
INSERT INTO `catalogue_items` VALUES ('260', 'divider_nor1', '1', '1', '1', '0.00', '#ffffff,#F7EBBC', '0', '1', '1', '23', '260', 'Ice Corner', 'Looks squishy, but isn\'t', '3');
INSERT INTO `catalogue_items` VALUES ('261', 'divider_nor3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#F7EBBC,#F7EBBC', '1', '1', '1', '23', '261', 'Door (Lockable)', 'Do go through...', '6');
INSERT INTO `catalogue_items` VALUES ('262', 'divider_nor4', '1', '2', '1', '0.00', '#ffffff,#ffffff,#F7EBBC,#F7EBBC,#F7EBBC,#F7EBBC', '1', '1', '1', '23', '262', 'Iced Auto Shutter', 'Habbos, roll out!', '3');
INSERT INTO `catalogue_items` VALUES ('263', 'divider_nor5', '1', '1', '1', '0.00', '#ffffff,#F7EBBC,#F7EBBC,#F7EBBC,#F7EBBC,#F7EBBC', '1', '1', '1', '23', '263', 'Iced Angle', 'Cool cornering for you!', '3');
INSERT INTO `catalogue_items` VALUES ('264', 'jp_bamboo', '4', '2', '2', '0.00', '0,0,0', '0', '1', '1', '24', '264', 'Bamboo Forest', 'Don\'t get lost', '25');
INSERT INTO `catalogue_items` VALUES ('265', 'jp_pillow', '2', '1', '1', '0.70', '0,0,0', '0', '1', '1', '24', '265', 'Pillow', 'null', '5');
INSERT INTO `catalogue_items` VALUES ('266', 'jp_irori', '1', '2', '2', '0.00', '0,0,0', '0', '1', '1', '24', '266', 'Sushi Bar', 'null', '10');
INSERT INTO `catalogue_items` VALUES ('267', 'jp_tatami', '4', '2', '2', '0.00', '0,0,0', '0', '1', '1', '24', '267', 'Tatami', 'null', '6');
INSERT INTO `catalogue_items` VALUES ('268', 'jp_tatami2', '4', '2', '4', '0.00', '0,0,0', '0', '1', '1', '24', '268', 'Tatami', 'null', '8');
INSERT INTO `catalogue_items` VALUES ('269', 'jp_lantern', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '24', '269', 'Lantern', 'null', '10');
INSERT INTO `catalogue_items` VALUES ('270', 'jp_drawer', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '24', '270', 'Drawers', 'null', '6');
INSERT INTO `catalogue_items` VALUES ('271', 'jp_ninjastars', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '24', '271', 'Ninjastars', 'Ouch!', '10');
INSERT INTO `catalogue_items` VALUES ('272', 'bed_armas_two', '3', '2', '3', '2.00', '0,0,0', '0', '1', '1', '25', '272', 'Double Bed', 'King-sized pine comfort', '3');
INSERT INTO `catalogue_items` VALUES ('273', 'bed_armas_one', '3', '1', '3', '2.00', '0,0,0', '0', '1', '1', '25', '273', 'Single Bed', 'Rustic charm for one', '3');
INSERT INTO `catalogue_items` VALUES ('274', 'fireplace_armas', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '25', '274', 'Fireplace', 'Authentic, real flame fire', '4');
INSERT INTO `catalogue_items` VALUES ('275', 'bartable_armas', '1', '1', '3', '1.20', '0,0,0', '0', '1', '1', '25', '275', 'Bardesk', 'Bar-Style Table - essential for extra guests', '3');
INSERT INTO `catalogue_items` VALUES ('276', 'table_armas', '1', '2', '2', '1.00', '0,0,0', '0', '1', '1', '25', '276', 'Dining Table', 'For informal dining', '3');
INSERT INTO `catalogue_items` VALUES ('277', 'bench_armas', '2', '2', '1', '1.10', '0,0,0', '0', '1', '1', '25', '277', 'Bench', 'To complete the dining set', '3');
INSERT INTO `catalogue_items` VALUES ('278', 'divider_arm3', '1', '1', '1', '0.00', '0,0,0', '1', '1', '1', '25', '278', 'Gate (lockable)', 'Knock, knock...', '6');
INSERT INTO `catalogue_items` VALUES ('279', 'divider_arm1', '1', '1', '1', '1.20', '0,0,0', '0', '1', '1', '25', '279', 'Corner plinth', 'Good solid wood', '3');
INSERT INTO `catalogue_items` VALUES ('280', 'divider_arm2', '1', '2', '1', '1.20', '0,0,0', '0', '1', '1', '25', '280', 'Room divider', 'I wooden go there', '3');
INSERT INTO `catalogue_items` VALUES ('281', 'shelves_armas', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '25', '281', 'Bookcase', 'For all those fire-side stories', '3');
INSERT INTO `catalogue_items` VALUES ('282', 'bar_armas', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '25', '282', 'Barrel Minibar', 'It\'s a barrel of laughs and a great talking point', '4');
INSERT INTO `catalogue_items` VALUES ('283', 'bar_chair_armas', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '25', '283', 'Barrel Stool', 'The ultimate recycled furniture', '1');
INSERT INTO `catalogue_items` VALUES ('284', 'lamp_armas', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '25', '284', 'Table Lamp', 'Ambient lighting is essential', '3');
INSERT INTO `catalogue_items` VALUES ('285', 'lamp2_armas', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '25', '285', 'Lodge Candle', 'Wax lyrical with some old-world charm', '3');
INSERT INTO `catalogue_items` VALUES ('286', 'small_table_armas', '1', '1', '1', '1.10', '0,0,0', '0', '1', '1', '25', '286', 'Occasional Table', 'Practical and beautiful', '2');
INSERT INTO `catalogue_items` VALUES ('287', 'small_chair_armas', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '25', '287', 'Stool', 'Rustic charm at it\'s best', '1');
INSERT INTO `catalogue_items` VALUES ('288', 'bed_polyfon', '3', '2', '3', '2.00', '#ffffff,#ffffff,#ABD0D2,#ABD0D2', '0', '1', '1', '26', '288', 'Double Bed', 'Give yourself space to stretch out', '4');
INSERT INTO `catalogue_items` VALUES ('289', 'bed_polyfon_one', '3', '1', '3', '2.00', 'ffffff,#ffffff,#ffffff,#ABD0D2,#ABD0D2', '0', '1', '1', '26', '289', 'Single Bed', 'Cot of the artistic', '3');
INSERT INTO `catalogue_items` VALUES ('290', 'fireplace_polyfon', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '26', '290', 'Fireplace', 'Comfort in stainless steel', '5');
INSERT INTO `catalogue_items` VALUES ('291', 'sofa_polyfon', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#ABD0D2,#ABD0D2,#ABD0D2,#ABD0D2', '0', '1', '1', '26', '291', 'Two-seater Sofa', 'Comfort for stylish couples', '4');
INSERT INTO `catalogue_items` VALUES ('292', 'sofachair_polyfon', '2', '1', '1', '1.00', '#ffffff,#ffffff,#ABD0D2,#ABD0D2', '0', '1', '1', '26', '292', 'Armchair', 'Loft-style comfort', '3');
INSERT INTO `catalogue_items` VALUES ('293', 'bar_polyfon', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '26', '293', 'Mini-Bar', 'You naughty Habbo!', '5');
INSERT INTO `catalogue_items` VALUES ('294', 'divider_poly3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#ABD0D2,#ABD0D2', '1', '1', '1', '26', '294', 'Hatch (Lockable)', 'All bars should have one', '6');
INSERT INTO `catalogue_items` VALUES ('295', 'bardesk_polyfon', '1', '2', '1', '1.00', '#ffffff,#ffffff,#ABD0D2,#ABD0D2', '0', '1', '1', '26', '295', 'Bar/desk', 'Perfect for work or play', '3');
INSERT INTO `catalogue_items` VALUES ('296', 'bardeskcorner_polyfon', '1', '1', '1', '0.00', '#ffffff,#ABD0D2', '0', '1', '1', '26', '296', 'Corner Cabinet/Desk', 'Tuck it away', '3');
INSERT INTO `catalogue_items` VALUES ('297', 'chair_polyfon', '2', '1', '1', '1.10', '0,0,0', '0', '1', '1', '26', '297', 'Dining Chair', 'Metallic seating experience', '3');
INSERT INTO `catalogue_items` VALUES ('298', 'table_polyfon', '1', '2', '2', '0.80', '0,0,0', '0', '1', '1', '26', '298', 'Large Coffee Table', 'For larger gatherings', '4');
INSERT INTO `catalogue_items` VALUES ('299', 'table_polyfon_med', '1', '2', '2', '1.00', '0,0,0', '0', '1', '1', '26', '299', 'Large Coffee Table', 'For larger gatherings', '3');
INSERT INTO `catalogue_items` VALUES ('300', 'table_polyfon_small', '1', '2', '2', '0.90', '0,0,0', '0', '1', '1', '26', '300', 'Small Coffee Table', 'For serving a stylish latte', '1');
INSERT INTO `catalogue_items` VALUES ('301', 'smooth_table_polyfon', '1', '2', '2', '0.90', '0,0,0', '0', '1', '1', '26', '301', 'Large Dining Table', 'For larger gatherings', '4');
INSERT INTO `catalogue_items` VALUES ('302', 'stand_polyfon_z', '1', '1', '1', '0.70', '0,0,0', '0', '1', '1', '26', '302', 'Shelf', 'Tidy up', '1');
INSERT INTO `catalogue_items` VALUES ('303', 'shelves_polyfon', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '26', '303', 'Bookcase', 'For the arty pad', '4');
INSERT INTO `catalogue_items` VALUES ('304', 'present_gen1', '1', '1', '1', '1.00', '0,0,0', '0', '0', '0', '-1', '0', '', '', '0');
INSERT INTO `catalogue_items` VALUES ('305', 'present_gen2', '1', '1', '1', '1.00', '0,0,0', '0', '0', '0', '-1', '0', '', '', '0');
INSERT INTO `catalogue_items` VALUES ('306', 'present_gen3', '1', '1', '1', '1.00', '0,0,0', '0', '0', '0', '-1', '0', '', '', '0');
INSERT INTO `catalogue_items` VALUES ('307', 'present_gen4', '1', '1', '1', '1.00', '0,0,0', '0', '0', '0', '-1', '0', '', '', '0');
INSERT INTO `catalogue_items` VALUES ('308', 'present_gen5', '1', '1', '1', '1.00', '0,0,0', '0', '0', '0', '-1', '0', '', '', '0');
INSERT INTO `catalogue_items` VALUES ('309', 'present_gen6', '1', '1', '1', '1.00', '0,0,0', '0', '0', '0', '-1', '0', '', '', '0');
INSERT INTO `catalogue_items` VALUES ('313', 'giftflowers', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '28', '313', 'Vase of Flowers', 'Guaranteed to stay fresh', '4');
INSERT INTO `catalogue_items` VALUES ('314', 'plant_rose', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '28', '314', 'Cut Roses', 'Sleek and chic', '3');
INSERT INTO `catalogue_items` VALUES ('315', 'plant_sunflower', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '28', '315', 'Cut Sunflower', 'For happy Habbos', '3');
INSERT INTO `catalogue_items` VALUES ('316', 'plant_yukka', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '28', '316', 'Yukka Plant', 'Easy to care for', '3');
INSERT INTO `catalogue_items` VALUES ('317', 'plant_pineapple', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '28', '317', 'Pineapple Plant', 'Needs loving glances', '3');
INSERT INTO `catalogue_items` VALUES ('318', 'plant_bonsai', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '28', '318', 'Bonsai Tree', 'You can be sure it lives', '3');
INSERT INTO `catalogue_items` VALUES ('319', 'plant_big_cactus', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '28', '319', 'Mature Cactus', 'Habbo Dreams monster in hiding! Shhhh', '3');
INSERT INTO `catalogue_items` VALUES ('320', 'plant_fruittree', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '28', '320', 'Fruit Tree', 'Great yield and sweet fruit', '3');
INSERT INTO `catalogue_items` VALUES ('321', 'plant_small_cactus', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '28', '321', 'Small Cactus', 'Even less watering than the real world', '1');
INSERT INTO `catalogue_items` VALUES ('322', 'plant_maze', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '28', '322', 'Maze shrubbery', 'Labyrinths Galore!', '5');
INSERT INTO `catalogue_items` VALUES ('323', 'plant_mazegate', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '28', '323', 'Maze Shrubbery Gate', 'Labyrinths Galore!', '6');
INSERT INTO `catalogue_items` VALUES ('324', 'plant_bulrush', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '28', '324', 'Bulrush', 'Ideal for the riverside', '3');
INSERT INTO `catalogue_items` VALUES ('325', 'chair_plasto*16', '2', '1', '1', '1.00', '#ffffff,#CC3399,#ffffff,#CC3399', '0', '1', '1', '29', '325', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('326', 'chair_plasto*15', '2', '1', '1', '1.00', '#ffffff,#FF97BA,#ffffff,#FF97BA', '0', '1', '1', '29', '326', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('327', 'chair_plasto*5', '2', '1', '1', '1.00', '#ffffff,#54ca00,#ffffff,#54ca00', '0', '1', '1', '29', '327', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('328', 'chair_plasto', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '29', '328', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('329', 'chair_plasto*8', '2', '1', '1', '1.00', '#ffffff,#c38d1a,#ffffff,#c38d1a', '0', '1', '1', '29', '329', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('330', 'chair_plasto*7', '2', '1', '1', '1.00', '#ffffff,#ff6d00,#ffffff,#ff6d00', '0', '1', '1', '29', '330', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('331', 'chair_plasto*1', '2', '1', '1', '1.00', '#ffffff,#ff1f08,#ffffff,#ff1f08', '0', '1', '1', '29', '331', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('332', 'chair_plasto*4', '2', '1', '1', '1.00', '#ffffff,#ccddff,#ffffff,#ccddff', '0', '1', '1', '29', '332', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('333', 'chair_plasto*6', '2', '1', '1', '1.00', '#ffffff,#3444ff,#ffffff,#3444ff', '0', '1', '1', '29', '333', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('334', 'chair_plasto*3', '2', '1', '1', '1.00', '#ffffff,#ffee00,#ffffff,#ffee00', '0', '1', '1', '29', '334', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('335', 'chair_plasto*2', '2', '1', '1', '1.00', '#ffffff,#99DCCC,#ffffff,#99DCCc', '0', '1', '1', '29', '335', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('336', 'table_plasto_square*15', '1', '1', '1', '1.10', '#ffffff,#FF97BA', '0', '1', '1', '29', '336', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('337', 'table_plasto_square*14', '1', '1', '1', '1.10', '#ffffff,#CC3399', '0', '1', '1', '29', '337', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('338', 'table_plasto_square*1', '1', '1', '1', '1.10', '#ffffff,#ff1f08', '0', '1', '1', '29', '338', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('339', 'table_plasto_square*7', '1', '1', '1', '1.10', '#ffffff,#ff6d00', '0', '1', '1', '29', '339', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('340', 'table_plasto_square', '1', '1', '1', '1.10', '0,0,0', '0', '1', '1', '29', '340', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('341', 'table_plasto_square*2', '1', '1', '1', '1.10', '#ffffff,#99DCCC', '0', '1', '1', '29', '341', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('342', 'table_plasto_square*4', '1', '1', '1', '1.10', '#ffffff,#ccddff', '0', '1', '1', '29', '342', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('343', 'table_plasto_square*6', '1', '1', '1', '1.10', '#ffffff,#3444ff', '0', '1', '1', '29', '343', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('344', 'table_plasto_square*3', '1', '1', '1', '1.10', '#ffffff,#ffee00', '0', '1', '1', '29', '344', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('345', 'table_plasto_square*9', '1', '1', '1', '1.10', '#ffffff,#533e10', '0', '1', '1', '29', '345', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('346', 'table_plasto_square*5', '1', '1', '1', '1.10', '#ffffff,#54ca00', '0', '1', '1', '29', '346', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('347', 'table_plasto_square*8', '1', '1', '1', '1.10', '#ffffff,#c38d1a', '0', '1', '1', '29', '347', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('348', 'table_plasto_round*15', '1', '2', '2', '1.10', '#ffffff,#FF97BA', '0', '1', '1', '29', '348', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('349', 'table_plasto_round*14', '1', '2', '2', '1.10', '#ffffff,#CC3399', '0', '1', '1', '29', '349', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('350', 'table_plasto_round*7', '1', '2', '2', '1.10', '#ffffff,#ff6d00', '0', '1', '1', '29', '350', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('351', 'table_plasto_round*1', '1', '2', '2', '1.10', '#ffffff,#ff1f08', '0', '1', '1', '29', '351', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('352', 'table_plasto_round*2', '1', '2', '2', '1.10', '#ffffff,#99DCCC', '0', '1', '1', '29', '352', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('353', 'table_plasto_round*4', '1', '2', '2', '1.10', '#ffffff,#ccddff', '0', '1', '1', '29', '353', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('354', 'table_plasto_round*6', '1', '2', '2', '1.10', '#ffffff,#3444ff', '0', '1', '1', '29', '354', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('355', 'table_plasto_round*3', '1', '2', '2', '1.10', '#ffffff,#ffee00', '0', '1', '1', '29', '355', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('356', 'table_plasto_round*9', '1', '2', '2', '1.10', '#ffffff,#533e10', '0', '1', '1', '29', '356', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('357', 'table_plasto_round', '1', '2', '2', '1.10', '0,0,0', '0', '1', '1', '29', '357', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('358', 'table_plasto_round*5', '1', '2', '2', '1.10', '#ffffff,#54ca00', '0', '1', '1', '29', '358', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('359', 'table_plasto_round*8', '1', '2', '2', '1.10', '#ffffff,#c38d1a', '0', '1', '1', '29', '359', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('360', 'table_plasto_bigsquare*15', '1', '2', '2', '1.10', '#ffffff,#FF97BA', '0', '1', '1', '29', '360', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('361', 'table_plasto_bigsquare*14', '1', '2', '2', '1.10', '#ffffff,#CC3399', '0', '1', '1', '29', '361', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('362', 'table_plasto_bigsquare*7', '1', '2', '2', '1.10', '#ffffff,#ff6d00', '0', '1', '1', '29', '362', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('363', 'table_plasto_bigsquare*1', '1', '2', '2', '1.10', '#ffffff,#ff1f08', '0', '1', '1', '29', '363', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('364', 'table_plasto_bigsquare*2', '1', '2', '2', '1.10', '#ffffff,#99DCCC', '0', '1', '1', '29', '364', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('365', 'table_plasto_bigsquare', '1', '2', '2', '1.10', '0,0,0', '0', '1', '1', '29', '365', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('366', 'table_plasto_bigsquare*8', '1', '2', '2', '1.10', '#ffffff,#c38d1a', '0', '1', '1', '29', '366', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('367', 'table_plasto_bigsquare*5', '1', '2', '2', '1.10', '#ffffff,#54ca00', '0', '1', '1', '29', '367', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('368', 'table_plasto_bigsquare*9', '1', '2', '2', '1.10', '#ffffff,#533e10', '0', '1', '1', '29', '368', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('369', 'table_plasto_bigsquare*3', '1', '2', '2', '1.10', '#ffffff,#ffee00', '0', '1', '1', '29', '369', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('370', 'table_plasto_bigsquare*6', '1', '2', '2', '1.10', '#ffffff,#3444ff', '0', '1', '1', '29', '370', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('371', 'table_plasto_bigsquare*4', '1', '2', '2', '1.10', '#ffffff,#ccddff', '0', '1', '1', '29', '371', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('372', 'table_plasto_4leg*6', '1', '2', '2', '1.10', '#ffffff,#3444ff', '0', '1', '1', '29', '372', 'Occasional table Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('373', 'table_plasto_4leg*1', '1', '2', '2', '1.10', '#ffffff,#ff1f08', '0', '1', '1', '29', '373', 'Square Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('374', 'table_plasto_4leg*3', '1', '2', '2', '1.10', '#ffffff,#ffee00', '0', '1', '1', '29', '374', 'Round Dining Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('375', 'table_plasto_4leg*9', '1', '2', '2', '1.10', '#ffffff,#533e10', '0', '1', '1', '29', '375', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('376', 'table_plasto_4leg', '1', '2', '2', '1.10', '0,0,0', '0', '1', '1', '29', '376', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('377', 'table_plasto_4leg*5', '1', '2', '2', '1.10', '#ffffff,#54ca00', '0', '1', '1', '29', '377', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('378', 'table_plasto_4leg*2', '1', '2', '2', '1.10', '#ffffff,#99DCCC', '0', '1', '1', '29', '378', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('379', 'table_plasto_4leg*8', '1', '2', '2', '1.10', '#ffffff,#c38d1a', '0', '1', '1', '29', '379', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('380', 'table_plasto_4leg*7', '1', '2', '2', '1.10', '#ffffff,#ff6d00', '0', '1', '1', '29', '380', 'Occasional table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('381', 'table_plasto_4leg*10', '1', '2', '2', '1.10', '#ffffff,#ccddff', '0', '1', '1', '29', '381', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('382', 'table_plasto_4leg*15', '1', '2', '2', '1.10', '#ffffff,#FF97BA', '0', '1', '1', '29', '382', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('383', 'table_plasto_4leg*16', '1', '2', '2', '1.10', '#ffffff,#CC3399', '0', '1', '1', '29', '383', 'Occasional Table', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('384', 'chair_plasty', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '29', '384', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('385', 'chair_plasty*1', '2', '1', '1', '1.00', '#ffffff,#8EB5D1,#ffffff,#8EB5D1', '0', '1', '1', '29', '385', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('386', 'chair_plasty*2', '2', '1', '1', '1.00', '#ffffff,#ff9900,#ffffff,#ff9900', '0', '1', '1', '29', '386', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('387', 'chair_plasty*3', '2', '1', '1', '1.00', '#ffffff,#ff2200,#ffffff,#ff2200', '0', '1', '1', '29', '387', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('388', 'chair_plasty*4', '2', '1', '1', '1.00', '#ffffff,#00cc00,#ffffff,#00cc00', '0', '1', '1', '29', '388', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('389', 'chair_plasty*4', '2', '1', '1', '1.00', '#ffffff,#0033CC,#ffffff,#0033CC', '0', '1', '1', '29', '389', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('390', 'chair_plasty*4', '2', '1', '1', '1.00', '#ffffff,#333333,#ffffff,#333333', '0', '1', '1', '29', '390', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('391', 'chair_plasty*7', '2', '1', '1', '1.00', '#ffffff,#99DCCc,#ffffff,#99DCCc', '0', '1', '1', '29', '391', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('392', 'chair_plasty*8', '2', '1', '1', '1.00', '#ffffff,#c38d1a,#ffffff,#c38d1a', '0', '1', '1', '29', '392', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('393', 'chair_plasty*9', '2', '1', '1', '1.00', '#ffffff,#533e10,#ffffff,#533e10', '0', '1', '1', '29', '393', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('394', 'chair_plasty*10', '2', '1', '1', '1.00', '#ffffff,#CC3399,#ffffff,#CC3399', '0', '1', '1', '29', '394', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('395', 'chair_plasty*11', '2', '1', '1', '1.00', '#ffffff,#FF97BA,#ffffff,#FF97BA', '0', '1', '1', '29', '395', 'Plastic Pod Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('396', 'chair_plasto*9', '2', '1', '1', '1.00', '#ffffff,#533e10,#ffffff,#533e10', '0', '1', '1', '29', '396', 'Chair', 'Hip plastic furniture', '3');
INSERT INTO `catalogue_items` VALUES ('397', 'shelves_basic', '1', '2', '1', '1.00', '0,0,0', '0', '1', '1', '31', '397', 'Pura Shelves', 'Pura Series 404 shelves', '3');
INSERT INTO `catalogue_items` VALUES ('398', 'bar_basic', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '31', '398', 'A Pura Minibar', 'A Pura series 300 minibar', '4');
INSERT INTO `catalogue_items` VALUES ('399', 'fridge', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '31', '399', 'Pura Refridgerator', 'Keep cool with a chilled snack or drink', '6');
INSERT INTO `catalogue_items` VALUES ('400', 'lamp_basic', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '31', '400', 'Pura Lamp', 'Switch on the atmosphere with this sophisticated light', '3');
INSERT INTO `catalogue_items` VALUES ('401', 'bed_budgetb', '3', '2', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '31', '401', 'White Plain Double Bed', 'Sweet dreams for two', '3');
INSERT INTO `catalogue_items` VALUES ('402', 'bed_budgetb_one', '3', '1', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '31', '402', 'White Plain Single Bed', 'All you need for a good night\'s kip', '3');
INSERT INTO `catalogue_items` VALUES ('403', 'bed_budget', '3', '2', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#ABD0D2,#ABD0D2,#ABD0D2', '0', '1', '1', '31', '403', 'Aqua Plain Double Bed', 'Sweet dreams for two', '3');
INSERT INTO `catalogue_items` VALUES ('404', 'bed_budget_one', '3', '1', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#ABD0D2,#ABD0D2,#ABD0D2', '0', '1', '1', '31', '404', 'Aqua Plain Single Bed', 'All you need for a good night\'s kip', '3');
INSERT INTO `catalogue_items` VALUES ('405', 'bed_budgetb', '3', '2', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FF99BC,#FF99BC,#FF99BC', '0', '1', '1', '31', '405', 'Pink Plain Double Bed', 'Sweet dreams for two', '3');
INSERT INTO `catalogue_items` VALUES ('406', 'bed_budgetb_one', '3', '1', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FF99BC,#FF99BC,#FF99BC', '0', '1', '1', '31', '406', 'Pink Plain Single Bed', 'All you need for a good night\'s kip', '3');
INSERT INTO `catalogue_items` VALUES ('407', 'bed_budget', '3', '2', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#525252,#525252,#525252', '0', '1', '1', '31', '407', 'Black Plain Double Bed', 'Sweet dreams for two', '3');
INSERT INTO `catalogue_items` VALUES ('408', 'bed_budget_one', '3', '1', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#525252,#525252,#525252', '0', '1', '1', '31', '408', 'Black Plain Single Bed', 'All you need for a good night\'s kip', '3');
INSERT INTO `catalogue_items` VALUES ('409', 'bed_budgetb', '3', '2', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#F7EBBC,#F7EBBC,#F7EBBC', '0', '1', '1', '31', '409', 'Beige Plain Double Bed', 'Sweet dreams for two', '3');
INSERT INTO `catalogue_items` VALUES ('410', 'bed_budgetb_one', '3', '1', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#F7EBBC,#F7EBBC,#F7EBBC', '0', '1', '1', '31', '410', 'Beige Plain Single Bed', 'All you need for a good night\'s kip', '3');
INSERT INTO `catalogue_items` VALUES ('411', 'bed_budget', '3', '2', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#5EAAF8,#5EAAF8,#5EAAF8', '0', '1', '1', '31', '411', 'Blue Plain Single Bed', 'Sweet dreams for two', '3');
INSERT INTO `catalogue_items` VALUES ('412', 'bed_budget_one', '3', '1', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#5EAAF8,#5EAAF8,#5EAAF8', '0', '1', '1', '31', '412', 'Blue Plain Single Bed', 'All you need for a good night\'s kip', '3');
INSERT INTO `catalogue_items` VALUES ('413', 'bed_budgetb', '3', '2', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#92D13D,#92D13D,#92D13D', '0', '1', '1', '31', '413', 'Green Plain Single Bed', 'Sweet dreams for two', '3');
INSERT INTO `catalogue_items` VALUES ('414', 'bed_budgetb_one', '3', '1', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#92D13D,#92D13D,#92D13D', '0', '1', '1', '31', '414', 'Green Plain Single Bed', 'All you need for a good night\'s kip', '3');
INSERT INTO `catalogue_items` VALUES ('415', 'bed_budget', '3', '2', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFD837,#FFD837,#FFD837', '0', '1', '1', '31', '415', 'Yellow Plain Single Bed', 'Sweet dreams for two', '3');
INSERT INTO `catalogue_items` VALUES ('416', 'bed_budget_one', '3', '1', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFD837,#FFD837,#FFD837', '0', '1', '1', '31', '416', 'Yellow Plain Single Bed', 'All you need for a good night\'s kip', '3');
INSERT INTO `catalogue_items` VALUES ('417', 'bed_budgetb', '3', '2', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#E14218,#E14218,#E14218', '0', '1', '1', '31', '417', 'Red Plain Single Bed', 'Sweet dreams for two', '3');
INSERT INTO `catalogue_items` VALUES ('418', 'bed_budgetb_one', '3', '1', '3', '2.00', '#FFFFFF,#FFFFFF,#FFFFFF,#E14218,#E14218,#E14218', '0', '1', '1', '31', '418', 'Red Plain Single Bed', 'All you need for a good night\'s kip', '3');
INSERT INTO `catalogue_items` VALUES ('419', 'rclr_sofa', '2', '2', '1', '1.00', '0,0,0', '0', '1', '1', '-1', '419', 'Recycler Sofa', 'Handmade...', '25');
INSERT INTO `catalogue_items` VALUES ('420', 'rclr_chair', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '-1', '420', 'Recycler Chair', 'Handmade...', '25');
INSERT INTO `catalogue_items` VALUES ('421', 'rclr_garden', '1', '1', '3', '0.00', '0,0,0', '0', '1', '1', '-1', '421', 'Recycler Garden', 'Give them water!', '25');
INSERT INTO `catalogue_items` VALUES ('422', 'queue_tile1*0', '1', '1', '1', '0.20', '#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '33', '422', 'White Habbo Roller', 'The power of movement', '5');
INSERT INTO `catalogue_items` VALUES ('423', 'queue_tile1*1', '1', '1', '1', '0.20', '#ffffff,#FF7C98,#ffffff,#ffffff', '0', '1', '1', '33', '423', 'Pink Habbo Roller', 'The power of movement', '5');
INSERT INTO `catalogue_items` VALUES ('424', 'queue_tile1*2', '1', '1', '1', '0.20', '#ffffff,#FF3333,#ffffff,#ffffff', '0', '1', '1', '33', '424', 'Red Habbo Roller', 'The power of movement', '5');
INSERT INTO `catalogue_items` VALUES ('425', 'queue_tile1*3', '1', '1', '1', '0.20', '#ffffff,#67c39c,#ffffff,#ffffff', '0', '1', '1', '33', '425', 'Aqua Habbo Roller', 'The power of movement', '5');
INSERT INTO `catalogue_items` VALUES ('426', 'queue_tile1*4', '1', '1', '1', '0.20', '#ffffff,#FFAA2B,#ffffff,#ffffff', '0', '1', '1', '33', '426', 'Gold Habbo Roller', 'The power of movement', '5');
INSERT INTO `catalogue_items` VALUES ('427', 'queue_tile1*5', '1', '1', '1', '0.20', '#ffffff,#555A37,#ffffff,#ffffff', '0', '1', '1', '33', '427', 'Knight Habbo Roller', 'The power of movement', '5');
INSERT INTO `catalogue_items` VALUES ('428', 'queue_tile1*6', '1', '1', '1', '0.20', '#ffffff,#A2E8FA,#ffffff,#ffffff', '0', '1', '1', '33', '428', 'Blue Habbo Roller', 'The power of movement', '5');
INSERT INTO `catalogue_items` VALUES ('429', 'queue_tile1*7', '1', '1', '1', '0.20', '#ffffff,#FC5AFF,#ffffff,#ffffff', '0', '1', '1', '33', '429', 'Purple Habbo Roller', 'The power of movement', '5');
INSERT INTO `catalogue_items` VALUES ('430', 'queue_tile1*8', '1', '1', '1', '0.20', '#ffffff,#1E8AA5,#ffffff,#ffffff', '0', '1', '1', '33', '430', 'Navy Habbo Roller', 'The power of movement', '5');
INSERT INTO `catalogue_items` VALUES ('431', 'queue_tile1*9', '1', '1', '1', '0.20', '#ffffff,#9AFF60,#ffffff,#ffffff', '0', '1', '1', '33', '431', 'Green Habbo Roller', 'The power of movement', '5');
INSERT INTO `catalogue_items` VALUES ('432', 'grand_piano*1', '1', '2', '2', '0.00', '#FFFFFF,#FF8B8B,#FFFFFF', '0', '1', '1', '34', '432', 'Rose Quartz Grand Piano', 'Chopin\'s revolutionary instrument', '10');
INSERT INTO `catalogue_items` VALUES ('433', 'romantique_pianochair*1', '2', '1', '1', '1.00', '#FFFFFF,#FF8B8B,#FFFFFF', '0', '1', '1', '34', '433', 'Rose Quartz Piano Stool', 'Here sat the legend of 1900', '2');
INSERT INTO `catalogue_items` VALUES ('434', 'romantique_divan*1', '2', '2', '1', '0.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FF8B8B', '0', '1', '1', '34', '434', 'Rose Quartz Chaise-Longue', 'Recline in continental comfort', '6');
INSERT INTO `catalogue_items` VALUES ('435', 'romantique_chair*1', '2', '1', '1', '1.00', '#FFFFFF,#FF8B8B,#FFFFFF', '0', '1', '1', '34', '435', 'Rose Quartz Chair', 'Elegant seating for elegant Habbos', '5');
INSERT INTO `catalogue_items` VALUES ('436', 'romantique_divider*1', '1', '2', '1', '0.00', '#FF8B8B,#FF8B8B,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '34', '436', 'Rose Quartz Screen', 'Beauty lies within', '6');
INSERT INTO `catalogue_items` VALUES ('437', 'romantique_smalltabl*1', '1', '1', '1', '1.00', '#FFFFFF,#FF8B8B,#FFFFFF', '0', '1', '1', '34', '437', 'Rose Quartz Tray Table', 'Every tray needs a table...', '4');
INSERT INTO `catalogue_items` VALUES ('438', 'wallmirror', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '34', '438', 'Wall Mirror', 'Mirror, mirror on the wall', '4');
INSERT INTO `catalogue_items` VALUES ('439', 'romantique_tray2', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '34', '439', 'Treats Tray', 'Spoil yourself', '5');
INSERT INTO `catalogue_items` VALUES ('440', 'rom_lamp', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '34', '440', 'Crystal Lamp', 'Light up your life', '6');
INSERT INTO `catalogue_items` VALUES ('441', 'romantique_mirrortabl', '1', '1', '1', '1.00', '0,0,0', '0', '1', '1', '34', '441', 'Dressing Table', 'Get ready for your big date', '8');
INSERT INTO `catalogue_items` VALUES ('442', 'carpet_standard', '4', '3', '5', '0.00', '0,0,0', '0', '1', '1', '35', '442', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('443', 'carpet_standard*a', '4', '3', '5', '0.00', '#55AC00,#55AC00,#55AC00', '0', '1', '1', '35', '443', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('444', 'carpet_standard*b', '4', '3', '5', '0.00', '#336666,#336666,#336666', '0', '1', '1', '35', '444', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('445', 'carpet_standard*1', '4', '3', '5', '0.00', '#ff1f08', '0', '1', '1', '35', '445', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('446', 'carpet_standard*2', '4', '3', '5', '0.00', '#99DCCC', '0', '1', '1', '35', '446', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('447', 'carpet_standard*3', '4', '3', '5', '0.00', '#ffee00', '0', '1', '1', '35', '447', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('448', 'carpet_standard*4', '4', '3', '5', '0.00', '#ccddff', '0', '1', '1', '35', '448', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('449', 'carpet_standard*5', '4', '3', '5', '0.00', '#ddccff', '0', '1', '1', '35', '449', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('450', 'carpet_standard*6', '4', '3', '5', '0.00', '#777777', '0', '1', '1', '35', '450', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('451', 'carpet_standard*7', '4', '3', '5', '0.00', '#99CCFF,#99CCFF,#99CCFF', '0', '1', '1', '35', '451', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('452', 'carpet_standard*8', '4', '3', '5', '0.00', '#999966,#999966,#999966', '0', '1', '1', '35', '452', 'Floor Rug', 'Available in a variety of colours', '3');
INSERT INTO `catalogue_items` VALUES ('453', 'carpet_soft', '4', '2', '4', '0.00', '', '0', '1', '1', '35', '453', 'Soft Wool Rug', 'Soft Wool Rug', '3');
INSERT INTO `catalogue_items` VALUES ('454', 'carpet_soft*1', '4', '2', '4', '0.00', '#CC3333', '0', '1', '1', '35', '454', 'Soft Wool Rug', 'Soft Wool Rug', '3');
INSERT INTO `catalogue_items` VALUES ('455', 'carpet_soft*2', '4', '2', '4', '0.00', '#66FFFF', '0', '1', '1', '35', '455', 'Soft Wool Rug', 'Soft Wool Rug', '3');
INSERT INTO `catalogue_items` VALUES ('456', 'carpet_soft*3', '4', '2', '4', '0.00', '#FFCC99', '0', '1', '1', '35', '456', 'Soft Wool Rug', 'Soft Wool Rug', '3');
INSERT INTO `catalogue_items` VALUES ('457', 'carpet_soft*4', '4', '2', '4', '0.00', '#FFCCFF', '0', '1', '1', '35', '457', 'Soft Wool Rug', 'Soft Wool Rug', '3');
INSERT INTO `catalogue_items` VALUES ('458', 'carpet_soft*5', '4', '2', '4', '0.00', '#FFFF66', '0', '1', '1', '35', '458', 'Soft Wool Rug', 'Soft Wool Rug', '3');
INSERT INTO `catalogue_items` VALUES ('459', 'carpet_soft*6', '4', '2', '4', '0.00', '#669933', '0', '1', '1', '35', '459', 'Soft Wool Rug', 'Soft Wool Rug', '3');
INSERT INTO `catalogue_items` VALUES ('460', 'doormat_love', '4', '1', '1', '0.00', '0,0,0', '0', '1', '1', '35', '460', 'Doormat', 'Welcome Habbos in style', '1');
INSERT INTO `catalogue_items` VALUES ('461', 'doormat_plain', '4', '1', '1', '0.00', '0,0,0', '0', '1', '1', '35', '461', 'Doormat', 'Available in a variety of colours', '1');
INSERT INTO `catalogue_items` VALUES ('462', 'doormat_plain*1', '4', '1', '1', '0.00', '#ff1f08', '0', '1', '1', '35', '462', 'Doormat', 'Available in a variety of colours', '1');
INSERT INTO `catalogue_items` VALUES ('463', 'doormat_plain*2', '4', '1', '1', '0.00', '#99DCCC', '0', '1', '1', '35', '463', 'Doormat', 'Available in a variety of colours', '1');
INSERT INTO `catalogue_items` VALUES ('464', 'doormat_plain*3', '4', '1', '1', '0.00', '#ffee00', '0', '1', '1', '35', '464', 'Doormat', 'Available in a variety of colours', '1');
INSERT INTO `catalogue_items` VALUES ('465', 'doormat_plain*4', '4', '1', '1', '0.00', '#ccddff', '0', '1', '1', '35', '465', 'Doormat', 'Available in a variety of colours', '1');
INSERT INTO `catalogue_items` VALUES ('466', 'doormat_plain*5', '4', '1', '1', '0.00', '#ddccff', '0', '1', '1', '35', '466', 'Doormat', 'Available in a variety of colours', '1');
INSERT INTO `catalogue_items` VALUES ('467', 'doormat_plain*6', '4', '1', '1', '0.00', '#777777', '0', '1', '1', '35', '467', 'Doormat', 'Available in a variety of colours', '1');
INSERT INTO `catalogue_items` VALUES ('468', 'carpet_armas', '4', '2', '4', '0.00', '0,0,0', '0', '1', '1', '35', '468', 'Hand-Woven Rug', 'Adds instant warmth', '3');
INSERT INTO `catalogue_items` VALUES ('469', 'carpet_polar', '4', '2', '3', '0.00', '#ffffff,#ffffff,#ffffff', '0', '1', '1', '35', '469', 'Faux-Fur Bear Rug', 'For cuddling up on', '4');
INSERT INTO `catalogue_items` VALUES ('470', 'carpet_polar*2', '4', '2', '3', '0.00', '#ccddff,#ccddff,#ffffff', '0', '1', '1', '35', '470', 'Blue Bear Rug', 'Snuggle up on a Funky bear rug...', '10');
INSERT INTO `catalogue_items` VALUES ('471', 'carpet_polar*3', '4', '2', '3', '0.00', '#ffee99,#ffee99,#ffffff', '0', '1', '1', '35', '471', 'Yellow Bear Rug', 'Snuggle up on a Funky bear rug...', '10');
INSERT INTO `catalogue_items` VALUES ('472', 'carpet_polar*4', '4', '2', '3', '0.00', '#ddffaa,#ddffaa,#ffffff', '0', '1', '1', '35', '472', 'Green Bear Rug', 'Snuggle up on a Funky bear rug...', '10');
INSERT INTO `catalogue_items` VALUES ('473', 'poster 52', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '36', '473', 'Hockey stick', 'whack that ball!', '3');
INSERT INTO `catalogue_items` VALUES ('474', 'poster 53', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '36', '474', 'Hockey stick', 'whack that ball!', '3');
INSERT INTO `catalogue_items` VALUES ('475', 'poster 54', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '36', '475', 'Hockey stick', 'whack that ball!', '3');
INSERT INTO `catalogue_items` VALUES ('476', 'hockey_score', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '36', '476', 'Scoreboard', '...for keeping your score', '6');
INSERT INTO `catalogue_items` VALUES ('477', 'legotrophy', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '36', '477', 'Basketball Trophy', 'For the winning team', '3');
INSERT INTO `catalogue_items` VALUES ('478', 'poster 51', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '36', '478', 'Basketball Hoop', '2 points for every basket', '3');
INSERT INTO `catalogue_items` VALUES ('479', 'carpet_legocourt', '4', '3', '3', '0.00', '0,0,0', '0', '1', '1', '36', '479', 'Basketball Court', 'Line up your slam dunk', '3');
INSERT INTO `catalogue_items` VALUES ('480', 'bench_lego', '2', '4', '1', '1.00', '0,0,0', '0', '1', '1', '36', '480', 'Team Bench', 'For your reserve players', '6');
INSERT INTO `catalogue_items` VALUES ('481', 'sporttrack1*1', '4', '2', '2', '0.00', '#ffffff,#e4592d,#ffffff', '0', '1', '1', '36', '481', 'Sport track straight', 'Let\'s get sporty!', '3');
INSERT INTO `catalogue_items` VALUES ('482', 'sporttrack1*2', '4', '2', '2', '0.00', '#ffffff,#62818b,#ffffff', '0', '1', '1', '36', '482', 'Sport track straight asphalt', 'Let\'s get sporty!', '3');
INSERT INTO `catalogue_items` VALUES ('483', 'sporttrack1*3', '4', '2', '2', '0.00', '#ffffff,#5cb800,#ffffff', '0', '1', '1', '36', '483', 'Sport track straight grass', 'Let\'s get sporty!', '3');
INSERT INTO `catalogue_items` VALUES ('484', 'sporttrack2*1', '4', '2', '2', '0.00', '#ffffff,#e4592d,#ffffff', '0', '1', '1', '36', '484', 'Sport corner', 'Let\'s get sporty!', '3');
INSERT INTO `catalogue_items` VALUES ('485', 'sporttrack2*2', '4', '2', '2', '0.00', '#ffffff,#62818b,#ffffff', '0', '1', '1', '36', '485', 'Sport corner asphalt', 'Let\'s get sporty!', '3');
INSERT INTO `catalogue_items` VALUES ('486', 'sporttrack2*3', '4', '2', '2', '0.00', '#ffffff,#5cb800,#ffffff', '0', '1', '1', '36', '486', 'Sport corner grass', 'Let\'s get sporty!', '3');
INSERT INTO `catalogue_items` VALUES ('488', 'sporttrack3*1', '4', '2', '2', '0.00', '#ffffff,#e4592d,#ffffff', '0', '1', '1', '36', '488', 'Sport goal', 'Let\'s get sporty!', '3');
INSERT INTO `catalogue_items` VALUES ('487', 'sporttrack3*3', '4', '2', '2', '0.00', '#ffffff,#5cb800,#ffffff', '0', '1', '1', '36', '487', 'Sport goal grass', 'Let\'s get sporty!', '3');
INSERT INTO `catalogue_items` VALUES ('489', 'sporttrack3*2', '4', '2', '2', '0.00', '#ffffff,#62818b,#ffffff', '0', '1', '1', '36', '489', 'Sport goal asphalt', 'Let\'s get sporty!', '3');
INSERT INTO `catalogue_items` VALUES ('490', 'footylamp', '4', '2', '2', '0.00', '0,0,0', '0', '1', '1', '36', '490', 'Football Lamp', 'Let\'s get sporty!', '10');
INSERT INTO `catalogue_items` VALUES ('491', 'door', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '37', '491', 'Telephone Box', 'Dr Who?', '5');
INSERT INTO `catalogue_items` VALUES ('492', 'doorC', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '37', '492', 'Portaloo', 'In a hurry?', '4');
INSERT INTO `catalogue_items` VALUES ('493', 'doorB', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '37', '493', 'Wardrobe', 'Narnia this way!', '3');
INSERT INTO `catalogue_items` VALUES ('494', 'teleport_door', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '37', '494', 'Teleport Door', 'Teleport Door', '6');
INSERT INTO `catalogue_items` VALUES ('495', 'sound_machine', '1', '1', '1', '0.00', '#FFFFFF,#FFFFFF,#828282,#FFFFFF', '0', '1', '1', '38', '495', 'Sound Machine', 'Creating fancy sounds', '8');
INSERT INTO `catalogue_items` VALUES ('496', 'sound_set_4', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '38', '496', 'Ambient 1', 'Chilled out beats', '5');
INSERT INTO `catalogue_items` VALUES ('497', 'sound_set_8', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '38', '497', 'Ambient 2', 'Mellow electric grooves', '5');
INSERT INTO `catalogue_items` VALUES ('498', 'sound_set_6', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '38', '498', 'Ambient 3', 'Background ambience loops', '5');
INSERT INTO `catalogue_items` VALUES ('499', 'sound_set_5', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '38', '499', 'Ambient 4', 'The dark side of Habbo', '5');
INSERT INTO `catalogue_items` VALUES ('500', 'sound_set_26', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '38', '500', 'Groove 1', 'Bollywood Beats!', '5');
INSERT INTO `catalogue_items` VALUES ('501', 'sound_set_27', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '38', '501', 'Groove 2', 'Jingle Bells will never be the same...', '5');
INSERT INTO `catalogue_items` VALUES ('502', 'sound_set_17', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '38', '502', 'Groove 3', 'Jive\'s Alive!', '5');
INSERT INTO `catalogue_items` VALUES ('503', 'sound_set_18', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '38', '503', 'Groove 4', 'Listen while you tan', '5');
INSERT INTO `catalogue_items` VALUES ('504', 'sound_set_3', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '38', '504', 'Electronic 1', 'Chilled grooves', '5');
INSERT INTO `catalogue_items` VALUES ('505', 'sound_set_9', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '38', '505', 'Electronic 2', 'Mystical ambient soundscapes', '5');
INSERT INTO `catalogue_items` VALUES ('506', 'jukebox*1', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '39', '506', 'Jukebox', 'For your Happy Days!', '5');
INSERT INTO `catalogue_items` VALUES ('507', 'sound_set_46', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '507', 'Club 1', 'De bada bada bo!', '5');
INSERT INTO `catalogue_items` VALUES ('508', 'sound_set_47', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '508', 'Club 2', 'Storm the UKCharts!', '5');
INSERT INTO `catalogue_items` VALUES ('509', 'sound_set_48', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '509', 'Club 3', 'Sweet party beat', '5');
INSERT INTO `catalogue_items` VALUES ('510', 'sound_set_49', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '510', 'Club 4', 'You will belong', '5');
INSERT INTO `catalogue_items` VALUES ('511', 'sound_set_50', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '511', 'Club 5', 'The harder generation', '5');
INSERT INTO `catalogue_items` VALUES ('512', 'sound_set_51', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '512', 'Club 6', 'Bop to the beat', '5');
INSERT INTO `catalogue_items` VALUES ('513', 'sound_set_25', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '513', 'Dance 1', 'Actually, it\'s Partay!', '5');
INSERT INTO `catalogue_items` VALUES ('514', 'sound_set_29', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '514', 'Dance 2', 'Electronic house', '5');
INSERT INTO `catalogue_items` VALUES ('515', 'sound_set_31', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '515', 'Dance 3', 'House loops', '5');
INSERT INTO `catalogue_items` VALUES ('516', 'sound_set_11', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '516', 'Dance 4', 'Music you can really sink your teeth into', '5');
INSERT INTO `catalogue_items` VALUES ('517', 'sound_set_13', '1', '1', '1', '0.10', '0,0,0', '0', '1', '1', '39', '517', 'Dance 5', 'Let Music be the food of Habbo', '5');
INSERT INTO `catalogue_items` VALUES ('518', 'sound_set_35', '1', '0', '1', '0.10', '0,0,0', '0', '1', '1', '39', '518', 'Dance 6', 'Groovelicious', '5');
INSERT INTO `catalogue_items` VALUES ('519', 'jukebox*1', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '40', '519', 'Jukebox', 'For your Happy Days!', '5');
INSERT INTO `catalogue_items` VALUES ('520', 'guitar_v', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '40', '520', 'V-Guitar', 'V-Guitar', '5');
INSERT INTO `catalogue_items` VALUES ('521', 'guitar_skull', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '40', '521', 'Skull-Guitar', 'Skull-Guitar', '5');
INSERT INTO `catalogue_items` VALUES ('522', 'sound_set_21', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '40', '522', 'Rock 1', 'Headbanging riffs', '5');
INSERT INTO `catalogue_items` VALUES ('523', 'sound_set_28', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '40', '523', 'Rock 2', 'Head for the pit!', '5');
INSERT INTO `catalogue_items` VALUES ('524', 'sound_set_33', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '40', '524', 'Rock 3', 'Guitar solo set', '5');
INSERT INTO `catalogue_items` VALUES ('525', 'sound_set_40', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '40', '525', 'Rock 4', 'Dude? Cheese!', '5');
INSERT INTO `catalogue_items` VALUES ('526', 'sound_set_34', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '40', '526', 'Rock 5', 'For guitar heroes', '5');
INSERT INTO `catalogue_items` VALUES ('527', 'sound_set_38', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '40', '527', 'Rock 6', 'Rock and Roses!', '5');
INSERT INTO `catalogue_items` VALUES ('528', 'sound_set_39', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '40', '528', 'Rock 7', 'Rock with a roll', '5');
INSERT INTO `catalogue_items` VALUES ('529', 'sound_set_41', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '40', '529', 'Rock 8', 'Burning Riffs', '5');
INSERT INTO `catalogue_items` VALUES ('530', 'jukebox*1', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '41', '530', 'Jukebox', 'For your Happy Days!', '5');
INSERT INTO `catalogue_items` VALUES ('531', 'sound_set_1', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '531', 'Habbo Sounds 1', 'Get the party started!', '5');
INSERT INTO `catalogue_items` VALUES ('532', 'sound_set_12', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '532', 'Habbo Sounds 2', 'Unusual as Standard', '5');
INSERT INTO `catalogue_items` VALUES ('533', 'sound_set_2', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '533', 'Habbo Sounds 3', 'Get the party started!', '5');
INSERT INTO `catalogue_items` VALUES ('534', 'sound_set_24', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '534', 'Habbo Sounds 4', 'It\'s all about the Pentiums, baby!', '5');
INSERT INTO `catalogue_items` VALUES ('535', 'sound_set_43', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '535', 'SFX 1', 'Beware zombies!', '5');
INSERT INTO `catalogue_items` VALUES ('536', 'sound_set_20', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '536', 'SFX 2', 'Musical heaven', '5');
INSERT INTO `catalogue_items` VALUES ('537', 'sound_set_22', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '537', 'SFX 3', 'With a hamper full of sounds, not sarnies', '5');
INSERT INTO `catalogue_items` VALUES ('538', 'sound_set_23', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '538', 'SFX 4', 'Don\'t be afraid of the dark', '5');
INSERT INTO `catalogue_items` VALUES ('539', 'sound_set_7', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '539', 'SFX 5', 'Sound effects for Furni', '5');
INSERT INTO `catalogue_items` VALUES ('540', 'sound_set_30', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '540', 'Instrumental 1', 'Moments in love', '5');
INSERT INTO `catalogue_items` VALUES ('541', 'sound_set_32', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '41', '541', 'Instrumental 2', 'Piano concert set', '5');
INSERT INTO `catalogue_items` VALUES ('542', 'sound_set_36', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '542', 'Latin Love 1', 'For adult minded', '5');
INSERT INTO `catalogue_items` VALUES ('543', 'sound_set_60', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '543', 'Latin Love 2', 'Love and affection!', '5');
INSERT INTO `catalogue_items` VALUES ('544', 'sound_set_61', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '544', 'Latin Love 3', 'Straight from the heart', '5');
INSERT INTO `catalogue_items` VALUES ('545', 'sound_set_55', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '545', 'RnB Grooves 1', 'Can you fill me in?', '5');
INSERT INTO `catalogue_items` VALUES ('546', 'sound_set_56', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '546', 'RnB Grooves 2', 'Get down tonight!', '5');
INSERT INTO `catalogue_items` VALUES ('547', 'sound_set_57', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '547', 'RnB Grooves 3', 'Feel the groove', '5');
INSERT INTO `catalogue_items` VALUES ('548', 'sound_set_58', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '548', 'RnB Grooves 4', 'Sh-shake it!', '5');
INSERT INTO `catalogue_items` VALUES ('549', 'sound_set_59', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '549', 'RnB Grooves 5', 'Urban break beats', '5');
INSERT INTO `catalogue_items` VALUES ('550', 'sound_set_15', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '550', 'RnB Grooves 6', 'Unadulterated essentials', '5');
INSERT INTO `catalogue_items` VALUES ('551', 'sound_set_10', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '551', 'Hip Hop Beats 1', 'Made from real Boy Bands!', '5');
INSERT INTO `catalogue_items` VALUES ('552', 'sound_set_14', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '552', 'Hip Hop Beats 2', 'Rock them bodies', '5');
INSERT INTO `catalogue_items` VALUES ('553', 'sound_set_16', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '553', 'Hip Hop Beats 3', 'Ferry, ferry good!', '5');
INSERT INTO `catalogue_items` VALUES ('554', 'sound_set_19', '0', '0', '0', '0.10', '0,0,0', '0', '1', '1', '42', '554', 'Hip Hop Beats 4', 'Shake your body!', '5');
INSERT INTO `catalogue_items` VALUES ('555', 'prizetrophy6*1', '1', '1', '1', '0.00', '#ffffff,#ffffff,#FFDD3F', '0', '1', '1', '43', '555', 'Champion trophy', 'Glittery gold', '12');
INSERT INTO `catalogue_items` VALUES ('556', 'prizetrophy6*2', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff', '0', '1', '1', '43', '556', 'Champion trophy', 'Shiny silver', '10');
INSERT INTO `catalogue_items` VALUES ('557', 'prizetrophy6*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#996600', '0', '1', '1', '43', '557', 'Champion trophy', 'Breathtaking bronze', '8');
INSERT INTO `catalogue_items` VALUES ('558', 'prizetrophy3*1', '1', '1', '1', '0.00', '#ffffff,#ffffff,#FFDD3F', '0', '1', '1', '43', '558', 'Globe trophy', 'Glittery gold', '12');
INSERT INTO `catalogue_items` VALUES ('559', 'prizetrophy3*2', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff', '0', '1', '1', '43', '559', 'Globe trophy', 'Shiny silver', '10');
INSERT INTO `catalogue_items` VALUES ('560', 'prizetrophy3*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#996600', '0', '1', '1', '43', '560', 'Globe trophy', 'Breathtaking bronze', '8');
INSERT INTO `catalogue_items` VALUES ('561', 'prizetrophy4*1', '1', '1', '1', '0.00', '#ffffff,#ffffff,#FFDD3F', '0', '1', '1', '43', '561', 'Fish trophy', 'Glittery gold', '12');
INSERT INTO `catalogue_items` VALUES ('562', 'prizetrophy4*2', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff', '0', '1', '1', '43', '562', 'Fish trophy', 'Shiny silver', '10');
INSERT INTO `catalogue_items` VALUES ('563', 'prizetrophy4*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#996600', '0', '1', '1', '43', '563', 'Fish trophy', 'Breathtaking bronze', '8');
INSERT INTO `catalogue_items` VALUES ('564', 'prizetrophy*1', '1', '1', '1', '0.00', '#ffffff,#ffffff,#FFDD3F', '0', '1', '1', '43', '564', 'Classic trophy', 'Glittery gold', '12');
INSERT INTO `catalogue_items` VALUES ('565', 'prizetrophy*2', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff', '0', '1', '1', '43', '565', 'Classic trophy', 'Shiny silver', '10');
INSERT INTO `catalogue_items` VALUES ('566', 'prizetrophy*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#996600', '0', '1', '1', '43', '566', 'Classic trophy', 'Breathtaking bronze', '8');
INSERT INTO `catalogue_items` VALUES ('567', 'prizetrophy5*1', '1', '1', '1', '0.00', '#ffffff,#ffffff,#FFDD3F', '0', '1', '1', '43', '567', 'Duo trophy', 'Glittery gold', '12');
INSERT INTO `catalogue_items` VALUES ('568', 'prizetrophy5*2', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff', '0', '1', '1', '43', '568', 'Duo trophy', 'Shiny silver', '10');
INSERT INTO `catalogue_items` VALUES ('569', 'prizetrophy5*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#996600', '0', '1', '1', '43', '569', 'Duo trophy', 'Breathtaking bronze', '8');
INSERT INTO `catalogue_items` VALUES ('570', 'prizetrophy2*1', '1', '1', '1', '0.00', '#ffffff,#ffffff,#FFDD3F', '0', '1', '1', '43', '570', 'Duck trophy', 'Glittery gold', '12');
INSERT INTO `catalogue_items` VALUES ('571', 'prizetrophy2*2', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff', '0', '1', '1', '43', '571', 'Duck trophy', 'Shiny silver', '10');
INSERT INTO `catalogue_items` VALUES ('572', 'prizetrophy2*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#996600', '0', '1', '1', '43', '572', 'Duck trophy', 'Breathtaking bronze', '8');
INSERT INTO `catalogue_items` VALUES ('573', 'prizetrophy8*1', '1', '1', '1', '0.00', '#ffffff,#ffffff,#FFDD3F', '0', '1', '1', '43', '573', 'Duo trophy', 'Glittery gold', '12');
INSERT INTO `catalogue_items` VALUES ('574', 'prizetrophy9*1', '1', '1', '1', '0.00', '#ffffff,#ffffff,#FFDD3F', '0', '1', '1', '43', '574', 'Champion trophy', 'Glittery gold', '12');
INSERT INTO `catalogue_items` VALUES ('575', 'poster 20', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '575', 'Snowman Poster', 'A new use for carrots!', '3');
INSERT INTO `catalogue_items` VALUES ('576', 'poster 21', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '576', 'Angel Poster', 'See that halo gleam!', '3');
INSERT INTO `catalogue_items` VALUES ('577', 'poster 22', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '577', 'Winter Wonderland Poster', 'A chilly snowy scene', '3');
INSERT INTO `catalogue_items` VALUES ('578', 'poster 23', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '578', 'Santa Poster Poster', 'The jolly fat man himself', '3');
INSERT INTO `catalogue_items` VALUES ('579', 'poster 24', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '579', 'Three Wise Men Poster', 'Following the star!', '3');
INSERT INTO `catalogue_items` VALUES ('580', 'poster 25', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '580', 'Reindeer Poster', 'Doing a hard night\'s work', '3');
INSERT INTO `catalogue_items` VALUES ('581', 'poster 26', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '581', 'Stocking', 'Hung yours up yet?', '3');
INSERT INTO `catalogue_items` VALUES ('582', 'poster 27', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '582', 'Holly Garland', 'Deck the halls!', '3');
INSERT INTO `catalogue_items` VALUES ('583', 'poster 28', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '583', 'Tinsel (silver)', 'A touch of festive sparkle', '3');
INSERT INTO `catalogue_items` VALUES ('584', 'poster 29', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '584', 'Tinsel (gold)', 'A touch of festive sparkle', '3');
INSERT INTO `catalogue_items` VALUES ('585', 'poster 30', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '585', 'Mistletoe', 'Pucker up', '3');
INSERT INTO `catalogue_items` VALUES ('586', 'poster 46', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '586', 'Small gold star', 'Twinkle, twinkle', '3');
INSERT INTO `catalogue_items` VALUES ('587', 'poster 47', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '587', 'Small silver star', 'Twinkle, twinkle', '3');
INSERT INTO `catalogue_items` VALUES ('588', 'poster 48', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '588', 'Large gold star', 'All that glitters...', '3');
INSERT INTO `catalogue_items` VALUES ('589', 'poster 49', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '44', '589', 'Large silver star', 'All that glitters...', '3');
INSERT INTO `catalogue_items` VALUES ('590', 'tree3', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '590', 'Christmas Tree 1', 'Any presents under it yet?', '6');
INSERT INTO `catalogue_items` VALUES ('591', 'tree4', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '591', 'Christmas Tree 2', 'Any presents under it yet?', '6');
INSERT INTO `catalogue_items` VALUES ('592', 'tree5', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '592', 'Christmas Tree 3', 'Any presents under it yet?', '6');
INSERT INTO `catalogue_items` VALUES ('593', 'triplecandle', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '593', 'Electric Candles', 'No need to worry about wax drips', '3');
INSERT INTO `catalogue_items` VALUES ('594', 'turkey', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '594', 'Roast Turkey', 'Where\'s the cranberry sauce?', '3');
INSERT INTO `catalogue_items` VALUES ('595', 'house', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '595', 'Gingerbread House', 'Good enough to eat', '3');
INSERT INTO `catalogue_items` VALUES ('596', 'pudding', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '596', 'Christmas Pudding', 'Will you get the lucky sixpence?', '3');
INSERT INTO `catalogue_items` VALUES ('597', 'xmasduck', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '597', 'Christmas Rubber Duck', 'A right Christmas quacker!', '2');
INSERT INTO `catalogue_items` VALUES ('598', 'hyacinth1', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '598', 'Pink Hyacinth', 'Beautiful bulb', '3');
INSERT INTO `catalogue_items` VALUES ('599', 'hyacinth2', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '599', 'Blue Hyacinth', 'Beautiful bulb', '3');
INSERT INTO `catalogue_items` VALUES ('600', 'joulutahti', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '600', 'Poinsetta', 'Christmas in a pot', '3');
INSERT INTO `catalogue_items` VALUES ('601', 'rcandle', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '601', 'Red Candle', 'Xmas tea light', '3');
INSERT INTO `catalogue_items` VALUES ('602', 'wcandle', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '44', '602', 'White Candle', 'Xmas tea light', '3');
INSERT INTO `catalogue_items` VALUES ('603', 'easterduck', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '45', '603', 'Wannabe bunny', 'Can you tell what it is yet?', '2');
INSERT INTO `catalogue_items` VALUES ('604', 'birdie', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '45', '604', 'Pop-up Egg', 'Cheep (!) and cheerful', '5');
INSERT INTO `catalogue_items` VALUES ('605', 'basket', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '45', '605', 'Basket Of Eggs', 'Eggs-actly what you want for Easter', '4');
INSERT INTO `catalogue_items` VALUES ('606', 'bunny', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '45', '606', 'Squidgy Bunny', 'Yours to cuddle up to', '3');
INSERT INTO `catalogue_items` VALUES ('607', 'pumpkin', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '46', '607', 'Pumpkin Lamp', 'Cast a spooky glow', '6');
INSERT INTO `catalogue_items` VALUES ('608', 'poster 42', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '46', '608', 'Spiderweb', 'Not something you want to run into', '3');
INSERT INTO `catalogue_items` VALUES ('609', 'poster 43', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '46', '609', 'Chains', 'Shake, rattle and roll!', '4');
INSERT INTO `catalogue_items` VALUES ('610', 'skullcandle', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '46', '610', 'Skull Candle Holder', 'Alas poor Yorrick...', '4');
INSERT INTO `catalogue_items` VALUES ('611', 'poster 45', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '46', '611', 'Skeleton', 'Needs a few more Habburgers', '3');
INSERT INTO `catalogue_items` VALUES ('612', 'poster 44', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '46', '612', 'Mummy', 'Beware the curse...', '3');
INSERT INTO `catalogue_items` VALUES ('613', 'deadduck', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '46', '613', 'Dead Duck', 'Blood, but no guts', '2');
INSERT INTO `catalogue_items` VALUES ('614', 'deadduck2', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '46', '614', 'Dead Duck 2', 'Someone forgot to feed me...', '2');
INSERT INTO `catalogue_items` VALUES ('615', 'deadduck3', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '46', '615', 'Dead Duck 3', 'With added ectoplasm', '2');
INSERT INTO `catalogue_items` VALUES ('616', 'poster 50', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '46', '616', 'Bat Poster', 'flap, flap, screech, screech...', '3');
INSERT INTO `catalogue_items` VALUES ('617', 'poster 501', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '46', '617', 'Jolly Roger', 'For pirates everywhere', '3');
INSERT INTO `catalogue_items` VALUES ('618', 'ham2', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '46', '618', 'Eaten Ham', 'Looks like you\'re too late!', '3');
INSERT INTO `catalogue_items` VALUES ('619', 'habboween_crypt', '1', '2', '2', '0.00', '0,0,0', '0', '1', '1', '46', '619', 'HabboWheen Crypt', 'HabboWheen Crypt', '5');
INSERT INTO `catalogue_items` VALUES ('625', 'habboween_grass', '4', '2', '2', '0.00', '0,0,0', '0', '1', '1', '46', '625', 'HabboWheen Grass', 'HabboWheen Grass', '5');
INSERT INTO `catalogue_items` VALUES ('620', 'valeduck', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '47', '620', 'Valentine\'s Duck', 'He\'s lovestruck', '2');
INSERT INTO `catalogue_items` VALUES ('621', 'hal_cauldron', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '46', '621', 'HabboWheen Cauldron', 'HabboWheen Cauldron', '5');
INSERT INTO `catalogue_items` VALUES ('622', 'hal_grave', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '46', '622', 'HabboWheen Grave', 'HabboWheen Grave', '5');
INSERT INTO `catalogue_items` VALUES ('623', 'heartsofa', '2', '2', '1', '1.00', '0,0,0', '0', '1', '1', '47', '623', 'Heart Sofa', 'Perfect for snuggling up on', '5');
INSERT INTO `catalogue_items` VALUES ('624', 'statue', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '47', '624', 'Cupid Statue', 'Watch out for those arrows!', '3');
INSERT INTO `catalogue_items` VALUES ('626', 'heart', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '47', '626', 'Giant Heart', 'Full of love', '6');
INSERT INTO `catalogue_items` VALUES ('627', 'post.it.vd', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '47', '627', 'Heart stickies', 'Heart stickies', '3');
INSERT INTO `catalogue_items` VALUES ('628', 'carpet_valentine', '4', '2', '7', '0.00', '0,0,0', '0', '1', '1', '47', '628', 'Red Carpet', 'For making an entrance.', '15');
INSERT INTO `catalogue_items` VALUES ('629', 'val_heart', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '47', '629', 'Valentine\'s lamp', 'Valentine\'s lamp', '10');
INSERT INTO `catalogue_items` VALUES ('630', 'plant_valentinerose*1', '1', '1', '1', '0.00', '#FFFFFF,#FF1E1E,#FFFFFF,#FFFFFF', '0', '1', '1', '47', '630', 'Valentine rose Red', 'For a love that it true', '8');
INSERT INTO `catalogue_items` VALUES ('631', 'plant_valentinerose*2', '1', '1', '1', '0.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '47', '631', 'White Valentine Rose', 'Your secret love', '8');
INSERT INTO `catalogue_items` VALUES ('632', 'plant_valentinerose*3', '1', '1', '1', '0.00', '#FFFFFF,#ffee00,#FFFFFF,#FFFFFF', '0', '1', '1', '47', '632', 'Yellow Valentine Rose', 'Relight your passions', '8');
INSERT INTO `catalogue_items` VALUES ('633', 'plant_valentinerose*4', '1', '1', '1', '0.00', '#FFFFFF,#ffbbcf,#FFFFFF,#FFFFFF', '0', '1', '1', '47', '633', 'Pink Valentine\'s Rose', 'Be mine!', '8');
INSERT INTO `catalogue_items` VALUES ('634', 'plant_valentinerose*5', '1', '1', '1', '0.00', '#FFFFFF,#CC3399,#FFFFFF,#FFFFFF', '0', '1', '1', '47', '634', 'Purple Valentine Rose', 'For that special pixel', '8');
INSERT INTO `catalogue_items` VALUES ('635', 'sofa_silo*2', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#525252,#525252,#525252,#525252', '0', '1', '1', '48', '635', 'Two-Seater Sofa', 'Cushioned, understated comfort', '3');
INSERT INTO `catalogue_items` VALUES ('636', 'sofachair_silo*2', '1', '1', '1', '1.00', '#ffffff,#ffffff,#525252,#525252', '0', '1', '1', '48', '636', 'Armchair', 'Large, but worth it', '3');
INSERT INTO `catalogue_items` VALUES ('637', 'table_silo_small*2', '1', '1', '1', '1.10', '#ffffff,#525252', '0', '1', '1', '48', '637', 'Occasional Table', 'For those random moments', '1');
INSERT INTO `catalogue_items` VALUES ('638', 'divider_silo3*2', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#525252', '1', '1', '1', '48', '638', 'Gate (lockable)', 'Form following function', '6');
INSERT INTO `catalogue_items` VALUES ('639', 'divider_silo1*2', '1', '1', '1', '1.00', '#ffffff,#525252', '0', '1', '1', '48', '639', 'Corner Shelf', 'Neat and natty', '3');
INSERT INTO `catalogue_items` VALUES ('640', 'chair_silo*2', '2', '1', '1', '1.10', '#ffffff,#ffffff,#525252,#525252', '0', '1', '1', '48', '640', 'Dining Chair', 'Keep it simple', '3');
INSERT INTO `catalogue_items` VALUES ('641', 'safe_silo*2', '1', '1', '1', '1.20', '#ffffff,#525252', '0', '1', '1', '48', '641', 'Safe Minibar', 'Totally shatter-proof!', '3');
INSERT INTO `catalogue_items` VALUES ('642', 'barchair_silo*2', '1', '1', '1', '0.90', '#ffffff,#525252', '0', '1', '1', '48', '642', 'Bar Stool', 'Practical and convenient', '3');
INSERT INTO `catalogue_items` VALUES ('643', 'table_silo_med*2', '1', '2', '2', '0.90', '#ffffff,#525252', '0', '1', '1', '48', '643', 'Coffee Table', 'Wipe clean and unobtrusive', '3');
INSERT INTO `catalogue_items` VALUES ('644', 'sofa_silo*3', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '48', '644', 'Two-Seater Sofa', 'Cushioned, understated comfort', '3');
INSERT INTO `catalogue_items` VALUES ('645', 'sofachair_silo*3', '1', '1', '1', '1.00', '#ffffff,#ffffff,#FFFFFF,#FFFFFF', '0', '1', '1', '48', '645', 'Armchair', 'Large, but worth it', '3');
INSERT INTO `catalogue_items` VALUES ('646', 'table_silo_small*3', '1', '1', '1', '1.10', '#ffffff,#FFFFFF', '0', '1', '1', '48', '646', 'Occasional Table', 'For those random moments', '1');
INSERT INTO `catalogue_items` VALUES ('647', 'divider_silo3*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#FFFFFF', '1', '1', '1', '48', '647', 'Gate (lockable)', 'Form following function', '6');
INSERT INTO `catalogue_items` VALUES ('648', 'divider_silo1*3', '1', '1', '1', '1.00', '#ffffff,#FFFFFF', '0', '1', '1', '48', '648', 'Corner Shelf', 'Neat and natty', '3');
INSERT INTO `catalogue_items` VALUES ('649', 'chair_silo*3', '2', '1', '1', '1.10', '#ffffff,#ffffff,#FFFFFF,#FFFFFF', '0', '1', '1', '48', '649', 'Dining Chair', 'Keep it simple', '3');
INSERT INTO `catalogue_items` VALUES ('650', 'safe_silo*3', '1', '1', '1', '1.20', '#ffffff,#FFFFFF', '0', '1', '1', '48', '650', 'Safe Minibar', 'Totally shatter-proof!', '3');
INSERT INTO `catalogue_items` VALUES ('651', 'barchair_silo*3', '1', '1', '1', '0.90', '#ffffff,#FFFFFF', '0', '1', '1', '48', '651', 'Bar Stool', 'Practical and convenient', '3');
INSERT INTO `catalogue_items` VALUES ('652', 'table_silo_med*3', '1', '2', '2', '0.90', '#ffffff,#FFFFFF', '0', '1', '1', '48', '652', 'Coffee Table', 'Wipe clean and unobtrusive', '3');
INSERT INTO `catalogue_items` VALUES ('653', 'sofa_silo*4', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#F7EBBC,#F7EBBC,#F7EBBC,#F7EBBC', '0', '1', '1', '48', '653', 'Two-Seater Sofa', 'Cushioned, understated comfort', '3');
INSERT INTO `catalogue_items` VALUES ('654', 'sofachair_silo*4', '1', '1', '1', '1.00', '#ffffff,#ffffff,#F7EBBC,#F7EBBC', '0', '1', '1', '48', '654', 'Armchair', 'Large, but worth it', '3');
INSERT INTO `catalogue_items` VALUES ('655', 'table_silo_small*4', '1', '1', '1', '1.10', '#ffffff,#F7EBBC', '0', '1', '1', '48', '655', 'Occasional Table', 'For those random moments', '1');
INSERT INTO `catalogue_items` VALUES ('656', 'divider_silo3*4', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#F7EBBC', '1', '1', '1', '48', '656', 'Gate (lockable)', 'Form following function', '6');
INSERT INTO `catalogue_items` VALUES ('657', 'divider_silo1*4', '1', '1', '1', '1.00', '#ffffff,#F7EBBC', '0', '1', '1', '48', '657', 'Corner Shelf', 'Neat and natty', '3');
INSERT INTO `catalogue_items` VALUES ('658', 'chair_silo*4', '2', '1', '1', '1.10', '#ffffff,#ffffff,#F7EBBC,#F7EBBC', '0', '1', '1', '48', '658', 'Dining Chair', 'Keep it simple', '3');
INSERT INTO `catalogue_items` VALUES ('659', 'safe_silo*4', '1', '1', '1', '1.20', '#ffffff,#F7EBBC', '0', '1', '1', '48', '659', 'Safe Minibar', 'Totally shatter-proof!', '3');
INSERT INTO `catalogue_items` VALUES ('660', 'barchair_silo*4', '1', '1', '1', '0.90', '#ffffff,#F7EBBC', '0', '1', '1', '48', '660', 'Bar Stool', 'Practical and convenient', '3');
INSERT INTO `catalogue_items` VALUES ('661', 'table_silo_med*4', '1', '2', '2', '0.90', '#ffffff,#F7EBBC', '0', '1', '1', '48', '661', 'Coffee Table', 'Wipe clean and unobtrusive', '3');
INSERT INTO `catalogue_items` VALUES ('662', 'sofa_silo*5', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#FF99BC,#FF99BC,#FF99BC,#FF99BC', '0', '1', '1', '48', '662', 'Two-Seater Sofa', 'Cushioned, understated comfort', '3');
INSERT INTO `catalogue_items` VALUES ('663', 'sofachair_silo*5', '1', '1', '1', '1.00', '#ffffff,#ffffff,#FF99BC,#FF99BC', '0', '1', '1', '48', '663', 'Armchair', 'Large, but worth it', '3');
INSERT INTO `catalogue_items` VALUES ('664', 'table_silo_small*5', '1', '1', '1', '1.10', '#ffffff,#FF99BC', '0', '1', '1', '48', '664', 'Occasional Table', 'For those random moments', '1');
INSERT INTO `catalogue_items` VALUES ('665', 'divider_silo3*5', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#FF99BC', '1', '1', '1', '48', '665', 'Gate (lockable)', 'Form following function', '6');
INSERT INTO `catalogue_items` VALUES ('666', 'divider_silo1*5', '1', '1', '1', '1.00', '#ffffff,#FF99BC', '0', '1', '1', '48', '666', 'Corner Shelf', 'Neat and natty', '3');
INSERT INTO `catalogue_items` VALUES ('667', 'chair_silo*5', '2', '1', '1', '1.10', '#ffffff,#ffffff,#FF99BC,#FF99BC', '0', '1', '1', '48', '667', 'Dining Chair', 'Keep it simple', '3');
INSERT INTO `catalogue_items` VALUES ('668', 'safe_silo*5', '1', '1', '1', '1.20', '#ffffff,#FF99BC', '0', '1', '1', '48', '668', 'Safe Minibar', 'Totally shatter-proof!', '3');
INSERT INTO `catalogue_items` VALUES ('669', 'barchair_silo*5', '1', '1', '1', '0.90', '#ffffff,#FF99BC', '0', '1', '1', '48', '669', 'Bar Stool', 'Practical and convenient', '3');
INSERT INTO `catalogue_items` VALUES ('670', 'table_silo_med*5', '1', '2', '2', '0.90', '#ffffff,#FF99BC', '0', '1', '1', '48', '670', 'Coffee Table', 'Wipe clean and unobtrusive', '3');
INSERT INTO `catalogue_items` VALUES ('671', 'sofa_silo*6', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#5EAAF8,#5EAAF8,#5EAAF8,#5EAAF8', '0', '1', '1', '48', '671', 'Two-Seater Sofa', 'Cushioned, understated comfort', '3');
INSERT INTO `catalogue_items` VALUES ('672', 'sofachair_silo*6', '1', '1', '1', '1.00', '#ffffff,#ffffff,#5EAAF8,#5EAAF8', '0', '1', '1', '48', '672', 'Armchair', 'Large, but worth it', '3');
INSERT INTO `catalogue_items` VALUES ('673', 'table_silo_small*6', '1', '1', '1', '1.10', '#ffffff,#5EAAF8', '0', '1', '1', '48', '673', 'Occasional Table', 'For those random moments', '1');
INSERT INTO `catalogue_items` VALUES ('674', 'divider_silo3*6', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#5EAAF8', '1', '1', '1', '48', '674', 'Gate (lockable)', 'Form following function', '6');
INSERT INTO `catalogue_items` VALUES ('675', 'divider_silo1*6', '1', '1', '1', '1.00', '#ffffff,#5EAAF8', '0', '1', '1', '48', '675', 'Corner Shelf', 'Neat and natty', '3');
INSERT INTO `catalogue_items` VALUES ('676', 'chair_silo*6', '2', '1', '1', '1.10', '#ffffff,#ffffff,#5EAAF8,#5EAAF8', '0', '1', '1', '48', '676', 'Dining Chair', 'Keep it simple', '3');
INSERT INTO `catalogue_items` VALUES ('677', 'safe_silo*6', '1', '1', '1', '1.20', '#ffffff,#5EAAF8', '0', '1', '1', '48', '677', 'Safe Minibar', 'Totally shatter-proof!', '3');
INSERT INTO `catalogue_items` VALUES ('678', 'barchair_silo*6', '1', '1', '1', '0.90', '#ffffff,#5EAAF8', '0', '1', '1', '48', '678', 'Bar Stool', 'Practical and convenient', '3');
INSERT INTO `catalogue_items` VALUES ('679', 'table_silo_med*6', '1', '2', '2', '0.90', '#ffffff,#5EAAF8', '0', '1', '1', '48', '679', 'Coffee Table', 'Wipe clean and unobtrusive', '3');
INSERT INTO `catalogue_items` VALUES ('680', 'sofa_silo*7', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#92D13D,#92D13D,#92D13D,#92D13D', '0', '1', '1', '48', '680', 'Two-Seater Sofa', 'Cushioned, understated comfort', '3');
INSERT INTO `catalogue_items` VALUES ('681', 'sofachair_silo*7', '1', '1', '1', '1.00', '#ffffff,#ffffff,#92D13D,#92D13D', '0', '1', '1', '48', '681', 'Armchair', 'Large, but worth it', '3');
INSERT INTO `catalogue_items` VALUES ('682', 'table_silo_small*7', '1', '1', '1', '1.10', '#ffffff,#92D13D', '0', '1', '1', '48', '682', 'Occasional Table', 'For those random moments', '1');
INSERT INTO `catalogue_items` VALUES ('683', 'divider_silo3*7', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#92D13D', '1', '1', '1', '48', '683', 'Gate (lockable)', 'Form following function', '6');
INSERT INTO `catalogue_items` VALUES ('684', 'divider_silo1*7', '1', '1', '1', '1.00', '#ffffff,#92D13D', '0', '1', '1', '48', '684', 'Corner Shelf', 'Neat and natty', '3');
INSERT INTO `catalogue_items` VALUES ('685', 'chair_silo*7', '2', '1', '1', '1.10', '#ffffff,#ffffff,#92D13D,#92D13D', '0', '1', '1', '48', '685', 'Dining Chair', 'Keep it simple', '3');
INSERT INTO `catalogue_items` VALUES ('686', 'safe_silo*7', '1', '1', '1', '1.20', '#ffffff,#92D13D', '0', '1', '1', '48', '686', 'Safe Minibar', 'Totally shatter-proof!', '3');
INSERT INTO `catalogue_items` VALUES ('687', 'barchair_silo*7', '1', '1', '1', '0.90', '#ffffff,#92D13D', '0', '1', '1', '48', '687', 'Bar Stool', 'Practical and convenient', '3');
INSERT INTO `catalogue_items` VALUES ('688', 'table_silo_med*7', '1', '2', '2', '0.90', '#ffffff,#92D13D', '0', '1', '1', '48', '688', 'Coffee Table', 'Wipe clean and unobtrusive', '3');
INSERT INTO `catalogue_items` VALUES ('689', 'sofa_silo*8', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#FFD837,#FFD837,#FFD837,#FFD837', '0', '1', '1', '48', '689', 'Two-Seater Sofa', 'Cushioned, understated comfort', '3');
INSERT INTO `catalogue_items` VALUES ('690', 'sofachair_silo*8', '1', '1', '1', '1.00', '#ffffff,#ffffff,#FFD837,#FFD837', '0', '1', '1', '48', '690', 'Armchair', 'Large, but worth it', '3');
INSERT INTO `catalogue_items` VALUES ('691', 'table_silo_small*8', '1', '1', '1', '1.10', '#ffffff,#FFD837', '0', '1', '1', '48', '691', 'Occasional Table', 'For those random moments', '1');
INSERT INTO `catalogue_items` VALUES ('692', 'divider_silo3*8', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#FFD837', '1', '1', '1', '48', '692', 'Gate (lockable)', 'Form following function', '6');
INSERT INTO `catalogue_items` VALUES ('693', 'divider_silo1*8', '1', '1', '1', '1.00', '#ffffff,#FFD837', '0', '1', '1', '48', '693', 'Corner Shelf', 'Neat and natty', '3');
INSERT INTO `catalogue_items` VALUES ('694', 'chair_silo*8', '2', '1', '1', '1.10', '#ffffff,#ffffff,#FFD837,#FFD837', '0', '1', '1', '48', '694', 'Dining Chair', 'Keep it simple', '3');
INSERT INTO `catalogue_items` VALUES ('695', 'safe_silo*8', '1', '1', '1', '1.20', '#ffffff,#FFD837', '0', '1', '1', '48', '695', 'Safe Minibar', 'Totally shatter-proof!', '3');
INSERT INTO `catalogue_items` VALUES ('696', 'barchair_silo*8', '1', '1', '1', '0.90', '#ffffff,#FFD837', '0', '1', '1', '48', '696', 'Bar Stool', 'Practical and convenient', '3');
INSERT INTO `catalogue_items` VALUES ('697', 'table_silo_med*8', '1', '2', '2', '0.90', '#ffffff,#FFD837', '0', '1', '1', '48', '697', 'Coffee Table', 'Wipe clean and unobtrusive', '3');
INSERT INTO `catalogue_items` VALUES ('698', 'sofa_silo*9', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#E14218,#E14218,#E14218,#E14218', '0', '1', '1', '48', '698', 'Two-Seater Sofa', 'Cushioned, understated comfort', '3');
INSERT INTO `catalogue_items` VALUES ('699', 'sofachair_silo*9', '1', '1', '1', '1.00', '#ffffff,#ffffff,#E14218,#E14218', '0', '1', '1', '48', '699', 'Armchair', 'Large, but worth it', '3');
INSERT INTO `catalogue_items` VALUES ('700', 'table_silo_small*9', '1', '1', '1', '1.10', '#ffffff,#E14218', '0', '1', '1', '48', '700', 'Occasional Table', 'For those random moments', '1');
INSERT INTO `catalogue_items` VALUES ('701', 'divider_silo3*9', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#E14218', '1', '1', '1', '48', '701', 'Gate (lockable)', 'Form following function', '6');
INSERT INTO `catalogue_items` VALUES ('702', 'divider_silo1*9', '1', '1', '1', '1.00', '#ffffff,#E14218', '0', '1', '1', '48', '702', 'Corner Shelf', 'Neat and natty', '3');
INSERT INTO `catalogue_items` VALUES ('703', 'chair_silo*9', '2', '1', '1', '1.10', '#ffffff,#ffffff,#E14218,#E14218', '0', '1', '1', '48', '703', 'Dining Chair', 'Keep it simple', '3');
INSERT INTO `catalogue_items` VALUES ('704', 'safe_silo*9', '1', '1', '1', '1.20', '#ffffff,#E14218', '0', '1', '1', '48', '704', 'Safe Minibar', 'Totally shatter-proof!', '3');
INSERT INTO `catalogue_items` VALUES ('705', 'barchair_silo*9', '1', '1', '1', '0.90', '#ffffff,#E14218', '0', '1', '1', '48', '705', 'Bar Stool', 'Practical and convenient', '3');
INSERT INTO `catalogue_items` VALUES ('706', 'table_silo_med*9', '1', '2', '2', '0.90', '#ffffff,#E14218', '0', '1', '1', '48', '706', 'Coffee Table', 'Wipe clean and unobtrusive', '3');
INSERT INTO `catalogue_items` VALUES ('707', 'chair_norja*2', '2', '1', '1', '1.00', '#ffffff,#ffffff,#525252,#525252', '0', '1', '1', '49', '707', 'Chair', 'Sleek and chic for each cheek', '3');
INSERT INTO `catalogue_items` VALUES ('708', 'couch_norja*2', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#525252,#525252,#525252,#525252', '0', '1', '1', '49', '708', 'Bench', 'Two can perch comfortably', '3');
INSERT INTO `catalogue_items` VALUES ('709', 'table_norja_med*2', '1', '2', '2', '0.90', '#ffffff,#525252', '0', '1', '1', '49', '709', 'Coffee Table', 'Elegance embodied', '3');
INSERT INTO `catalogue_items` VALUES ('710', 'shelves_norja*2', '1', '1', '1', '0.00', '#ffffff,#525252', '0', '1', '1', '49', '710', 'Bookcase', 'For nic naks and art deco books', '3');
INSERT INTO `catalogue_items` VALUES ('711', 'soft_sofachair_norja*2', '2', '1', '1', '1.00', '#ffffff,#525252,#525252', '0', '1', '1', '49', '711', 'iced sofachair', 'Soft iced sofachair', '3');
INSERT INTO `catalogue_items` VALUES ('712', 'soft_sofa_norja*2', '2', '2', '1', '1.00', '#ffffff,#525252,#ffffff,#525252,#525252,#525252', '0', '1', '1', '49', '712', 'iced sofa', 'A soft iced sofa', '4');
INSERT INTO `catalogue_items` VALUES ('713', 'divider_nor2*2', '1', '2', '1', '0.00', '#ffffff,#ffffff,#525252,#525252', '0', '1', '1', '49', '713', 'Ice Bar-Desk', 'Strong, yet soft looking', '3');
INSERT INTO `catalogue_items` VALUES ('714', 'divider_nor1*2', '1', '1', '1', '0.00', '#ffffff,#525252', '0', '1', '1', '49', '714', 'Ice Corner', 'Looks squishy, but isn\'t', '3');
INSERT INTO `catalogue_items` VALUES ('715', 'divider_nor3*2', '1', '1', '1', '0.00', '#ffffff,#ffffff,#525252,#525252', '1', '1', '1', '49', '715', 'Door (Lockable)', 'Do go through...', '6');
INSERT INTO `catalogue_items` VALUES ('716', 'divider_nor4*2', '1', '2', '1', '0.00', '#ffffff,#ffffff,#525252,#525252,#525252,#525252', '1', '1', '1', '49', '716', 'Iced Auto Shutter', 'Habbos, roll out!', '3');
INSERT INTO `catalogue_items` VALUES ('717', 'divider_nor5*2', '1', '1', '1', '0.00', '#ffffff,#525252,#525252,#525252,#525252,#525252', '1', '1', '1', '49', '717', 'Iced Angle', 'Cool cornering for you!', '3');
INSERT INTO `catalogue_items` VALUES ('718', 'chair_norja*3', '2', '1', '1', '1.00', '#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '49', '718', 'Chair', 'Sleek and chic for each cheek', '3');
INSERT INTO `catalogue_items` VALUES ('719', 'couch_norja*3', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '49', '719', 'Bench', 'Two can perch comfortably', '3');
INSERT INTO `catalogue_items` VALUES ('720', 'table_norja_med*3', '1', '2', '2', '0.90', '#ffffff,#ffffff', '0', '1', '1', '49', '720', 'Coffee Table', 'Elegance embodied', '3');
INSERT INTO `catalogue_items` VALUES ('721', 'shelves_norja*3', '1', '1', '1', '0.00', '#ffffff,#ffffff', '0', '1', '1', '49', '721', 'Bookcase', 'For nic naks and art deco books', '3');
INSERT INTO `catalogue_items` VALUES ('722', 'soft_sofachair_norja*3', '2', '1', '1', '1.00', '#ffffff,#ffffff,#ffffff', '0', '1', '1', '49', '722', 'iced sofachair', 'Soft iced sofachair', '3');
INSERT INTO `catalogue_items` VALUES ('723', 'soft_sofa_norja*3', '2', '2', '1', '1.00', '#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '49', '723', 'iced sofa', 'A soft iced sofa', '4');
INSERT INTO `catalogue_items` VALUES ('724', 'divider_nor2*3', '1', '2', '1', '0.00', '#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '49', '724', 'Ice Bar-Desk', 'Strong, yet soft looking', '3');
INSERT INTO `catalogue_items` VALUES ('725', 'divider_nor1*3', '1', '1', '1', '0.00', '#ffffff,#ffffff', '0', '1', '1', '49', '725', 'Ice Corner', 'Looks squishy, but isn\'t', '3');
INSERT INTO `catalogue_items` VALUES ('726', 'divider_nor3*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#ffffff', '1', '1', '1', '49', '726', 'Door (Lockable)', 'Do go through...', '6');
INSERT INTO `catalogue_items` VALUES ('727', 'divider_nor4*3', '1', '2', '1', '0.00', '#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff', '1', '1', '1', '49', '727', 'Iced Auto Shutter', 'Habbos, roll out!', '3');
INSERT INTO `catalogue_items` VALUES ('728', 'divider_nor5*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff', '1', '1', '1', '49', '728', 'Iced Angle', 'Cool cornering for you!', '3');
INSERT INTO `catalogue_items` VALUES ('729', 'chair_norja*4', '2', '1', '1', '1.00', '#ffffff,#ffffff,#ABD0D2,#ABD0D2', '0', '1', '1', '49', '729', 'Chair', 'Sleek and chic for each cheek', '3');
INSERT INTO `catalogue_items` VALUES ('730', 'couch_norja*4', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#ABD0D2,#ABD0D2,#ABD0D2,#ABD0D2', '0', '1', '1', '49', '730', 'Bench', 'Two can perch comfortably', '3');
INSERT INTO `catalogue_items` VALUES ('731', 'table_norja_med*4', '1', '2', '2', '0.90', '#ffffff,#ABD0D2', '0', '1', '1', '49', '731', 'Coffee Table', 'Elegance embodied', '3');
INSERT INTO `catalogue_items` VALUES ('732', 'shelves_norja*4', '1', '1', '1', '0.00', '#ffffff,#ABD0D2', '0', '1', '1', '49', '732', 'Bookcase', 'For nic naks and art deco books', '3');
INSERT INTO `catalogue_items` VALUES ('733', 'soft_sofachair_norja*4', '2', '1', '1', '1.00', '#ffffff,#ABD0D2,#ABD0D2', '0', '1', '1', '49', '733', 'iced sofachair', 'Soft iced sofachair', '3');
INSERT INTO `catalogue_items` VALUES ('734', 'soft_sofa_norja*4', '2', '2', '1', '1.00', '#ffffff,#ABD0D2,#ffffff,#ABD0D2,#ABD0D2,#ABD0D2', '0', '1', '1', '49', '734', 'iced sofa', 'A soft iced sofa', '4');
INSERT INTO `catalogue_items` VALUES ('735', 'divider_nor2*4', '1', '2', '1', '0.00', '#ffffff,#ffffff,#ABD0D2,#ABD0D2', '0', '1', '1', '49', '735', 'Ice Bar-Desk', 'Strong, yet soft looking', '3');
INSERT INTO `catalogue_items` VALUES ('736', 'divider_nor1*4', '1', '1', '1', '0.00', '#ffffff,#ABD0D2', '0', '1', '1', '49', '736', 'Ice Corner', 'Looks squishy, but isn\'t', '3');
INSERT INTO `catalogue_items` VALUES ('737', 'divider_nor3*4', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ABD0D2,#ABD0D2', '1', '1', '1', '49', '737', 'Door (Lockable)', 'Do go through...', '6');
INSERT INTO `catalogue_items` VALUES ('738', 'divider_nor4*4', '1', '2', '1', '0.00', '#ffffff,#ffffff,#ABD0D2,#ABD0D2,#ABD0D2,#ABD0D2', '1', '1', '1', '49', '738', 'Iced Auto Shutter', 'Habbos, roll out!', '3');
INSERT INTO `catalogue_items` VALUES ('739', 'divider_nor5*4', '1', '1', '1', '0.00', '#ffffff,#ABD0D2,#ABD0D2,#ABD0D2,#ABD0D2,#ABD0D2', '1', '1', '1', '49', '739', 'Iced Angle', 'Cool cornering for you!', '3');
INSERT INTO `catalogue_items` VALUES ('740', 'chair_norja*5', '2', '1', '1', '1.00', '#ffffff,#ffffff,#EE7EA4,#EE7EA4', '0', '1', '1', '49', '740', 'Chair', 'Sleek and chic for each cheek', '3');
INSERT INTO `catalogue_items` VALUES ('741', 'couch_norja*5', '2', '2', '1', '1.00', '#ffffff,#ffffff,#ffffff,#ffffff,#EE7EA4,#EE7EA4,#EE7EA4,#EE7EA4', '0', '1', '1', '49', '741', 'Bench', 'Two can perch comfortably', '3');
INSERT INTO `catalogue_items` VALUES ('742', 'table_norja_med*5', '1', '2', '2', '0.90', '#ffffff,#EE7EA4', '0', '1', '1', '49', '742', 'Coffee Table', 'Elegance embodied', '3');
INSERT INTO `catalogue_items` VALUES ('743', 'shelves_norja*5', '1', '1', '1', '0.00', '#ffffff,#EE7EA4', '0', '1', '1', '49', '743', 'Bookcase', 'For nic naks and art deco books', '3');
INSERT INTO `catalogue_items` VALUES ('744', 'soft_sofachair_norja*5', '2', '1', '1', '1.00', '#ffffff,#EE7EA4,#EE7EA4', '0', '1', '1', '49', '744', 'iced sofachair', 'Soft iced sofachair', '3');
INSERT INTO `catalogue_items` VALUES ('745', 'soft_sofa_norja*5', '2', '2', '1', '1.00', '#ffffff,#EE7EA4,#ffffff,#EE7EA4,#EE7EA4,#EE7EA4', '0', '1', '1', '49', '745', 'iced sofa', 'A soft iced sofa', '4');
INSERT INTO `catalogue_items` VALUES ('746', 'divider_nor2*5', '1', '2', '1', '0.00', '#ffffff,#ffffff,#EE7EA4,#EE7EA4', '0', '1', '1', '49', '746', 'Ice Bar-Desk', 'Strong, yet soft looking', '3');
INSERT INTO `catalogue_items` VALUES ('747', 'divider_nor1*5', '1', '1', '1', '0.00', '#ffffff,#EE7EA4', '0', '1', '1', '49', '747', 'Ice Corner', 'Looks squishy, but isn\'t', '3');
INSERT INTO `catalogue_items` VALUES ('748', 'divider_nor3*5', '1', '1', '1', '0.00', '#ffffff,#ffffff,#EE7EA4,#EE7EA4', '1', '1', '1', '49', '748', 'Door (Lockable)', 'Do go through...', '6');
INSERT INTO `catalogue_items` VALUES ('749', 'divider_nor4*5', '1', '2', '1', '0.00', '#ffffff,#ffffff,#EE7EA4,#EE7EA4,#EE7EA4,#EE7EA4', '1', '1', '1', '49', '749', 'Iced Auto Shutter', 'Habbos, roll out!', '3');
INSERT INTO `catalogue_items` VALUES ('750', 'divider_nor5*5', '1', '1', '1', '0.00', '#ffffff,#EE7EA4,#EE7EA4,#EE7EA4,#EE7EA4,#EE7EA4', '1', '1', '1', '49', '750', 'Iced Angle', 'Cool cornering for you!', '3');
INSERT INTO `catalogue_items` VALUES ('751', 'chair_norja*6', '2', '1', '1', '1.00', '#ffffff,#ffffff,#5EAAF8,#5EAAF8', '0', '1', '1', '49', '751', 'Chair', 'Sleek and chic for each cheek', '3');
INSERT INTO `catalogue_items` VALUES ('752', 'couch_norja*6', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#5EAAF8,#5EAAF8,#5EAAF8,#5EAAF8', '0', '1', '1', '49', '752', 'Bench', 'Two can perch comfortably', '3');
INSERT INTO `catalogue_items` VALUES ('753', 'table_norja_med*6', '1', '2', '2', '0.90', '#ffffff,#5EAAF8', '0', '1', '1', '49', '753', 'Coffee Table', 'Elegance embodied', '3');
INSERT INTO `catalogue_items` VALUES ('754', 'shelves_norja*6', '1', '1', '1', '0.00', '#ffffff,#5EAAF8', '0', '1', '1', '49', '754', 'Bookcase', 'For nic naks and art deco books', '3');
INSERT INTO `catalogue_items` VALUES ('755', 'soft_sofachair_norja*6', '2', '1', '1', '1.00', '#ffffff,#5EAAF8,#5EAAF8', '0', '1', '1', '49', '755', 'iced sofachair', 'Soft iced sofachair', '3');
INSERT INTO `catalogue_items` VALUES ('756', 'soft_sofa_norja*6', '2', '2', '1', '1.00', '#ffffff,#5EAAF8,#ffffff,#5EAAF8,#5EAAF8,#5EAAF8', '0', '1', '1', '49', '756', 'iced sofa', 'A soft iced sofa', '4');
INSERT INTO `catalogue_items` VALUES ('757', 'divider_nor2*6', '1', '2', '1', '0.00', '#ffffff,#ffffff,#5EAAF8,#5EAAF8', '0', '1', '1', '49', '757', 'Ice Bar-Desk', 'Strong, yet soft looking', '3');
INSERT INTO `catalogue_items` VALUES ('758', 'divider_nor1*6', '1', '1', '1', '0.00', '#ffffff,#5EAAF8', '0', '1', '1', '49', '758', 'Ice Corner', 'Looks squishy, but isn\'t', '3');
INSERT INTO `catalogue_items` VALUES ('759', 'divider_nor3*6', '1', '1', '1', '0.00', '#ffffff,#ffffff,#5EAAF8,#5EAAF8', '1', '1', '1', '49', '759', 'Door (Lockable)', 'Do go through...', '6');
INSERT INTO `catalogue_items` VALUES ('760', 'divider_nor4*6', '1', '2', '1', '0.00', '#ffffff,#ffffff,#5EAAF8,#5EAAF8,#5EAAF8,#5EAAF8', '1', '1', '1', '49', '760', 'Iced Auto Shutter', 'Habbos, roll out!', '3');
INSERT INTO `catalogue_items` VALUES ('761', 'divider_nor5*6', '1', '1', '1', '0.00', '#ffffff,#5EAAF8,#5EAAF8,#5EAAF8,#5EAAF8,#5EAAF8', '1', '1', '1', '49', '761', 'Iced Angle', 'Cool cornering for you!', '3');
INSERT INTO `catalogue_items` VALUES ('762', 'chair_norja*7', '2', '1', '1', '1.00', '#ffffff,#ffffff,#7CB135,#7CB135', '0', '1', '1', '49', '762', 'Chair', 'Sleek and chic for each cheek', '3');
INSERT INTO `catalogue_items` VALUES ('763', 'couch_norja*7', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#7CB135,#7CB135,#7CB135,#7CB135', '0', '1', '1', '49', '763', 'Bench', 'Two can perch comfortably', '3');
INSERT INTO `catalogue_items` VALUES ('764', 'table_norja_med*7', '1', '2', '2', '0.90', '#ffffff,#7CB135', '0', '1', '1', '49', '764', 'Coffee Table', 'Elegance embodied', '3');
INSERT INTO `catalogue_items` VALUES ('765', 'shelves_norja*7', '1', '1', '1', '0.00', '#ffffff,#7CB135', '0', '1', '1', '49', '765', 'Bookcase', 'For nic naks and art deco books', '3');
INSERT INTO `catalogue_items` VALUES ('766', 'soft_sofachair_norja*7', '2', '1', '1', '1.00', '#ffffff,#7CB135,#7CB135', '0', '1', '1', '49', '766', 'iced sofachair', 'Soft iced sofachair', '3');
INSERT INTO `catalogue_items` VALUES ('767', 'soft_sofa_norja*7', '2', '2', '1', '1.00', '#ffffff,#7CB135,#ffffff,#7CB135,#7CB135,#7CB135', '0', '1', '1', '49', '767', 'iced sofa', 'A soft iced sofa', '4');
INSERT INTO `catalogue_items` VALUES ('768', 'divider_nor2*7', '1', '2', '1', '0.00', '#ffffff,#ffffff,#7CB135,#7CB135', '0', '1', '1', '49', '768', 'Ice Bar-Desk', 'Strong, yet soft looking', '3');
INSERT INTO `catalogue_items` VALUES ('769', 'divider_nor1*7', '1', '1', '1', '0.00', '#ffffff,#7CB135', '0', '1', '1', '49', '769', 'Ice Corner', 'Looks squishy, but isn\'t', '3');
INSERT INTO `catalogue_items` VALUES ('770', 'divider_nor3*7', '1', '1', '1', '0.00', '#ffffff,#ffffff,#7CB135,#7CB135', '1', '1', '1', '49', '770', 'Door (Lockable)', 'Do go through...', '6');
INSERT INTO `catalogue_items` VALUES ('771', 'divider_nor4*7', '1', '2', '1', '0.00', '#ffffff,#ffffff,#7CB135,#7CB135,#7CB135,#7CB135', '1', '1', '1', '49', '771', 'Iced Auto Shutter', 'Habbos, roll out!', '3');
INSERT INTO `catalogue_items` VALUES ('772', 'divider_nor5*7', '1', '1', '1', '0.00', '#ffffff,#7CB135,#7CB135,#7CB135,#7CB135,#7CB135', '1', '1', '1', '49', '772', 'Iced Angle', 'Cool cornering for you!', '3');
INSERT INTO `catalogue_items` VALUES ('773', 'chair_norja*8', '2', '1', '1', '1.00', '#ffffff,#ffffff,#FFD837,#FFD837', '0', '1', '1', '49', '773', 'Chair', 'Sleek and chic for each cheek', '3');
INSERT INTO `catalogue_items` VALUES ('774', 'couch_norja*8', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#FFD837,#FFD837,#FFD837,#FFD837', '0', '1', '1', '49', '774', 'Bench', 'Two can perch comfortably', '3');
INSERT INTO `catalogue_items` VALUES ('775', 'table_norja_med*8', '1', '2', '2', '0.90', '#ffffff,#FFD837', '0', '1', '1', '49', '775', 'Coffee Table', 'Elegance embodied', '3');
INSERT INTO `catalogue_items` VALUES ('776', 'shelves_norja*8', '1', '1', '1', '0.00', '#ffffff,#FFD837', '0', '1', '1', '49', '776', 'Bookcase', 'For nic naks and art deco books', '3');
INSERT INTO `catalogue_items` VALUES ('777', 'soft_sofachair_norja*8', '2', '1', '1', '1.00', '#ffffff,#FFD837,#FFD837', '0', '1', '1', '49', '777', 'iced sofachair', 'Soft iced sofachair', '3');
INSERT INTO `catalogue_items` VALUES ('778', 'soft_sofa_norja*8', '2', '2', '1', '1.00', '#ffffff,#FFD837,#ffffff,#FFD837,#FFD837,#FFD837', '0', '1', '1', '49', '778', 'iced sofa', 'A soft iced sofa', '4');
INSERT INTO `catalogue_items` VALUES ('779', 'divider_nor2*8', '1', '2', '1', '0.00', '#ffffff,#ffffff,#FFD837,#FFD837', '0', '1', '1', '49', '779', 'Ice Bar-Desk', 'Strong, yet soft looking', '3');
INSERT INTO `catalogue_items` VALUES ('780', 'divider_nor1*8', '1', '1', '1', '0.00', '#ffffff,#FFD837', '0', '1', '1', '49', '780', 'Ice Corner', 'Looks squishy, but isn\'t', '3');
INSERT INTO `catalogue_items` VALUES ('781', 'divider_nor3*8', '1', '1', '1', '0.00', '#ffffff,#ffffff,#FFD837,#FFD837', '1', '1', '1', '49', '781', 'Door (Lockable)', 'Do go through...', '6');
INSERT INTO `catalogue_items` VALUES ('782', 'divider_nor4*8', '1', '2', '1', '0.00', '#ffffff,#ffffff,#FFD837,#FFD837,#FFD837,#FFD837', '1', '1', '1', '49', '782', 'Iced Auto Shutter', 'Habbos, roll out!', '3');
INSERT INTO `catalogue_items` VALUES ('783', 'divider_nor5*8', '1', '1', '1', '0.00', '#ffffff,#FFD837,#FFD837,#FFD837,#FFD837,#FFD837', '1', '1', '1', '49', '783', 'Iced Angle', 'Cool cornering for you!', '3');
INSERT INTO `catalogue_items` VALUES ('784', 'chair_norja*9', '2', '1', '1', '1.00', '#ffffff,#ffffff,#E14218,#E14218', '0', '1', '1', '49', '784', 'Chair', 'Sleek and chic for each cheek', '3');
INSERT INTO `catalogue_items` VALUES ('785', 'couch_norja*9', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#E14218,#E14218,#E14218,#E14218', '0', '1', '1', '49', '785', 'Bench', 'Two can perch comfortably', '3');
INSERT INTO `catalogue_items` VALUES ('786', 'table_norja_med*9', '1', '2', '2', '0.90', '#ffffff,#E14218', '0', '1', '1', '49', '786', 'Coffee Table', 'Elegance embodied', '3');
INSERT INTO `catalogue_items` VALUES ('787', 'shelves_norja*9', '1', '1', '1', '0.00', '#ffffff,#E14218', '0', '1', '1', '49', '787', 'Bookcase', 'For nic naks and art deco books', '3');
INSERT INTO `catalogue_items` VALUES ('788', 'soft_sofachair_norja*9', '2', '1', '1', '1.00', '#ffffff,#E14218,#E14218', '0', '1', '1', '49', '788', 'iced sofachair', 'Soft iced sofachair', '3');
INSERT INTO `catalogue_items` VALUES ('789', 'soft_sofa_norja*9', '2', '2', '1', '1.00', '#ffffff,#E14218,#ffffff,#E14218,#E14218,#E14218', '0', '1', '1', '49', '789', 'iced sofa', 'A soft iced sofa', '4');
INSERT INTO `catalogue_items` VALUES ('790', 'divider_nor2*9', '1', '2', '1', '0.00', '#ffffff,#ffffff,#E14218,#E14218', '0', '1', '1', '49', '790', 'Ice Bar-Desk', 'Strong, yet soft looking', '3');
INSERT INTO `catalogue_items` VALUES ('791', 'divider_nor1*9', '1', '1', '1', '0.00', '#ffffff,#E14218', '0', '1', '1', '49', '791', 'Ice Corner', 'Looks squishy, but isn\'t', '3');
INSERT INTO `catalogue_items` VALUES ('792', 'divider_nor3*9', '1', '1', '1', '0.00', '#ffffff,#ffffff,#E14218,#E14218', '1', '1', '1', '49', '792', 'Door (Lockable)', 'Do go through...', '6');
INSERT INTO `catalogue_items` VALUES ('793', 'divider_nor4*9', '1', '2', '1', '0.00', '#ffffff,#ffffff,#E14218,#E14218,#E14218,#E14218', '1', '1', '1', '49', '793', 'Iced Auto Shutter', 'Habbos, roll out!', '3');
INSERT INTO `catalogue_items` VALUES ('794', 'divider_nor5*9', '1', '1', '1', '0.00', '#ffffff,#E14218,#E14218,#E14218,#E14218,#E14218', '1', '1', '1', '49', '794', 'Iced Angle', 'Cool cornering for you!', '3');
INSERT INTO `catalogue_items` VALUES ('795', 'bed_polyfon*2', '3', '2', '3', '2.00', '#ffffff,#ffffff,#525252,#525252', '0', '1', '1', '50', '795', 'Double Bed', 'Give yourself space to stretch out', '4');
INSERT INTO `catalogue_items` VALUES ('796', 'bed_polyfon_one*2', '3', '1', '3', '2.00', '#ffffff,#ffffff,#ffffff,#525252,#525252', '0', '1', '1', '50', '796', 'Single Bed', 'Cot of the artistic', '3');
INSERT INTO `catalogue_items` VALUES ('797', 'sofa_polyfon*2', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#525252,#525252,#525252,#525252', '0', '1', '1', '50', '797', 'Two-seater Sofa', 'Comfort for stylish couples', '4');
INSERT INTO `catalogue_items` VALUES ('798', 'sofachair_polyfon*2', '2', '1', '1', '1.00', '#ffffff,#ffffff,#525252,#525252', '0', '1', '1', '50', '798', 'Armchair', 'Loft-style comfort', '3');
INSERT INTO `catalogue_items` VALUES ('799', 'divider_poly3*2', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#525252,#525252', '1', '1', '1', '50', '799', 'Hatch (Lockable)', 'All bars should have one', '6');
INSERT INTO `catalogue_items` VALUES ('800', 'bardesk_polyfon*2', '1', '2', '1', '1.00', '#ffffff,#ffffff,#525252,#525252', '0', '1', '1', '50', '800', 'Bar/desk', 'Perfect for work or play', '3');
INSERT INTO `catalogue_items` VALUES ('801', 'bardeskcorner_polyfon*2', '1', '1', '1', '1.00', '#ffffff,#525252', '0', '1', '1', '50', '801', 'Corner Cabinet/Desk', 'Tuck it away', '3');
INSERT INTO `catalogue_items` VALUES ('802', 'bed_polyfon*3', '3', '2', '3', '2.00', '#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '50', '802', 'Double Bed', 'Give yourself space to stretch out', '4');
INSERT INTO `catalogue_items` VALUES ('803', 'bed_polyfon_one*3', '3', '1', '3', '2.00', '#ffffff,#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '50', '803', 'Single Bed', 'Cot of the artistic', '3');
INSERT INTO `catalogue_items` VALUES ('804', 'sofa_polyfon*3', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '50', '804', 'Two-seater Sofa', 'Comfort for stylish couples', '4');
INSERT INTO `catalogue_items` VALUES ('805', 'sofachair_polyfon*3', '2', '1', '1', '1.00', '#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '50', '805', 'Armchair', 'Loft-style comfort', '3');
INSERT INTO `catalogue_items` VALUES ('806', 'divider_poly3*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#ffffff,#ffffff', '1', '1', '1', '50', '806', 'Hatch (Lockable)', 'All bars should have one', '6');
INSERT INTO `catalogue_items` VALUES ('807', 'bardesk_polyfon*3', '1', '2', '1', '1.00', '#ffffff,#ffffff,#ffffff,#ffffff', '0', '1', '1', '50', '807', 'Bar/desk', 'Perfect for work or play', '3');
INSERT INTO `catalogue_items` VALUES ('808', 'bardeskcorner_polyfon*3', '1', '1', '1', '1.00', '#ffffff,#ffffff', '0', '1', '1', '50', '808', 'Corner Cabinet/Desk', 'Tuck it away', '3');
INSERT INTO `catalogue_items` VALUES ('809', 'bed_polyfon*4', '3', '2', '3', '2.00', '#ffffff,#ffffff,#F7EBBC,#F7EBBC', '0', '1', '1', '50', '809', 'Double Bed', 'Give yourself space to stretch out', '4');
INSERT INTO `catalogue_items` VALUES ('810', 'bed_polyfon_one*4', '3', '1', '3', '2.00', '#ffffff,#ffffff,#ffffff,#F7EBBC,#F7EBBC', '0', '1', '1', '50', '810', 'Single Bed', 'Cot of the artistic', '3');
INSERT INTO `catalogue_items` VALUES ('811', 'sofa_polyfon*4', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#F7EBBC,#F7EBBC,#F7EBBC,#F7EBBC', '0', '1', '1', '50', '811', 'Two-seater Sofa', 'Comfort for stylish couples', '4');
INSERT INTO `catalogue_items` VALUES ('812', 'sofachair_polyfon*4', '2', '1', '1', '1.00', '#ffffff,#ffffff,#F7EBBC,#F7EBBC', '0', '1', '1', '50', '812', 'Armchair', 'Loft-style comfort', '3');
INSERT INTO `catalogue_items` VALUES ('813', 'divider_poly3*4', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#F7EBBC,#F7EBBC', '1', '1', '1', '50', '813', 'Hatch (Lockable)', 'All bars should have one', '6');
INSERT INTO `catalogue_items` VALUES ('814', 'bardesk_polyfon*4', '1', '2', '1', '1.00', '#ffffff,#ffffff,#F7EBBC,#F7EBBC', '0', '1', '1', '50', '814', 'Bar/desk', 'Perfect for work or play', '3');
INSERT INTO `catalogue_items` VALUES ('815', 'bardeskcorner_polyfon*4', '1', '1', '1', '1.00', '#ffffff,#F7EBBC', '0', '1', '1', '50', '815', 'Corner Cabinet/Desk', 'Tuck it away', '3');
INSERT INTO `catalogue_items` VALUES ('816', 'bed_polyfon*6', '3', '2', '3', '2.00', '#ffffff,#ffffff,#5EAAF8,#5EAAF8', '0', '1', '1', '50', '816', 'Double Bed', 'Give yourself space to stretch out', '4');
INSERT INTO `catalogue_items` VALUES ('817', 'bed_polyfon_one*6', '3', '1', '3', '2.00', '#ffffff,#ffffff,#ffffff,#5EAAF8,#5EAAF8', '0', '1', '1', '50', '817', 'Single Bed', 'Cot of the artistic', '3');
INSERT INTO `catalogue_items` VALUES ('818', 'sofa_polyfon*6', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#5EAAF8,#5EAAF8,#5EAAF8,#5EAAF8', '0', '1', '1', '50', '818', 'Two-seater Sofa', 'Comfort for stylish couples', '4');
INSERT INTO `catalogue_items` VALUES ('819', 'sofachair_polyfon*6', '2', '1', '1', '1.00', '#ffffff,#ffffff,#5EAAF8,#5EAAF8', '0', '1', '1', '50', '819', 'Armchair', 'Loft-style comfort', '3');
INSERT INTO `catalogue_items` VALUES ('820', 'divider_poly3*6', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#5EAAF8,#5EAAF8', '1', '1', '1', '50', '820', 'Hatch (Lockable)', 'All bars should have one', '6');
INSERT INTO `catalogue_items` VALUES ('821', 'bardesk_polyfon*6', '1', '2', '1', '1.00', '#ffffff,#ffffff,#5EAAF8,#5EAAF8', '0', '1', '1', '50', '821', 'Bar/desk', 'Perfect for work or play', '3');
INSERT INTO `catalogue_items` VALUES ('822', 'bardeskcorner_polyfon*6', '1', '1', '1', '1.00', '#ffffff,#5EAAF8', '0', '1', '1', '50', '822', 'Corner Cabinet/Desk', 'Tuck it away', '3');
INSERT INTO `catalogue_items` VALUES ('823', 'bed_polyfon*7', '3', '2', '3', '2.00', '#ffffff,#ffffff,#7CB135,#7CB135', '0', '1', '1', '50', '823', 'Double Bed', 'Give yourself space to stretch out', '4');
INSERT INTO `catalogue_items` VALUES ('824', 'bed_polyfon_one*7', '3', '1', '3', '2.00', '#ffffff,#ffffff,#ffffff,#7CB135,#7CB135', '0', '1', '1', '50', '824', 'Single Bed', 'Cot of the artistic', '3');
INSERT INTO `catalogue_items` VALUES ('825', 'sofa_polyfon*7', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#7CB135,#7CB135,#7CB135,#7CB135', '0', '1', '1', '50', '825', 'Two-seater Sofa', 'Comfort for stylish couples', '4');
INSERT INTO `catalogue_items` VALUES ('826', 'sofachair_polyfon*7', '2', '1', '1', '1.00', '#ffffff,#ffffff,#7CB135,#7CB135', '0', '1', '1', '50', '826', 'Armchair', 'Loft-style comfort', '3');
INSERT INTO `catalogue_items` VALUES ('827', 'divider_poly3*7', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#7CB135,#7CB135', '1', '1', '1', '50', '827', 'Hatch (Lockable)', 'All bars should have one', '6');
INSERT INTO `catalogue_items` VALUES ('828', 'bardesk_polyfon*7', '1', '2', '1', '1.00', '#ffffff,#ffffff,#7CB135,#7CB135', '0', '1', '1', '50', '828', 'Bar/desk', 'Perfect for work or play', '3');
INSERT INTO `catalogue_items` VALUES ('829', 'bardeskcorner_polyfon*7', '1', '1', '1', '1.00', '#ffffff,#7CB135', '0', '1', '1', '50', '829', 'Corner Cabinet/Desk', 'Tuck it away', '3');
INSERT INTO `catalogue_items` VALUES ('830', 'bed_polyfon*8', '3', '2', '3', '2.00', '#ffffff,#ffffff,#FFD837,#FFD837', '0', '1', '1', '50', '830', 'Double Bed', 'Give yourself space to stretch out', '4');
INSERT INTO `catalogue_items` VALUES ('831', 'bed_polyfon_one*8', '3', '1', '3', '2.00', '#ffffff,#ffffff,#ffffff,#FFD837,#FFD837', '0', '1', '1', '50', '831', 'Single Bed', 'Cot of the artistic', '3');
INSERT INTO `catalogue_items` VALUES ('832', 'sofa_polyfon*8', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#FFD837,#FFD837,#FFD837,#FFD837', '0', '1', '1', '50', '832', 'Two-seater Sofa', 'Comfort for stylish couples', '4');
INSERT INTO `catalogue_items` VALUES ('833', 'sofachair_polyfon*8', '2', '1', '1', '1.00', '#ffffff,#ffffff,#FFD837,#FFD837', '0', '1', '1', '50', '833', 'Armchair', 'Loft-style comfort', '3');
INSERT INTO `catalogue_items` VALUES ('834', 'divider_poly3*8', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#FFD837,#FFD837', '1', '1', '1', '50', '834', 'Hatch (Lockable)', 'All bars should have one', '6');
INSERT INTO `catalogue_items` VALUES ('835', 'bardesk_polyfon*8', '1', '2', '1', '1.00', '#ffffff,#ffffff,#FFD837,#FFD837', '0', '1', '1', '50', '835', 'Bar/desk', 'Perfect for work or play', '3');
INSERT INTO `catalogue_items` VALUES ('836', 'bardeskcorner_polyfon*8', '1', '1', '1', '1.00', '#ffffff,#FFD837', '0', '1', '1', '50', '836', 'Corner Cabinet/Desk', 'Tuck it away', '3');
INSERT INTO `catalogue_items` VALUES ('837', 'bed_polyfon*9', '3', '2', '3', '2.00', '#ffffff,#ffffff,#E14218,#E14218', '0', '1', '1', '50', '837', 'Double Bed', 'Give yourself space to stretch out', '4');
INSERT INTO `catalogue_items` VALUES ('838', 'bed_polyfon_one*9', '3', '1', '3', '2.00', '#ffffff,#ffffff,#ffffff,#E14218,#E14218', '0', '1', '1', '50', '838', 'Single Bed', 'Cot of the artistic', '3');
INSERT INTO `catalogue_items` VALUES ('839', 'sofa_polyfon*9', '2', '2', '1', '1.10', '#ffffff,#ffffff,#ffffff,#ffffff,#E14218,#E14218,#E14218,#E14218', '0', '1', '1', '50', '839', 'Two-seater Sofa', 'Comfort for stylish couples', '4');
INSERT INTO `catalogue_items` VALUES ('840', 'sofachair_polyfon*9', '2', '1', '1', '1.00', '#ffffff,#ffffff,#E14218,#E14218', '0', '1', '1', '50', '840', 'Armchair', 'Loft-style comfort', '3');
INSERT INTO `catalogue_items` VALUES ('841', 'divider_poly3*9', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#E14218,#E14218', '1', '1', '1', '50', '841', 'Hatch (Lockable)', 'All bars should have one', '6');
INSERT INTO `catalogue_items` VALUES ('842', 'bardesk_polyfon*9', '1', '2', '1', '1.00', '#ffffff,#ffffff,#E14218,#E14218', '0', '1', '1', '50', '842', 'Bar/desk', 'Perfect for work or play', '3');
INSERT INTO `catalogue_items` VALUES ('843', 'bardeskcorner_polyfon*9', '1', '1', '1', '1.00', '#ffffff,#E14218', '0', '1', '1', '50', '843', 'Corner Cabinet/Desk', 'Tuck it away', '3');
INSERT INTO `catalogue_items` VALUES ('844', 'pura_mdl1*1', '2', '1', '1', '1.00', '#FFFFFF,#ABD0D2,#ABD0D2,#FFFFFF', '0', '1', '1', '51', '844', 'Aqua Pura module 1', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('845', 'pura_mdl2*1', '2', '1', '1', '1.00', '#FFFFFF,#ABD0D2,#ABD0D2,#FFFFFF', '0', '1', '1', '51', '845', 'Aqua Pura module 2', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('846', 'pura_mdl3*1', '2', '1', '1', '1.00', '#FFFFFF,#ABD0D2,#ABD0D2,#FFFFFF', '0', '1', '1', '51', '846', 'Aqua Pura module 3', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('847', 'pura_mdl4*1', '2', '1', '1', '1.00', '#FFFFFF,#ABD0D2,#ABD0D2,#ABD0D2', '0', '1', '1', '51', '847', 'Aqua Pura module 4', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('848', 'pura_mdl5*1', '2', '1', '1', '1.00', '#FFFFFF,#ABD0D2,#FFFFFF', '0', '1', '1', '51', '848', 'Aqua Pura module 5', 'Endless fun!', '1');
INSERT INTO `catalogue_items` VALUES ('849', 'pura_mdl1*2', '2', '1', '1', '1.00', '#FFFFFF,#FF99BC,#FF99BC,#FFFFFF', '0', '1', '1', '51', '849', 'Pink Pura module 1', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('850', 'pura_mdl2*2', '2', '1', '1', '1.00', '#FFFFFF,#FF99BC,#FF99BC,#FFFFFF', '0', '1', '1', '51', '850', 'Pink Pura module 2', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('851', 'pura_mdl3*2', '2', '1', '1', '1.00', '#FFFFFF,#FF99BC,#FF99BC,#FFFFFF', '0', '1', '1', '51', '851', 'Pink Pura module 3', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('852', 'pura_mdl4*2', '2', '1', '1', '1.00', '#FFFFFF,#FF99BC,#FF99BC,#FF99BC', '0', '1', '1', '51', '852', 'Pink Pura module 4', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('853', 'pura_mdl5*2', '2', '1', '1', '1.00', '#FFFFFF,#FF99BC,#FF99BC,#FFFFFF', '0', '1', '1', '51', '853', 'Pink Pura module 5', 'Endless fun!', '1');
INSERT INTO `catalogue_items` VALUES ('854', 'pura_mdl1*3', '2', '1', '1', '1.00', '#FFFFFF,#525252,#525252,#FFFFFF', '0', '1', '1', '51', '854', 'Black Pura module 1', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('855', 'pura_mdl2*3', '2', '1', '1', '1.00', '#FFFFFF,#525252,#525252,#FFFFFF', '0', '1', '1', '51', '855', 'Black Pura module 2', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('856', 'pura_mdl3*3', '2', '1', '1', '1.00', '#FFFFFF,#525252,#525252,#FFFFFF', '0', '1', '1', '51', '856', 'Black Pura module 3', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('857', 'pura_mdl4*3', '2', '1', '1', '1.00', '#FFFFFF,#525252,#525252,#525252', '0', '1', '1', '51', '857', 'Black Pura module 4', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('858', 'pura_mdl5*3', '2', '1', '1', '1.00', '#FFFFFF,#525252,#525252,#FFFFFF', '0', '1', '1', '51', '858', 'Black Pura module 5', 'Endless fun!', '1');
INSERT INTO `catalogue_items` VALUES ('859', 'pura_mdl1*4', '2', '1', '1', '1.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '51', '859', 'White Pura module 1', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('860', 'pura_mdl2*4', '2', '1', '1', '1.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '51', '860', 'White Pura module 2', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('861', 'pura_mdl3*4', '2', '1', '1', '1.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '51', '861', 'White Pura module 3', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('862', 'pura_mdl4*4', '2', '1', '1', '1.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '51', '862', 'White Pura module 4', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('863', 'pura_mdl5*4', '2', '1', '1', '1.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '51', '863', 'White Pura module 5', 'Endless fun!', '1');
INSERT INTO `catalogue_items` VALUES ('864', 'pura_mdl1*5', '2', '1', '1', '1.00', '#FFFFFF,#F7EBBC,#F7EBBC,#FFFFFF', '0', '1', '1', '51', '864', 'Beige Pura module 1', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('865', 'pura_mdl2*5', '2', '1', '1', '1.00', '#FFFFFF,#F7EBBC,#F7EBBC,#FFFFFF', '0', '1', '1', '51', '865', 'Beige Pura module 2', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('866', 'pura_mdl3*5', '2', '1', '1', '1.00', '#FFFFFF,#F7EBBC,#F7EBBC,#FFFFFF', '0', '1', '1', '51', '866', 'Beige Pura module 3', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('867', 'pura_mdl4*5', '2', '1', '1', '1.00', '#FFFFFF,#F7EBBC,#F7EBBC,#F7EBBC', '0', '1', '1', '51', '867', 'Beige Pura module 4', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('868', 'pura_mdl5*5', '2', '1', '1', '1.00', '#FFFFFF,#F7EBBC,#F7EBBC,#FFFFFF', '0', '1', '1', '51', '868', 'Beige Pura module 5', 'Endless fun!', '1');
INSERT INTO `catalogue_items` VALUES ('869', 'pura_mdl1*6', '2', '1', '1', '1.00', '#FFFFFF,#5EAAF8,#5EAAF8,#FFFFFF', '0', '1', '1', '51', '869', 'Blue Pura module 1', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('870', 'pura_mdl2*6', '2', '1', '1', '1.00', '#FFFFFF,#5EAAF8,#5EAAF8,#FFFFFF', '0', '1', '1', '51', '870', 'Blue Pura module 2', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('871', 'pura_mdl3*6', '2', '1', '1', '1.00', '#FFFFFF,#5EAAF8,#5EAAF8,#FFFFFF', '0', '1', '1', '51', '871', 'Blue Pura module 3', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('872', 'pura_mdl4*6', '2', '1', '1', '1.00', '#FFFFFF,#5EAAF8,#5EAAF8,#5EAAF8', '0', '1', '1', '51', '872', 'Blue Pura module 4', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('873', 'pura_mdl5*6', '2', '1', '1', '1.00', '#FFFFFF,#5EAAF8,#5EAAF8,#FFFFFF', '0', '1', '1', '51', '873', 'Blue Pura module 5', 'Endless fun!', '1');
INSERT INTO `catalogue_items` VALUES ('874', 'pura_mdl1*7', '2', '1', '1', '1.00', '#FFFFFF,#92D13D,#92D13D,#FFFFFF', '0', '1', '1', '51', '874', 'Green Pura module 1', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('875', 'pura_mdl2*7', '2', '1', '1', '1.00', '#FFFFFF,#92D13D,#92D13D,#FFFFFF', '0', '1', '1', '51', '875', 'Green Pura module 2', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('876', 'pura_mdl3*7', '2', '1', '1', '1.00', '#FFFFFF,#92D13D,#92D13D,#FFFFFF', '0', '1', '1', '51', '876', 'Green Pura module 3', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('877', 'pura_mdl4*7', '2', '1', '1', '1.00', '#FFFFFF,#92D13D,#92D13D,#92D13D', '0', '1', '1', '51', '877', 'Green Pura module 4', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('878', 'pura_mdl5*7', '2', '1', '1', '1.00', '#FFFFFF,#92D13D,#92D13D,#FFFFFF', '0', '1', '1', '51', '878', 'Green Pura module 5', 'Endless fun!', '1');
INSERT INTO `catalogue_items` VALUES ('879', 'pura_mdl1*8', '2', '1', '1', '1.00', '#FFFFFF,#FFD837,#FFD837,#FFFFFF', '0', '1', '1', '51', '879', 'Yellow Pura module 1', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('880', 'pura_mdl2*8', '2', '1', '1', '1.00', '#FFFFFF,#FFD837,#FFD837,#FFFFFF', '0', '1', '1', '51', '880', 'Yellow Pura module 2', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('881', 'pura_mdl3*8', '2', '1', '1', '1.00', '#FFFFFF,#FFD837,#FFD837,#FFFFFF', '0', '1', '1', '51', '881', 'Yellow Pura module 3', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('882', 'pura_mdl4*8', '2', '1', '1', '1.00', '#FFFFFF,#FFD837,#FFD837,#FFD837', '0', '1', '1', '51', '882', 'Yellow Pura module 4', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('883', 'pura_mdl5*8', '2', '1', '1', '1.00', '#FFFFFF,#FFD837,#FFD837,#FFFFFF', '0', '1', '1', '51', '883', 'Yellow Pura module 5', 'Endless fun!', '1');
INSERT INTO `catalogue_items` VALUES ('884', 'pura_mdl1*9', '2', '1', '1', '1.00', '#FFFFFF,#E14218,#E14218,#FFFFFF', '0', '1', '1', '51', '884', 'Red Pura module 1', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('885', 'pura_mdl2*9', '2', '1', '1', '1.00', '#FFFFFF,#E14218,#E14218,#FFFFFF', '0', '1', '1', '51', '885', 'Red Pura module 2', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('886', 'pura_mdl3*9', '2', '1', '1', '1.00', '#FFFFFF,#E14218,#E14218,#FFFFFF', '0', '1', '1', '51', '886', 'Red Pura module 3', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('887', 'pura_mdl4*9', '2', '1', '1', '1.00', '#FFFFFF,#E14218,#E14218,#E14218', '0', '1', '1', '51', '887', 'Red Pura module 4', 'Endless fun!', '2');
INSERT INTO `catalogue_items` VALUES ('888', 'pura_mdl5*9', '2', '1', '1', '1.00', '#FFFFFF,#E14218,#E14218,#FFFFFF', '0', '1', '1', '51', '888', 'Red Pura module 5', 'Endless fun!', '1');
INSERT INTO `catalogue_items` VALUES ('889', 'chair_basic*1', '2', '1', '1', '1.00', '#FFFFFF,#ABD0D2,#FFFFFF', '0', '1', '1', '51', '889', 'Aqua Retro Chair', 'Sitback and relax', '5');
INSERT INTO `catalogue_items` VALUES ('890', 'chair_basic*1', '2', '1', '1', '1.00', '#FFFFFF,#FF99BC,#FFFFFF', '0', '1', '1', '51', '890', 'Pink Retro Chair', 'Sitback and relax', '5');
INSERT INTO `catalogue_items` VALUES ('891', 'chair_basic*1', '2', '1', '1', '1.00', '#FFFFFF,#525252,#FFFFFF', '0', '1', '1', '51', '891', 'Black Retro Chair', 'Sitback and relax', '5');
INSERT INTO `catalogue_items` VALUES ('892', 'chair_basic*1', '2', '1', '1', '1.00', '#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '51', '892', 'White Retro Chair', 'Sitback and relax', '5');
INSERT INTO `catalogue_items` VALUES ('893', 'chair_basic*1', '2', '1', '1', '1.00', '#FFFFFF,#F7EBBC,#FFFFFF', '0', '1', '1', '51', '893', 'Beige Retro Chair', 'Sitback and relax', '5');
INSERT INTO `catalogue_items` VALUES ('894', 'chair_basic*1', '2', '1', '1', '1.00', '#FFFFFF,#5EAAF8,#FFFFFF', '0', '1', '1', '51', '894', 'Blue Retro Chair', 'Sitback and relax', '5');
INSERT INTO `catalogue_items` VALUES ('895', 'chair_basic*1', '2', '1', '1', '1.00', '#FFFFFF,#92D13D,#FFFFFF', '0', '1', '1', '51', '895', 'Green Retro Chair', 'Sitback and relax', '5');
INSERT INTO `catalogue_items` VALUES ('896', 'chair_basic*1', '2', '1', '1', '1.00', '#FFFFFF,#FFD837,#FFFFFF', '0', '1', '1', '51', '896', 'Yellow Retro Chair', 'Sitback and relax', '5');
INSERT INTO `catalogue_items` VALUES ('897', 'chair_basic*1', '2', '1', '1', '1.00', '#FFFFFF,#E14218,#FFFFFF', '0', '1', '1', '51', '897', 'Red Retro Chair', 'Sitback and relax', '5');
INSERT INTO `catalogue_items` VALUES ('898', 'grand_piano*1', '1', '2', '2', '0.00', '#FFFFFF,#FF8B8B,#FFFFFF', '0', '1', '1', '52', '898', 'Rose Grand Piano', 'Rose Grand Piano', '10');
INSERT INTO `catalogue_items` VALUES ('899', 'romantique_pianochair*1', '2', '1', '1', '1.00', '#FFFFFF,#FF8B8B,#FFFFFF', '0', '1', '1', '52', '899', 'Rose Quartz Piano Stool', 'Here sat the legend of 1900', '2');
INSERT INTO `catalogue_items` VALUES ('900', 'romantique_chair*1', '2', '1', '1', '1.00', '#FFFFFF,#FF8B8B,#FFFFFF', '0', '1', '1', '52', '900', 'Rose Quartz Chair', 'Elegant seating for elegant Habbos', '5');
INSERT INTO `catalogue_items` VALUES ('901', 'romantique_divan*1', '2', '2', '1', '0.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FF8B8B', '0', '1', '1', '52', '901', 'Rose Romantique Divan', 'null', '6');
INSERT INTO `catalogue_items` VALUES ('902', 'romantique_divider*1', '1', '2', '1', '0.00', '#FF8B8B,#FF8B8B,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '52', '902', 'Rose Quartz Screen', 'Beauty lies within', '6');
INSERT INTO `catalogue_items` VALUES ('903', 'romantique_smalltabl*1', '1', '1', '1', '0.00', '#FFFFFF,#FF8B8B,#FFFFFF', '0', '1', '1', '52', '903', 'Rose Quartz Tray Table', 'Every tray needs a table...', '4');
INSERT INTO `catalogue_items` VALUES ('904', 'grand_piano*2', '1', '2', '2', '0.00', '#FFFFFF,#A1DC67,#FFFFFF', '0', '1', '1', '52', '904', 'Lime Grand Piano', 'Lime Grand Piano', '10');
INSERT INTO `catalogue_items` VALUES ('905', 'romantique_pianochair*2', '2', '1', '1', '1.00', '#FFFFFF,#A1DC67,#FFFFFF', '0', '1', '1', '52', '905', 'Lime Piano Chair', 'Let the music begin', '2');
INSERT INTO `catalogue_items` VALUES ('906', 'romantique_chair*2', '2', '1', '1', '1.00', '#FFFFFF,#A1DC67,#FFFFFF', '0', '1', '1', '52', '906', 'Lime Romantique Chair', 'null', '5');
INSERT INTO `catalogue_items` VALUES ('907', 'romantique_divan*2', '2', '2', '1', '0.00', '#FFFFFF,#FFFFFF,#FFFFFF,#A1DC67', '0', '1', '1', '52', '907', 'Emerald Chaise-Longue', 'Recline in continental comfort', '6');
INSERT INTO `catalogue_items` VALUES ('908', 'romantique_divider*2', '1', '2', '1', '0.00', '#A1DC67,#A1DC67,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '52', '908', 'Green Screen', 'Keeping things separated', '6');
INSERT INTO `catalogue_items` VALUES ('909', 'romantique_smalltabl*2', '1', '1', '1', '1.00', '#FFFFFF,#A1DC67,#FFFFFF', '0', '1', '1', '52', '909', 'Lime Tray Table', 'Every tray needs a table...', '4');
INSERT INTO `catalogue_items` VALUES ('910', 'grand_piano*3', '1', '2', '2', '0.00', '#FFFFFF,#5BD1D2,#FFFFFF', '0', '1', '1', '52', '910', 'Pink Grand Piano', 'Make sure you play in key!', '10');
INSERT INTO `catalogue_items` VALUES ('911', 'romantique_pianochair*3', '2', '1', '1', '1.00', '#FFFFFF,#5BD1D2,#FFFFFF', '0', '1', '1', '52', '911', 'Turquoise Piano Chair', 'null', '2');
INSERT INTO `catalogue_items` VALUES ('912', 'romantique_chair*3', '2', '1', '1', '1.00', '#FFFFFF,#5BD1D2,#FFFFFF', '0', '1', '1', '52', '912', 'Turquoise Chair', 'null', '5');
INSERT INTO `catalogue_items` VALUES ('913', 'romantique_divan*3', '2', '2', '1', '0.00', '#FFFFFF,#FFFFFF,#FFFFFF,#5BD1D2', '0', '1', '1', '52', '913', 'Turquoise Divan', 'null', '6');
INSERT INTO `catalogue_items` VALUES ('914', 'romantique_divider*3', '1', '2', '1', '0.00', '#5BD1D2,#5BD1D2,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '52', '914', 'Turquoise Screen', 'Keeping things separated', '6');
INSERT INTO `catalogue_items` VALUES ('915', 'romantique_smalltabl*3', '1', '1', '1', '1.00', '#FFFFFF,#5BD1D2,#FFFFFF', '0', '1', '1', '52', '915', 'Turquoise Tray Table', 'Every tray needs a table...', '4');
INSERT INTO `catalogue_items` VALUES ('916', 'grand_piano*4', '1', '2', '2', '0.00', '#FFFFFF,#FFC924,#FFFFFF', '0', '1', '1', '52', '916', 'Amber Grand Piano', 'Why is that key green?', '10');
INSERT INTO `catalogue_items` VALUES ('917', 'romantique_pianochair*4', '2', '1', '1', '1.00', '#FFFFFF,#FFC924,#FFFFFF', '0', '1', '1', '52', '917', 'Amber Piano Stool', 'I can feel air coming through...', '2');
INSERT INTO `catalogue_items` VALUES ('918', 'romantique_chair*4', '2', '1', '1', '1.00', '#FFFFFF,#FFC924,#FFFFFF', '0', '1', '1', '52', '918', 'Amber Chair', 'What does this button do?', '5');
INSERT INTO `catalogue_items` VALUES ('919', 'romantique_divan*4', '2', '2', '1', '0.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFC924', '0', '1', '1', '52', '919', 'Amber Chaise-Longue', 'Is that a cape hanging there?', '6');
INSERT INTO `catalogue_items` VALUES ('920', 'romantique_divider*4', '1', '2', '1', '0.00', '#FFC924,#FFC924,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '52', '920', 'Ochre Screen', 'Keeping things separated', '6');
INSERT INTO `catalogue_items` VALUES ('921', 'romantique_smalltabl*4', '1', '1', '1', '1.00', '#FFFFFF,#FFC924,#FFFFFF', '0', '1', '1', '52', '921', 'Amber Tray Table', 'Why is one leg different?', '4');
INSERT INTO `catalogue_items` VALUES ('922', 'grand_piano*5', '1', '2', '2', '0.00', '#FFFFFF,#323C46,#FFFFFF', '0', '1', '1', '52', '922', 'Onyx Grand Piano', 'Why is that key green?', '10');
INSERT INTO `catalogue_items` VALUES ('923', 'romantique_pianochair*5', '2', '1', '1', '1.00', '#FFFFFF,#323C46,#FFFFFF', '0', '1', '1', '52', '923', 'Onyx Piano Stool', 'I can feel air coming through...', '2');
INSERT INTO `catalogue_items` VALUES ('924', 'romantique_chair*5', '2', '1', '1', '1.00', '#FFFFFF,#323C46,#FFFFFF', '0', '1', '1', '52', '924', 'Onyx Chair', 'What does this button do?', '5');
INSERT INTO `catalogue_items` VALUES ('925', 'romantique_divan*5', '2', '2', '1', '0.00', '#FFFFFF,#FFFFFF,#FFFFFF,#323C46', '0', '1', '1', '52', '925', 'Onyx Chaise-Longue', 'Is that a cape hanging there?', '6');
INSERT INTO `catalogue_items` VALUES ('926', 'romantique_divider*5', '1', '2', '1', '0.00', '#323C46,#323C46,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '52', '926', 'Onyx Quartz Screen', 'Beauty lies within', '6');
INSERT INTO `catalogue_items` VALUES ('927', 'romantique_smalltabl*5', '1', '1', '1', '1.00', '#FFFFFF,#323C46,#FFFFFF', '0', '1', '1', '52', '927', 'Onyx Tray Table', 'Why is one leg different?', '4');
INSERT INTO `catalogue_items` VALUES ('928', 'club_sofa', '2', '2', '1', '1.00', '0,0,0', '0', '1', '1', '53', '928', 'Club sofa', 'Importants habbos only', '25');
INSERT INTO `catalogue_items` VALUES ('929', 'chair_plasto*14', '2', '1', '1', '1.00', '#ffffff,#3CB4F0,#ffffff,#3CB4F0', '0', '1', '1', '53', '929', 'HC chair', 'Aqua chair', '3');
INSERT INTO `catalogue_items` VALUES ('930', 'table_plasto_4leg*14', '1', '2', '2', '1.10', '#ffffff,#3CB4F0,#ffffff,#3CB4F0', '0', '1', '1', '53', '930', 'HC table', 'Aqua table', '3');
INSERT INTO `catalogue_items` VALUES ('931', 'mocchamaster', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '53', '931', 'Mochamaster', 'Wake up and smell it!', '25');
INSERT INTO `catalogue_items` VALUES ('932', 'edicehc', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '53', '932', 'Dicemaster', 'Click and roll!', '25');
INSERT INTO `catalogue_items` VALUES ('933', 'hcamme', '2', '1', '2', '1.00', '0,0,0', '0', '1', '1', '53', '933', 'Tubmaster', 'Time for a soak', '25');
INSERT INTO `catalogue_items` VALUES ('934', 'doorD', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '53', '934', 'Imperial Teleport', 'Let\'s go over tzar!', '25');
INSERT INTO `catalogue_items` VALUES ('935', 'hcsohva', '2', '2', '1', '1.00', '0,0,0', '0', '1', '1', '53', '935', 'Throne Sofa', 'For royal bottoms...', '25');
INSERT INTO `catalogue_items` VALUES ('936', 'hc_lmp', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '53', '936', 'Oil Lamp', 'Be enlightened', '25');
INSERT INTO `catalogue_items` VALUES ('937', 'hc_tbl', '1', '1', '3', '1.00', '0,0,0', '0', '1', '1', '53', '937', 'Nordic Table', 'Perfect for banquets', '25');
INSERT INTO `catalogue_items` VALUES ('938', 'hc_chr', '2', '1', '1', '1.00', '0,0,0', '0', '1', '1', '53', '938', 'Majestic Chair', 'Royal comfort', '25');
INSERT INTO `catalogue_items` VALUES ('939', 'hc_dsk', '1', '1', '2', '0.00', '0,0,0', '0', '1', '1', '53', '939', 'Study Desk', 'For Habbo scholars', '25');
INSERT INTO `catalogue_items` VALUES ('940', 'hc_trll', '1', '1', '2', '0.00', '0,0,0', '0', '1', '1', '53', '940', 'Drinks Trolley', 'For swanky dinners only', '25');
INSERT INTO `catalogue_items` VALUES ('941', 'hc_crpt', '4', '3', '5', '0.00', '0,0,0', '0', '1', '1', '53', '941', 'Persian Carpet', 'Ultimate craftsmanship', '25');
INSERT INTO `catalogue_items` VALUES ('942', 'hc_lmpst', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '53', '942', 'Victorian Street Light', 'Somber and atmospheric', '25');
INSERT INTO `catalogue_items` VALUES ('943', 'hc_crtn', '1', '2', '1', '0.00', '0,0,0', '1', '1', '1', '53', '943', 'Antique Drapery', 'Topnotch privacy protection', '25');
INSERT INTO `catalogue_items` VALUES ('944', 'hc_tv', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '53', '944', 'Mega TV Set', 'Forget plasma, go HC!', '25');
INSERT INTO `catalogue_items` VALUES ('945', 'hc_btlr', '1', '1', '1', '0.00', '0,0,0', '0', '1', '1', '53', '945', 'Electric Butler', 'Your personal caretaker', '25');
INSERT INTO `catalogue_items` VALUES ('946', 'hc_bkshlf', '1', '1', '4', '0.00', '0,0,0', '0', '1', '1', '53', '946', 'Medieval Bookcase', 'For the scholarly ones', '25');
INSERT INTO `catalogue_items` VALUES ('947', 'hc_rntgn', '1', '2', '1', '0.00', '0,0,0', '0', '1', '1', '53', '947', 'X-Ray Divider', 'Believe it or not!', '25');
INSERT INTO `catalogue_items` VALUES ('948', 'hc_machine', '1', '1', '3', '0.00', '0,0,0', '0', '1', '1', '53', '948', 'Weird Science Machine', 'By and for mad inventors', '25');
INSERT INTO `catalogue_items` VALUES ('949', 'hc_frplc', '1', '1', '3', '0.00', '0,0,0', '0', '1', '1', '53', '949', 'Heavy Duty Fireplace', 'Pixel-powered for maximum heating', '25');
INSERT INTO `catalogue_items` VALUES ('950', 'hc_djset', '1', '3', '1', '0.00', '0,0,0', '0', '1', '1', '53', '950', 'The Grammophon', 'Very old skool scratch\'n\'spin', '25');
INSERT INTO `catalogue_items` VALUES ('951', 'hc_wall_lamp', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '53', '951', 'Retro Wall Lamp', 'Tres chic!', '25');
INSERT INTO `catalogue_items` VALUES ('952', 'roomdimmer', '0', '0', '0', '0.00', '0,0,0', '0', '1', '1', '54', '952', 'Moodlight', 'Turn this off when you\'re gonna bend her over', '25');
INSERT INTO `catalogue_items` VALUES ('953', 'rare_dragonlamp*0', '1', '1', '1', '0.00', '#ffffff,#fa2d00,#fa2d00', '0', '1', '1', '55', '953', 'Fire Dragon Lamp', 'George and the...', '25');
INSERT INTO `catalogue_items` VALUES ('954', 'rare_dragonlamp*1', '1', '1', '1', '0.00', '#ffffff,#3470ff,#3470ff', '0', '1', '1', '55', '954', 'Sea Dragon Lamp', 'Out of the deep blue!', '25');
INSERT INTO `catalogue_items` VALUES ('955', 'rare_dragonlamp*2', '1', '1', '1', '0.00', '#ffffff,#02bb70,#02bb70', '0', '1', '1', '55', '955', 'Jade Dragon Lamp', 'Oriental beast of legends', '25');
INSERT INTO `catalogue_items` VALUES ('956', 'rare_dragonlamp*3', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff', '0', '1', '1', '55', '956', 'Silver Dragon Lamp', 'Scary and scorching!', '25');
INSERT INTO `catalogue_items` VALUES ('957', 'rare_dragonlamp*4', '1', '1', '1', '0.00', '#ffffff,#3e3d40,#3e3d40', '0', '1', '1', '55', '957', 'Serpent of Doom', 'Scary and scorching!', '25');
INSERT INTO `catalogue_items` VALUES ('958', 'rare_dragonlamp*5', '1', '1', '1', '0.00', '#ffffff,#589a03,#589a03', '0', '1', '1', '55', '958', 'Elf Green Dragon Lamp', 'Roast your chestnuts here!', '25');
INSERT INTO `catalogue_items` VALUES ('959', 'rare_dragonlamp*6', '1', '1', '1', '0.00', '#ffffff,#ffbc00,#ffbc00', '0', '1', '1', '55', '959', 'Gold Dragon Lamp', 'Scary and scorching!', '25');
INSERT INTO `catalogue_items` VALUES ('960', 'rare_dragonlamp*7', '1', '1', '1', '0.00', '#ffffff,#83aeff,#83aeff', '0', '1', '1', '55', '960', 'Sky Dragon Lamp', 'Scary and scorching!', '25');
INSERT INTO `catalogue_items` VALUES ('961', 'rare_dragonlamp*8', '1', '1', '1', '0.00', '#ffffff,#ff5f01,#ff5f01', '0', '1', '1', '55', '961', 'Bronze Dragon Lamp', 'Scary and scorching!', '25');
INSERT INTO `catalogue_items` VALUES ('962', 'rare_dragonlamp*9', '1', '1', '1', '0.00', '#FFFFFF,#B357FF,#B357FF', '0', '1', '1', '55', '962', 'Purple Dragon Lamp', 'Scary and scorching!', '25');
INSERT INTO `catalogue_items` VALUES ('963', 'rare_fan*0', '1', '1', '1', '0.00', '#F43100,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '56', '963', 'Festive Fan', 'As red as Rudolph\'s nose', '25');
INSERT INTO `catalogue_items` VALUES ('964', 'rare_fan*1', '1', '1', '1', '0.00', '#3C75FF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '56', '964', 'Blue Powered Fan', 'It\'ll blow you away!', '25');
INSERT INTO `catalogue_items` VALUES ('965', 'rare_fan*2', '1', '1', '1', '0.00', '#55CD01,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '56', '965', 'Green Powered Fan', 'It\'ll blow you away!', '25');
INSERT INTO `catalogue_items` VALUES ('966', 'rare_fan*3', '1', '1', '1', '0.00', '#BC9BFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '56', '966', 'Purple Powered Fan', 'It\'ll blow you away!', '25');
INSERT INTO `catalogue_items` VALUES ('967', 'rare_fan*4', '1', '1', '1', '0.00', '#e78b8b,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '56', '967', 'SUPERLOVE Fan', 'Fanning the fires of SUPERLOVE...', '25');
INSERT INTO `catalogue_items` VALUES ('968', 'rare_fan*5', '1', '1', '1', '0.00', '#ffcc00,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '56', '968', 'Yellow Powered Fan', 'It\'ll blow you away!', '25');
INSERT INTO `catalogue_items` VALUES ('969', 'rare_fan*6', '1', '1', '1', '0.00', '#FF8000,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '56', '969', 'Ochre Powered Fan', 'It\'ll blow you away!', '25');
INSERT INTO `catalogue_items` VALUES ('970', 'rare_fan*7', '1', '1', '1', '0.00', '#682B00,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '56', '970', 'Brown Powered Fan', 'It\'ll blow you away!', '25');
INSERT INTO `catalogue_items` VALUES ('971', 'rare_fan*8', '1', '1', '1', '0.00', '#FFFFFF,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '56', '971', 'Habbo Wind Turbine', 'Stylish, Eco-Energy!', '25');
INSERT INTO `catalogue_items` VALUES ('972', 'rare_fan*9', '1', '1', '1', '0.00', '#FF60B0,#FFFFFF,#FFFFFF,#FFFFFF', '0', '1', '1', '56', '972', 'Fucsia Powered Fan', 'It\'ll blow you away!', '25');
INSERT INTO `catalogue_items` VALUES ('973', 'rare_icecream*0', '1', '1', '1', '0.00', '#FFFFFF,#d02a1f', '0', '1', '1', '57', '973', 'Cherry Ice Cream', 'Virtual cherry rocks!', '25');
INSERT INTO `catalogue_items` VALUES ('974', 'rare_icecream*1', '1', '1', '1', '0.00', '#FFFFFF,#55c4de', '0', '1', '1', '57', '974', 'Blueberry Ice Cream', 'Virtual blueberry rocks!', '25');
INSERT INTO `catalogue_items` VALUES ('975', 'rare_icecream*2', '1', '1', '1', '0.00', '#FFFFFF,#94f718', '0', '1', '1', '57', '975', 'Pistachio Ice Cream', 'Virtual pistachio rocks!', '25');
INSERT INTO `catalogue_items` VALUES ('976', 'rare_icecream*3', '1', '1', '1', '0.00', '#FFFFFF,#B357FF', '0', '1', '1', '57', '976', 'Blackcurrant Ice Cream', 'Virtual blackcurrant rocks!', '25');
INSERT INTO `catalogue_items` VALUES ('977', 'rare_icecream*4', '1', '1', '1', '0.00', '#FFFFFF,#e78b8b', '0', '1', '1', '57', '977', 'Strawberry Ice Cream', 'Virtual strawberry rocks!', '25');
INSERT INTO `catalogue_items` VALUES ('978', 'rare_icecream*5', '1', '1', '1', '0.00', '#FFFFFF,#E1CC00', '0', '1', '1', '57', '978', 'Vanilla Ice Cream', 'Virtual vanilla rocks!', '25');
INSERT INTO `catalogue_items` VALUES ('979', 'rare_icecream*6', '1', '1', '1', '0.00', '#FFFFFF,#FF8000', '0', '1', '1', '57', '979', 'Toffee Ice Cream', 'Virtual toffee rocks!', '25');
INSERT INTO `catalogue_items` VALUES ('980', 'rare_icecream*7', '1', '1', '1', '0.00', '#FFFFFF,#97420C', '0', '1', '1', '57', '980', 'Chocolate Ice Cream', 'Virtual chocolate rocks!', '25');
INSERT INTO `catalogue_items` VALUES ('981', 'rare_icecream*8', '1', '1', '1', '0.00', '#FFFFFF,#00E5E2', '0', '1', '1', '57', '981', 'Peppermint Ice Cream', 'Virtual peppermint rocks!', '25');
INSERT INTO `catalogue_items` VALUES ('982', 'rare_icecream*9', '1', '1', '1', '0.00', '#FFFFFF,#FF60B0', '0', '1', '1', '57', '982', 'Bubblegum Ice Cream', 'Virtual bubblegum rocks!', '25');
INSERT INTO `catalogue_items` VALUES ('983', 'rubberchair*1', '2', '1', '1', '1.00', '#0080FF,0,0', '0', '1', '1', '58', '983', 'Blue Inflatable Chair', 'Soft and stylish HC chair', '25');
INSERT INTO `catalogue_items` VALUES ('984', 'rubberchair*2', '2', '1', '1', '1.00', '#FF8B8B,0,0', '0', '1', '1', '58', '984', 'Pink Inflatable Chair', 'Soft and tearproof!', '25');
INSERT INTO `catalogue_items` VALUES ('985', 'rubberchair*3', '2', '1', '1', '1.00', '#FF8000,0,0', '0', '1', '1', '58', '985', 'Orange Inflatable Chair', 'Soft and tearproof!', '25');
INSERT INTO `catalogue_items` VALUES ('986', 'rubberchair*4', '2', '1', '1', '1.00', '#00E5E2,0,0', '0', '1', '1', '58', '986', 'Ocean Inflatable Chair', 'Soft and tearproof!', '25');
INSERT INTO `catalogue_items` VALUES ('987', 'rubberchair*5', '2', '1', '1', '1.00', '#A1DC67,0,0', '0', '1', '1', '58', '987', 'Lime Inflatable Chair', 'Soft and tearproof!', '25');
INSERT INTO `catalogue_items` VALUES ('988', 'rubberchair*6', '2', '1', '1', '1.00', '#B357FF,0,0', '0', '1', '1', '58', '988', 'Violet Inflatable Chair', 'Soft and tearproof!', '25');
INSERT INTO `catalogue_items` VALUES ('989', 'rubberchair*7', '2', '1', '1', '1.00', '#CFCFCF,0,0', '0', '1', '1', '58', '989', 'White Inflatable Chair', 'Soft and tearproof!', '25');
INSERT INTO `catalogue_items` VALUES ('990', 'rubberchair*8', '2', '1', '1', '1.00', '#333333,0,0', '0', '1', '1', '58', '990', 'Black Inflatable Chair', 'Soft and tearproof for HC!', '25');
INSERT INTO `catalogue_items` VALUES ('991', 'scifiport*0', '1', '1', '1', '0.00', '#ffffff,#F43100,#ffffff,#ffffff,#ffffff,#F43100', '1', '1', '1', '59', '991', 'Red Laser Door', 'Energy beams. No trespassers!', '25');
INSERT INTO `catalogue_items` VALUES ('992', 'scifiport*1', '1', '1', '1', '0.00', '#ffffff,#ffbc00,#ffffff,#ffffff,#ffffff,#ffbc00', '1', '1', '1', '59', '992', 'Gold Laser Gate', 'Energy beams. No trespassers!', '25');
INSERT INTO `catalogue_items` VALUES ('993', 'scifiport*2', '1', '1', '1', '0.00', '#ffffff,#5599ff,#ffffff,#ffffff,#ffffff,#5599ff', '1', '1', '1', '59', '993', 'Blue Laser Gate', 'Get in the ring!', '25');
INSERT INTO `catalogue_items` VALUES ('994', 'scifiport*3', '1', '1', '1', '0.00', '#ffffff,#02bb70,#ffffff,#ffffff,#ffffff,#02bb70', '1', '1', '1', '59', '994', 'Jade Sci-Fi Port', 'Energy beams. No trespassers!', '25');
INSERT INTO `catalogue_items` VALUES ('995', 'scifiport*4', '1', '1', '1', '0.00', '#ffffff,#e78b8b,#ffffff,#ffffff,#ffffff,#e78b8b', '1', '1', '1', '59', '995', 'Pink Sci-Fi Port', 'Energy beams. No trespassers!', '25');
INSERT INTO `catalogue_items` VALUES ('996', 'scifiport*5', '1', '1', '1', '0.00', '#ffffff,#555555,#ffffff,#ffffff,#ffffff,#555555', '1', '1', '1', '59', '996', 'Security Fence', 'Recovered from Roswell', '25');
INSERT INTO `catalogue_items` VALUES ('997', 'scifiport*6', '1', '1', '1', '0.00', '#ffffff,#ffffff,#ffffff,#ffffff,#ffffff,#ffffff', '1', '1', '1', '59', '997', 'White Sci-Fi Port', 'Energy beams. No trespassers!', '25');
INSERT INTO `catalogue_items` VALUES ('998', 'scifiport*7', '1', '1', '1', '0.00', '#ffffff,#00cccc,#ffffff,#ffffff,#ffffff,#00cccc', '1', '1', '1', '59', '998', 'Turquoise Sci-Fi Port', 'Energy beams. No trespassers!', '25');
INSERT INTO `catalogue_items` VALUES ('999', 'scifiport*8', '1', '1', '1', '0.00', '#ffffff,#bb55cc,#ffffff,#ffffff,#ffffff,#bb55cc', '1', '1', '1', '59', '999', 'Purple Sci-Fi Port', 'Energy beams. No trespassers!', '25');
INSERT INTO `catalogue_items` VALUES ('1000', 'scifiport*9', '1', '1', '1', '0.00', '#ffffff,#B357FF,#ffffff,#ffffff,#ffffff,#B357FF', '1', '1', '1', '59', '1000', 'Violet Sci-Fi Port', 'Energy beams. No trespassers!', '25');
INSERT INTO `catalogue_items` VALUES ('1001', 'song_disk', '1', '1', '1', '0.20', '0,0,0', '0', '1', '1', '-1', '0', '', '', '0');
INSERT INTO `catalogue_pages` VALUES ('1', '1', 'Frontpage', 'Frontpage', 'ctlg_frontpage2', 'catal_fp_header', 'catal_fp_pic4,catal_fp_pic5,', 'Need some Furni for your Habbo room? Well, you?re in the right place! This Catalogue is packed FULL of funky Furni, just click the tabs on the right to browse.
We regularly add and remove Furni, so check back regularly for new items.', 's:Need some Funky Furni for your Habbo room?', 't1:You need Habbo Credits to buy Furni for your room, click the Purse at the bottom of your screen for more information about Credits.');
INSERT INTO `catalogue_pages` VALUES ('5', '1', 'no rares', 'Rare', 'ctlg_norares', 'catalog_rares_headline1', 'ctlg_norare_char1,', 'There isn\'t a rare item to buy at the moment, but it\'s coming soon! Please don\'t email us about it - we\'re keeping it secret...
', '', '');
INSERT INTO `catalogue_pages` VALUES ('6', '7', 'Rare', 'Rare', 'ctlg_productpage1', 'catalog_rares_headline1', '', 'It\'s Spring, and it\'s the best time to stock up on Parasols! Go get your Green Parasol Now!:', 's:Only for 2 weeks!!!', '');
INSERT INTO `catalogue_pages` VALUES ('7', '1', 'Spaces', 'Spaces', 'ctlg_spaces', 'catalog_spaces_headline1', null, 'Are your walls looking a little grey? What you need is a splash of paint and this is the place to get it!
A splash of colour on the walls and a nice carpet can make all the difference. Use our virtual room below to test out the combinations before you buy.', 't1:Wall\rt2:Floor\rt3:Pattern\rt4:Colour\rt5:Pattern\rt6:Colour\rt7:Preview', null);
INSERT INTO `catalogue_pages` VALUES ('8', '1', 'Pets', 'Pets', 'ctlg_pets', 'catalog_pet_headline1', 'catalog_pets_teaser1,', 'Fluff, scales and whiskers, meows, snaps and woofs! Anyone can have a pet on Habbo! Select your new pet from our ever changing selection, just click to page two then click back, to see more pets!', 'u:Pets2', 'Adopt a Pet today!');
INSERT INTO `catalogue_pages` VALUES ('9', '1', 'Pet Accesories', 'Pet Accessories', 'ctlg_layout2', 'catalog_pet_headline2', 'ctlg_pet_teaser1,', 'You\'ll need to take care of your pet to keep it happy and healthy. This section of the Catalogue has EVERYTHING you?ll need to satisfy your pet?s needs.', 's:You\'ll have to share it!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('10', '1', 'Area', 'Area', 'ctlg_layout2', 'catalog_area_headline1', 'catalog_area_teaser1,', 'Introducing the Area Collection... Clean, chunky lines set this collection apart as a preserve of the down-to-earth Habbo. It\'s beautiful in its simplicity, and welcoming to everyone.', 's:2: Beautiful in it\'s simplicity!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('11', '1', 'Accessories', 'Accessories', 'ctlg_layout2', 'catalog_extra_headline1', 'catalog_extra_teaser1,', 'Is your room missing something? Well, now you can add the finishing touches that express your true personality. And don\'t forget, like everything else, these accessories can be moved about to suit your mood.', 's:2: I love my rabbit...', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('12', '1', 'Asian', 'Asian', 'ctlg_layout2', 'catalog_asian_headline1', 'catalog_asian_teaser1,', 'Dit pure haandwerk uit de eeuwenoude oosterse pixeltraditie brengt balans in elk Habbointerieur. Jin en Yang vloeien samen met Feng en Shui in een uitgebalanceerde collectie meubi. ', 's:2: Oh, look there! Is Mulan the girl of Disney xD', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('13', '1', 'Bathroom', 'Bathroom', 'ctlg_layout2', 'catalog_bath_headline1', 'catalog_bath_teaser1,', 'Introducing the Bathroom Collection... Have some fun with the cheerful bathroom collection. Give yourself and your guests somewhere to freshen up - vital if you want to avoid nasty niffs. Put your loo in a corner though...', 's:2: Every Habbo needs one!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('14', '1', 'Candy', 'Candy', 'ctlg_layout2', 'catalog_candy_headline1', 'catalog_candy_teaser1,', 'Introducing the Candy Collection... Candy combines the cool, clean lines of the Mode collection with a softer, more soothing style. It\'s urban sharpness with a hint of the feminine.', 's:2: Relax! It\'s faux-fur.', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('15', '1', 'Camera', 'Camera', 'ctlg_camera1', 'catalog_camera_headline1', 'campic_cam,campic_film,', 'Take a picture and keep a record of those special moments forever. With your Habbo camera you can take pictures of just about anything in the Hotel – Even your friend on the loo...
A Camera costs 10 Credits (TWO FREE photos included).', '', 't1:When you\'ve used your free photos, you\'ll need to buy more… Each Film (5 photos) costs 6 Credits.
Your Camera will show how much film you ');
INSERT INTO `catalogue_pages` VALUES ('16', '1', 'Flags', 'Flags', 'ctlg_layout2', 'catalog_flags_headline1', 'catalog_flags_teaser1,', 'If you\'re feeling patriotic, get a flag to prove it. Our finest cloth flags will brighten up the dullest walls.', 's:2: Flag this section for later!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('17', '1', 'Gallery', 'Gallery', 'ctlg_layout2', 'catalog_gallery_headline1', 'catalog_posters_teaser1,', 'Adorn your walls with wondrous works of art, posters, plaques and wall hangings. We have items to suit all tastes, from kitsch to cool, traditional to modern.', 's:2: Brighten up your walls!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('18', '1', 'Glass', 'Glass', 'ctlg_layout2', 'catalog_glass_headline1', 'catalog_glass_teaser1,', 'Glass: Habbo Hotels exclusive furni line made from plexiglass, in different colors! Buy here your furni for a modern lounge!', 's:2: Oh My God, it\'s transparant!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('19', '1', 'Gothic', 'Gothic', 'ctlg_layout2', 'catalog_gothic_headline1', 'catalog_gothic_teaser1,', 'The Gothic section is full of medieval looking Furni. Check back for additions to this section as there are still some unreleased items to come!', 's:Gothic is my style.', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('20', '1', 'Grunge', 'Grunge', 'ctlg_layout2', 'catalog_gru_headline1', 'catalog_gru_teaser,', 'Introducing the Grunge Range. Alternative Habbos with alternative style or rebellious students with a point to prove. The Grunge range will get your bedroom looking just the way you like it - organised, neat and tidy!', '', 'New! Flaming Barrels out now!');
INSERT INTO `catalogue_pages` VALUES ('21', '1', 'Habbo Exchange', 'Habbo Exchange', 'ctlg_layout2', 'catalog_bank_headline1', 'catalog_bank_teaser,', 'The Habbo Exchange is where you can convert your Habbo Credits into a tradable currency. You can use this tradable currency to exchange Habbo Credits for Furni!', 's:Refundable goods!', 'Click on an item to see more details');
INSERT INTO `catalogue_pages` VALUES ('22', '1', 'Habbowood', 'Habbowood', 'ctlg_layout2', 'catalog_limited_headline1', 'catalog_limited_teaser1,', 'Exclusive: the new Habbowood furni, collect them all!', 's:1: Light, Camera, Action!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('23', '1', 'Iced', 'Iced', 'ctlg_layout2', 'catalog_iced_headline1', 'catalog_iced_teaser1,', 'Introducing the Iced Collection... For the Habbo who needs no introduction. It\'s so chic, it says everything and nothing. It\'s a blank canvas, let your imagination to run wild!', 's:2: These chairs are so comfy.', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('24', '1', 'Japanese', 'Japanese', 'ctlg_layout2', 'catalog_jap_headline2', 'catalog_jap_teaser3,', 'Here you can find the new Japanese furni! Get them now!', 's:1: Brand new furni!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('25', '1', 'Lodge', 'Lodge', 'ctlg_layout2', 'catalog_lodge_headline1', 'catalog_lodge_teaser1,', 'Introducing the Lodge Collection... Do you appreciate the beauty of wood? For that ski lodge effect, or to match that open fire... Lodge is the Furni of choice for Habbos with that no frills approach to decorating.
', 's:2: I LOVE this wood Furni!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('26', '1', 'Mode', 'Mode', 'ctlg_layout2', 'catalog_mode_headline1', 'catalog_mode_teaser1,', 'Introducing the Mode Collection... Steely grey functionality combined with sleek designer upholstery. The Habbo that chooses this furniture is a cool urban cat - streetwise, sassy and so slightly untouchable.', 's:2: So shiny and new...', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('27', '1', 'Offers', 'Offers', 'ctlg_layout2', 'catalog_deals_headline1', 'catalog_deals_teaser1,', 'Special Offers are great if you?re just starting out. Take a look at our special collections, all at a great price.
Check them out!', '', 'Click on a deal to find out what\'s included and how much it costs.');
INSERT INTO `catalogue_pages` VALUES ('28', '1', 'Plants', 'Plants', 'ctlg_layout2', 'catalog_plants_headline1', 'catalog_plants_teaser1,', 'New, never before seen Bulrush Plant is here for a limited time only. Buy it now!
Introducing the Plant Collection... Every room needs a plant! Not only do they bring a bit of the outside inside, they also enhance the air quality!', 's:2: I am at one with the trees', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('29', '1', 'Plastic', 'Plastic', 'ctlg_plasto', 'catalog_plasto_headline1', null, 'Introducing The Plastic Collection... Can you feel that 1970s vibe? Decorate with Plastic and add some colour to your life. Choose a colour that reflect your mood, or just pick your favourite shade.', 't2:Select The Colour\rs:New colours!\rt3:Preview\rt1:Choose An Item', 'Select an item and a colour and buy!');
INSERT INTO `catalogue_pages` VALUES ('30', '1', 'Presents', 'Presents', 'ctlg_presents', 'catalog_gifts_headline1', 'catalog_presents_teaser1,catalog_presents_teaser2,', 'Show your Habbo friends just how much you care and send them a gift from the Habbo Catalogue. ANY Catalogue item can be sent as a gift to ANY Habbo, all you need is their Habbo name!', 't1:Buying an item as a gift couldn?to be simpler...
Buy an item from the Catalogue in the normal way, but tick \'buy as a gift\'. Tell us which Habbo you want to give the gift to and we\'ll gift wrap it and deliver it straight to their hand.', '');
INSERT INTO `catalogue_pages` VALUES ('31', '1', 'Pura', 'Pura', 'ctlg_layout2', 'catalog_pura_headline1', 'catalog_pura_teaser1,', 'Introducing the Pura Collection... This collection breathes fresh, clean air and cool tranquility. The Pura Waltzer has arrived! Check back regularly to see new colours of Pura on sale!', '', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('32', '1', 'Recycler', 'Recycler', 'ctlg_recycler', 'catalog_recycler_headline1', null, null, '', null);
INSERT INTO `catalogue_pages` VALUES ('33', '1', 'Rollers', 'Rollers', 'ctlg_layout2', 'catalog_roller_headline1', '', 'Move your imagination, while you move your Habbo! Perfect for mazes, games, for keeping your queue moving or making your pet go round in circles for hours. Available in multi-packs ? the more you buy the cheaper the Roller! Pink Rollers out now!', 's:You can fit 35 Rollers in a Guest Room!', 'Click on a Roller to see more information!');
INSERT INTO `catalogue_pages` VALUES ('34', '1', 'Romantique', 'Romantique', 'ctlg_layout2', 'catalog_romantique_headline1', 'catalog_rom_teaser,', 'The Romantique range features Grand Pianos, old antique lamps and tables. It is the ideal range for setting a warm and loving mood in your room. Spruce up your room and invite that special someone over. Now featuring the extra special COLOUR edition.', '', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('35', '1', 'Rugs', 'Rugs', 'ctlg_layout2', 'catalog_rugs_headline1', 'catalog_rugs_teaser1,', 'We have rugs for all occasions. All rugs are non-slip and washable.', 's:2: Rugs, rugs and more rugs!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('36', '1', 'Sports', 'Sports', 'ctlg_layout2', 'catalog_sports_headline1', 'catalog_sports_teaser1,', 'For the sporty habbos, here is the sports section!', null, 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('37', '1', 'Teleport', 'Teleport', 'ctlg_layout2', 'catalog_doors_headline1', 'catalog_teleports_teaser2,catalog_door_c,catalog_door_b,', 'Beam your Habbo from one room to another with one of our cunningly disguised, space age teleports. Now you can link any two rooms together! Teleports are sold in pairs, so if you trade for them, check you\'re getting a linked pair.', 's:Teleport!', 'Select an item by clicking one of the icons on the left.');
INSERT INTO `catalogue_pages` VALUES ('38', '1', 'Trax Ambient', 'Trax Ambient', 'ctlg_soundmachine', 'catalog_trx_header1', 'catalog_trx_teaser1,', 'Welcome to the Ambient Trax Store! With groovy beats and chilled out melodies, this is the section for some cool and relaxing tunes.', null, null);
INSERT INTO `catalogue_pages` VALUES ('39', '1', 'Trax Dance', 'Trax Dance', 'ctlg_soundmachine', 'catalog_trx_header2', 'catalog_trx_teaser2,', 'Welcome to the Dance Trax Store! With funky beats and catchy melodies, this is the section for every clubber to indulge in.', null, null);
INSERT INTO `catalogue_pages` VALUES ('40', '1', 'Trax Rock', 'Trax Rock', 'ctlg_soundmachine', 'catalog_trx_header3', 'catalog_trx_teaser3,', 'Welcome to the Rock Trax Store! With heavy beats and rockin\' riffs, this is the section for every rock fan to experiment with.', null, null);
INSERT INTO `catalogue_pages` VALUES ('41', '1', 'Trax SFX', 'Trax SFX', 'ctlg_soundmachine', 'catalog_trx_header4', 'catalog_trx_teaser4,', 'Welcome to the SFX Trax Store! With crazy sounds and weird noises, this is the section for every creative room builder to indulge in.', null, null);
INSERT INTO `catalogue_pages` VALUES ('42', '1', 'Trax Urban', 'Trax Urban', 'ctlg_soundmachine', 'catalog_trx_header5', 'catalog_trx_teaser5,', 'Welcome to the Urban Trax Store! With hip hop beats and RnB vocals, this is the section for every city bopper to indulge in.', null, null);
INSERT INTO `catalogue_pages` VALUES ('43', '1', 'Trophies', 'Trophies', 'ctlg_trophies', 'catalog_trophies_headline1', '', 'Reward your Habbo friends, or yourself with one of our fabulous glittering array of bronze, silver and gold trophies.
First choose the trophy model (click on the arrows to see all the different styles) and then the metal (click on the seal below the trophy). Type your inscription below and we\'ll engrave it on the trophy along with your name and today\'s date.', 't1:Type your inscription CAREFULLY, it\'s permanent!', null);
INSERT INTO `catalogue_pages` VALUES ('44', '7', 'Christmas', 'Christmas', 'ctlg_layout2', 'catalog_xmas_headline1', 'catalog_xmas_teaser,', 'The Habbo Christmas catalogue has everything you need to make the perfect festive room: Trees, ducks with santa hats on, puddings and of course, Menorahs!', 's:2:Tuck into Christmas!', 'Click on an item to see a bigger version of it!');
INSERT INTO `catalogue_pages` VALUES ('45', '7', 'Easter', 'Easter', 'ctlg_layout2', 'catalog_easter_headline1', 'catalog_easter_teaser1,', '\'Egg\'cellent furni - Bouncing bunnies, fluffy chicks, choccy eggs... Yep, it\'s Easter! Celebrate with something \'eggs\'tra special from our Easter range. But hurry - it\'s not here for long this year!', 's:2: \'Egg\'-Tastic!', 'Click on an item for more details.');
INSERT INTO `catalogue_pages` VALUES ('46', '7', 'Halloween', 'Halloween', 'ctlg_layout2', 'catalog_halloween_headline1', 'catalog_halloween_teaser,', 'Yes, it\'s a spookfest! Get your boney hands on our creepy collection of ghoulish goodies. But be quick - they\'ll be gone from the Catalogue after two weeks!', 's:2:Halloween is My day!', 'Click on an item to see a bigger version of it!');
INSERT INTO `catalogue_pages` VALUES ('47', '7', 'Love', 'Love', 'ctlg_layout2', 'catalog_love_headline1', 'catalog_love_teaser1,', 'The love collection has everything to create the perfect love room, for a good price!', 's:2:Oh! Comes Valentine\'s Day!', 'Click on an item to see a bigger version of it!');
INSERT INTO `catalogue_pages` VALUES ('48', '7', 'Area Colour', 'Area Colour', 'ctlg_layout2', 'catalog_area_headline1', 'catalog_area_teaser1,', 'Introducing the Area Collection... Clean, chunky lines set this collection apart as a preserve of the down-to-earth Habbo. It\'s beautiful in its simplicity, and welcoming to everyone.', 's:Much More Colours!!!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('49', '7', 'Iced Colour', 'Iced Colour', 'ctlg_layout2', 'catalog_iced_headline1', 'catalog_iced_teaser1,', 'Introducing the Iced Collection... For the Habbo who needs no introduction. It\'s so chic, it says everything and nothing. It\'s a blank canvas, let your imagination to run wild!', 's:Much More Colours!!!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('50', '7', 'Mode Colour', 'Mode Colour', 'ctlg_layout2', 'catalog_mode_headline1', 'catalog_mode_teaser1,', 'Introducing the Mode Collection... Steely grey functionality combined with sleek designer upholstery. The Habbo that chooses this furniture is a cool urban cat - streetwise, sassy and so slightly untouchable.', 's:Much More Colours!!!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('51', '7', 'Pura Colour', 'Pura Colour', 'ctlg_layout2', 'catalog_pura_headline1', 'catalog_pura_teaser1,', 'Introducing the Pura Collection... This collection breathes fresh, clean air and cool tranquility. The Pura Waltzer has arrived! Check back regularly to see new colours of Pura on sale!', 's:Much More Colours!!!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('52', '7', 'Romantique Colour', 'Romantique Colour', 'ctlg_layout2', 'catalog_romantique_headline1', 'catalog_rom_teaser,', 'The Romantique range features Grand Pianos, old antique lamps and tables. It is the ideal range for setting a warm and loving mood in your room. Spruce up your room and invite that special someone over. Now featuring the extra special COLOUR edition.', 's:Much More Colours!!!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('53', '7', 'Club Furni', 'Club Furni', 'ctlg_layout2', 'catalog_club_headline1', 'catalog_hc_teaser,', 'Welcome to the club furni page. Here you can buy any club furni for just 25 credits!', 's:For Habbo Club members only!', 'Click on an item to see more details');
INSERT INTO `catalogue_pages` VALUES ('54', '7', 'Club Shop', 'Club Shop', 'ctlg_layout2', 'catalog_club_headline1', 'catalog_hc_teaser,', 'Welcome to the Brand New Habbo Club Shop, where Habbo Club members can purchase exclusive items!
The Furni in this section can only be purchased by Habbos who have joined Habbo Club.', 's:For Habbo Club members only!', 'Click on an item to see more details');
INSERT INTO `catalogue_pages` VALUES ('55', '7', 'Dragons', 'Dragons', 'ctlg_layout2', 'catalog_jap_headline2', 'catalog_jap_teaser3,', 'Here you can find the Power of Dragons! Get them now!', 's:1: All Colours!', 'Click on the item you want for more information.');
INSERT INTO `catalogue_pages` VALUES ('56', '7', 'Fans', 'Fans', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('57', '7', 'Ice Cream Rare', 'Ice Cream Rare', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('58', '7', 'Inflatables', 'Inflatables', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('59', '7', 'Laser Gates', 'Laser Gates', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('60', '7', 'Marquee', 'Marquee', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('61', '7', 'Monoliths', 'Monoliths', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('62', '7', 'Oriental Screen', 'Oriental Screen', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('63', '7', 'Pilars Rare', 'Pilars Rare', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('64', '7', 'Pillow Rare', 'Pillow Rare', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('65', '7', 'Smoke Machines', 'Smoke Machines', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('66', '7', 'Summer Pools', 'Summer Pools', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('67', '7', 'Rares', 'Rares', 'ctlg_layout2', 'catalog_rares_headline1', '', 'Hm... You have permission to stay here? Oh! if you don\'t have permission, please go away!!!', 's:Restricted Zone', 'Select a item, and see more details');
INSERT INTO `catalogue_pages` VALUES ('68', '7', 'Trophies Rare', 'Tropies Rare', '', '', '', '', '', '');
INSERT INTO `catalogue_pages` VALUES ('69', '7', 'Limited Edition', 'Limited Edition', 'ctlg_layout2', 'catalog_limited_headline1', 'catalog_limited_teaser1,', 'Get it while its hot..
LIMITED EDITION FURNITURE!', '', 'For a limited time only!');
INSERT INTO `cms_content` VALUES ('credits1', 'Credits are the hotel\\\'s currency. You can use them to buy all kinds of things, from rubber ducks and sofas, to Habbo Club membership, jukeboxes and teleports.', 'Credits Content Box 1', 'The text within a content box on the credits page.', '1', '3');
INSERT INTO `cms_content` VALUES ('credits2', '
To buy furniture or play games, you need credits. We provide you with free credits on registration, and if you run out, there are several ways you can earn more credits: