Welcome!

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

Join Today!

Hang Glider - 2.0 [Butterfly, R63, MySQL]

Status
Not open for further replies.
Divine Celestial
Loyal Member
Joined
Oct 2, 2011
Messages
858
Reaction score
272
Is the next error about wallsize and floorsize?

No,
Livar - Hang Glider - 2.0 [Butterfly, R63, MySQL] - RaGEZONE Forums
 
Junior Spellweaver
Joined
May 9, 2012
Messages
172
Reaction score
81
Why create an own DatabaseClient-Pooling. Just use the MySQLHelper class to code it. Its just that easy Meth0d.
 
Divine Celestial
Loyal Member
Joined
Oct 2, 2011
Messages
858
Reaction score
272
Anyone figured out how to fix the result error?
 
Junior Spellweaver
Joined
Oct 6, 2011
Messages
185
Reaction score
15
Anyone figured out how to fix the result error?

Yes, i'll post a screen soon


----EDIT----

I don't know what the sql is, but you're not a newbie:

hang.PNG - Hang Glider - 2.0 [Butterfly, R63, MySQL] - RaGEZONE Forums

I renamed the site_config to site_config_old(for backup) and made a new table.

Now, have anyone a client for me?
 

Attachments

You must be registered for see attachments list
Last edited:
ส็็็็็็็
Loyal Member
Joined
Sep 21, 2009
Messages
2,005
Reaction score
594
Yes, i'll post a screen soon


----EDIT----

I don't know what the sql is, but you're not a newbie:

View attachment 108108

How come you have v3? or have you renamed it

EDIT: I will post a database if I find it on my external hdd, I use to have hang glider 2.0 working perfectly so the database is somewere.

EDIT 2: I found this: but I'm not sure if its the right one... try!
 
Not so spooky...
Loyal Member
Joined
May 22, 2010
Messages
1,017
Reaction score
276
How come you have v3? or have you renamed it

EDIT: I will post a database if I find it on my external hdd, I use to have hang glider 2.0 working perfectly so the database is somewere.

EDIT 2: I found this: but I'm not sure if its the right one... try!



That's the exact same batabase that is in there at the moment -.-"
 
Divine Celestial
Loyal Member
Joined
Oct 2, 2011
Messages
858
Reaction score
272
Well, I tried to fix the result error I just can't seem to fix it. I tried over for 2 hours straight.
 
Junior Spellweaver
Joined
Oct 6, 2011
Messages
185
Reaction score
15
That's right?

Code:
-- phpMyAdmin SQL Dump
-- version 3.5.1
-- http://www.phpmyadmin.net
--
-- Machine: localhost
-- Genereertijd: 01 jul 2012 om 16:50
-- Serverversie: 5.5.8
-- PHP-versie: 5.3.5

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Databank: `hang`
--

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `achievements`
--

CREATE TABLE IF NOT EXISTS `achievements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `levels` int(11) NOT NULL DEFAULT '1',
  `dynamic_badgelevel` enum('0','1') NOT NULL DEFAULT '1',
  `badge` varchar(100) NOT NULL,
  `pixels_base` int(11) NOT NULL DEFAULT '50',
  `pixels_multiplier` double NOT NULL DEFAULT '1.25',
  `category` enum('room_builder','identity','pets','games','social','music','explore') NOT NULL DEFAULT 'room_builder',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=214 ;

--
-- Gegevens worden uitgevoerd voor tabel `achievements`
--

INSERT INTO `achievements` (`id`, `levels`, `dynamic_badgelevel`, `badge`, `pixels_base`, `pixels_multiplier`, `category`) VALUES
(1, 1, '1', 'ACH_AvatarLooks', 50, 0, 'identity'),
(5, 1, '1', 'ACH_Motto', 50, 0, 'identity'),
(6, 1, '1', 'ACH_Student', 50, 0, 'identity'),
(7, 1, '1', 'ACH_AvatarTags', 50, 0, 'identity'),
(11, 1, '0', 'Z63', 50, 0, 'room_builder'),
(12, 10, '1', 'ACH_RoomEntry', 5, 0, 'explore'),
(15, 10, '1', 'ACH_RespectEarned', 50, 1, 'social'),
(16, 1, '1', 'ACH_RespectGiven', 20, 1, 'social'),
(17, 10, '1', 'ACH_GiftGiver', 20, 1, 'social'),
(18, 10, '1', 'ACH_GiftReceiver', 20, 1, 'social'),
(19, 10, '1', 'ACH_AllTimeHotelPresence', 50, 1.25, 'identity'),
(20, 10, '1', 'ACH_PetLover', 50, 1.25, 'pets'),
(21, 10, '1', 'ACH_FireworksCharger', 50, 1.25, 'social'),
(200, 10, '1', 'ACH_SkateBoardSlide', 50, 0, 'games'),
(211, 10, '1', 'ACH_SkateBoardJump', 50, 0, 'games'),
(29, 10, '1', 'ACH_TagA', 50, 0, 'games');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `bans`
--

CREATE TABLE IF NOT EXISTS `bans` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `bantype` enum('user','ip') NOT NULL DEFAULT 'user',
  `value` varchar(50) NOT NULL,
  `reason` text NOT NULL,
  `expire` double NOT NULL DEFAULT '0',
  `added_by` varchar(50) NOT NULL,
  `added_date` varchar(50) NOT NULL,
  `appeal_state` enum('0','1','2') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `bans_appeals`
--

CREATE TABLE IF NOT EXISTS `bans_appeals` (
  `ban_id` int(11) NOT NULL,
  `send_ip` varchar(50) NOT NULL,
  `send_date` varchar(120) NOT NULL,
  `mail` varchar(120) NOT NULL,
  `plea` text NOT NULL,
  KEY `ban_id` (`ban_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `bots`
--

CREATE TABLE IF NOT EXISTS `bots` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `room_id` int(10) unsigned NOT NULL DEFAULT '0',
  `ai_type` enum('generic','guide','pet') NOT NULL DEFAULT 'generic',
  `name` varchar(100) NOT NULL,
  `motto` varchar(120) NOT NULL,
  `look` text NOT NULL,
  `x` int(11) NOT NULL DEFAULT '0',
  `y` int(11) NOT NULL DEFAULT '0',
  `z` int(11) NOT NULL DEFAULT '0',
  `rotation` int(11) NOT NULL DEFAULT '0',
  `walk_mode` enum('stand','freeroam','specified_range') NOT NULL DEFAULT 'stand',
  `min_x` int(11) NOT NULL DEFAULT '0',
  `min_y` int(11) NOT NULL DEFAULT '0',
  `max_x` int(11) NOT NULL DEFAULT '0',
  `max_y` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `room_id` (`room_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=63 ;

--
-- Gegevens worden uitgevoerd voor tabel `bots`
--

INSERT INTO `bots` (`id`, `room_id`, `ai_type`, `name`, `motto`, `look`, `x`, `y`, `z`, `rotation`, `walk_mode`, `min_x`, `min_y`, `max_x`, `max_y`) VALUES
(53, 5493, 'generic', 'Botty "Freeroamer" McBothead', 'Why do I look like a moderator?', 'hd-180-1.ch-804-77.lg-280-77.sh-295-62.hr-828-34', 7, 5, 0, 0, 'freeroam', 0, 0, 0, 0),
(54, 1, 'generic', 'Harry', 'Welcome to Uber!', 'hd-180-7.sh-290-110.lg-270-91.ch-809-62.hr-828-45', 9, 19, 0, 2, 'stand', 8, 16, 9, 24),
(55, 0, 'guide', 'Guide Bot, Staff', 'Here to help you out!', 'hr-828-45.lg-285-64.ch-215-110.hd-180-2.sh-290-62.he-1607-', 0, 0, 0, 0, 'freeroam', 0, 0, 0, 0),
(56, 5492, 'generic', 'GraphiX', '', 'hd-195-2.sh-295-91.lg-280-110.ch-255-91.hr-828-39', 7, 2, 0, 4, 'stand', 0, 0, 0, 0),
(57, 5492, 'generic', 'Ownage', '', 'hd-180-2.sh-290-62.lg-270-110.ch-210-73.hr-828-45', 6, 4, 0, 0, 'stand', 0, 0, 0, 0),
(59, 5493, 'generic', 'Louise', '', 'lg-695-92.hd-600-1.hr-836-32.ch-880-92.ha-1024-62.sh-725-62', 5, 10, 0, 2, 'specified_range', 4, 8, 6, 13),
(60, 5493, 'generic', 'Bex', 'Uber Towers - Receptionist', 'hr-836-31.sh-907-96.hd-600-7.ch-826-80.lg-715-80', 9, 19, 0, 2, 'stand', 0, 0, 0, 0);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `bots_responses`
--

CREATE TABLE IF NOT EXISTS `bots_responses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `bot_id` int(10) unsigned NOT NULL,
  `keywords` text NOT NULL,
  `response_text` varchar(200) NOT NULL,
  `mode` enum('say','shout','whisper') NOT NULL DEFAULT 'say',
  `serve_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `bot_id` (`bot_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;

--
-- Gegevens worden uitgevoerd voor tabel `bots_responses`
--

INSERT INTO `bots_responses` (`id`, `bot_id`, `keywords`, `response_text`, `mode`, `serve_id`) VALUES
(1, 54, 'hey;hello;hallo;hai;hoi;howdy;hi', 'Hello!', 'say', 0),
(2, 54, 'drink;cola;food;order;buy;ice', 'You can''t order anything here. Does this look like a bar to you?', 'say', 0),
(3, 54, 'harry', 'That''s me!', 'say', 0),
(4, 54, 'project bobba', 'Ah, Project Bobba. Those were the days..', 'say', 0),
(5, 54, 'love', 'Love is a strange thing..', 'say', 0),
(6, 54, 'dust;dusty;dirty;filthy;disgusting;eww', 'Are you calling my lobby dirty!??!', 'shout', 0),
(7, 54, 'whisper to me harry', 'Do you like being whispered to...?', 'whisper', 0),
(8, 54, 'yes;yep;definitely;yeah;uh-huh;no;nope;never;nay', 'Oh, well, if you say so...', 'say', 0),
(9, 55, 'dutch;italian;sweedish;french;spanish;polish;portugese;brazillian;inglaise;anglais;hola;bonjour;nederlands;engels;swedish;language;german;deutsch', 'This is an English hotel! Please speak English or face punishment!', 'shout', 0),
(10, 55, 'help;halp', 'I''m here to help! If theres anything I can''t answer, use the help tool to the left!', 'say', 0),
(11, 55, 'job;badge;plz;please;pls', 'Please do not beg staff members! It''ll only annoy them and decrease your chances!', 'say', 0),
(12, 55, 'cred;credz;creds;credits;coins', 'Credits are given out at random intervals. Check the site for more details.', 'say', 0),
(13, 55, 'mod;admin;staff', 'Our dedicated staff are here to improve your retro experience!', 'say', 0),
(14, 55, 'furni;decorate;walls;floor;windows;sofa;chair;table', 'If you want to decorate, buy some items from the catalogue and place them in your room!', 'say', 0),
(15, 55, 'pixels', 'You get pixels for being online and getting achievements, you can then spend them in the catalogue!', 'say', 0),
(16, 59, '*Hands order*', '*Starts preparing and cooking meal*', 'say', 0);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `bots_speech`
--

CREATE TABLE IF NOT EXISTS `bots_speech` (
  `bot_id` int(10) unsigned NOT NULL,
  `text` varchar(200) NOT NULL,
  `shout` enum('0','1') NOT NULL DEFAULT '0',
  KEY `bot_id` (`bot_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `bots_speech`
--

INSERT INTO `bots_speech` (`bot_id`, `text`, `shout`) VALUES
(54, 'Welcome to Uber. Can I help you?', '0'),
(54, '*sneeze*', '1'),
(54, 'When''s my break? I''ve been standing here for ages..', '0'),
(54, 'My feet hurt.. :(', '0'),
(54, '*yawn*', '0'),
(54, 'I miss Project Bobba.. people used to be nice there. *sigh*', '0'),
(54, 'Why is it always so quiet here? I feel so lonely..', '0'),
(54, 'Don''t even think about asking me for a drink .. this is not a bar.', '0'),
(56, 'sigh..', '0'),
(56, 'damn those scripters..', '0'),
(56, 'who put that on my todo list!?', '0'),
(56, 'always whining for badges and ranks..', '0'),
(57, 'Can I be mod plz?', '0'),
(57, '*writes on todo list*', '0'),
(57, 'I love Skye <3', '0'),
(57, 'Plz to has moar badges? :(', '0'),
(58, '*jumps out of window*', '0'),
(58, 'God, I do all the work around here...', '0'),
(58, 'I deserve all the Project Bobba awards!', '0'),
(58, ':invisible 1', '0'),
(55, ' Credits are topped up on a regular basis :)', '0'),
(55, 'There are always competitions going on to earn more credits and rares!', '0'),
(55, 'It''s always good to trade your rares! Share the wealth.', '0'),
(55, 'Have you checked out the marketplace in the catalogue yet?', '0'),
(55, 'Looking for somewere quiet? Go find a nice, relaxing public room in the navigator :)', '0'),
(55, 'Our staff are here to help you!', '0'),
(55, 'Rares are give out in competitons and events, as well as some in the catalogue for all users.', '0'),
(55, 'Found a bug? Got a suggestion? Send us a call for help!', '0'),
(59, '*Cleans surfaces*', '0'),
(59, '*Sweeps floor*', '0'),
(59, '*Mops up spillage*', '0'),
(0, '*Wipes over surfaces*', '0'),
(59, '*Mops up spillage*', '0'),
(59, '*Wipes over surfaces*', '0');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `catalog_items`
--

CREATE TABLE IF NOT EXISTS `catalog_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `page_id` int(11) NOT NULL,
  `item_ids` varchar(120) NOT NULL,
  `catalog_name` varchar(100) NOT NULL,
  `cost_credits` int(11) NOT NULL,
  `cost_pixels` int(11) NOT NULL,
  `cost_snow` int(255) NOT NULL DEFAULT '0',
  `amount` int(11) NOT NULL,
  `hc_state` enum('0','1','2') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=9037534 ;

--
-- Gegevens worden uitgevoerd voor tabel `catalog_items`
--

INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`, `hc_state`) VALUES
(1, 134, '19942', 'byesw_hand', 25, 0, 0, 1, '0'),
(2, 134, '19943', 'byesw_hotel', 25, 0, 0, 1, '0'),
(71, 55, '6', 'table_norja_med', 4, 0, 0, 1, '0'),
(72, 55, '1', 'shelves_norja', 3, 0, 0, 1, '0'),
(73, 55, '14', 'couch_norja', 4, 0, 0, 1, '0'),
(74, 55, '15', 'chair_norja', 3, 0, 0, 1, '0'),
(75, 55, '173', 'soft_sofachair_norja', 3, 0, 0, 1, '0'),
(76, 55, '174', 'soft_sofa_norja', 4, 0, 0, 1, '0'),
(78, 55, '479', 'table_norja_med*2', 3, 0, 0, 1, '0'),
(79, 55, '480', 'table_norja_med*3', 3, 0, 0, 1, '0'),
(80, 55, '481', 'table_norja_med*4', 3, 0, 0, 1, '0'),
(81, 55, '482', 'table_norja_med*5', 3, 0, 0, 1, '0'),
(82, 55, '483', 'table_norja_med*6', 3, 0, 0, 1, '0'),
(83, 55, '484', 'table_norja_med*7', 3, 0, 0, 1, '0'),
(85, 55, '485', 'table_norja_med*8', 3, 0, 0, 1, '0'),
(86, 55, '486', 'table_norja_med*9', 3, 0, 0, 1, '0'),
(87, 55, '487', 'couch_norja*2', 4, 0, 0, 1, '0'),
(88, 55, '488', 'couch_norja*3', 4, 0, 0, 1, '0'),
(89, 55, '489', 'couch_norja*4', 4, 0, 0, 1, '0'),
(90, 1, '490', 'couch_norja*5', 4, 0, 0, 1, '0'),
(91, 55, '491', 'couch_norja*6', 4, 0, 0, 1, '0'),
(92, 55, '492', 'couch_norja*7', 4, 0, 0, 1, '0'),
(93, 55, '493', 'couch_norja*8', 4, 0, 0, 1, '0'),
(94, 55, '494', 'couch_norja*9', 4, 0, 0, 1, '0'),
(95, 55, '495', 'shelves_norja*2', 3, 0, 0, 1, '0'),
(96, 55, '496', 'shelves_norja*3', 3, 0, 0, 1, '0'),
(97, 55, '497', 'shelves_norja*5', 3, 0, 0, 1, '0'),
(98, 55, '498', 'shelves_norja*6', 3, 0, 0, 1, '0'),
(99, 55, '499', 'shelves_norja*7', 3, 0, 0, 1, '0'),
(100, 55, '500', 'shelves_norja*8', 3, 0, 0, 1, '0'),
(101, 55, '501', 'shelves_norja*9', 3, 0, 0, 1, '0'),
(103, 55, '502', 'chair_norja*2', 3, 0, 0, 1, '0'),
(104, 55, '503', 'chair_norja*3', 3, 0, 0, 1, '0'),
(105, 55, '504', 'chair_norja*4', 3, 0, 0, 1, '0'),
(106, 55, '505', 'chair_norja*5', 3, 0, 0, 1, '0'),
(107, 55, '506', 'chair_norja*6', 3, 0, 0, 1, '0'),
(108, 55, '507', 'chair_norja*7', 3, 0, 0, 1, '0'),
(109, 55, '508', 'chair_norja*8', 3, 0, 0, 1, '0'),
(110, 55, '509', 'chair_norja*9', 3, 0, 0, 1, '0'),
(111, 55, '518', 'soft_sofa_norja*2', 4, 0, 0, 1, '0'),
(112, 55, '519', 'soft_sofa_norja*3', 4, 0, 0, 1, '0'),
(113, 55, '520', 'soft_sofa_norja*4', 3, 0, 0, 1, '0'),
(114, 55, '521', 'soft_sofa_norja*5', 4, 0, 0, 1, '0'),
(115, 55, '522', 'soft_sofa_norja*6', 4, 0, 0, 1, '0'),
(116, 55, '523', 'soft_sofa_norja*7', 4, 0, 0, 1, '0'),
(118, 55, '524', 'soft_sofa_norja*8', 4, 0, 0, 1, '0'),
(121, 55, '525', 'soft_sofa_norja*9', 4, 0, 0, 1, '0'),
(123, 55, '526', 'soft_sofachair_norja*2', 3, 0, 0, 1, '0'),
(124, 55, '527', 'soft_sofachair_norja*3', 3, 0, 0, 1, '0'),
(125, 55, '528', 'soft_sofachair_norja*3', 3, 0, 0, 1, '0'),
(126, 55, '530', 'soft_sofachair_norja*6', 3, 0, 0, 1, '0'),
(127, 55, '531', 'soft_sofachair_norja*7', 3, 0, 0, 1, '0'),
(128, 55, '529', 'soft_sofachair_norja*5', 3, 0, 0, 1, '0'),
(129, 55, '532', 'soft_sofachair_norja*8', 3, 0, 0, 1, '0'),
(130, 55, '533', 'soft_sofachair_norja*9', 3, 0, 0, 1, '0'),
(131, 55, '658', 'solarium_norja', 3, 0, 0, 1, '0'),
(132, 55, '659', 'solarium_norja*1', 3, 0, 0, 1, '0'),
(133, 55, '660', 'solarium_norja*2', 3, 0, 0, 1, '0'),
(134, 55, '661', 'solarium_norja*3', 3, 0, 0, 1, '0'),
(135, 55, '662', 'solarium_norja*5', 3, 0, 0, 1, '0'),
(136, 55, '663', 'solarium_norja*6', 3, 0, 0, 1, '0'),
(137, 55, '664', 'solarium_norja*7', 3, 0, 0, 1, '0'),
(138, 55, '665', 'solarium_norja*8', 3, 0, 0, 1, '0'),
(139, 55, '666', 'solarium_norja*9', 3, 0, 0, 1, '0'),
(140, 30, '2', 'shelves_polyfon', 3, 0, 0, 1, '0'),
(141, 30, '4', 'table_polyfon_small', 2, 0, 0, 1, '0'),
(142, 30, '5', 'chair_polyfon', 3, 0, 0, 1, '0'),
(143, 30, '11', 'stand_polyfon_z', 1, 0, 0, 1, '0'),
(144, 30, '16', 'table_polyfon_med', 3, 0, 0, 1, '0'),
(145, 30, '19', 'sofachair_polyfon', 3, 0, 0, 1, '0'),
(146, 30, '20', 'sofa_polyfon', 4, 0, 0, 1, '0'),
(147, 30, '25', 'bed_polyfon', 4, 0, 0, 1, '0'),
(148, 30, '26', 'bed_polyfon_one', 3, 0, 0, 1, '0'),
(149, 30, '109', 'bar_polyfon', 3, 0, 0, 1, '0'),
(150, 30, '46', 'fireplace_polyfon', 5, 0, 0, 1, '0'),
(152, 30, '112', 'bardesk_polyfon', 3, 0, 0, 1, '0'),
(153, 30, '113', 'bardeskcorner_polyfon', 3, 0, 0, 1, '0'),
(154, 30, '133', 'table_polyfon', 4, 0, 0, 1, '0'),
(155, 30, '134', 'smooth_table_polyfon', 4, 0, 0, 1, '0'),
(156, 31, '135', 'sofachair_polyfon_girl', 3, 0, 0, 1, '0'),
(157, 31, '136', 'bed_polyfon_girl_one', 3, 0, 0, 1, '0'),
(158, 31, '137', 'bed_polyfon_girl', 4, 0, 0, 1, '0'),
(159, 31, '138', 'sofa_polyfon_girl', 4, 0, 0, 1, '0'),
(160, 31, '620', 'bardeskcorner_polyfon*5', 3, 0, 0, 1, '0'),
(161, 31, '612', 'bardesk_polyfon*5', 3, 0, 0, 1, '0'),
(162, 31, '628', 'divider_poly3*5', 6, 0, 0, 1, '0'),
(163, 30, '216', 'divider_poly3', 6, 0, 0, 1, '0'),
(166, 30, '582', 'sofachair_polyfon*2', 3, 0, 0, 1, '0'),
(168, 30, '583', 'sofachair_polyfon*3', 3, 0, 0, 1, '0'),
(170, 30, '584', 'sofachair_polyfon*4', 3, 0, 0, 1, '0'),
(171, 30, '585', 'sofachair_polyfon*6', 3, 0, 0, 1, '0'),
(172, 30, '586', 'sofachair_polyfon*7', 3, 0, 0, 1, '0'),
(173, 30, '587', 'sofachair_polyfon*8', 3, 0, 0, 1, '0'),
(174, 30, '588', 'sofachair_polyfon*9', 3, 0, 0, 1, '0'),
(175, 30, '589', 'sofa_polyfon*2', 4, 0, 0, 1, '0'),
(176, 30, '590', 'sofa_polyfon*3', 4, 0, 0, 1, '0'),
(177, 30, '591', 'sofa_polyfon*3', 4, 0, 0, 1, '0'),
(178, 30, '592', 'sofa_polyfon*6', 3, 0, 0, 1, '0'),
(179, 30, '593', 'sofa_polyfon*7', 3, 0, 0, 1, '0'),
(180, 30, '594', 'sofa_polyfon*8', 4, 0, 0, 1, '0'),
(181, 30, '595', 'sofa_polyfon*9', 4, 0, 0, 1, '0'),
(182, 30, '596', 'bed_polyfon*3', 4, 0, 0, 1, '0'),
(183, 30, '597', 'bed_polyfon*4', 4, 0, 0, 1, '0'),
(184, 30, '598', 'bed_polyfon*6', 4, 0, 0, 1, '0'),
(185, 30, '599', 'bed_polyfon*7', 4, 0, 0, 1, '0'),
(186, 30, '600', 'bed_polyfon*8', 4, 0, 0, 1, '0'),
(187, 30, '601', 'bed_polyfon*9', 4, 0, 0, 1, '0'),
(188, 30, '602', 'bed_polyfon_one*2', 3, 0, 0, 1, '0'),
(189, 30, '603', 'bed_polyfon_one*3', 3, 0, 0, 1, '0'),
(190, 30, '604', 'bed_polyfon_one*4', 3, 0, 0, 1, '0'),
(191, 30, '605', 'bed_polyfon_one*6', 3, 0, 0, 1, '0'),
(192, 30, '606', 'bed_polyfon_one*7', 3, 0, 0, 1, '0'),
(193, 30, '607', 'bed_polyfon_one*8', 3, 0, 0, 1, '0'),
(194, 30, '608', 'bed_polyfon_one*9', 3, 0, 0, 1, '0'),
(195, 30, '609', 'bardesk_polyfon*2', 3, 0, 0, 1, '0'),
(196, 30, '610', 'bardesk_polyfon*3', 3, 0, 0, 1, '0'),
(197, 30, '611', 'bardesk_polyfon*4', 3, 0, 0, 1, '0'),
(198, 30, '604', 'bed_polyfon_one*4', 3, 0, 0, 1, '0'),
(199, 30, '613', 'bardesk_polyfon*6', 3, 0, 0, 1, '0'),
(200, 30, '614', 'bardesk_polyfon*7', 3, 0, 0, 1, '0'),
(201, 615, '615', 'bardesk_polyfon*8', 3, 0, 0, 1, '0'),
(202, 30, '616', 'bardesk_polyfon*9', 3, 0, 0, 1, '0'),
(203, 30, '616', 'bardesk_polyfon*9', 3, 0, 0, 1, '0'),
(204, 30, '617', 'bardeskcorner_polyfon*2', 3, 0, 0, 1, '0'),
(205, 30, '618', 'bardeskcorner_polyfon*3', 3, 0, 0, 1, '0'),
(206, 30, '619', 'bardeskcorner_polyfon*4', 3, 0, 0, 1, '0'),
(207, 30, '621', 'bardeskcorner_polyfon*6', 3, 0, 0, 1, '0'),
(208, 30, '622', 'bardeskcorner_polyfon*7', 3, 0, 0, 1, '0'),
(209, 30, '623', 'bardeskcorner_polyfon*8', 3, 0, 0, 1, '0'),
(210, 30, '624', 'bardeskcorner_polyfon*9', 3, 0, 0, 1, '0'),
(212, 30, '625', 'divider_poly3*2', 6, 0, 0, 1, '0'),
(213, 30, '626', 'divider_poly3*3', 6, 0, 0, 1, '0'),
(214, 30, '627', 'divider_poly3*4', 6, 0, 0, 1, '0'),
(215, 30, '629', 'divider_poly3*6', 6, 0, 0, 1, '0'),
(218, 30, '632', 'divider_poly3*9', 6, 0, 0, 1, '0'),
(222, 35, '32', 'bed_armas_two', 4, 0, 0, 1, '0'),
(224, 35, '36', 'bench_armas', 3, 0, 0, 1, '0'),
(225, 35, '37', 'table_armas', 4, 0, 0, 1, '0'),
(226, 35, '38', 'small_table_armas', 3, 0, 0, 1, '0'),
(227, 35, '39', 'small_chair_armas', 1, 0, 0, 1, '0'),
(228, 35, '40', 'fireplace_armas', 5, 0, 0, 1, '0'),
(229, 35, '41', 'lamp_armas', 3, 0, 0, 1, '0'),
(230, 35, '42', 'bed_armas_one', 3, 0, 0, 1, '0'),
(231, 35, '44', 'carpet_armas', 3, 0, 0, 1, '0'),
(232, 35, '115', 'bar_armas', 4, 0, 0, 1, '0'),
(233, 35, '116', 'bartable_armas', 4, 0, 0, 1, '0'),
(234, 35, '117', 'bar_chair_armas', 1, 0, 0, 1, '0'),
(235, 35, '176', 'lamp2_armas', 3, 0, 0, 1, '0'),
(237, 24, '1693', 'window_single_default', 3, 0, 0, 1, '0'),
(238, 24, '1694', 'window_double_default', 4, 0, 0, 1, '0'),
(239, 24, '1695', 'noob_window_double', 4, 0, 0, 1, '0'),
(240, 24, '1696', 'window_triple', 5, 0, 0, 1, '0'),
(241, 24, '1697', 'window_square', 1, 0, 0, 1, '0'),
(242, 24, '1698', 'window_romantic_wide', 4, 0, 0, 1, '0'),
(243, 24, '1699', 'window_romantic_narrow', 3, 0, 0, 1, '0'),
(244, 24, '1700', 'window_grunge', 2, 0, 0, 1, '0'),
(245, 24, '1701', 'window_golden', 4, 0, 0, 1, '0'),
(246, 24, '1702', 'window_chinese_wide', 6, 0, 0, 1, '0'),
(248, 24, '1703', 'window_chinese_narrow', 5, 0, 0, 1, '0'),
(249, 24, '1704', 'window_basic', 3, 0, 0, 1, '0'),
(250, 24, '1705', 'window_70s_wide', 5, 0, 0, 1, '0'),
(251, 24, '1706', 'window_70s_narrow', 4, 0, 0, 1, '0'),
(254, 24, '1712', 'window_hole', 2, 0, 0, 1, '0'),
(255, 24, '1717', 'window_skyscraper', 18, 0, 0, 5, '0'),
(257, 26, '1683', 'roomdimmer', 6, 0, 0, 1, '0'),
(258, 26, '1802', 'dimmer_fuse6', 6, 0, 0, 1, '0'),
(259, 26, '1803', 'dimmer_swtch', 3, 0, 0, 1, '0'),
(260, 26, '1804', 'dimmer_fuse2', 6, 0, 0, 1, '0'),
(261, 26, '1805', 'dimmer_buttn', 3, 0, 0, 1, '0'),
(264, 29, '178', 'door', 5, 0, 0, 1, '0'),
(265, 29, '1100', 'teleport_door', 6, 0, 0, 1, '0'),
(268, 29, '1613', 'sf_tele', 5, 0, 0, 1, '0'),
(269, 29, '1452', 'lostc_teleport', 5, 0, 0, 1, '0'),
(271, 33, '3', 'shelves_silo', 3, 0, 0, 1, '0'),
(272, 33, '7', 'table_silo_med', 3, 0, 0, 1, '0'),
(273, 33, '12', 'chair_silo', 3, 0, 0, 1, '0'),
(274, 33, '13', 'sofa_silo', 3, 0, 0, 1, '0'),
(275, 33, '21', 'sofachair_silo', 3, 0, 0, 1, '0'),
(276, 33, '29', 'bed_silo_one', 3, 0, 0, 1, '0'),
(277, 33, '30', 'bed_silo_two', 4, 0, 0, 1, '0'),
(278, 33, '31', 'table_silo_small', 2, 0, 0, 1, '0'),
(279, 33, '221', 'divider_silo1', 3, 0, 0, 1, '0'),
(280, 33, '223', 'divider_silo2', 3, 0, 0, 1, '0'),
(281, 33, '225', 'divider_silo3', 6, 0, 0, 1, '0'),
(282, 33, '461', 'barchair_silo', 3, 0, 0, 1, '0'),
(283, 33, '534', 'sofachair_silo*2', 3, 0, 0, 1, '0'),
(284, 33, '535', 'sofachair_silo*3', 3, 0, 0, 1, '0'),
(285, 33, '536', 'sofachair_silo*4', 3, 0, 0, 1, '0'),
(286, 33, '537', 'sofachair_silo*5', 3, 0, 0, 1, '0'),
(287, 33, '538', 'sofachair_silo*6', 3, 0, 0, 1, '0'),
(288, 33, '539', 'sofachair_silo*7', 3, 0, 0, 1, '0'),
(289, 33, '540', 'sofachair_silo*8', 3, 0, 0, 1, '0'),
(290, 33, '541', 'sofachair_silo*9', 3, 0, 0, 1, '0'),
(291, 33, '542', 'table_silo_small*2', 2, 0, 0, 1, '0'),
(292, 33, '543', 'table_silo_small*3', 2, 0, 0, 1, '0'),
(293, 33, '544', 'table_silo_small*4', 2, 0, 0, 1, '0'),
(294, 33, '545', 'table_silo_small*5', 2, 0, 0, 1, '0'),
(295, 33, '546', 'table_silo_small*6', 2, 0, 0, 1, '0'),
(296, 33, '547', 'table_silo_small*7', 2, 0, 0, 1, '0'),
(297, 33, '548', 'table_silo_small*8', 2, 0, 0, 1, '0'),
(298, 33, '549', 'table_silo_small*9', 3, 0, 0, 1, '0'),
(299, 33, '550', 'divider_silo1*2', 3, 0, 0, 1, '0'),
(300, 33, '551', 'divider_silo1*3', 3, 0, 0, 1, '0'),
(301, 33, '552', 'divider_silo1*4', 3, 0, 0, 1, '0'),
(302, 33, '553', 'divider_silo1*5', 3, 0, 0, 1, '0'),
(303, 33, '554', 'divider_silo1*6', 3, 0, 0, 1, '0'),
(304, 33, '555', 'divider_silo1*7', 3, 0, 0, 1, '0'),
(305, 33, '556', 'divider_silo1*8', 3, 0, 0, 1, '0'),
(306, 33, '557', 'divider_silo1*9', 3, 0, 0, 1, '0'),
(307, 33, '558', 'divider_silo3*2', 6, 0, 0, 1, '0'),
(308, 33, '559', 'divider_silo3*3', 6, 0, 0, 1, '0'),
(309, 33, '560', 'divider_silo3*4', 6, 0, 0, 1, '0'),
(310, 33, '561', 'divider_silo3*5', 6, 0, 0, 1, '0'),
(311, 33, '562', 'divider_silo3*6', 6, 0, 0, 1, '0'),
(312, 33, '563', 'divider_silo3*7', 6, 0, 0, 1, '0'),
(313, 33, '564', 'divider_silo3*8', 6, 0, 0, 1, '0'),
(314, 33, '565', 'divider_silo3*9', 6, 0, 0, 1, '0'),
(315, 33, '566', 'table_silo_med*2', 3, 0, 0, 1, '0'),
(316, 33, '567', 'table_silo_med*3', 3, 0, 0, 1, '0'),
(317, 33, '568', 'table_silo_med*4', 3, 0, 0, 1, '0'),
(318, 33, '569', 'table_silo_med*5', 3, 0, 0, 1, '0'),
(319, 33, '570', 'table_silo_med*6', 3, 0, 0, 1, '0'),
(320, 33, '571', 'table_silo_med*7', 3, 0, 0, 1, '0'),
(321, 33, '572', 'table_silo_med*8', 3, 0, 0, 1, '0'),
(322, 33, '573', 'table_silo_med*9', 3, 0, 0, 1, '0'),
(323, 33, '574', 'sofa_silo*2', 4, 0, 0, 1, '0'),
(324, 33, '575', 'sofa_silo*3', 4, 0, 0, 1, '0'),
(325, 33, '576', 'sofa_silo*4', 4, 0, 0, 1, '0'),
(326, 33, '577', 'sofa_silo*5', 4, 0, 0, 1, '0'),
(327, 33, '578', 'sofa_silo*6', 4, 0, 0, 1, '0'),
(328, 33, '579', 'sofa_silo*7', 4, 0, 0, 1, '0'),
(329, 33, '580', 'sofa_silo*8', 4, 0, 0, 1, '0'),
(330, 33, '581', 'sofa_silo*9', 4, 0, 0, 1, '0'),
(331, 33, '633', 'chair_silo*2', 3, 0, 0, 1, '0'),
(332, 33, '634', 'chair_silo*3', 3, 0, 0, 1, '0'),
(333, 33, '635', 'chair_silo*4', 3, 0, 0, 1, '0'),
(334, 33, '636', 'chair_silo*5', 3, 0, 0, 1, '0'),
(335, 33, '637', 'chair_silo*5', 3, 0, 0, 1, '0'),
(336, 33, '638', 'chair_silo*7', 3, 0, 0, 1, '0'),
(337, 33, '639', 'chair_silo*8', 3, 0, 0, 1, '0'),
(338, 33, '640', 'chair_silo*9', 3, 0, 0, 1, '0'),
(339, 33, '657', 'silo_studydesk', 10, 0, 0, 1, '0'),
(340, 33, '657', 'silo_studydesk', 10, 0, 0, 1, '0'),
(341, 33, '675', 'safe_silo', 3, 0, 0, 1, '0'),
(342, 33, '702', 'barchair_silo*2', 3, 0, 0, 1, '0'),
(343, 33, '703', 'barchair_silo*3', 3, 0, 0, 1, '0'),
(344, 33, '704', 'barchair_silo*4', 3, 0, 0, 1, '0'),
(345, 33, '705', 'barchair_silo*5', 3, 0, 0, 1, '0'),
(346, 33, '706', 'barchair_silo*6', 3, 0, 0, 1, '0'),
(347, 33, '707', 'barchair_silo*6', 3, 0, 0, 1, '0'),
(348, 33, '707', 'barchair_silo*7', 3, 0, 0, 1, '0'),
(349, 33, '708', 'barchair_silo*8', 3, 0, 0, 1, '0'),
(350, 33, '709', 'barchair_silo*9', 3, 0, 0, 1, '0'),
(351, 33, '710', 'safe_silo*2', 3, 0, 0, 1, '0'),
(352, 33, '711', 'safe_silo*3', 3, 0, 0, 1, '0'),
(353, 33, '712', 'safe_silo*4', 3, 0, 0, 1, '0'),
(354, 33, '713', 'safe_silo*5', 3, 0, 0, 1, '0'),
(355, 33, '714', 'safe_silo*6', 3, 0, 0, 1, '0'),
(356, 33, '715', 'safe_silo*7', 3, 0, 0, 1, '0'),
(358, 33, '716', 'safe_silo*8', 3, 0, 0, 1, '0'),
(359, 33, '717', 'safe_silo*9', 3, 0, 0, 1, '0'),
(360, 33, '1043', 'safe_silo_pb', 5, 0, 0, 1, '0'),
(363, 178, '1639', 'ktchn_stove', 4, 0, 0, 1, '0'),
(364, 178, '1640', 'ktchn_light', 3, 0, 0, 1, '0'),
(365, 178, '1641', 'ktchn_plates', 3, 0, 0, 1, '0'),
(366, 178, '1642', 'ktchn_countr_1', 3, 0, 0, 1, '0'),
(367, 178, '1643', 'ktchn_pots', 5, 0, 0, 1, '0'),
(368, 178, '1644', 'ktchn_cornr', 3, 0, 0, 1, '0'),
(369, 178, '1645', 'ktchn_desk', 3, 0, 0, 1, '0'),
(370, 178, '1646', 'ktchn_trash', 3, 0, 0, 1, '0'),
(371, 178, '1647', 'ktchn_countr_2', 4, 0, 0, 1, '0'),
(372, 178, '1648', 'ktchn_bBlock', 5, 0, 0, 1, '0'),
(373, 178, '1649', 'ktchn_dvdr', 3, 0, 0, 1, '0'),
(374, 178, '1650', 'ktchn_inspctr', 5, 0, 0, 1, '0'),
(375, 178, '1651', 'ktchn_fridge', 4, 0, 0, 1, '0'),
(376, 178, '1653', 'ktchn_sink', 4, 0, 0, 1, '0'),
(378, 178, '1654', 'ktchn_gate', 6, 0, 0, 1, '0'),
(379, 178, '1798', 'ktchn_wall', 8, 0, 0, 1, '0'),
(380, 178, '1800', 'ktchn_oven', 3, 0, 0, 1, '0'),
(381, 178, '1801', 'ktchn_knives', 3, 0, 0, 1, '0'),
(383, 178, '1798', 'ktchn_wall', 20, 0, 0, 5, '0'),
(386, 28, '1364', 'xmas08_snowpl', 3, 0, 0, 1, '0'),
(387, 28, '1366', 'xmas08_trph1', 6, 0, 0, 1, '0'),
(388, 28, '1368', 'xmas08_table', 3, 0, 0, 1, '0'),
(389, 28, '1369', 'xmas08_hottub', 5, 0, 0, 1, '0'),
(390, 28, '1373', 'xmas08_icetree', 4, 0, 0, 1, '0'),
(391, 28, '1375', 'xmas08_icerug', 5, 0, 0, 1, '0'),
(392, 28, '1387', 'xmas08_geysir', 4, 0, 0, 1, '0'),
(393, 28, '1391', 'xmas08_lantern', 3, 0, 0, 1, '0'),
(394, 28, '1392', 'xmas08_chair', 3, 0, 0, 1, '0'),
(395, 29, '1394', 'xmas08_telep', 6, 0, 0, 1, '0'),
(396, 28, '1395', 'xmas08_cubetree', 3, 0, 0, 1, '0'),
(397, 28, '1397', 'xmas08_dvdr1', 3, 0, 0, 1, '0'),
(398, 28, '1398', 'xmas08_hole', 2, 0, 0, 1, '0'),
(399, 28, '1401', 'xmas08_dvdr2', 3, 0, 0, 1, '0'),
(400, 28, '1413', 'xmas08_trph2', 6, 0, 0, 1, '0'),
(401, 28, '1738', 'xmas08_wallpaper', 3, 0, 0, 1, '0'),
(402, 28, '1739', 'xmas08_icewall', 3, 0, 0, 1, '0'),
(404, 39, '141', 'plant_pineapple', 3, 0, 0, 1, '0'),
(405, 39, '142', 'plant_fruittree', 3, 0, 0, 1, '0'),
(406, 39, '143', 'plant_small_cactus', 1, 0, 0, 1, '0'),
(407, 39, '144', 'plant_bonsai', 2, 0, 0, 1, '0'),
(408, 39, '145', 'plant_big_cactus', 3, 0, 0, 1, '0'),
(409, 39, '146', 'plant_yukka', 3, 0, 0, 1, '0'),
(410, 39, '152', 'plant_sunflower', 3, 0, 0, 1, '0'),
(411, 39, '153', 'plant_rose', 3, 0, 0, 1, '0'),
(412, 39, '816', 'plant_mazegate', 5, 0, 0, 1, '0'),
(413, 39, '817', 'plant_maze', 5, 0, 0, 1, '0'),
(414, 39, '818', 'plant_bulrush', 3, 0, 0, 1, '0'),
(417, 38, '155', 'bath', 6, 0, 0, 1, '0'),
(418, 38, '156', 'sink', 3, 0, 0, 1, '0'),
(419, 38, '159', 'tile', 3, 0, 0, 1, '0'),
(420, 38, '162', 'tile_red', 3, 0, 0, 1, '0'),
(421, 38, '163', 'tile_yell', 3, 0, 0, 1, '0'),
(422, 38, '157', 'toilet', 4, 0, 0, 1, '0'),
(423, 38, '160', 'toilet_red', 4, 0, 0, 1, '0'),
(424, 38, '161', 'toilet_yell', 4, 0, 0, 1, '0'),
(425, 38, '158', 'duck', 1, 0, 0, 1, '0'),
(426, 34, '1536', 'country_rain', 3, 0, 0, 1, '0'),
(427, 34, '1537', 'country_scarecrow', 3, 0, 0, 1, '0'),
(428, 34, '1539', 'country_soil', 5, 0, 0, 1, '0'),
(429, 34, '1540', 'country_grass', 5, 0, 0, 1, '0'),
(430, 34, '1543', 'country_trctr', 4, 0, 0, 1, '0'),
(431, 34, '1544', 'country_fnc2', 3, 0, 0, 1, '0'),
(432, 34, '1545', 'country_fnc1', 2, 0, 0, 1, '0'),
(433, 34, '1546', 'country_well', 3, 0, 0, 1, '0'),
(434, 34, '1548', 'country_rbw', 3, 0, 0, 1, '0'),
(435, 34, '1549', 'country_wheat', 5, 0, 0, 1, '0'),
(436, 34, '1550', 'country_gate', 6, 0, 0, 1, '0'),
(437, 34, '1552', 'country_stage', 4, 0, 0, 1, '0'),
(438, 34, '1557', 'country_log', 3, 0, 0, 1, '0'),
(439, 34, '1558', 'country_fnc3', 3, 0, 0, 1, '0'),
(440, 34, '1559', 'country_patio', 1, 0, 0, 1, '0'),
(441, 34, '1560', 'country_corner', 3, 0, 0, 1, '0'),
(442, 34, '1561', 'country_ditch', 3, 0, 0, 1, '0'),
(443, 34, '1777', 'country_forestwall', 4, 0, 0, 1, '0'),
(444, 34, '1778', 'country_fp', 4, 0, 0, 1, '0'),
(445, 34, '1779', 'country_wall', 3, 0, 0, 1, '0'),
(446, 34, '1780', 'country_lantern', 3, 0, 0, 1, '0'),
(448, 34, '1779', 'country_wall', 15, 0, 0, 5, '0'),
(449, 40, '43', 'carpet_standard', 3, 0, 0, 1, '0'),
(450, 40, '45', 'carpet_polar', 3, 0, 0, 1, '0'),
(451, 40, '52', 'carpet_standard*1', 3, 0, 0, 1, '0'),
(452, 40, '60', 'carpet_standard*2', 3, 0, 0, 1, '0'),
(453, 40, '66', 'carpet_standard*3', 3, 0, 0, 1, '0'),
(454, 40, '66', 'carpet_standard*3', 3, 0, 0, 1, '0'),
(455, 40, '73', 'carpet_standard*4', 3, 0, 0, 1, '0'),
(456, 40, '77', 'carpet_standard*5', 3, 0, 0, 1, '0'),
(457, 40, '102', 'carpet_standard*6', 3, 0, 0, 1, '0'),
(458, 40, '118', 'carpet_soft', 3, 0, 0, 1, '0'),
(459, 40, '119', 'carpet_soft*1', 3, 0, 0, 1, '0'),
(460, 40, '120', 'carpet_soft*2', 3, 0, 0, 1, '0'),
(461, 40, '121', 'carpet_soft*3', 3, 0, 0, 1, '0'),
(462, 40, '122', 'carpet_soft*4', 3, 0, 0, 1, '0'),
(463, 40, '123', 'carpet_soft*5', 3, 0, 0, 1, '0'),
(464, 40, '124', 'carpet_soft*6', 3, 0, 0, 1, '0'),
(465, 40, '127', 'carpet_polar*1', 3, 0, 0, 1, '0'),
(466, 40, '129', 'carpet_polar*2', 3, 0, 0, 1, '0'),
(467, 40, '130', 'carpet_polar*3', 3, 0, 0, 1, '0'),
(468, 40, '131', 'carpet_polar*4', 3, 0, 0, 1, '0'),
(469, 40, '147', 'carpet_standard*7', 3, 0, 0, 1, '0'),
(470, 40, '148', 'carpet_standard*8', 3, 0, 0, 1, '0'),
(471, 40, '149', 'carpet_standard*9', 3, 0, 0, 1, '0'),
(472, 40, '150', 'carpet_standard*10', 3, 0, 0, 1, '0'),
(473, 40, '151', 'carpet_standard*11', 3, 0, 0, 1, '0'),
(475, 41, '1781', 'flag_norway', 3, 0, 0, 1, '0'),
(476, 41, '1795', 'flag_belgium', 3, 0, 0, 1, '0'),
(477, 41, '1796', 'flag_portugal', 3, 0, 0, 1, '0'),
(481, 27, '190', 'xmasduck', 1, 0, 0, 1, '0'),
(482, 27, '263', 'rare_xmas_screen', 6, 0, 0, 1, '0'),
(483, 28, '1035', 'xmas_icelamp', 3, 0, 0, 1, '0'),
(485, 27, '1036', 'xmas_cstl_wall', 5, 0, 0, 1, '0'),
(486, 27, '1037', 'xmas_cstl_twr', 5, 0, 0, 1, '0'),
(487, 27, '1038', 'xmas_cstl_gate', 5, 0, 0, 1, '0'),
(488, 27, '1378', 'xmas_snow', 3, 0, 0, 1, '0'),
(489, 27, '1378', 'xmas_snow', 20, 0, 0, 10, '0'),
(490, 27, '1676', 'xmas_light', 3, 0, 0, 1, '0'),
(493, 27, '19971', 'xm09_man_b', 3, 0, 0, 1, '0'),
(495, 27, '19972', 'xm09_man_c', 3, 0, 0, 1, '0'),
(496, 27, '19973', 'xm09_table', 5, 0, 0, 1, '0'),
(497, 27, '19974', 'xm09_bench', 5, 0, 0, 1, '0'),
(499, 27, '19977', 'xm09_forestwall', 3, 0, 0, 1, '0'),
(500, 27, '19978', 'xm09_lodgewall', 3, 0, 0, 1, '0'),
(501, 27, '19979', 'xm09_bauble_25', 3, 0, 0, 1, '0'),
(502, 27, '19976', 'xm09_firwall', 3, 0, 0, 1, '0'),
(503, 27, '19980', 'xm09_bauble_26', 3, 0, 0, 1, '0'),
(505, 27, '19982', 'xm09_bauble_27', 3, 0, 0, 1, '0'),
(506, 27, '19983', 'xm09_bauble_23', 3, 0, 0, 1, '0'),
(507, 27, '19984', 'xm09_bauble_24', 3, 0, 0, 1, '0'),
(508, 27, '19985', 'xm09_candyCane', 3, 0, 0, 1, '0'),
(509, 27, '19986', 'xm09_stocking', 3, 0, 0, 1, '0'),
(512, 27, '187', 'pudding', 3, 0, 0, 1, '0'),
(513, 27, '193', 'tree3', 3, 0, 0, 1, '0'),
(514, 27, '194', 'tree4', 3, 0, 0, 1, '0'),
(515, 27, '195', 'tree5', 3, 0, 0, 1, '0'),
(516, 27, '1039', 'tree7', 3, 0, 0, 1, '0'),
(517, 27, '1040', 'tree6', 3, 0, 0, 1, '0'),
(518, 27, '1046', 'christmas_sleigh', 6, 0, 0, 1, '0'),
(519, 27, '1047', 'christmas_reindeer', 5, 0, 0, 1, '0'),
(520, 27, '1048', 'christmas_poop', 1, 0, 0, 1, '0'),
(522, 27, '192', 'triplecandle', 3, 0, 0, 1, '0'),
(523, 27, '198', 'rcandleset', 3, 0, 0, 1, '0'),
(524, 27, '270', 'rcandle', 2, 0, 0, 1, '0'),
(528, 27, '19989', 'xm09_man_a', 3, 0, 0, 1, '0'),
(531, 27, '19981', 'xm09_bauble_27', 3, 0, 0, 1, '0'),
(532, 28, '1374', 'campfire', 4, 0, 0, 1, '0'),
(533, 76, '200', 'valeduck', 1, 0, 0, 1, '0'),
(534, 76, '245', 'valentinescreen', 5, 0, 0, 1, '0'),
(536, 76, '811', 'plant_valentinerose*3', 3, 0, 0, 1, '0'),
(537, 76, '812', 'plant_valentinerose*5', 3, 0, 0, 1, '0'),
(538, 76, '813', 'plant_valentinerose*2', 3, 0, 0, 1, '0'),
(539, 76, '814', 'plant_valentinerose*4', 3, 0, 0, 1, '0'),
(540, 76, '815', 'plant_valentinerose*1', 3, 0, 0, 1, '0'),
(541, 76, '820', 'carpet_valentine', 6, 0, 0, 1, '0'),
(542, 76, '1092', 'val_teddy*1', 3, 0, 0, 1, '0'),
(543, 76, '1093', 'val_teddy*2', 3, 0, 0, 1, '0'),
(544, 76, '1094', 'val_teddy*3', 3, 0, 0, 1, '0'),
(545, 76, '1095', 'val_teddy*4', 3, 0, 0, 1, '0'),
(546, 76, '1096', 'val_teddy*4', 3, 0, 0, 1, '0'),
(547, 76, '1097', 'val_teddy*6', 3, 0, 0, 1, '0'),
(548, 76, '1098', 'val_randomizer', 8, 0, 0, 1, '0'),
(549, 76, '1099', 'val_choco', 3, 0, 0, 1, '0'),
(550, 76, '1669', 'val_heart', 3, 0, 0, 1, '0'),
(551, 76, '1656', 'post.it.vd', 3, 0, 0, 30, '0'),
(552, 76, '199', 'statue', 4, 0, 0, 1, '0'),
(553, 76, '201', 'heartsofa', 3, 0, 0, 1, '0'),
(555, 77, '1305', 'greek_corner', 3, 0, 0, 1, '0'),
(556, 77, '1306', 'greek_gate', 6, 0, 0, 1, '0'),
(557, 77, '1307', 'greek_pillars', 3, 0, 0, 1, '0'),
(558, 77, '1308', 'greek_seat', 2, 0, 0, 1, '0'),
(562, 77, '1312', 'greek_block', 4, 0, 0, 1, '0'),
(564, 71, '1623', 'rela_candle1', 3, 0, 0, 1, '0'),
(566, 71, '1625', 'rela_candles2', 3, 0, 0, 1, '0'),
(568, 71, '1627', 'rela_hchair', 5, 0, 0, 1, '0'),
(569, 71, '1628', 'rela_candle2', 3, 0, 0, 1, '0'),
(570, 71, '1632', 'rela_candle3', 3, 0, 0, 1, '0'),
(571, 71, '1634', 'rela_plant', 4, 0, 0, 1, '0'),
(572, 71, '1635', 'rela_candles1', 3, 0, 0, 1, '0'),
(573, 71, '1636', 'rela_candles3', 3, 0, 0, 1, '0'),
(574, 71, '1637', 'rela_orchid', 5, 0, 0, 1, '0'),
(575, 71, '1638', 'rela_rock', 4, 0, 0, 1, '0'),
(576, 71, '1794', 'rela_wall', 4, 0, 0, 1, '0'),
(578, 59, '209', 'basket', 3, 0, 0, 1, '0'),
(579, 59, '208', 'bunny', 3, 0, 0, 1, '0'),
(580, 59, '207', 'easterduck', 1, 0, 0, 1, '0'),
(581, 59, '210', 'birdie', 4, 0, 0, 1, '0'),
(584, 56, '1124', 'arabian_teamk', 4, 0, 0, 1, '0'),
(585, 56, '1125', 'arabian_snake', 3, 0, 0, 1, '0'),
(586, 56, '1126', 'arabian_rug', 6, 0, 0, 1, '0'),
(587, 56, '1127', 'arabian_pllw', 3, 0, 0, 1, '0'),
(588, 56, '1128', 'arabian_divdr', 3, 0, 0, 1, '0'),
(589, 56, '1129', 'arabian_chair', 3, 0, 0, 1, '0'),
(590, 56, '1130', 'arabian_bigtb', 6, 0, 0, 1, '0'),
(591, 56, '1131', 'arabian_tetbl', 3, 0, 0, 1, '0'),
(592, 56, '1132', 'arabian_tray1', 3, 0, 0, 1, '0'),
(594, 56, '1134', 'arabian_tray3', 3, 0, 0, 1, '0'),
(595, 56, '1135', 'arabian_tray4', 3, 0, 0, 1, '0'),
(596, 56, '1688', 'arabian_swords', 4, 0, 0, 1, '0'),
(597, 56, '1689', 'arabian_wndw', 2, 0, 0, 1, '0'),
(598, 56, '1133', 'arabian_tray2', 3, 0, 0, 1, '0'),
(600, 63, '451', 'sporttrack1*1', 3, 0, 0, 1, '0'),
(601, 63, '452', 'sporttrack1*3', 3, 0, 0, 1, '0'),
(602, 63, '453', 'sporttrack1*2', 3, 0, 0, 1, '0'),
(603, 63, '454', 'sporttrack2*1', 3, 0, 0, 1, '0'),
(604, 63, '455', 'sporttrack2*2', 3, 0, 0, 1, '0'),
(605, 63, '456', 'sporttrack2*3', 3, 0, 0, 1, '0'),
(606, 63, '457', 'sporttrack3*1', 3, 0, 0, 1, '0'),
(607, 63, '458', 'sporttrack3*2', 3, 0, 0, 1, '0'),
(608, 63, '459', 'sporttrack3*3', 3, 0, 0, 1, '0'),
(609, 63, '293', 'hockey_light', 4, 0, 0, 1, '0'),
(610, 63, '292', 'hockey_score', 5, 0, 0, 1, '0'),
(611, 63, '243', 'bench_lego', 3, 0, 0, 1, '0'),
(612, 63, '242', 'carpet_legocourt', 4, 0, 0, 1, '0'),
(613, 63, '244', 'legotrophy', 3, 0, 0, 1, '0'),
(615, 63, '460', 'footylamp', 3, 0, 0, 1, '0'),
(617, 64, '1017', 'grunge_chair', 3, 0, 0, 1, '0'),
(618, 64, '1018', 'grunge_mattress', 4, 0, 0, 1, '0'),
(619, 64, '1019', 'grunge_radiator', 3, 0, 0, 1, '0'),
(620, 64, '1020', 'grunge_shelf', 4, 0, 0, 1, '0'),
(621, 64, '1022', 'grunge_table', 4, 0, 0, 1, '0'),
(622, 64, '1021', 'grunge_sign', 3, 0, 0, 1, '0'),
(623, 64, '1110', 'grunge_candle', 2, 0, 0, 1, '0'),
(624, 64, '1111', 'grunge_bench', 4, 0, 0, 1, '0'),
(625, 64, '1112', 'grunge_barrel', 3, 0, 0, 1, '0'),
(626, 64, '1700', 'window_grunge', 2, 0, 0, 1, '0'),
(628, 67, '844', 'jp_tatami2', 4, 0, 0, 1, '0'),
(629, 67, '845', 'jp_tatami', 3, 0, 0, 1, '0'),
(630, 67, '847', 'jp_bamboo', 5, 0, 0, 1, '0'),
(631, 67, '848', 'jp_irori', 5, 0, 0, 1, '0'),
(632, 67, '849', 'jp_pillow', 2, 0, 0, 1, '0'),
(633, 67, '937', 'jp_lantern', 3, 0, 0, 1, '0'),
(634, 67, '965', '', 3, 0, 0, 1, '0'),
(635, 67, '1118', 'jp_tray6', 3, 0, 0, 1, '0'),
(636, 67, '1119', 'jp_tray5', 3, 0, 0, 1, '0'),
(637, 67, '1120', 'jp_tray4', 3, 0, 0, 1, '0'),
(638, 67, '1121', 'jp_tray3', 3, 0, 0, 1, '0'),
(639, 67, '1122', 'jp_tray2', 3, 0, 0, 1, '0'),
(640, 67, '1123', 'jp_tray1', 3, 0, 0, 1, '0'),
(641, 67, '1150', 'jp_table', 5, 0, 0, 1, '0'),
(642, 67, '1151', 'jp_rare', 6, 0, 0, 1, '0'),
(643, 67, '1152', 'jp_katana3', 3, 0, 0, 1, '0'),
(644, 67, '1153', 'jp_katana2', 3, 0, 0, 1, '0'),
(645, 67, '1154', 'jp_katana1', 3, 0, 0, 1, '0'),
(646, 67, '1197', 'jp_teamaker', 4, 0, 0, 1, '0'),
(647, 67, '1671', 'jp_ninjastars', 4, 0, 0, 1, '0'),
(648, 67, '1685', 'jp_sheet3', 3, 0, 0, 1, '0'),
(649, 67, '1686', 'jp_sheet2', 3, 0, 0, 1, '0'),
(650, 67, '1687', 'jp_sheet1', 3, 0, 0, 1, '0'),
(651, 75, '969', 'summer_grill*1', 3, 0, 0, 1, '0'),
(652, 75, '970', 'summer_grill*2', 3, 0, 0, 1, '0'),
(653, 75, '971', 'summer_grill*3', 3, 0, 0, 1, '0'),
(654, 75, '972', 'summer_grill*4', 3, 0, 0, 1, '0'),
(655, 75, '973', 'summer_chair*1', 3, 0, 0, 1, '0'),
(656, 75, '974', 'summer_chair*2', 3, 0, 0, 1, '0'),
(657, 75, '975', 'summer_chair*3', 3, 0, 0, 1, '0'),
(658, 75, '976', 'summer_chair*4', 3, 0, 0, 1, '0'),
(659, 75, '977', 'summer_chair*5', 3, 0, 0, 1, '0'),
(660, 75, '978', 'summer_chair*6', 3, 0, 0, 1, '0'),
(661, 75, '979', 'summer_chair*7', 3, 0, 0, 1, '0'),
(662, 75, '980', 'summer_chair*8', 3, 0, 0, 1, '0'),
(663, 75, '981', 'summer_chair*9', 3, 0, 0, 1, '0'),
(664, 75, '1003', 'summer_pool*1', 5, 0, 0, 1, '0'),
(665, 75, '1004', 'summer_pool*2', 5, 0, 0, 1, '0'),
(666, 75, '1005', 'summer_pool*3', 5, 0, 0, 1, '0'),
(667, 75, '1006', 'summer_pool*4', 5, 0, 0, 1, '0'),
(668, 75, '1616', 'summer_raft1', 4, 0, 0, 1, '0'),
(669, 75, '1618', 'summer_raft2', 4, 0, 0, 1, '0'),
(670, 75, '1620', 'summer_icebox', 3, 0, 0, 1, '0'),
(671, 66, '19938', 'hween09_floor', 3, 0, 0, 1, '0'),
(672, 66, '19938', 'hween09_floor', 25, 0, 0, 10, '0'),
(673, 66, '19939', 'hween09_jar', 3, 0, 0, 1, '0'),
(674, 66, '19941', 'hween09_organ', 5, 0, 0, 1, '0'),
(675, 66, '19944', 'hween09_table', 6, 0, 0, 1, '0'),
(676, 66, '19945', 'hween09_chair', 3, 0, 0, 1, '0'),
(677, 66, '19946', 'hween09_mirror', 4, 0, 0, 1, '0'),
(678, 66, '19947', 'hween09_hatch', 6, 0, 0, 1, '0'),
(679, 66, '19948', 'hween09_ghost', 3, 0, 0, 1, '0'),
(680, 66, '19949', 'hween09_tv', 3, 0, 0, 1, '0'),
(681, 66, '19950', 'hween09_chandelier', 5, 0, 0, 1, '0'),
(682, 66, '19951', 'hween09_crnr1', 3, 0, 0, 1, '0'),
(683, 66, '19952', 'hween09_paint', 3, 0, 0, 1, '0'),
(684, 66, '19953', 'hween09_treewall', 3, 0, 0, 1, '0'),
(685, 66, '19954', 'hween09_wall1', 3, 0, 0, 1, '0'),
(686, 66, '19955', 'hween09_stonewall', 3, 0, 0, 1, '0'),
(687, 66, '19956', 'hween09_win', 4, 0, 0, 1, '0'),
(688, 66, '181', 'pumpkin', 3, 0, 0, 1, '0'),
(690, 66, '182', 'skullcandle', 3, 0, 0, 1, '0'),
(693, 66, '184', 'deadduck2', 1, 0, 0, 1, '0'),
(694, 66, '185', 'deadduck3', 1, 0, 0, 1, '0'),
(695, 66, '183', 'deadduck', 1, 0, 0, 1, '0'),
(697, 88, '1334', 'hween08_sink', 3, 0, 0, 1, '0'),
(698, 88, '1335', 'hween08_curtain', 5, 0, 0, 1, '0'),
(699, 88, '1336', 'hween08_bath', 6, 0, 0, 1, '0'),
(700, 88, '1337', 'hween08_defibs', 3, 0, 0, 1, '0'),
(701, 88, '1338', 'hween08_bbag', 5, 0, 0, 1, '0'),
(702, 88, '1339', 'hween08_curtain2', 5, 0, 0, 1, '0'),
(703, 88, '1340', 'hween08_defibs2', 3, 0, 0, 1, '0'),
(704, 88, '1341', 'hween08_bed', 4, 0, 0, 1, '0'),
(705, 88, '1342', 'hween08_sink2', 3, 0, 0, 1, '0'),
(706, 88, '1343', 'hween08_bed2', 4, 0, 0, 1, '0'),
(707, 88, '1344', 'hween08_bath2', 4, 0, 0, 1, '0'),
(708, 88, '1345', 'hween08_manhole', 3, 0, 0, 1, '0'),
(709, 88, '1346', 'hween08_trll', 3, 0, 0, 1, '0'),
(710, 88, '1721', 'hween08_rad', 3, 0, 0, 1, '0'),
(711, 88, '1722', 'hween08_wndwb', 3, 0, 0, 1, '0'),
(712, 88, '1723', 'hween08_wndw', 4, 0, 0, 1, '0'),
(713, 88, '1724', 'hween08_bio', 3, 0, 0, 1, '0'),
(714, 74, '1419', 'bolly_lotus_pool', 4, 0, 0, 1, '0'),
(715, 74, '1422', 'bolly_petals', 3, 0, 0, 1, '0'),
(716, 74, '1423', 'bolly_tree', 3, 0, 0, 1, '0'),
(717, 74, '1424', 'bolly_swing', 4, 0, 0, 1, '0'),
(718, 74, '1425', 'bolly_pillow', 3, 0, 0, 1, '0'),
(719, 74, '1426', 'bolly_corner', 3, 0, 0, 1, '0'),
(720, 74, '1427', 'bolly_phant', 5, 0, 0, 1, '0'),
(721, 74, '1428', 'bolly_monkey_lamp', 4, 0, 0, 1, '0'),
(722, 74, '1429', 'bolly_drapeb', 4, 0, 0, 1, '0'),
(723, 74, '1431', 'bolly_lamp', 3, 0, 0, 1, '0'),
(724, 74, '1432', 'bolly_desk', 3, 0, 0, 1, '0'),
(725, 74, '1433', 'bolly_vase', 3, 0, 0, 1, '0'),
(726, 74, '1434', 'bolly_tile2', 3, 0, 0, 1, '0'),
(727, 74, '1435', 'bolly_table', 4, 0, 0, 1, '0'),
(728, 74, '1436', 'bolly_drapec', 4, 0, 0, 1, '0'),
(729, 74, '1437', 'bolly_fountain', 5, 0, 0, 1, '0'),
(731, 74, '1439', 'bolly_tile1', 3, 0, 0, 1, '0'),
(732, 74, '1440', 'bolly_drapea', 4, 0, 0, 1, '0'),
(733, 74, '1749', 'bolly_wdw_wd', 4, 0, 0, 1, '0'),
(735, 73, '1593', 'SF_reactor', 5, 0, 0, 1, '0'),
(736, 73, '1594', 'SF_crate_2', 3, 0, 0, 1, '0'),
(737, 73, '1595', 'SF_chair_blue', 3, 0, 0, 1, '0'),
(738, 73, '1596', 'sf_pod', 4, 0, 0, 1, '0'),
(739, 73, '1597', 'SF_panel1', 3, 0, 0, 1, '0'),
(740, 73, '1598', 'SF_table', 3, 0, 0, 1, '0'),
(741, 73, '1602', 'SF_panel2', 3, 0, 0, 1, '0'),
(742, 73, '1603', 'sf_gate', 6, 0, 0, 1, '0'),
(743, 73, '1599', 'SF_chair_green', 3, 0, 0, 1, '0'),
(744, 73, '1600', 'SF_crate_1', 2, 0, 0, 1, '0'),
(745, 73, '1601', 'SF_alien', 4, 0, 0, 1, '0'),
(746, 73, '1605', 'SF_floor_2', 3, 0, 0, 1, '0'),
(747, 73, '1604', 'SF_panel3', 5, 0, 0, 1, '0'),
(748, 73, '1606', 'SF_lamp', 3, 0, 0, 1, '0'),
(749, 73, '1607', 'SF_chair_red', 3, 0, 0, 1, '0'),
(750, 73, '1608', 'sf_floor', 3, 0, 0, 1, '0'),
(751, 73, '1609', 'sf_roof', 5, 0, 0, 1, '0'),
(752, 73, '1610', 'sf_stick', 3, 0, 0, 1, '0'),
(753, 73, '1611', 'SF_floor_1', 3, 0, 0, 1, '0'),
(756, 73, '1614', 'sf_roller', 7, 0, 0, 1, '0'),
(757, 73, '1787', 'sf_window', 7, 0, 0, 1, '0'),
(758, 73, '1788', 'sf_wall2', 6, 0, 0, 1, '0'),
(759, 73, '1791', 'sf_wall3', 6, 0, 0, 1, '0'),
(765, 72, '795', 'romantique_pianochair*3', 2, 0, 0, 1, '0'),
(766, 72, '796', 'romantique_pianochair*5', 2, 0, 0, 1, '0'),
(767, 72, '797', 'romantique_pianochair*2', 2, 0, 0, 1, '0'),
(768, 72, '798', 'romantique_pianochair*4', 2, 0, 0, 1, '0'),
(769, 72, '799', 'romantique_pianochair*1', 2, 0, 0, 1, '0'),
(770, 72, '800', 'romantique_divan*3', 4, 0, 0, 1, '0'),
(771, 72, '801', 'romantique_divan*5', 4, 0, 0, 1, '0'),
(772, 72, '802', 'romantique_divan*2', 4, 0, 0, 1, '0'),
(773, 72, '803', 'romantique_divan*4', 4, 0, 0, 1, '0'),
(774, 72, '804', 'romantique_divan*1', 4, 0, 0, 1, '0'),
(775, 72, '805', 'romantique_chair*3', 3, 0, 0, 1, '0'),
(776, 72, '806', 'romantique_chair*5', 3, 0, 0, 1, '0'),
(777, 72, '807', 'romantique_chair*2', 3, 0, 0, 1, '0'),
(778, 72, '808', 'romantique_chair*4', 3, 0, 0, 1, '0'),
(779, 72, '809', 'romantique_chair*1', 3, 0, 0, 1, '0'),
(780, 72, '832', 'romantique_tray2', 3, 0, 0, 1, '0'),
(781, 72, '833', 'romantique_tray1', 3, 0, 0, 1, '0'),
(782, 72, '834', 'romantique_smalltabl*3', 2, 0, 0, 1, '0'),
(783, 72, '835', 'romantique_smalltabl*5', 2, 0, 0, 1, '0'),
(784, 72, '836', 'romantique_smalltabl*2', 2, 0, 0, 1, '0'),
(785, 72, '837', 'romantique_smalltabl*4', 2, 0, 0, 1, '0'),
(786, 72, '838', 'romantique_smalltabl*1', 2, 0, 0, 1, '0'),
(787, 72, '839', 'romantique_mirrortabl', 3, 0, 0, 1, '0'),
(788, 72, '840', 'romantique_divider*3', 3, 0, 0, 1, '0'),
(789, 72, '841', 'romantique_divider*2', 3, 0, 0, 1, '0'),
(790, 72, '842', 'romantique_divider*4', 3, 0, 0, 1, '0'),
(791, 72, '843', 'romantique_divider*1', 3, 0, 0, 1, '0'),
(792, 72, '891', 'romantique_clock', 5, 0, 0, 1, '0'),
(793, 69, '1347', 'party_table', 3, 0, 0, 1, '0'),
(794, 69, '1348', 'party_discol', 5, 0, 0, 1, '0'),
(795, 69, '1349', 'party_block2', 4, 0, 0, 1, '0'),
(796, 69, '1350', 'party_barcorn', 3, 0, 0, 1, '0'),
(797, 69, '1351', 'party_chair', 3, 0, 0, 1, '0'),
(798, 69, '1352', 'party_block', 2, 0, 0, 1, '0'),
(799, 69, '1353', 'party_ravel', 5, 0, 0, 1, '0'),
(800, 69, '1354', 'party_tube_lava', 4, 0, 0, 1, '0'),
(801, 69, '1355', 'party_tray', 3, 0, 0, 1, '0'),
(802, 69, '1356', 'party_djtable', 4, 0, 0, 1, '0'),
(803, 69, '1357', 'party_floor', 3, 0, 0, 1, '0'),
(804, 69, '1358', 'party_ball', 3, 0, 0, 1, '0'),
(805, 69, '1359', 'party_tube_bubble', 4, 0, 0, 1, '0'),
(806, 69, '1360', 'party_mic', 3, 0, 0, 1, '0'),
(807, 69, '1361', 'party_beamer', 5, 0, 0, 1, '0'),
(808, 69, '1362', 'party_bardesk', 3, 0, 0, 1, '0'),
(809, 69, '1363', 'party_seat', 3, 0, 0, 1, '0'),
(810, 69, '1729', 'party_wc_boy', 3, 0, 0, 1, '0'),
(811, 69, '1730', 'party_led', 4, 0, 0, 1, '0'),
(812, 69, '1731', 'party_neon5', 3, 0, 0, 1, '0'),
(813, 69, '1732', 'party_neon1', 3, 0, 0, 1, '0'),
(814, 69, '1733', 'party_neon2', 3, 0, 0, 1, '0'),
(815, 69, '1734', 'party_wc_girl', 3, 0, 0, 1, '0'),
(816, 69, '1735', 'party_neon3', 3, 0, 0, 1, '0'),
(817, 69, '1736', 'party_shelf', 4, 0, 0, 1, '0'),
(818, 69, '1737', 'party_neon4', 3, 0, 0, 1, '0'),
(821, 29, '180', 'doorC', 4, 0, 0, 1, '0'),
(822, 29, '179', 'doorB', 3, 0, 0, 1, '0'),
(824, 94, '227', 'spyro', 10, 0, 0, 1, '0'),
(825, 94, '202', 'throne', 500, 500, 0, 1, '0'),
(826, 94, '203', 'samovar', 200, 200, 0, 1, '0'),
(827, 94, '110', 'plant_cruddy', 10, 0, 0, 1, '0'),
(830, 94, '273', 'djesko_turntable', 10, 0, 0, 1, '0'),
(833, 57, '669', 'chair_china', 3, 0, 0, 1, '0'),
(834, 57, '670', 'china_table', 3, 0, 0, 1, '0'),
(835, 57, '682', 'china_shelve', 4, 0, 0, 1, '0'),
(836, 57, '700', 'wall_china', 4, 0, 0, 1, '0'),
(837, 57, '701', 'corner_china', 4, 0, 0, 1, '0'),
(838, 57, '1418', 'china_moongt', 5, 0, 0, 1, '0'),
(839, 57, '1420', 'china_ox', 3, 0, 0, 1, '0'),
(840, 57, '1746', 'china_pstr2', 3, 0, 0, 1, '0'),
(842, 57, '1747', 'china_light', 3, 0, 0, 1, '0'),
(843, 57, '1748', 'china_pstr1', 3, 0, 0, 1, '0'),
(845, 60, '1000', 'exe_rug', 4, 0, 0, 1, '0'),
(846, 60, '1000', 'exe_rug', 20, 0, 0, 6, '0'),
(847, 60, '1001', 'exe_s_table', 4, 0, 0, 1, '0'),
(848, 60, '1049', 'exe_bardesk', 2, 0, 0, 1, '0'),
(849, 60, '1050', 'exe_chair', 3, 0, 0, 1, '0'),
(850, 60, '1051', 'exe_chair2', 3, 0, 0, 1, '0'),
(851, 60, '1052', 'exe_corner', 2, 0, 0, 1, '0'),
(852, 60, '1053', 'exe_drinks', 3, 0, 0, 1, '0'),
(853, 60, '1054', 'exe_sofa', 3, 0, 0, 1, '0'),
(855, 60, '1055', 'exe_table', 6, 0, 0, 1, '0'),
(856, 60, '1091', 'exe_plant', 3, 0, 0, 1, '0'),
(857, 60, '1510', 'exe_light', 3, 0, 0, 1, '0'),
(858, 60, '1517', 'exe_gate', 6, 0, 0, 1, '0'),
(859, 60, '1521', 'exe_cubelight', 3, 0, 0, 1, '0'),
(860, 60, '1523', 'exe_artlamp', 3, 0, 0, 1, '0'),
(861, 60, '1771', 'exe_map', 5, 0, 0, 1, '0'),
(862, 60, '1772', 'exe_wfall', 4, 0, 0, 1, '0'),
(863, 58, '1449', 'lc_tile1', 3, 0, 0, 1, '0'),
(865, 58, '1451', 'lc_crab2', 3, 0, 0, 1, '0'),
(866, 58, '1454', 'lc_coral_divider_hi', 4, 0, 0, 1, '0'),
(867, 58, '1456', 'lc_tubes_corners', 3, 0, 0, 1, '0'),
(868, 58, '1457', 'lc_table', 4, 0, 0, 1, '0'),
(869, 58, '1458', 'lc_tile2', 3, 0, 0, 1, '0'),
(870, 58, '1459', 'lc_anemone', 4, 0, 0, 1, '0'),
(871, 58, '1461', 'lc_glass_floor', 4, 0, 0, 1, '0'),
(872, 58, '1460', 'lc_coral_divider_low', 3, 0, 0, 1, '0'),
(874, 58, '1462', 'lc_medusa1', 4, 0, 0, 1, '0'),
(875, 58, '1463', 'lc_crab1', 4, 0, 0, 1, '0'),
(876, 58, '1466', 'lc_tubes_straight', 3, 0, 0, 1, '0'),
(877, 58, '1470', 'lc_corner', 3, 0, 0, 1, '0'),
(878, 58, '1471', 'lc_stool', 3, 0, 0, 1, '0'),
(879, 58, '1472', 'lc_chair', 3, 0, 0, 1, '0'),
(880, 58, '1473', 'lc_desk', 3, 0, 0, 1, '0'),
(881, 58, '1755', 'lc_wall1', 5, 0, 0, 1, '0'),
(882, 58, '1756', 'lc_window2', 5, 0, 0, 1, '0'),
(883, 58, '1757', 'lc_window1', 3, 0, 0, 1, '0'),
(884, 58, '1759', 'lc_wall2', 5, 0, 0, 1, '0'),
(889, 42, '295', 'a0 prizetrophy2_b', 10, 0, 0, 1, '0'),
(890, 42, '296', 'a0 prizetrophy3_b', 10, 0, 0, 1, '0'),
(891, 42, '297', 'a0 prizetrophy4_b', 10, 0, 0, 1, '0'),
(892, 42, '298', 'a0 prizetrophy5_b', 10, 0, 0, 1, '0'),
(893, 42, '299', 'a0 prizetrophy1_g', 10, 0, 0, 1, '0'),
(894, 42, '300', 'a0 prizetrophy2_g', 10, 0, 0, 1, '0'),
(895, 42, '301', 'a0 prizetrophy3_g', 10, 0, 0, 1, '0'),
(896, 42, '302', 'a0 prizetrophy4_g', 10, 0, 0, 1, '0'),
(897, 42, '303', 'a0 prizetrophy4_g', 10, 0, 0, 1, '0'),
(898, 42, '304', 'a0 prizetrophy6_g', 10, 0, 0, 1, '0'),
(899, 42, '305', 'a0 prizetrophy1_s', 10, 0, 0, 1, '0'),
(900, 93, '306', 'a0 prizetrophy2_s', 10, 0, 0, 1, '0'),
(901, 42, '307', 'a0 prizetrophy3_s', 10, 0, 0, 1, '0'),
(902, 42, '308', 'a0 prizetrophy4_s', 10, 0, 0, 1, '0'),
(903, 42, '309', 'a0 prizetrophy5_s', 10, 0, 0, 1, '0'),
(904, 42, '310', 'a0 prizetrophy6_s', 10, 0, 0, 1, '0'),
(905, 42, '311', 'a0 prizetrophy1_b', 10, 0, 0, 1, '0'),
(906, 93, '335', 'a0 prizetrophy7_b', 10, 0, 0, 1, '0'),
(908, 93, '336', 'a0 prizetrophy7_g', 10, 0, 0, 1, '0'),
(909, 93, '337', 'a0 prizetrophy7_s', 10, 0, 0, 1, '0'),
(911, 94, '1615', 'prizetrophy_hot', 10, 0, 0, 1, '0'),
(912, 94, '1617', 'prizetrophy_cool', 10, 0, 0, 1, '0'),
(913, 32, '171', 'bar_basic', 4, 0, 0, 1, '0'),
(914, 32, '172', 'shelves_basic', 3, 0, 0, 1, '0'),
(915, 32, '175', 'lamp_basic', 3, 0, 0, 1, '0'),
(916, 32, '177', 'fridge', 6, 0, 0, 1, '0'),
(918, 32, '893', 'pura_mdl5*2', 3, 0, 0, 1, '0'),
(919, 32, '894', 'pura_mdl5*3', 3, 0, 0, 1, '0'),
(920, 32, '895', 'pura_mdl5*4', 3, 0, 0, 1, '0'),
(921, 32, '896', 'pura_mdl5*5', 3, 0, 0, 1, '0'),
(922, 32, '897', 'pura_mdl5*6', 3, 0, 0, 1, '0'),
(923, 32, '898', 'pura_mdl5*7', 3, 0, 0, 1, '0'),
(924, 32, '899', 'pura_mdl5*8', 3, 0, 0, 1, '0'),
(925, 32, '900', 'pura_mdl5*9', 3, 0, 0, 1, '0'),
(926, 32, '901', 'pura_mdl4*1', 3, 0, 0, 1, '0'),
(927, 32, '902', 'pura_mdl4*2', 3, 0, 0, 1, '0'),
(928, 32, '903', 'pura_mdl4*3', 3, 0, 0, 1, '0'),
(929, 32, '904', 'pura_mdl4*4', 3, 0, 0, 1, '0'),
(930, 32, '905', 'pura_mdl4*5', 3, 0, 0, 1, '0'),
(931, 32, '906', 'pura_mdl4*6', 3, 0, 0, 1, '0'),
(932, 32, '907', 'pura_mdl4*7', 3, 0, 0, 1, '0'),
(933, 32, '908', 'pura_mdl4*8', 3, 0, 0, 1, '0'),
(934, 32, '909', 'pura_mdl4*9', 3, 0, 0, 1, '0'),
(935, 32, '910', 'pura_mdl3*1', 3, 0, 0, 1, '0'),
(936, 32, '911', 'pura_mdl3*2', 3, 0, 0, 1, '0'),
(937, 32, '912', 'pura_mdl3*3', 3, 0, 0, 1, '0'),
(938, 32, '913', 'pura_mdl3*4', 3, 0, 0, 1, '0'),
(939, 32, '914', 'pura_mdl3*5', 3, 0, 0, 1, '0'),
(940, 32, '915', 'pura_mdl3*6', 3, 0, 0, 1, '0'),
(941, 32, '916', 'pura_mdl3*7', 3, 0, 0, 1, '0'),
(942, 32, '917', 'pura_mdl3*8', 3, 0, 0, 1, '0'),
(943, 32, '918', 'pura_mdl3*9', 3, 0, 0, 1, '0'),
(944, 32, '919', 'pura_mdl2*1', 3, 0, 0, 1, '0'),
(945, 32, '920', 'pura_mdl2*2', 3, 0, 0, 1, '0'),
(947, 32, '921', 'pura_mdl2*3', 3, 0, 0, 1, '0'),
(948, 32, '922', 'pura_mdl2*4', 3, 0, 0, 1, '0'),
(949, 32, '923', 'pura_mdl2*5', 3, 0, 0, 1, '0'),
(950, 32, '924', 'pura_mdl2*6', 3, 0, 0, 1, '0'),
(951, 32, '925', 'pura_mdl2*7', 3, 0, 0, 1, '0'),
(952, 32, '926', 'pura_mdl2*8', 3, 0, 0, 1, '0'),
(953, 32, '927', 'pura_mdl2*9', 3, 0, 0, 1, '0'),
(954, 32, '928', 'pura_mdl1*1', 3, 0, 0, 1, '0'),
(955, 32, '929', 'pura_mdl1*2', 3, 0, 0, 1, '0'),
(956, 32, '930', 'pura_mdl1*3', 3, 0, 0, 1, '0'),
(957, 32, '931', 'pura_mdl1*4', 3, 0, 0, 1, '0'),
(958, 32, '932', 'pura_mdl1*5', 3, 0, 0, 1, '0'),
(959, 32, '933', 'pura_mdl1*6', 3, 0, 0, 1, '0'),
(960, 32, '934', 'pura_mdl1*7', 3, 0, 0, 1, '0'),
(961, 32, '935', 'pura_mdl1*8', 3, 0, 0, 1, '0'),
(962, 32, '936', 'pura_mdl1*9', 3, 0, 0, 1, '0'),
(963, 32, '939', 'chair_basic*2', 4, 0, 0, 1, '0'),
(964, 32, '940', 'chair_basic*3', 4, 0, 0, 1, '0'),
(965, 32, '941', 'chair_basic*4', 4, 0, 0, 1, '0'),
(966, 32, '942', 'chair_basic*5', 4, 0, 0, 1, '0'),
(967, 32, '943', 'chair_basic*6', 4, 0, 0, 1, '0'),
(968, 32, '944', 'chair_basic*7', 4, 0, 0, 1, '0'),
(969, 32, '946', 'chair_basic*9', 4, 0, 0, 1, '0'),
(970, 32, '948', 'bed_budget*2', 4, 0, 0, 1, '0'),
(971, 32, '949', 'bed_budget*3', 4, 0, 0, 1, '0'),
(972, 32, '950', 'bed_budget*4', 4, 0, 0, 1, '0'),
(973, 32, '951', 'bed_budget*5', 4, 0, 0, 1, '0'),
(974, 32, '952', 'bed_budget*6', 4, 0, 0, 1, '0'),
(975, 32, '953', 'bed_budget*7', 4, 0, 0, 1, '0'),
(976, 32, '954', 'bed_budget*8', 4, 0, 0, 1, '0'),
(977, 32, '955', 'bed_budget*9', 4, 0, 0, 1, '0'),
(978, 32, '957', 'bed_budget_one*2', 3, 0, 0, 1, '0'),
(979, 32, '958', 'bed_budget_one*3', 3, 0, 0, 1, '0'),
(980, 32, '959', 'bed_budget_one*4', 3, 0, 0, 1, '0'),
(981, 32, '960', 'bed_budget_one*5', 3, 0, 0, 1, '0'),
(982, 32, '961', 'bed_budget_one*6', 3, 0, 0, 1, '0'),
(983, 32, '962', 'bed_budget_one*7', 3, 0, 0, 1, '0'),
(984, 32, '963', 'bed_budget_one*8', 3, 0, 0, 1, '0'),
(985, 32, '964', 'bed_budget_one*9', 3, 0, 0, 1, '0'),
(987, 65, '890', 'rope_divider', 5, 0, 0, 1, '0'),
(988, 65, '846', 'habbowood_chair', 3, 0, 0, 1, '0'),
(989, 65, '860', 'spotlight', 5, 0, 0, 1, '0'),
(990, 65, '1672', 'habw_mirror', 3, 0, 0, 1, '0'),
(991, 65, '967', 'tile_marble', 1, 0, 0, 1, '0'),
(992, 65, '967', 'tile_marble', 40, 0, 0, 50, '0'),
(993, 65, '968', 'tile_brown', 1, 0, 0, 1, '0'),
(994, 65, '968', 'tile_brown', 40, 0, 0, 50, '0'),
(995, 65, '966', 'tile_stella', 2, 0, 0, 1, '0'),
(996, 65, '966', 'tile_stella', 30, 0, 0, 50, '0'),
(998, 102, '437', 'queue_tile1*3', 7, 0, 0, 1, '0'),
(999, 102, '437', 'queue_tile1*3', 18, 0, 0, 3, '0'),
(1000, 102, '437', 'queue_tile1*3', 30, 0, 0, 5, '0'),
(1001, 102, '438', 'queue_tile1*6', 7, 0, 0, 1, '0'),
(1002, 102, '438', 'queue_tile1*6', 18, 0, 0, 3, '0'),
(1003, 102, '438', 'queue_tile1*6', 30, 0, 0, 5, '0'),
(1004, 102, '439', 'queue_tile1*4', 7, 0, 0, 1, '0'),
(1005, 102, '439', 'queue_tile1*4', 18, 0, 0, 3, '0'),
(1006, 102, '439', 'queue_tile1*4', 30, 0, 0, 5, '0'),
(1007, 102, '440', 'queue_tile1*9', 7, 0, 0, 1, '0'),
(1008, 102, '440', 'queue_tile1*9', 18, 0, 0, 3, '0'),
(1009, 102, '440', 'queue_tile1*9', 30, 0, 0, 5, '0'),
(1010, 102, '441', 'queue_tile1*8', 7, 0, 0, 1, '0'),
(1011, 102, '441', 'queue_tile1*8', 18, 0, 0, 3, '0'),
(1012, 102, '441', 'queue_tile1*8', 30, 0, 0, 5, '0'),
(1013, 102, '442', 'queue_tile1*5', 7, 0, 0, 1, '0'),
(1014, 102, '442', 'queue_tile1*5', 18, 0, 0, 3, '0'),
(1015, 102, '442', 'queue_tile1*5', 30, 0, 0, 5, '0'),
(1016, 102, '443', 'queue_tile1*7', 7, 0, 0, 1, '0'),
(1017, 102, '443', 'queue_tile1*7', 18, 0, 0, 3, '0'),
(1018, 102, '443', 'queue_tile1*7', 30, 0, 0, 5, '0'),
(1019, 102, '444', 'queue_tile1*2', 7, 0, 0, 1, '0'),
(1020, 102, '444', 'queue_tile1*2', 18, 0, 0, 3, '0'),
(1021, 102, '444', 'queue_tile1*2', 30, 0, 0, 5, '0'),
(1022, 102, '445', 'queue_tile1*1', 7, 0, 0, 1, '0'),
(1023, 102, '445', 'queue_tile1*1', 18, 0, 0, 3, '0'),
(1024, 102, '445', 'queue_tile1*1', 30, 0, 0, 5, '0'),
(1025, 102, '446', 'queue_tile1*0', 7, 0, 0, 1, '0'),
(1026, 102, '446', 'queue_tile1*0', 18, 0, 0, 3, '0'),
(1027, 102, '446', 'queue_tile1*0', 30, 0, 0, 5, '0'),
(1029, 68, '1567', 'LT_skull', 3, 0, 0, 1, '0'),
(1030, 68, '1568', 'lt_stage2', 4, 0, 0, 1, '0'),
(1031, 68, '1569', 'lt_lavac', 3, 0, 0, 1, '0'),
(1032, 68, '1570', 'lt_gate', 6, 0, 0, 1, '0'),
(1033, 68, '1573', 'lt_statue', 3, 0, 0, 1, '0'),
(1034, 68, '1574', 'lt_spider', 3, 0, 0, 1, '0'),
(1035, 68, '1575', 'lt_stone2', 4, 0, 0, 1, '0'),
(1036, 68, '1576', 'LT_throne', 4, 0, 0, 1, '0'),
(1037, 68, '1578', 'lt_patch', 3, 0, 0, 1, '0'),
(1038, 68, '1579', 'lt_lava', 3, 0, 0, 1, '0'),
(1039, 68, '1580', 'LT_pillar2', 3, 0, 0, 1, '0'),
(1040, 68, '1581', 'lt_bughill', 5, 0, 0, 1, '0'),
(1041, 68, '1584', 'LT_pillar', 4, 0, 0, 1, '0'),
(1042, 68, '1588', 'lt_stone1', 4, 0, 0, 1, '0'),
(1043, 68, '1585', 'lt_stage1', 3, 0, 0, 1, '0'),
(1044, 68, '1785', 'lt_wall', 3, 0, 0, 1, '0'),
(1045, 68, '1783', 'lt_jngl_wall', 3, 0, 0, 1, '0'),
(1050, 61, '718', 'glass_shelf', 4, 0, 0, 1, '0'),
(1051, 61, '719', 'glass_chair', 3, 0, 0, 1, '0'),
(1052, 61, '720', 'glass_stool', 2, 0, 0, 1, '0'),
(1053, 61, '721', 'glass_sofa', 4, 0, 0, 1, '0'),
(1054, 61, '723', 'glass_table*2', 3, 0, 0, 1, '0'),
(1056, 61, '724', 'glass_table*3', 3, 0, 0, 1, '0'),
(1057, 61, '722', 'glass_table', 3, 0, 0, 1, '0'),
(1058, 61, '725', 'glass_table*4', 3, 0, 0, 1, '0'),
(1059, 61, '726', 'glass_table*5', 3, 0, 0, 1, '0'),
(1060, 61, '727', 'glass_table*6', 3, 0, 0, 1, '0'),
(1061, 61, '728', 'glass_table*7', 3, 0, 0, 1, '0'),
(1062, 61, '729', 'glass_table*8', 3, 0, 0, 1, '0'),
(1063, 61, '730', 'glass_table*9', 3, 0, 0, 1, '0'),
(1064, 61, '731', 'glass_chair*2', 3, 0, 0, 1, '0'),
(1065, 61, '732', 'glass_chair*3', 3, 0, 0, 1, '0'),
(1066, 61, '733', 'glass_chair*4', 3, 0, 0, 1, '0'),
(1067, 61, '734', 'glass_chair*5', 3, 0, 0, 1, '0'),
(1068, 61, '735', 'glass_chair*6', 3, 0, 0, 1, '0'),
(1069, 61, '736', 'glass_chair*7', 3, 0, 0, 1, '0'),
(1070, 61, '737', 'glass_chair*8', 3, 0, 0, 1, '0'),
(1071, 61, '738', 'glass_chair*9', 3, 0, 0, 1, '0'),
(1072, 61, '739', 'glass_sofa*2', 4, 0, 0, 1, '0'),
(1073, 61, '740', 'glass_sofa*3', 4, 0, 0, 1, '0'),
(1074, 61, '741', 'glass_sofa*4', 4, 0, 0, 1, '0'),
(1075, 61, '742', 'glass_sofa*5', 4, 0, 0, 1, '0'),
(1076, 61, '743', 'glass_sofa*6', 4, 0, 0, 1, '0'),
(1077, 61, '744', 'glass_sofa*7', 4, 0, 0, 1, '0'),
(1078, 61, '745', 'glass_sofa*8', 4, 0, 0, 1, '0'),
(1079, 61, '746', 'glass_sofa*9', 4, 0, 0, 1, '0'),
(1080, 61, '747', 'glass_stool*2', 2, 0, 0, 1, '0'),
(1081, 61, '748', 'glass_stool*4', 2, 0, 0, 1, '0'),
(1082, 61, '749', 'glass_stool*5', 2, 0, 0, 1, '0'),
(1083, 61, '750', 'glass_stool*6', 2, 0, 0, 1, '0'),
(1084, 61, '751', 'glass_stool*7', 2, 0, 0, 1, '0'),
(1085, 61, '752', 'glass_stool*8', 2, 0, 0, 1, '0'),
(1086, 61, '753', 'glass_stool*3', 2, 0, 0, 1, '0'),
(1087, 61, '754', 'glass_stool*9', 2, 0, 0, 1, '0'),
(1088, 72, '829', 'grand_piano*4', 5, 0, 0, 1, '0'),
(1089, 72, '826', 'grand_piano*3', 5, 0, 0, 1, '0'),
(1090, 72, '827', 'grand_piano*5', 5, 0, 0, 1, '0'),
(1091, 72, '828', 'grand_piano*2', 5, 0, 0, 1, '0'),
(1092, 72, '830', 'grand_piano*1', 5, 0, 0, 1, '0'),
(1093, 94, '248', 'rare_beehive_bulb', 10, 0, 0, 1, '0'),
(1094, 94, '261', 'rare_beehive_bulb*1', 10, 0, 0, 1, '0'),
(1095, 94, '262', 'rare_beehive_bulb*2', 200, 200, 0, 1, '0'),
(1096, 94, '206', 'hologram', 10, 0, 0, 1, '0'),
(1097, 94, '228', 'redhologram', 10, 0, 0, 1, '0'),
(1098, 94, '255', 'rare_hammock', 1000, 100, 0, 1, '0'),
(1099, 94, '251', 'rare_elephant_statue', 1000, 50, 0, 1, '0'),
(1100, 94, '252', 'rare_fountain', 1000, 50, 0, 1, '0'),
(1101, 94, '253', 'rare_stand', 1000, 50, 0, 1, '0'),
(1102, 94, '254', 'rare_globe', 1000, 50, 0, 1, '0'),
(1103, 94, '256', 'rare_elephant_statue*1', 150, 150, 0, 1, '0'),
(1104, 94, '257', 'rare_elephant_statue*2', 150, 150, 0, 1, '0'),
(1105, 94, '258', 'rare_fountain*1', 10, 0, 0, 1, '0'),
(1106, 94, '259', 'rare_fountain*2', 10, 0, 0, 1, '0'),
(1107, 94, '260', 'rare_fountain*3', 400, 10, 0, 1, '0'),
(1108, 16, '264', 'rare_parasol*1', 400, 10, 0, 1, '0'),
(1109, 16, '265', 'rare_parasol*2', 400, 10, 0, 1, '0'),
(1110, 16, '266', 'rare_parasol*3', 400, 10, 0, 1, '0'),
(1111, 16, '312', 'rare_parasol*0', 400, 10, 0, 1, '0'),
(1113, 94, '448', 'rare_snowrug', 100, 100, 0, 1, '0'),
(1114, 94, '668', 'rare_moonrug', 10, 0, 0, 1, '0'),
(1117, 43, '125', 'red_tv', 3, 0, 0, 1, '0'),
(1118, 43, '126', 'wood_tv', 4, 0, 0, 1, '0'),
(1119, 43, '154', 'tv_luxus', 5, 0, 0, 1, '0'),
(1120, 43, '1655', 'post.it', 3, 0, 0, 30, '0'),
(1121, 41, '1677', 'hrella_poster_3', 3, 0, 0, 1, '0'),
(1122, 41, '1678', 'hrella_poster_2', 3, 0, 0, 1, '0'),
(1123, 41, '1679', 'hrella_poster_1', 3, 0, 0, 1, '0'),
(1124, 43, '104', 'pizza', 3, 0, 0, 1, '0'),
(1125, 43, '105', 'drinks', 3, 0, 0, 1, '0'),
(1127, 43, '111', 'bottle', 3, 0, 0, 1, '0'),
(1128, 43, '211', 'edice', 6, 0, 0, 1, '0'),
(1132, 112, '19994', 'ads_twi_fountn', 5, 0, 0, 1, '0'),
(1133, 112, '19995', 'ads_twi_dvdr2', 3, 0, 0, 1, '0'),
(1134, 112, '19996', 'ads_twi_roses', 4, 0, 0, 1, '0'),
(1135, 112, '19997', 'ads_twi_table', 4, 0, 0, 1, '0'),
(1136, 112, '19998', 'ads_twi_chair', 3, 0, 0, 1, '0'),
(1137, 112, '19999', 'ads_twi_dvdr1', 3, 0, 0, 1, '0'),
(1138, 112, '20000', 'ads_twi_piano', 4, 0, 0, 1, '0'),
(1139, 112, '20001', 'ads_twi_tower', 4, 0, 0, 1, '0'),
(1140, 112, '20002', 'ads_twi_toolbx', 3, 0, 0, 1, '0'),
(1141, 112, '20003', 'ads_twi_mist', 3, 0, 0, 1, '0'),
(1152, 62, '777', 'gothic_sofa*1', 4, 0, 0, 1, '0'),
(1154, 62, '764', 'gothrailing', 3, 0, 0, 1, '0'),
(1156, 62, '778', 'gothic_stool*1', 2, 0, 0, 1, '0'),
(1157, 62, '780', 'gothic_sofa*2', 4, 0, 0, 1, '0'),
(1159, 62, '763', 'gothiccandelabra', 4, 0, 0, 1, '0'),
(1160, 62, '762', 'gothgate', 6, 0, 0, 1, '0'),
(1161, 62, '765', 'goth_table', 5, 0, 0, 1, '0'),
(1162, 62, '776', 'gothic_chair*1', 3, 0, 0, 1, '0'),
(1163, 62, '779', 'gothic_chair*2', 3, 0, 0, 1, '0'),
(1164, 62, '781', 'gothic_stool*2', 2, 0, 0, 1, '0'),
(1165, 62, '782', 'gothic_chair*3', 3, 0, 0, 1, '0'),
(1166, 62, '783', 'gothic_sofa*3', 4, 0, 0, 1, '0'),
(1167, 62, '784', 'gothic_stool*3', 2, 0, 0, 1, '0'),
(1168, 62, '785', 'gothic_chair*4', 3, 0, 0, 1, '0'),
(1169, 62, '786', 'gothic_sofa*4', 4, 0, 0, 1, '0'),
(1170, 62, '787', 'gothic_stool*4', 2, 0, 0, 1, '0'),
(1171, 62, '788', 'gothic_chair*5', 4, 0, 0, 1, '0'),
(1172, 62, '789', 'gothic_sofa*5', 4, 0, 0, 1, '0'),
(1173, 62, '790', 'gothic_stool*5', 2, 0, 0, 1, '0'),
(1174, 62, '791', 'gothic_chair*6', 3, 0, 0, 1, '0'),
(1175, 62, '792', 'gothic_sofa*6', 4, 0, 0, 1, '0'),
(1176, 62, '793', 'gothic_stool*6', 2, 0, 0, 1, '0'),
(1177, 62, '821', 'gothic_carpet', 5, 0, 0, 1, '0'),
(1178, 62, '822', 'gothic_carpet2', 6, 0, 0, 1, '0'),
(1179, 62, '823', 'gothic_chair', 3, 0, 0, 1, '0'),
(1180, 62, '824', 'gothic_sofa', 4, 0, 0, 1, '0'),
(1181, 62, '825', 'gothic_stool', 2, 0, 0, 1, '0'),
(1182, 62, '1665', 'gothicfountain', 3, 0, 0, 1, '0'),
(1183, 62, '1668', 'torch', 3, 0, 0, 1, '0'),
(1184, 62, '1726', 'gothicfountain2', 3, 0, 0, 1, '0'),
(1186, 103, '1204', 'diner_tray_6', 3, 0, 0, 1, '0');
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`, `hc_state`) VALUES
(1187, 103, '1205', 'diner_tray_5', 3, 0, 0, 1, '0'),
(1188, 103, '1206', 'diner_tray_4', 3, 0, 0, 1, '0'),
(1190, 103, '1207', 'diner_tray_3', 3, 0, 0, 1, '0'),
(1191, 103, '1208', 'diner_tray_2', 3, 0, 0, 1, '0'),
(1192, 103, '1209', 'diner_tray_1', 3, 0, 0, 1, '0'),
(1193, 103, '1203', 'diner_tray_7', 3, 0, 0, 1, '0'),
(1194, 103, '1210', 'diner_tray_0', 3, 0, 0, 1, '0'),
(1195, 103, '1211', 'diner_sofa_2*1', 4, 0, 0, 1, '0'),
(1196, 103, '1212', 'diner_sofa_2*2', 4, 0, 0, 1, '0'),
(1197, 103, '1213', 'diner_sofa_2*3', 4, 0, 0, 1, '0'),
(1198, 103, '1214', 'diner_sofa_2*4', 4, 0, 0, 1, '0'),
(1199, 103, '1215', 'diner_sofa_2*5', 4, 0, 0, 1, '0'),
(1200, 103, '1216', 'diner_sofa_2*6', 4, 0, 0, 1, '0'),
(1201, 103, '1217', 'diner_sofa_2*7', 4, 0, 0, 1, '0'),
(1202, 103, '1218', 'diner_sofa_2*8', 4, 0, 0, 1, '0'),
(1203, 103, '1219', 'diner_sofa_2*9', 4, 0, 0, 1, '0'),
(1204, 103, '1220', 'diner_shaker', 5, 0, 0, 1, '0'),
(1205, 103, '1221', 'diner_rug', 3, 0, 0, 1, '0'),
(1206, 103, '1221', 'diner_rug', 25, 0, 0, 10, '0'),
(1207, 103, '1222', 'diner_gumvendor*1', 3, 0, 0, 1, '0'),
(1208, 103, '1223', 'diner_gumvendor*2', 3, 0, 0, 1, '0'),
(1209, 103, '1224', 'diner_gumvendor*3', 3, 0, 0, 1, '0'),
(1210, 103, '1225', 'diner_gumvendor*4', 3, 0, 0, 1, '0'),
(1211, 103, '1226', 'diner_gumvendor*5', 3, 0, 0, 1, '0'),
(1212, 103, '1227', 'diner_gumvendor*6', 3, 0, 0, 1, '0'),
(1213, 103, '1228', 'diner_gumvendor*7', 3, 0, 0, 1, '0'),
(1214, 103, '1229', 'diner_gumvendor*8', 3, 0, 0, 1, '0'),
(1215, 103, '1230', 'diner_gumvendor*9', 3, 0, 0, 1, '0'),
(1216, 103, '1231', 'diner_cashreg*1', 3, 0, 0, 1, '0'),
(1217, 103, '1234', 'diner_cashreg*4', 3, 0, 0, 1, '0'),
(1218, 103, '1232', 'diner_cashreg*2', 3, 0, 0, 1, '0'),
(1219, 103, '1233', 'diner_cashreg*3', 3, 0, 0, 1, '0'),
(1220, 103, '1235', 'diner_cashreg*5', 3, 0, 0, 1, '0'),
(1221, 103, '1236', 'diner_cashreg*6', 3, 0, 0, 1, '0'),
(1222, 103, '1237', 'diner_cashreg*7', 3, 0, 0, 1, '0'),
(1223, 103, '1238', 'diner_cashreg*8', 3, 0, 0, 1, '0'),
(1224, 103, '1239', 'diner_cashreg*9', 3, 0, 0, 1, '0'),
(1225, 103, '1240', 'diner_table_2*1', 5, 0, 0, 1, '0'),
(1226, 103, '1241', 'diner_table_2*2', 5, 0, 0, 1, '0'),
(1227, 103, '1242', 'diner_table_2*3', 5, 0, 0, 1, '0'),
(1228, 103, '1243', 'diner_table_2*4', 5, 0, 0, 1, '0'),
(1229, 103, '1244', 'diner_table_2*5', 5, 0, 0, 1, '0'),
(1230, 103, '1245', 'diner_table_2*6', 5, 0, 0, 1, '0'),
(1231, 103, '1246', 'diner_table_2*7', 5, 0, 0, 1, '0'),
(1232, 103, '1247', 'diner_table_2*8', 5, 0, 0, 1, '0'),
(1233, 103, '1248', 'diner_table_2*9', 5, 0, 0, 1, '0'),
(1234, 103, '1249', 'diner_table_1*1', 3, 0, 0, 1, '0'),
(1235, 103, '1250', 'diner_table_1*2', 3, 0, 0, 1, '0'),
(1236, 103, '1251', 'diner_table_1*3', 3, 0, 0, 1, '0'),
(1237, 103, '1252', 'diner_table_1*4', 3, 0, 0, 1, '0'),
(1238, 103, '1253', 'diner_table_1*5', 3, 0, 0, 1, '0'),
(1239, 103, '1254', 'diner_table_1*6', 3, 0, 0, 1, '0'),
(1240, 103, '1255', 'diner_table_1*7', 3, 0, 0, 1, '0'),
(1241, 103, '1256', 'diner_table_1*8', 3, 0, 0, 1, '0'),
(1242, 103, '1257', 'diner_table_1*9', 3, 0, 0, 1, '0'),
(1243, 103, '1258', 'diner_sofa_1*1', 4, 0, 0, 1, '0'),
(1244, 103, '1259', 'diner_sofa_1*2', 4, 0, 0, 1, '0'),
(1245, 103, '1260', 'diner_sofa_1*3', 4, 0, 0, 1, '0'),
(1246, 103, '1261', 'diner_sofa_1*4', 4, 0, 0, 1, '0'),
(1247, 103, '1262', 'diner_sofa_1*5', 4, 0, 0, 1, '0'),
(1248, 103, '1263', 'diner_sofa_1*6', 4, 0, 0, 1, '0'),
(1250, 103, '1264', 'diner_sofa_1*7', 4, 0, 0, 1, '0'),
(1251, 103, '1265', 'diner_sofa_1*8', 4, 0, 0, 1, '0'),
(1252, 103, '1266', 'diner_sofa_1*9', 4, 0, 0, 1, '0'),
(1253, 103, '1267', 'diner_chair*1', 3, 0, 0, 1, '0'),
(1254, 103, '1268', 'diner_chair*2', 3, 0, 0, 1, '0'),
(1255, 103, '1269', 'diner_chair*3', 3, 0, 0, 1, '0'),
(1256, 103, '1270', 'diner_chair*4', 3, 0, 0, 1, '0'),
(1257, 103, '1271', 'diner_chair*5', 3, 0, 0, 1, '0'),
(1258, 103, '1272', 'diner_chair*6', 3, 0, 0, 1, '0'),
(1259, 103, '1273', 'diner_chair*7', 3, 0, 0, 1, '0'),
(1260, 103, '1274', 'diner_chair*8', 3, 0, 0, 1, '0'),
(1261, 103, '1275', 'diner_chair*9', 3, 0, 0, 1, '0'),
(1262, 103, '1276', 'diner_bardesk_gate*1', 6, 0, 0, 1, '0'),
(1263, 103, '1277', 'diner_bardesk_gate*2', 6, 0, 0, 1, '0'),
(1264, 103, '1278', 'diner_bardesk_gate*3', 6, 0, 0, 1, '0'),
(1265, 103, '1279', 'diner_bardesk_gate*4', 6, 0, 0, 1, '0'),
(1266, 103, '1280', 'diner_bardesk_gate*5', 6, 0, 0, 1, '0'),
(1267, 103, '1281', 'diner_bardesk_gate*6', 6, 0, 0, 1, '0'),
(1269, 103, '1282', 'diner_bardesk_gate*7', 6, 0, 0, 1, '0'),
(1270, 103, '1283', 'diner_bardesk_gate*8', 6, 0, 0, 1, '0'),
(1271, 103, '1284', 'diner_bardesk_gate*9', 6, 0, 0, 1, '0'),
(1272, 103, '1285', 'diner_bardesk_corner*1', 3, 0, 0, 1, '0'),
(1273, 103, '1286', 'diner_bardesk_corner*2', 3, 0, 0, 1, '0'),
(1274, 103, '1287', 'diner_bardesk_corner*3', 3, 0, 0, 1, '0'),
(1275, 103, '1288', 'diner_bardesk_corner*4', 3, 0, 0, 1, '0'),
(1276, 103, '1289', 'diner_bardesk_corner*6', 3, 0, 0, 1, '0'),
(1277, 103, '1290', 'diner_bardesk_corner*7', 3, 0, 0, 1, '0'),
(1278, 103, '1291', 'diner_bardesk_corner*8', 3, 0, 0, 1, '0'),
(1279, 103, '1292', 'diner_bardesk_corner*9', 3, 0, 0, 1, '0'),
(1280, 103, '1293', 'diner_bardesk*1', 3, 0, 0, 1, '0'),
(1281, 103, '1294', 'diner_bardesk*2', 3, 0, 0, 1, '0'),
(1282, 103, '1295', 'diner_bardesk*3', 3, 0, 0, 1, '0'),
(1283, 103, '1296', 'diner_bardesk*4', 3, 0, 0, 1, '0'),
(1284, 103, '1297', 'diner_bardesk*5', 3, 0, 0, 1, '0'),
(1285, 103, '1298', 'diner_bardesk*6', 3, 0, 0, 1, '0'),
(1286, 103, '1299', 'diner_bardesk*7', 3, 0, 0, 1, '0'),
(1287, 103, '1300', 'diner_bardesk*8', 3, 0, 0, 1, '0'),
(1288, 103, '1301', 'diner_bardesk*9', 3, 0, 0, 1, '0'),
(1289, 103, '1708', 'window_diner2', 3, 0, 0, 1, '0'),
(1290, 103, '1709', 'window_diner', 4, 0, 0, 1, '0'),
(1291, 103, '1710', 'diner_walltable', 2, 0, 0, 1, '0'),
(1292, 103, '1782', 'diner_poster', 3, 0, 0, 1, '0'),
(1294, 105, '398', 'pillar*1', 10, 0, 0, 1, '0'),
(1295, 105, '399', 'pillar*9', 10, 0, 0, 1, '0'),
(1296, 105, '400', 'pillar*0', 10, 0, 0, 1, '0'),
(1297, 105, '401', 'pillar*8', 10, 0, 0, 1, '0'),
(1298, 105, '402', 'pillar*2', 10, 0, 0, 1, '0'),
(1299, 105, '403', 'pillar*5', 10, 0, 0, 1, '0'),
(1300, 105, '404', 'pillar*4', 10, 0, 0, 1, '0'),
(1301, 105, '405', 'pillar*7', 10, 0, 0, 1, '0'),
(1302, 105, '406', 'pillar*3', 10, 0, 0, 1, '0'),
(1303, 105, '388', 'wooden_screen*1', 10, 0, 0, 1, '0'),
(1304, 105, '389', 'wooden_screen*2', 10, 0, 0, 1, '0'),
(1305, 105, '390', 'wooden_screen*7', 10, 0, 0, 1, '0'),
(1306, 105, '391', 'wooden_screen*0', 10, 0, 0, 1, '0'),
(1307, 105, '392', 'wooden_screen*8', 10, 0, 0, 1, '0'),
(1308, 105, '393', 'wooden_screen*5', 10, 0, 0, 1, '0'),
(1309, 105, '394', 'wooden_screen*9', 10, 0, 0, 1, '0'),
(1310, 105, '395', 'wooden_screen*4', 10, 0, 0, 1, '0'),
(1311, 105, '396', 'wooden_screen*6', 10, 0, 0, 1, '0'),
(1312, 105, '397', 'wooden_screen*3', 10, 0, 0, 1, '0'),
(1313, 16, '417', 'rare_icecream*1', 500, 0, 0, 1, '0'),
(1314, 16, '418', 'rare_icecream*7', 500, 0, 0, 1, '0'),
(1315, 16, '419', 'rare_icecream*8', 500, 0, 0, 1, '0'),
(1316, 16, '420', 'rare_icecream*2', 500, 0, 0, 1, '0'),
(1317, 105, '421', 'rare_icecream*6', 10, 0, 0, 1, '0'),
(1318, 105, '422', 'rare_icecream*9', 10, 0, 0, 1, '0'),
(1319, 105, '423', 'rare_icecream*3', 10, 0, 0, 1, '0'),
(1320, 105, '424', 'rare_icecream*0', 10, 0, 0, 1, '0'),
(1321, 105, '425', 'rare_icecream*4', 10, 0, 0, 1, '0'),
(1322, 105, '426', 'rare_icecream*5', 10, 0, 0, 1, '0'),
(1323, 95, '892', 'rare_icecream_campaign', 10, 0, 0, 1, '0'),
(1324, 16, '1140', 'calippo', 500, 100, 0, 1, '0'),
(1325, 94, '338', 'scifiport*0', 200, 200, 0, 1, '0'),
(1326, 16, '339', 'scifiport*9', 500, 100, 0, 1, '0'),
(1327, 105, '340', 'scifiport*8', 10, 0, 0, 1, '0'),
(1328, 105, '341', 'scifiport*7', 10, 0, 0, 1, '0'),
(1329, 105, '342', 'scifiport*6', 10, 0, 0, 1, '0'),
(1330, 105, '343', 'scifiport*5', 10, 0, 0, 1, '0'),
(1331, 105, '344', 'scifiport*4', 10, 0, 0, 1, '0'),
(1332, 105, '345', 'scifiport*3', 10, 0, 0, 1, '0'),
(1333, 105, '346', 'scifiport*2', 10, 0, 0, 1, '0'),
(1334, 105, '347', 'scifiport*1', 10, 0, 0, 1, '0'),
(1335, 105, '348', 'scifirocket*9', 10, 0, 0, 1, '0'),
(1336, 105, '349', 'scifirocket*8', 10, 0, 0, 1, '0'),
(1337, 105, '350', 'scifirocket*7', 10, 0, 0, 1, '0'),
(1338, 105, '351', 'scifirocket*6', 10, 0, 0, 1, '0'),
(1339, 105, '352', 'scifirocket*5', 10, 0, 0, 1, '0'),
(1340, 105, '353', 'scifirocket*4', 10, 0, 0, 1, '0'),
(1341, 105, '354', 'scifirocket*3', 10, 0, 0, 1, '0'),
(1342, 105, '355', 'scifirocket*2', 10, 0, 0, 1, '0'),
(1343, 105, '356', 'scifirocket*1', 10, 0, 0, 1, '0'),
(1344, 105, '357', 'scifirocket*0', 10, 0, 0, 1, '0'),
(1345, 105, '358', 'scifidoor*10', 10, 0, 0, 1, '0'),
(1346, 105, '359', 'scifidoor*9', 10, 0, 0, 1, '0'),
(1347, 105, '360', 'scifidoor*8', 10, 0, 0, 1, '0'),
(1348, 16, '361', 'scifidoor*7', 500, 100, 0, 1, '0'),
(1349, 105, '362', 'scifidoor*6', 10, 0, 0, 1, '0'),
(1350, 105, '363', 'scifidoor*5', 10, 0, 0, 1, '0'),
(1351, 105, '364', 'scifidoor*4', 10, 0, 0, 1, '0'),
(1352, 105, '365', 'scifidoor*3', 10, 0, 0, 1, '0'),
(1353, 105, '367', 'scifidoor*2', 10, 0, 0, 1, '0'),
(1354, 105, '366', 'scifidoor*2', 10, 0, 0, 1, '0'),
(1355, 27, '186', 'menorah', 3, 0, 0, 1, '0'),
(1356, 43, '188', 'ham', 3, 0, 0, 1, '0'),
(1357, 27, '189', 'turkey', 3, 0, 0, 1, '0'),
(1358, 27, '191', 'house', 3, 0, 0, 1, '0'),
(1359, 43, '196', 'ham2', 2, 0, 0, 1, '0'),
(1360, 27, '197', 'wcandleset', 3, 0, 0, 1, '0'),
(1361, 43, '205', 'habbocake', 5, 0, 0, 1, '0'),
(1362, 39, '204', 'giftflowers', 4, 0, 0, 1, '0'),
(1364, 8, '212', 'club_sofa', 4, 0, 0, 1, '0'),
(1365, 8, '239', 'chair_plasto*14', 3, 0, 0, 1, '0'),
(1366, 8, '240', 'table_plasto_4leg*14', 4, 0, 0, 1, '0'),
(1367, 8, '246', 'edicehc', 5, 0, 0, 1, '0'),
(1368, 8, '249', 'hcsohva', 10, 0, 0, 1, '0'),
(1369, 8, '250', 'hcamme', 6, 0, 0, 1, '0'),
(1370, 8, '313', 'hc_lmp', 4, 0, 0, 1, '0'),
(1371, 8, '314', 'hc_tbl', 6, 0, 0, 1, '0'),
(1372, 8, '315', 'hc_chr', 5, 0, 0, 1, '0'),
(1373, 8, '316', 'hc_dsk', 5, 0, 0, 1, '0'),
(1374, 8, '760', 'hc_crpt', 4, 0, 0, 1, '0'),
(1375, 8, '761', 'hc_tv', 5, 0, 0, 1, '0'),
(1376, 8, '766', 'hc_bkshlf', 6, 0, 0, 1, '0'),
(1377, 8, '767', 'hc_btlr', 4, 0, 0, 1, '0'),
(1378, 8, '768', 'hc_crtn', 4, 0, 0, 1, '0'),
(1379, 8, '769', 'hc_djset', 5, 0, 0, 1, '0'),
(1380, 8, '770', 'hc_frplc', 6, 0, 0, 1, '0'),
(1381, 8, '771', 'hc_lmpst', 3, 0, 0, 1, '0'),
(1382, 8, '772', 'hc_machine', 5, 0, 0, 1, '0'),
(1383, 8, '773', 'hc_rllr', 7, 0, 0, 1, '0'),
(1384, 8, '774', 'hc_rntgn', 3, 0, 0, 1, '0'),
(1385, 8, '775', 'hc_trll', 3, 0, 0, 1, '0'),
(1386, 8, '1313', 'hcc_table', 4, 0, 0, 1, '0'),
(1387, 8, '1314', 'hcc_shelf', 3, 0, 0, 1, '0'),
(1388, 8, '1315', 'hcc_sofa', 3, 0, 0, 1, '0'),
(1389, 8, '1316', 'hcc_minibar', 5, 0, 0, 1, '0'),
(1390, 8, '1317', 'hcc_chair', 3, 0, 0, 1, '0'),
(1391, 8, '1321', 'hcc_stool', 2, 0, 0, 1, '0'),
(1392, 8, '1322', 'hcc_sofachair', 4, 0, 0, 1, '0'),
(1393, 8, '1323', 'hcc_crnr', 3, 0, 0, 1, '0'),
(1394, 8, '1324', 'hcc_dvdr', 3, 0, 0, 1, '0'),
(1396, 8, '1666', 'hc_wall_lamp', 3, 0, 0, 1, '0'),
(1398, 36, '8', 'table_plasto_4leg', 3, 0, 0, 1, '0'),
(1399, 36, '9', 'table_plasto_round', 3, 0, 0, 1, '0'),
(1400, 36, '10', 'table_plasto_bigsquare', 3, 0, 0, 1, '0'),
(1401, 36, '22', 'chair_plasty', 3, 0, 0, 1, '0'),
(1402, 36, '23', 'chair_plasto', 3, 0, 0, 1, '0'),
(1403, 36, '24', 'table_plasto_square', 3, 0, 0, 1, '0'),
(1404, 36, '47', 'table_plasto_4leg*1', 3, 0, 0, 1, '0'),
(1405, 36, '48', 'table_plasto_bigsquare*1', 3, 0, 0, 1, '0'),
(1406, 36, '49', 'table_plasto_round*1', 3, 0, 0, 1, '0'),
(1407, 36, '50', 'table_plasto_square*1', 3, 0, 0, 1, '0'),
(1408, 36, '51', 'chair_plasto*1', 3, 0, 0, 1, '0'),
(1409, 36, '54', 'table_plasto_4leg*2', 3, 0, 0, 1, '0'),
(1410, 36, '55', 'table_plasto_bigsquare*2', 3, 0, 0, 1, '0'),
(1411, 36, '56', 'table_plasto_round*2', 3, 0, 0, 1, '0'),
(1412, 36, '57', 'table_plasto_square*2', 3, 0, 0, 1, '0'),
(1413, 36, '58', 'chair_plasto*2', 3, 0, 0, 1, '0'),
(1414, 36, '61', 'table_plasto_4leg*3', 3, 0, 0, 1, '0'),
(1415, 36, '62', 'table_plasto_bigsquare*3', 3, 0, 0, 1, '0'),
(1416, 36, '63', 'table_plasto_round*3', 3, 0, 0, 1, '0'),
(1417, 36, '64', 'table_plasto_square*3', 3, 0, 0, 1, '0'),
(1418, 36, '65', 'chair_plasto*3', 3, 0, 0, 1, '0'),
(1419, 36, '68', 'table_plasto_4leg*4', 3, 0, 0, 1, '0'),
(1420, 36, '71', 'table_plasto_square*4', 3, 0, 0, 1, '0'),
(1421, 36, '72', 'chair_plasto*4', 3, 0, 0, 1, '0'),
(1422, 36, '78', 'table_plasto_4leg*5', 3, 0, 0, 1, '0'),
(1423, 36, '79', 'table_plasto_bigsquare*5', 3, 0, 0, 1, '0'),
(1424, 36, '80', 'table_plasto_round*5', 3, 0, 0, 1, '0'),
(1425, 36, '81', 'table_plasto_square*5', 3, 0, 0, 1, '0'),
(1426, 36, '82', 'chair_plasto*5', 3, 0, 0, 1, '0'),
(1427, 36, '83', 'table_plasto_4leg*6', 3, 0, 0, 1, '0'),
(1428, 36, '84', 'table_plasto_bigsquare*6', 3, 0, 0, 1, '0'),
(1429, 36, '85', 'table_plasto_round*6', 3, 0, 0, 1, '0'),
(1430, 36, '86', 'table_plasto_square*6', 3, 0, 0, 1, '0'),
(1431, 36, '87', 'chair_plasto*6', 3, 0, 0, 1, '0'),
(1432, 36, '88', 'table_plasto_4leg*7', 3, 0, 0, 1, '0'),
(1433, 36, '89', 'table_plasto_bigsquare*7', 3, 0, 0, 1, '0'),
(1434, 36, '90', 'table_plasto_round*7', 3, 0, 0, 1, '0'),
(1435, 36, '91', 'table_plasto_square*7', 3, 0, 0, 1, '0'),
(1436, 36, '92', 'chair_plasto*7', 3, 0, 0, 1, '0'),
(1437, 36, '93', 'table_plasto_4leg*8', 3, 0, 0, 1, '0'),
(1438, 36, '94', 'table_plasto_bigsquare*8', 3, 0, 0, 1, '0'),
(1439, 36, '95', 'table_plasto_round*8', 3, 0, 0, 1, '0'),
(1440, 36, '96', 'table_plasto_square*8', 3, 0, 0, 1, '0'),
(1441, 36, '97', 'chair_plasto*8', 3, 0, 0, 1, '0'),
(1442, 36, '98', 'table_plasto_4leg*9', 3, 0, 0, 1, '0'),
(1443, 36, '99', 'table_plasto_bigsquare*9', 3, 0, 0, 1, '0'),
(1444, 36, '100', 'table_plasto_round*9', 3, 0, 0, 1, '0'),
(1445, 36, '101', 'chair_plasto*9', 3, 0, 0, 1, '0'),
(1446, 36, '233', 'chair_plasto*10', 3, 0, 0, 1, '0'),
(1447, 36, '234', 'chair_plasto*11', 3, 0, 0, 1, '0'),
(1448, 36, '237', 'chair_plasto*12', 3, 0, 0, 1, '0'),
(1449, 36, '238', 'chair_plasto*13', 3, 0, 0, 1, '0'),
(1450, 36, '276', 'table_plasto_4leg*10', 3, 0, 0, 1, '0'),
(1451, 36, '277', 'table_plasto_4leg*15', 3, 0, 0, 1, '0'),
(1452, 36, '278', 'table_plasto_bigsquare*14', 3, 0, 0, 1, '0'),
(1453, 36, '279', 'table_plasto_bigsquare*15', 3, 0, 0, 1, '0'),
(1454, 36, '280', 'table_plasto_round*14', 3, 0, 0, 1, '0'),
(1455, 36, '281', 'table_plasto_round*15', 3, 0, 0, 1, '0'),
(1456, 36, '282', 'table_plasto_square*14', 3, 0, 0, 1, '0'),
(1457, 36, '283', 'table_plasto_square*15', 3, 0, 0, 1, '0'),
(1458, 36, '284', 'chair_plasto*15', 3, 0, 0, 1, '0'),
(1459, 36, '290', 'chair_plasto*16', 3, 0, 0, 1, '0'),
(1460, 36, '291', 'table_plasto_4leg*16', 3, 0, 0, 1, '0'),
(1462, 40, '17', 'doormat_love', 1, 0, 0, 1, '0'),
(1463, 40, '18', 'doormat_plain', 3, 0, 0, 1, '0'),
(1464, 40, '53', 'doormat_plain*1', 1, 0, 0, 1, '0'),
(1465, 40, '59', 'doormat_plain*2', 1, 0, 0, 1, '0'),
(1466, 40, '67', 'doormat_plain*3', 1, 0, 0, 1, '0'),
(1467, 40, '74', 'doormat_plain*4', 1, 0, 0, 1, '0'),
(1468, 40, '75', 'doormat_plain*6', 3, 0, 0, 1, '0'),
(1469, 40, '76', 'doormat_plain*5', 1, 0, 0, 1, '0'),
(1471, 95, '27', 'bed_trad_one', 10, 0, 0, 1, '0'),
(1472, 95, '28', 'bed_trad', 10, 0, 0, 1, '0'),
(1473, 35, '35', 'shelves_armas', 4, 0, 0, 1, '0'),
(1474, 32, '33', 'bed_budget_one', 3, 0, 0, 1, '0'),
(1475, 32, '34', 'bed_budget', 4, 0, 0, 1, '0'),
(1476, 32, '139', 'bed_budgetb_one', 3, 0, 0, 1, '0'),
(1477, 32, '140', 'bed_budgetb', 4, 0, 0, 1, '0'),
(1478, 32, '947', 'bed_budget*1', 4, 0, 0, 1, '0'),
(1479, 32, '956', 'bed_budget_one*1', 3, 0, 0, 1, '0'),
(1482, 36, '103', 'chair_plasty*1', 3, 0, 0, 1, '0'),
(1483, 36, '106', 'chair_plasty*2', 3, 0, 0, 1, '0'),
(1484, 36, '107', 'chair_plasty*3', 3, 0, 0, 1, '0'),
(1485, 36, '108', 'chair_plasty*4', 3, 0, 0, 1, '0'),
(1486, 36, '128', 'chair_plasty*5', 3, 0, 0, 1, '0'),
(1487, 36, '132', 'chair_plasty*6', 3, 0, 0, 1, '0'),
(1488, 36, '285', 'chair_plasty*7', 3, 0, 0, 1, '0'),
(1489, 36, '286', 'chair_plasty*8', 3, 0, 0, 1, '0'),
(1490, 36, '287', 'chair_plasty*9', 3, 0, 0, 1, '0'),
(1491, 36, '288', 'chair_plasty*10', 3, 0, 0, 1, '0'),
(1492, 36, '289', 'chair_plasty*11', 3, 0, 0, 1, '0'),
(1496, 35, '217', 'divider_arm1', 3, 0, 0, 1, '0'),
(1497, 35, '218', 'divider_arm2', 3, 0, 0, 1, '0'),
(1498, 35, '219', 'divider_arm3', 6, 0, 0, 1, '0'),
(1499, 94, '213', 'prize1', 10, 0, 0, 1, '0'),
(1500, 94, '214', 'prize2', 10, 0, 0, 1, '0'),
(1501, 94, '215', 'prize3', 10, 0, 0, 1, '0'),
(1502, 55, '220', 'divider_nor1', 3, 0, 0, 1, '0'),
(1503, 55, '222', 'divider_nor2', 3, 0, 0, 1, '0'),
(1505, 55, '224', 'divider_nor3', 6, 0, 0, 1, '0'),
(1506, 55, '462', 'divider_nor4*4', 3, 0, 0, 1, '0'),
(1507, 55, '510', 'divider_nor1*2', 3, 0, 0, 1, '0'),
(1508, 55, '511', 'divider_nor1*3', 3, 0, 0, 1, '0'),
(1509, 55, '512', 'divider_nor1*4', 3, 0, 0, 1, '0'),
(1510, 55, '513', 'divider_nor1*5', 3, 0, 0, 1, '0'),
(1511, 55, '514', 'divider_nor1*6', 3, 0, 0, 1, '0'),
(1512, 55, '515', 'divider_nor1*7', 3, 0, 0, 1, '0'),
(1513, 55, '516', 'divider_nor1*8', 3, 0, 0, 1, '0'),
(1514, 55, '517', 'divider_nor1*8', 3, 0, 0, 1, '0'),
(1515, 55, '641', 'divider_nor3*2', 6, 0, 0, 1, '0'),
(1516, 55, '642', 'divider_nor3*3', 6, 0, 0, 1, '0'),
(1517, 55, '643', 'divider_nor3*4', 3, 0, 0, 1, '0'),
(1518, 55, '644', 'divider_nor3*5', 6, 0, 0, 1, '0'),
(1519, 55, '645', 'divider_nor3*6', 6, 0, 0, 1, '0'),
(1520, 55, '646', 'divider_nor3*7', 6, 0, 0, 1, '0'),
(1521, 55, '647', 'divider_nor3*8', 6, 0, 0, 1, '0'),
(1522, 55, '648', 'divider_nor3*9', 6, 0, 0, 1, '0'),
(1523, 55, '649', 'divider_nor2*2', 3, 0, 0, 1, '0'),
(1524, 55, '650', 'divider_nor2*3', 3, 0, 0, 1, '0'),
(1525, 55, '651', 'divider_nor2*4', 3, 0, 0, 1, '0'),
(1526, 55, '652', 'divider_nor2*5', 3, 0, 0, 1, '0'),
(1527, 55, '653', 'divider_nor2*6', 3, 0, 0, 1, '0'),
(1528, 55, '654', 'divider_nor2*7', 3, 0, 0, 1, '0'),
(1529, 55, '655', 'divider_nor2*8', 3, 0, 0, 1, '0'),
(1530, 55, '656', 'divider_nor2*9', 3, 0, 0, 1, '0'),
(1531, 55, '684', 'divider_nor4*2', 3, 0, 0, 1, '0'),
(1532, 55, '685', 'divider_nor4*3', 3, 0, 0, 1, '0'),
(1533, 55, '686', 'divider_nor4*5', 3, 0, 0, 1, '0'),
(1534, 55, '687', 'divider_nor4*6', 3, 0, 0, 1, '0'),
(1535, 55, '688', 'divider_nor4*7', 3, 0, 0, 1, '0'),
(1536, 55, '689', 'divider_nor4*8', 3, 0, 0, 1, '0'),
(1537, 55, '690', 'divider_nor4*9', 3, 0, 0, 1, '0'),
(1538, 55, '691', 'divider_nor5*2', 3, 0, 0, 1, '0'),
(1539, 55, '692', 'divider_nor5*3', 3, 0, 0, 1, '0'),
(1540, 55, '693', 'divider_nor5*4', 3, 0, 0, 1, '0'),
(1541, 55, '694', 'divider_nor5*5', 3, 0, 0, 1, '0'),
(1542, 55, '695', 'divider_nor5*7', 3, 0, 0, 1, '0'),
(1543, 55, '696', 'divider_nor5*8', 3, 0, 0, 1, '0'),
(1544, 55, '697', 'divider_nor5*9', 3, 0, 0, 1, '0'),
(1545, 55, '698', 'divider_nor5', 3, 0, 0, 1, '0'),
(1546, 55, '699', 'divider_nor4', 3, 0, 0, 1, '0'),
(1547, 94, '226', 'typingmachine', 10, 0, 0, 1, '0'),
(1548, 27, '230', 'joulutahti', 10, 0, 0, 1, '0'),
(1549, 94, '231', 'hyacinth1', 10, 0, 0, 1, '0'),
(1550, 94, '232', 'hyacinth2', 10, 0, 0, 1, '0'),
(1551, 30, '235', 'bardeskcorner_polyfon*12', 3, 0, 0, 1, '0'),
(1552, 20, '236', 'bardeskcorner_polyfon*13', 3, 0, 0, 1, '0'),
(1553, 8, '241', 'mocchamaster', 5, 0, 0, 1, '0'),
(1554, 94, '247', 'rare_daffodil_rug', 10, 0, 0, 1, '0'),
(1555, 27, '267', 'tree1', 3, 0, 0, 1, '0'),
(1557, 27, '269', 'wcandle', 3, 0, 0, 1, '0'),
(1558, 27, '272', 'house2', 3, 0, 0, 1, '0'),
(1559, 94, '275', 'md_limukaappi', 150, 150, 0, 1, '0'),
(1561, 8, '294', 'doorD', 6, 0, 0, 1, '0'),
(1562, 105, '368', 'pillow*5', 10, 0, 0, 1, '0'),
(1563, 105, '369', 'pillow*8', 10, 0, 0, 1, '0'),
(1564, 105, '370', 'pillow*0', 10, 0, 0, 1, '0'),
(1565, 105, '371', 'pillow*1', 10, 0, 0, 1, '0'),
(1566, 105, '372', 'pillow*2', 10, 0, 0, 1, '0'),
(1567, 105, '373', 'pillow*7', 10, 0, 0, 1, '0'),
(1568, 105, '374', 'pillow*9', 10, 0, 0, 1, '0'),
(1569, 105, '375', 'pillow*4', 10, 0, 0, 1, '0'),
(1570, 105, '376', 'pillow*6', 10, 0, 0, 1, '0'),
(1571, 105, '377', 'pillow*3', 10, 0, 0, 1, '0'),
(1572, 95, '1410', 'ads_ob_pillow', 10, 0, 0, 1, '0'),
(1573, 105, '379', 'marquee*2', 10, 0, 0, 1, '0'),
(1574, 105, '407', 'rare_dragonlamp*4', 10, 0, 0, 1, '0'),
(1575, 105, '408', 'rare_dragonlamp*0', 10, 0, 0, 1, '0'),
(1576, 105, '409', 'rare_dragonlamp*5', 10, 0, 0, 1, '0'),
(1577, 105, '410', 'rare_dragonlamp*2', 10, 0, 0, 1, '0'),
(1578, 105, '411', 'rare_dragonlamp*8', 10, 0, 0, 1, '0'),
(1579, 105, '412', 'rare_dragonlamp*9', 10, 0, 0, 1, '0'),
(1580, 105, '413', 'rare_dragonlamp*7', 10, 0, 0, 1, '0'),
(1581, 105, '414', 'rare_dragonlamp*6', 10, 0, 0, 1, '0'),
(1582, 105, '415', 'rare_dragonlamp*1', 10, 0, 0, 1, '0'),
(1583, 105, '416', 'rare_dragonlamp*3', 10, 0, 0, 1, '0'),
(1584, 105, '430', 'rare_fan*3', 10, 0, 0, 1, '0'),
(1585, 58, '1411', 'lostc_merdragon', 6, 0, 0, 1, '0'),
(1587, 105, '378', 'marquee*1', 10, 0, 0, 1, '0'),
(1588, 105, '380', 'marquee*7', 10, 0, 0, 1, '0'),
(1589, 105, '382', 'marquee*8', 10, 0, 0, 1, '0'),
(1590, 105, '383', 'marquee*9', 10, 0, 0, 1, '0'),
(1591, 105, '384', 'marquee*5', 10, 0, 0, 1, '0'),
(1592, 105, '385', 'marquee*4', 10, 0, 0, 1, '0'),
(1593, 105, '386', 'marquee*6', 10, 0, 0, 1, '0'),
(1594, 105, '387', 'marquee*3', 10, 0, 0, 1, '0'),
(1595, 105, '381', 'marquee*10', 10, 0, 0, 1, '0'),
(1596, 105, '427', 'rare_fan*7', 10, 0, 0, 1, '0'),
(1598, 105, '428', 'rare_fan*6', 10, 0, 0, 1, '0'),
(1599, 105, '429', 'rare_fan*9', 10, 0, 0, 1, '0'),
(1600, 105, '430', 'rare_fan*3', 10, 0, 0, 1, '0'),
(1601, 105, '431', 'rare_fan*0', 10, 0, 0, 1, '0'),
(1602, 105, '432', 'rare_fan*4', 10, 0, 0, 1, '0'),
(1603, 105, '433', 'rare_fan*5', 10, 0, 0, 1, '0'),
(1604, 105, '434', 'rare_fan*1', 10, 0, 0, 1, '0'),
(1605, 105, '435', 'rare_fan*8', 10, 0, 0, 1, '0'),
(1606, 105, '436', 'rare_fan*2', 10, 0, 0, 1, '0'),
(1607, 95, '1589', 'ads_calip_fan', 10, 0, 0, 1, '0'),
(1608, 62, '1667', 'industrialfan', 4, 0, 0, 1, '0'),
(1609, 57, '449', 'cn_lamp', 5, 0, 0, 1, '0'),
(1610, 57, '450', 'cn_sofa', 4, 0, 0, 1, '0'),
(1611, 95, '1302', 'ads_dave_cns', 10, 0, 0, 1, '0'),
(1612, 105, '468', 'rubberchair*1', 10, 0, 0, 1, '0'),
(1613, 105, '469', 'rubberchair*2', 10, 0, 0, 1, '0'),
(1614, 105, '470', 'rubberchair*3', 10, 0, 0, 1, '0'),
(1615, 105, '471', 'rubberchair*4', 10, 0, 0, 1, '0'),
(1616, 105, '472', 'rubberchair*5', 10, 0, 0, 1, '0'),
(1617, 105, '473', 'rubberchair*6', 10, 0, 0, 1, '0'),
(1618, 105, '477', 'rubberchair*7', 10, 0, 0, 1, '0'),
(1619, 105, '478', 'rubberchair*8', 10, 0, 0, 1, '0'),
(1620, 105, '463', 'traffic_light*1', 10, 0, 0, 1, '0'),
(1621, 105, '464', 'traffic_light*2', 10, 0, 0, 1, '0'),
(1622, 105, '465', 'traffic_light*3', 10, 0, 0, 1, '0'),
(1623, 105, '466', 'traffic_light*4', 10, 0, 0, 1, '0'),
(1624, 105, '467', 'traffic_light*6', 10, 0, 0, 1, '0'),
(1625, 105, '683', 'traffic_light*5', 10, 0, 0, 1, '0'),
(1626, 105, '474', 'barrier*1', 10, 0, 0, 1, '0'),
(1627, 105, '475', 'barrier*2', 10, 0, 0, 1, '0'),
(1628, 105, '476', 'barrier*3', 10, 0, 0, 1, '0'),
(1629, 94, '667', 'sandrug', 10, 0, 0, 1, '0'),
(1630, 105, '671', 'sleepingbag*1', 10, 0, 0, 1, '0'),
(1631, 105, '672', 'sleepingbag*2', 10, 0, 0, 1, '0'),
(1632, 105, '673', 'sleepingbag*3', 10, 0, 0, 1, '0'),
(1633, 105, '674', 'sleepingbag*4', 10, 0, 0, 1, '0'),
(1634, 105, '676', 'sleepingbag*7', 10, 0, 0, 1, '0'),
(1635, 105, '677', 'sleepingbag*9', 10, 0, 0, 1, '0'),
(1636, 105, '678', 'sleepingbag*5', 10, 0, 0, 1, '0'),
(1637, 105, '679', 'sleepingbag*10', 10, 0, 0, 1, '0'),
(1638, 105, '680', 'sleepingbag*6', 10, 0, 0, 1, '0'),
(1639, 105, '681', 'sleepingbag*8', 10, 0, 0, 1, '0'),
(1640, 13, '755', 'CF_10_coin_gold', 10, 0, 0, 1, '0'),
(1641, 13, '756', 'CF_1_coin_bronze', 1, 0, 0, 1, '0'),
(1642, 13, '757', 'CF_20_moneybag', 20, 0, 0, 1, '0'),
(1643, 12, '758', 'CF_50_goldbar', 50, 0, 0, 1, '0'),
(1644, 13, '759', 'CF_5_coin_silver', 5, 0, 0, 1, '0'),
(1645, 65, '831', 'theatre_seat', 5, 0, 0, 1, '0'),
(1646, 32, '938', 'chair_basic*1', 3, 0, 0, 1, '0'),
(1647, 32, '945', 'chair_basic*8', 3, 0, 0, 1, '0'),
(1648, 40, '1009', 'carpet_soft_tut', 2, 0, 0, 1, '0'),
(1649, 66, '1025', 'hal_cauldron', 5, 0, 0, 1, '0'),
(1650, 66, '1026', 'hal_grave', 4, 0, 0, 1, '0'),
(1651, 66, '1318', 'det_divider', 3, 0, 0, 1, '0'),
(1652, 66, '1320', 'det_body', 5, 0, 0, 1, '0'),
(1653, 66, '1719', 'det_bhole', 2, 0, 0, 1, '0'),
(1654, 94, '1719', 'det_bhole', 5, 0, 0, 3, '0'),
(1655, 121, '794', 'sound_machine', 5, 0, 0, 1, '0'),
(1656, 121, '859', 'sound_machine*1', 5, 0, 0, 1, '0'),
(1657, 121, '861', 'sound_machine*2', 5, 0, 0, 1, '0'),
(1658, 121, '862', 'sound_machine*3', 5, 0, 0, 1, '0'),
(1659, 121, '863', 'sound_machine*4', 5, 0, 0, 1, '0'),
(1660, 121, '864', 'sound_machine*5', 5, 0, 0, 1, '0'),
(1661, 121, '865', 'sound_machine*6', 5, 0, 0, 1, '0'),
(1662, 121, '866', 'sound_machine*7', 5, 0, 0, 1, '0'),
(1663, 121, '990', 'sound_machine_pro', 5, 0, 0, 1, '0'),
(1664, 122, '850', 'sound_set_1', 3, 0, 0, 1, '0'),
(1665, 122, '851', 'sound_set_2', 3, 0, 0, 1, '0'),
(1666, 122, '852', 'sound_set_3', 3, 0, 0, 1, '0'),
(1667, 122, '853', 'sound_set_4', 3, 0, 0, 1, '0'),
(1668, 122, '854', 'sound_set_5', 3, 0, 0, 1, '0'),
(1669, 122, '855', 'sound_set_6', 3, 0, 0, 1, '0'),
(1670, 122, '856', 'sound_set_7', 3, 0, 0, 1, '0'),
(1671, 122, '857', 'sound_set_8', 3, 0, 0, 1, '0'),
(1672, 122, '858', 'sound_set_9', 3, 0, 0, 1, '0'),
(1673, 122, '872', 'sound_set_27', 3, 0, 0, 1, '0'),
(1674, 122, '873', 'sound_set_26', 3, 0, 0, 1, '0'),
(1675, 122, '871', 'sound_set_28', 3, 0, 0, 1, '0'),
(1676, 122, '874', 'sound_set_25', 3, 0, 0, 1, '0'),
(1677, 122, '875', 'sound_set_24', 3, 0, 0, 1, '0'),
(1678, 122, '876', 'sound_set_23', 3, 0, 0, 1, '0'),
(1679, 122, '878', 'sound_set_22', 3, 0, 0, 1, '0'),
(1680, 122, '877', 'sound_set_22', 3, 0, 0, 1, '0'),
(1681, 122, '879', 'sound_set_20', 3, 0, 0, 1, '0'),
(1682, 122, '880', 'sound_set_19', 3, 0, 0, 1, '0'),
(1683, 122, '881', 'sound_set_18', 3, 0, 0, 1, '0'),
(1684, 122, '882', 'sound_set_17', 3, 0, 0, 1, '0'),
(1685, 122, '883', 'sound_set_16', 3, 0, 0, 1, '0'),
(1686, 122, '884', 'sound_set_15', 3, 0, 0, 1, '0'),
(1687, 122, '885', 'sound_set_14', 3, 0, 0, 1, '0'),
(1688, 122, '886', 'sound_set_13', 3, 0, 0, 1, '0'),
(1689, 122, '887', 'sound_set_12', 3, 0, 0, 1, '0'),
(1690, 122, '888', 'sound_set_11', 3, 0, 0, 1, '0'),
(1691, 122, '889', 'sound_set_10', 3, 0, 0, 1, '0'),
(1692, 122, '982', 'sound_set_36', 3, 0, 0, 1, '0'),
(1693, 122, '983', 'sound_set_35', 3, 0, 0, 1, '0'),
(1694, 122, '984', 'sound_set_34', 3, 0, 0, 1, '0'),
(1695, 122, '985', 'sound_set_33', 3, 0, 0, 1, '0'),
(1696, 122, '986', 'sound_set_32', 3, 0, 0, 1, '0'),
(1697, 122, '987', 'sound_set_31', 3, 0, 0, 1, '0'),
(1698, 122, '988', 'sound_set_30', 3, 0, 0, 1, '0'),
(1699, 122, '989', 'sound_set_29', 3, 0, 0, 1, '0'),
(1700, 122, '1002', 'sound_set_37', 3, 0, 0, 1, '0'),
(1701, 122, '1010', 'sound_set_44', 3, 0, 0, 1, '0'),
(1702, 122, '1011', 'sound_set_43', 3, 0, 0, 1, '0'),
(1703, 122, '1012', 'sound_set_42', 3, 0, 0, 1, '0'),
(1704, 122, '1013', 'sound_set_41', 3, 0, 0, 1, '0'),
(1705, 122, '1014', 'sound_set_40', 3, 0, 0, 1, '0'),
(1706, 122, '1015', 'sound_set_39', 3, 0, 0, 1, '0'),
(1707, 122, '1016', 'sound_set_38', 3, 0, 0, 1, '0'),
(1708, 122, '1027', 'sound_set_52', 3, 0, 0, 1, '0'),
(1709, 122, '1028', 'sound_set_51', 3, 0, 0, 1, '0'),
(1710, 122, '1029', 'sound_set_50', 3, 0, 0, 1, '0'),
(1711, 122, '1030', 'sound_set_49', 3, 0, 0, 1, '0'),
(1712, 122, '1031', 'sound_set_48', 3, 0, 0, 1, '0'),
(1713, 122, '1032', 'sound_set_47', 3, 0, 0, 1, '0'),
(1714, 122, '1033', 'sound_set_46', 3, 0, 0, 1, '0'),
(1715, 122, '1034', 'sound_set_45', 3, 0, 0, 1, '0'),
(1716, 122, '1041', 'sound_set_54', 3, 0, 0, 1, '0'),
(1717, 122, '1042', 'sound_set_53', 3, 0, 0, 1, '0'),
(1718, 122, '1056', 'sound_set_59', 3, 0, 0, 1, '0'),
(1719, 122, '1057', 'sound_set_58', 3, 0, 0, 1, '0'),
(1720, 122, '1058', 'sound_set_57', 3, 0, 0, 1, '0'),
(1721, 122, '1059', 'sound_set_56', 3, 0, 0, 1, '0'),
(1722, 122, '1060', 'sound_set_55', 3, 0, 0, 1, '0'),
(1723, 122, '1101', 'sound_set_61', 3, 0, 0, 1, '0'),
(1724, 122, '1102', 'sound_set_60', 3, 0, 0, 1, '0'),
(1725, 122, '1136', 'sound_set_64', 3, 0, 0, 1, '0'),
(1726, 122, '1137', 'sound_set_63', 3, 0, 0, 1, '0'),
(1727, 122, '1138', 'sound_set_62', 3, 0, 0, 1, '0'),
(1728, 122, '1173', 'sound_set_70', 3, 0, 0, 1, '0'),
(1729, 122, '1174', 'sound_set_69', 3, 0, 0, 1, '0'),
(1730, 122, '1175', 'sound_set_68', 3, 0, 0, 1, '0'),
(1731, 122, '1176', 'sound_set_67', 3, 0, 0, 1, '0'),
(1732, 122, '1177', 'sound_set_66', 3, 0, 0, 1, '0'),
(1733, 122, '1178', 'sound_set_65', 3, 0, 0, 1, '0'),
(1734, 122, '1382', 'sound_set_71', 3, 0, 0, 1, '0'),
(1735, 122, '1551', 'sound_set_72', 3, 0, 0, 1, '0'),
(1736, 95, '868', 'rclr_sofa', 10, 0, 0, 1, '0'),
(1737, 72, '867', 'rom_lamp', 3, 0, 0, 1, '0'),
(1738, 95, '869', 'rclr_garden', 10, 0, 0, 1, '0'),
(1739, 95, '870', 'rclr_chair', 10, 0, 0, 1, '0'),
(1740, 95, '991', 'rare_mnstr', 10, 0, 0, 1, '0'),
(1742, 105, '993', 'one_way_door*3', 10, 0, 0, 1, '0'),
(1743, 105, '994', 'one_way_door*4', 10, 0, 0, 1, '0'),
(1744, 105, '995', 'one_way_door*5', 10, 0, 0, 1, '0'),
(1745, 105, '996', 'one_way_door*6', 10, 0, 0, 1, '0'),
(1746, 105, '997', 'one_way_door*7', 10, 0, 0, 1, '0'),
(1747, 105, '998', 'one_way_door*8', 10, 0, 0, 1, '0'),
(1748, 105, '999', 'one_way_door*9', 10, 0, 0, 1, '0'),
(1750, 105, '992', 'one_way_door*2', 10, 0, 0, 1, '0'),
(1752, 121, '1008', 'jukebox*1', 5, 0, 0, 1, '0'),
(1753, 66, '1023', 'habboween_crypt', 6, 0, 0, 1, '0'),
(1754, 66, '1024', 'habboween_grass', 5, 0, 0, 1, '0'),
(1755, 39, '1044', 'plant_mazegate_snow', 3, 0, 0, 1, '0'),
(1756, 39, '1045', 'plant_maze_snow', 3, 0, 0, 1, '0'),
(1758, 123, '1061', 'noob_table*1', 0, 20, 0, 1, '0'),
(1759, 123, '1062', 'noob_table*2', 0, 20, 0, 1, '0'),
(1760, 123, '1063', 'noob_table*3', 0, 20, 0, 1, '0'),
(1762, 123, '1064', 'noob_table*4', 0, 20, 0, 1, '0'),
(1763, 123, '1065', 'noob_table*5', 0, 20, 0, 1, '0'),
(1764, 123, '1066', 'noob_table*6', 0, 20, 0, 1, '0'),
(1765, 123, '1067', 'noob_stool*1', 0, 20, 0, 1, '0'),
(1766, 123, '1068', 'noob_stool*2', 0, 20, 0, 1, '0'),
(1767, 123, '1069', 'noob_stool*3', 0, 20, 0, 1, '0'),
(1768, 123, '1070', 'noob_stool*4', 0, 20, 0, 1, '0'),
(1769, 123, '1071', 'noob_stool*5', 0, 20, 0, 1, '0'),
(1770, 123, '1072', 'noob_stool*6', 0, 20, 0, 1, '0'),
(1771, 123, '1073', 'noob_rug*1', 0, 20, 0, 1, '0'),
(1772, 123, '1074', 'noob_rug*2', 0, 20, 0, 1, '0'),
(1773, 123, '1075', 'noob_rug*3', 0, 20, 0, 1, '0'),
(1774, 123, '1076', 'noob_rug*4', 0, 20, 0, 1, '0'),
(1775, 123, '1077', 'noob_rug*5', 0, 20, 0, 1, '0'),
(1776, 123, '1078', 'noob_rug*6', 0, 20, 0, 1, '0'),
(1777, 123, '1079', 'noob_lamp*1', 0, 20, 0, 1, '0'),
(1778, 123, '1080', 'noob_lamp*2', 0, 20, 0, 1, '0'),
(1779, 123, '1081', 'noob_lamp*3', 0, 20, 0, 1, '0'),
(1780, 123, '1082', 'noob_lamp*4', 0, 20, 0, 1, '0'),
(1781, 123, '1083', 'noob_lamp*5', 0, 20, 0, 1, '0'),
(1782, 123, '1084', 'noob_lamp*6', 0, 20, 0, 1, '0'),
(1783, 123, '1085', 'noob_chair*1', 0, 20, 0, 1, '0'),
(1784, 123, '1086', 'noob_chair*2', 0, 20, 0, 1, '0'),
(1785, 123, '1087', 'noob_chair*3', 0, 20, 0, 1, '0'),
(1786, 123, '1088', 'noob_chair*4', 0, 20, 0, 1, '0'),
(1787, 123, '1089', 'noob_chair*5', 0, 20, 0, 1, '0'),
(1788, 123, '1090', 'noob_chair*6', 0, 20, 0, 1, '0'),
(1795, 123, '1185', 'noob_plant', 0, 20, 0, 1, '0'),
(1808, 75, '1107', 'sand_cstl_wall', 5, 0, 0, 1, '0'),
(1809, 75, '1108', 'sand_cstl_twr', 5, 0, 0, 1, '0'),
(1810, 75, '1109', 'sand_cstl_gate', 5, 0, 0, 1, '0'),
(1811, 126, '1156', 'tiki_waterfall', 5, 0, 0, 1, '0'),
(1812, 126, '1157', 'tiki_tray4', 3, 0, 0, 1, '0'),
(1813, 126, '1158', 'tiki_tray3', 3, 0, 0, 1, '0'),
(1815, 126, '1160', 'tiki_tray1', 3, 0, 0, 1, '0'),
(1816, 126, '1159', 'tiki_tray2', 3, 0, 0, 1, '0'),
(1817, 126, '1161', 'tiki_tray0', 3, 0, 0, 1, '0'),
(1818, 126, '1162', 'tiki_toucan', 4, 0, 0, 1, '0'),
(1819, 126, '1163', 'tiki_torch', 3, 0, 0, 1, '0'),
(1820, 126, '1164', 'tiki_statue', 5, 0, 0, 1, '0'),
(1821, 126, '1165', 'tiki_sand', 5, 0, 0, 1, '0'),
(1822, 126, '1165', 'tiki_sand', 45, 0, 0, 10, '0'),
(1823, 126, '1166', 'tiki_parasol', 4, 0, 0, 1, '0'),
(1824, 126, '1167', 'tiki_junglerug', 5, 0, 0, 1, '0'),
(1825, 126, '1167', 'tiki_junglerug', 45, 0, 0, 10, '0'),
(1826, 126, '1168', 'tiki_corner', 3, 0, 0, 1, '0'),
(1827, 126, '1169', 'tiki_bflies', 3, 0, 0, 1, '0'),
(1828, 126, '1170', 'tiki_bench', 3, 0, 0, 1, '0'),
(1829, 126, '1171', 'tiki_bardesk', 3, 0, 0, 1, '0'),
(1830, 126, '1690', 'tiki_wallplnt', 4, 0, 0, 1, '0'),
(1831, 126, '1691', 'tiki_surfboard', 3, 0, 0, 1, '0'),
(1832, 76, '1103', 'fortune', 5, 0, 0, 1, '0'),
(1833, 95, '1104', 'sw_table', 10, 0, 0, 1, '0'),
(1834, 95, '1105', 'sw_raven', 10, 0, 0, 1, '0'),
(1836, 95, '1106', 'sw_chest', 10, 0, 0, 1, '0'),
(1838, 95, '1113', 'rclr_lamp', 10, 0, 0, 1, '0'),
(1839, 95, '1117', 'md_rug', 10, 0, 0, 1, '0'),
(1840, 95, '1116', 'nouvelle_trax', 10, 0, 0, 1, '0'),
(1841, 95, '1139', 'jukebox_ptv*1', 10, 0, 0, 1, '0'),
(1842, 121, '1141', 'traxsilver', 5, 0, 0, 1, '0'),
(1843, 121, '1142', 'traxgold', 5, 0, 0, 1, '0'),
(1844, 121, '1143', 'traxbronze', 5, 0, 0, 1, '0'),
(1845, 95, '1144', 'bench_puffet', 10, 0, 0, 1, '0'),
(1846, 13, '1145', 'CFC_500_goldbar', 500, 0, 0, 1, '0'),
(1847, 13, '1146', 'CFC_200_moneybag', 200, 0, 0, 1, '0'),
(1848, 13, '1148', 'CFC_100_coin_gold', 100, 0, 0, 1, '0'),
(1850, 13, '1149', 'CFC_50_coin_silver', 50, 0, 0, 1, '0'),
(1851, 128, '19940', 'urban_bench_plain', 4, 0, 0, 1, '0'),
(1852, 95, '1328', 'ads_igorswitch', 10, 0, 0, 1, '0'),
(1853, 95, '1329', 'ads_711*1', 10, 0, 0, 1, '0'),
(1854, 95, '1330', 'ads_711*2', 10, 0, 0, 1, '0'),
(1855, 95, '1331', 'ads_711*3', 10, 0, 0, 1, '0'),
(1856, 95, '1332', 'ads_711*4', 10, 0, 0, 1, '0'),
(1857, 95, '1333', 'ads_igorraygun', 10, 0, 0, 1, '0'),
(1858, 95, '1412', 'ads_cldesk', 10, 0, 0, 1, '0'),
(1859, 29, '1414', 'ads_cltele', 10, 0, 0, 1, '0'),
(1860, 95, '1415', 'ads_clfloor', 10, 0, 0, 1, '0'),
(1862, 95, '1327', 'ads_igorbrain', 10, 0, 0, 1, '0'),
(1863, 29, '1417', 'ads_mall_tele', 10, 0, 0, 1, '0'),
(1864, 95, '1441', 'ads_idol_floor1', 10, 0, 0, 1, '0'),
(1865, 95, '1442', 'ads_igor_dsk', 10, 0, 0, 1, '0'),
(1866, 95, '1443', 'ads_idol_desk', 10, 0, 0, 1, '0'),
(1867, 95, '1444', 'ads_idol_ch', 10, 0, 0, 1, '0'),
(1868, 95, '1445', 'ads_igor_flask', 10, 0, 0, 1, '0'),
(1869, 95, '1446', 'ads_idol_drape', 10, 0, 0, 1, '0'),
(1870, 95, '1447', 'ads_idol_floor2', 10, 0, 0, 1, '0'),
(1871, 95, '1453', 'ads_idol_piano', 10, 0, 0, 1, '0'),
(1872, 95, '1455', 'ads_711shelf', 10, 0, 0, 1, '0'),
(1873, 95, '1464', 'ads_idol_jukebox*1', 10, 0, 0, 1, '0'),
(1874, 95, '1465', 'ads_idol_pchair', 10, 0, 0, 1, '0'),
(1875, 95, '1467', 'ads_idol_audChr', 10, 0, 0, 1, '0'),
(1876, 95, '1468', 'ads_idol_trax', 10, 0, 0, 1, '0'),
(1877, 29, '1469', 'ads_idol_tele', 10, 0, 0, 1, '0'),
(1878, 95, '1474', 'ads_idol_mic', 10, 0, 0, 1, '0'),
(1879, 95, '1475', 'ads_idol_hotspot', 10, 0, 0, 1, '0'),
(1880, 95, '1476', 'ads_idol_clRack', 10, 0, 0, 1, '0'),
(1881, 95, '1477', 'ads_idol_voting_ch', 10, 0, 0, 1, '0'),
(1882, 95, '1491', 'ads_frankb', 10, 0, 0, 1, '0'),
(1883, 95, '1508', 'ads_grefusa_cactus', 10, 0, 0, 1, '0'),
(1884, 95, '1509', 'ads_idol_tube', 10, 0, 0, 1, '0'),
(1885, 95, '1511', 'ads_idol_cork', 10, 0, 0, 1, '0'),
(1886, 95, '1512', 'ads_cl_jukeb', 10, 0, 0, 1, '0'),
(1887, 95, '1518', 'ads_idol_newsDsk', 10, 0, 0, 1, '0'),
(1888, 95, '1524', 'ads_idol_ichair', 10, 0, 0, 1, '0'),
(1889, 95, '1526', 'ads_reebok_block2', 10, 0, 0, 1, '0'),
(1890, 95, '1527', 'ads_malaco_rug', 10, 0, 0, 1, '0'),
(1891, 95, '1530', 'ads_malaco_gu', 10, 0, 0, 1, '0'),
(1892, 95, '1531', 'ads_clcake', 10, 0, 0, 1, '0'),
(1893, 95, '1532', 'ads_cl_sofa', 10, 0, 0, 1, '0'),
(1894, 95, '1533', 'ads_idol_tblCloth', 10, 0, 0, 1, '0'),
(1895, 95, '1534', 'ads_idol_carpet', 10, 0, 0, 1, '0'),
(1896, 95, '1535', 'ads_idol_lamp', 10, 0, 0, 1, '0'),
(1897, 95, '1541', 'ads_goldtabl', 10, 0, 0, 1, '0'),
(1898, 95, '1553', 'ads_calip_cola*1', 10, 0, 0, 1, '0'),
(1899, 95, '1554', 'ads_calip_cola*2', 10, 0, 0, 1, '0'),
(1900, 95, '1555', 'ads_calip_cola*3', 10, 0, 0, 1, '0'),
(1901, 95, '1630', 'ads_711*6', 10, 0, 0, 1, '0'),
(1902, 95, '1556', 'ads_calip_cola*4', 10, 0, 0, 1, '0'),
(1903, 95, '1562', 'ads_calip_chair', 10, 0, 0, 1, '0'),
(1904, 95, '1563', 'ads_idol_trophy', 10, 0, 0, 1, '0'),
(1905, 95, '1565', 'ads_calip_pool', 10, 0, 0, 1, '0'),
(1906, 29, '1572', 'ads_calip_tele', 10, 0, 0, 1, '0'),
(1908, 95, '1587', 'ads_calip_lava', 10, 0, 0, 1, '0'),
(1909, 95, '1591', 'ads_mall_coffeem', 10, 0, 0, 1, '0'),
(1910, 95, '1612', 'ads_mall_kiosk', 10, 0, 0, 1, '0'),
(1911, 95, '1619', 'ads_elisa_gnome', 10, 0, 0, 1, '0'),
(1912, 95, '1621', 'ads_oc_soda', 10, 0, 0, 1, '0'),
(1913, 95, '1629', 'ads_711*5', 10, 0, 0, 1, '0'),
(1914, 95, '1631', 'ads_711*7', 10, 0, 0, 1, '0'),
(1915, 29, '1652', 'ads_1800tele', 10, 0, 0, 1, '0'),
(1916, 95, '1707', 'ads_sunnyd', 10, 0, 0, 1, '0'),
(1917, 95, '1711', 'ads_dave_wall', 10, 0, 0, 1, '0'),
(1918, 95, '1714', 'ads_nokia_logo', 10, 0, 0, 1, '0'),
(1919, 95, '1715', 'ads_nokia_phone', 10, 0, 0, 1, '0'),
(1920, 95, '1720', 'ads_campguitar', 10, 0, 0, 1, '0'),
(1921, 95, '1728', 'ads_cmusic', 10, 0, 0, 1, '0'),
(1922, 95, '1741', 'ads_clwall1', 10, 0, 0, 1, '0'),
(1923, 95, '1742', 'ads_clwall2', 10, 0, 0, 1, '0'),
(1924, 95, '1743', 'ads_clwall3', 10, 0, 0, 1, '0'),
(1925, 95, '1744', 'ads_ob_wall', 10, 0, 0, 1, '0'),
(1926, 95, '1745', 'ads_mall_window', 10, 0, 0, 1, '0'),
(1928, 95, '1750', 'ads_igor_wall', 10, 0, 0, 1, '0'),
(1929, 95, '1751', 'ads_igorevilb', 10, 0, 0, 1, '0'),
(1930, 95, '1752', 'ads_idol_wall', 10, 0, 0, 1, '0'),
(1931, 95, '1753', 'ads_mall_winfur', 10, 0, 0, 1, '0'),
(1932, 95, '1754', 'ads_mall_winpet', 10, 0, 0, 1, '0'),
(1933, 95, '1758', 'ads_idol_tv', 10, 0, 0, 1, '0'),
(1934, 95, '1760', 'ads_idol_mirror', 10, 0, 0, 1, '0'),
(1935, 95, '1761', 'ads_mall_wincin', 10, 0, 0, 1, '0'),
(1936, 95, '1762', 'ads_mall_winmus', 10, 0, 0, 1, '0'),
(1937, 95, '1763', 'ads_mall_winbea', 10, 0, 0, 1, '0'),
(1938, 95, '1765', 'ads_mall_winchi', 10, 0, 0, 1, '0'),
(1939, 95, '1768', 'ads_mall_winice', 10, 0, 0, 1, '0'),
(1940, 95, '1769', 'ads_mall_winspo', 10, 0, 0, 1, '0'),
(1941, 95, '1770', 'ads_idol_logo', 10, 0, 0, 1, '0'),
(1942, 95, '1773', 'ads_lin_wh_c', 10, 0, 0, 1, '0'),
(1943, 95, '1774', 'ads_malaco_tv', 10, 0, 0, 1, '0'),
(1944, 95, '1775', 'ads_puffet_tv', 10, 0, 0, 1, '0'),
(1945, 95, '1776', 'ads_reebok_tv', 10, 0, 0, 1, '0'),
(1946, 95, '1784', 'ads_mirror', 10, 0, 0, 1, '0'),
(1947, 95, '1789', 'ads_wwe_poster', 10, 0, 0, 1, '0'),
(1948, 95, '1790', 'ads_mall_wintra', 10, 0, 0, 1, '0'),
(1949, 95, '1793', 'ads_veet', 10, 0, 0, 1, '0'),
(1950, 95, '1797', 'ads_mall_wingar', 10, 0, 0, 1, '0'),
(1951, 95, '1799', 'ads_mall_winclo', 10, 0, 0, 1, '0'),
(1954, 95, '20037', 'ads_calip_parasol', 10, 0, 0, 1, '0'),
(1956, 95, '1172', 'tampax_rug', 10, 0, 0, 1, '0'),
(1957, 95, '1692', 'tampax_wall', 10, 0, 0, 1, '0'),
(1958, 105, '20025', 'pillar*6', 10, 0, 0, 1, '0'),
(1959, 55, '20026', 'shelves_norja*4', 3, 0, 0, 1, '0'),
(1960, 30, '20027', 'bed_polyfon*2', 4, 0, 0, 1, '0'),
(1961, 55, '20028', 'divider_nor5*6', 3, 0, 0, 1, '0'),
(1962, 76, '20029', 'val_cauldron', 10, 0, 0, 1, '0'),
(1963, 32, '20030', 'pura_mdl5*1', 3, 0, 0, 1, '0'),
(1964, 105, '20031', 'one_way_door*1', 10, 0, 0, 1, '0'),
(1966, 60, '20032', 'exe_globe', 5, 0, 0, 1, '0'),
(1968, 45, '20035', 'fx_bubble', 0, 250, 0, 1, '0'),
(1969, 129, '20036', 'bump_tottero', 0, 50, 0, 1, '0'),
(1970, 129, '1502', 'bump_road', 0, 75, 0, 1, '0'),
(1971, 129, '1497', 'bump_lights', 0, 50, 0, 1, '0'),
(1972, 129, '1496', 'bump_tires', 0, 50, 0, 1, '0'),
(1973, 129, '1492', 'bump_signs', 0, 50, 0, 1, '0'),
(1974, 103, '20034', 'diner_bardesk_corner*5', 3, 0, 0, 1, '0'),
(1976, 128, '20006', 'urban_fence_corner', 3, 0, 0, 1, '0'),
(1977, 128, '20016', 'urban_lamp', 4, 0, 0, 1, '0'),
(1978, 128, '20018', 'urban_wall', 5, 0, 0, 1, '0'),
(1979, 128, '20011', 'urban_wpost', 3, 0, 0, 1, '0'),
(1980, 128, '20010', 'urban_sidewalk', 4, 0, 0, 1, '0'),
(1981, 128, '20008', 'urban_bench', 3, 0, 0, 1, '0'),
(1982, 128, '20007', 'urban_carsofa', 4, 0, 0, 1, '0'),
(1983, 128, '20014', 'urban_blocker', 2, 0, 0, 1, '0'),
(1984, 128, '20013', 'urban_bin', 3, 0, 0, 1, '0'),
(1985, 128, '20012', 'urban_fence', 3, 0, 0, 1, '0'),
(1986, 128, '20015', 'urban_bsktbll', 4, 0, 0, 1, '0'),
(1987, 125, '19877', 'avatar_effect9', 0, 100, 0, 1, '0'),
(1988, 125, '19878', 'avatar_effect6', 0, 100, 0, 1, '0'),
(1989, 125, '19879', 'avatar_effect16', 0, 100, 0, 1, '0'),
(1990, 125, '19880', 'avatar_effect2', 0, 100, 0, 1, '0'),
(1991, 125, '19881', 'avatar_effect14', 0, 100, 0, 1, '0'),
(1992, 125, '19882', 'avatar_effect15', 0, 100, 0, 1, '0'),
(1993, 125, '19883', 'avatar_effect3', 0, 100, 0, 1, '0'),
(1994, 125, '19884', 'avatar_effect17', 0, 100, 0, 1, '0'),
(1995, 125, '19885', 'avatar_effect18', 0, 100, 0, 1, '0'),
(1996, 125, '19886', 'avatar_effect1', 0, 100, 0, 1, '0'),
(1997, 125, '19887', 'avatar_effect4', 0, 100, 0, 1, '0'),
(1998, 125, '19888', 'avatar_effect5', 0, 100, 0, 1, '0'),
(1999, 125, '19889', 'avatar_effect7', 0, 100, 0, 1, '0'),
(2000, 125, '19890', 'avatar_effect8', 0, 100, 0, 1, '0'),
(2001, 125, '19891', 'avatar_effect10', 0, 100, 0, 1, '0'),
(2002, 125, '19892', 'avatar_effect12', 0, 100, 0, 1, '0'),
(2003, 125, '19893', 'avatar_effect13', 0, 100, 0, 1, '0'),
(2004, 129, '19957', 'avatar_effect22', 0, 100, 0, 1, '0'),
(2005, 129, '19958', 'avatar_effect19', 0, 100, 0, 1, '0'),
(2006, 129, '19959', 'avatar_effect20', 0, 100, 0, 1, '0'),
(2007, 129, '19960', 'avatar_effect21', 0, 100, 0, 1, '0'),
(2011, 88, '1725', 'hw_08_xray', 5, 0, 0, 1, '0'),
(2012, 95, '1718', 'netari_poster', 10, 0, 0, 1, '0'),
(2013, 95, '1713', 'easy_poster', 10, 0, 0, 1, '0'),
(2014, 95, '1684', 'md_logo_wall', 10, 0, 0, 1, '0'),
(2015, 95, '1682', 'sw_hole', 10, 0, 0, 1, '0'),
(2016, 95, '1681', 'sw_stone', 10, 0, 0, 1, '0'),
(2017, 95, '1680', 'sw_swords', 10, 0, 0, 1, '0'),
(2018, 41, '1675', 'guitar_v', 4, 0, 0, 1, '0'),
(2019, 41, '1674', 'guitar_skull', 4, 0, 0, 1, '0'),
(2020, 43, '1673', 'habbowheel', 5, 0, 0, 1, '0'),
(2021, 72, '1670', 'wallmirror', 3, 0, 0, 1, '0'),
(2022, 85, '1633', 'pix_asteroid', 0, 2000, 0, 1, '0'),
(2023, 71, '1626', 'rela_stone', 4, 0, 0, 1, '0'),
(2024, 94, '1622', 'marsrug', 10, 0, 0, 1, '0'),
(2025, 85, '1592', 'totem_planet', 0, 2000, 0, 1, '0'),
(2026, 95, '1590', 'voting_ch', 10, 0, 0, 1, '0'),
(2027, 73, '1586', 'transparent_floor', 5, 0, 0, 1, '0'),
(2028, 95, '1583', 'clrack', 10, 0, 0, 1, '0'),
(2029, 95, '1582', 'noticeboard', 10, 0, 0, 1, '0'),
(2030, 95, '1577', 'audChr', 10, 0, 0, 1, '0'),
(2031, 85, '1571', 'saturn', 0, 2000, 0, 1, '0'),
(2032, 95, '1566', 'laptopdesk', 10, 0, 0, 1, '0'),
(2033, 85, '1564', 'totem_head', 0, 2000, 0, 1, '0'),
(2034, 29, '1538', 'env_telep', 5, 0, 0, 1, '0'),
(2035, 95, '1529', 'tray_glasstower', 6, 0, 0, 1, '0'),
(2036, 95, '1528', 'tray_champagne', 5, 0, 0, 1, '0'),
(2037, 95, '1525', 'tray_cake', 4, 0, 0, 1, '0'),
(2038, 130, '1522', 'env_tree4', 5, 0, 0, 1, '0'),
(2039, 130, '1520', 'env_tree2', 3, 0, 0, 1, '0'),
(2040, 130, '1519', 'env_tree1', 3, 0, 0, 1, '0'),
(2043, 130, '1516', 'env_bushes_gate', 5, 0, 0, 1, '0'),
(2044, 130, '1515', 'env_bushes', 5, 0, 0, 1, '0'),
(2045, 130, '1514', 'env_tree3', 3, 0, 0, 1, '0'),
(2046, 130, '1513', 'env_grass', 5, 0, 0, 1, '0'),
(2047, 130, '1513', 'env_grass', 15, 0, 0, 4, '0'),
(2048, 85, '1507', 'totem_leg', 0, 2000, 0, 1, '0'),
(2050, 58, '1448', 'lostc_octopus', 6, 0, 0, 1, '0'),
(2052, 85, '1430', 'planet_of_love', 0, 2000, 0, 1, '0'),
(2054, 28, '1365', 'penguin_basic', 2, 0, 0, 1, '0'),
(2055, 28, '1367', 'penguin_musketeer', 2, 0, 0, 1, '0'),
(2056, 28, '1370', 'penguin_wrestler', 2, 0, 0, 1, '0'),
(2057, 28, '1372', 'penguin_robot', 2, 0, 0, 1, '0'),
(2058, 28, '1376', 'penguin_suit', 2, 0, 0, 1, '0'),
(2059, 28, '1379', 'penguin_icehockey', 2, 0, 0, 1, '0'),
(2060, 28, '1380', 'penguin_pilot', 2, 0, 0, 1, '0'),
(2061, 28, '1381', 'penguin_ballet', 2, 0, 0, 1, '0'),
(2062, 28, '1383', 'penguin_boxer', 2, 0, 0, 1, '0'),
(2063, 28, '1384', 'penguin_glow', 2, 0, 0, 1, '0'),
(2064, 28, '1385', 'penguin_swim', 2, 0, 0, 1, '0'),
(2065, 28, '1386', 'penguin_sumo', 2, 0, 0, 1, '0'),
(2066, 28, '1388', 'penguin_clown', 2, 0, 0, 1, '0'),
(2067, 28, '1389', 'penguin_infected', 2, 0, 0, 1, '0'),
(2068, 28, '1393', 'penguin_super', 2, 0, 0, 1, '0'),
(2069, 28, '1396', 'penguin_rock', 2, 0, 0, 1, '0'),
(2070, 28, '1399', 'penguin_ski', 2, 0, 0, 1, '0'),
(2071, 28, '1400', 'penguin_skater', 2, 0, 0, 1, '0'),
(2072, 28, '1402', 'penguin_elf', 2, 0, 0, 1, '0'),
(2073, 28, '1403', 'penguin_bunny', 2, 0, 0, 1, '0'),
(2074, 28, '1404', 'penguin_ninja', 2, 0, 0, 1, '0'),
(2075, 28, '1405', 'penguin_magician', 2, 0, 0, 1, '0'),
(2076, 28, '1406', 'penguin_hunchback', 2, 0, 0, 1, '0'),
(2077, 28, '1407', 'penguin_cowboy', 2, 0, 0, 1, '0'),
(2078, 28, '1408', 'penguin_punk', 2, 0, 0, 1, '0'),
(2079, 28, '1409', 'penguin_pirate', 2, 0, 0, 1, '0'),
(2080, 45, '1390', 'fx_flare', 0, 250, 0, 1, '0'),
(2081, 95, '1377', 'svnr_fi', 10, 0, 0, 1, '0'),
(2082, 45, '1371', 'fx_explosion', 0, 250, 0, 1, '0'),
(2084, 95, '1202', 'svnr_aus', 10, 0, 0, 1, '0'),
(2085, 95, '1201', 'svnr_de', 10, 0, 0, 1, '0'),
(2086, 95, '1200', 'svnr_it', 10, 0, 0, 1, '0'),
(2087, 95, '1199', 'svnr_nl', 10, 0, 0, 1, '0'),
(2088, 95, '1198', 'svnr_uk', 10, 0, 0, 1, '0'),
(2089, 36, '20024', 'table_plasto_square*9', 3, 0, 0, 1, '0'),
(2090, 76, '20021', 'heart', 5, 0, 0, 1, '0'),
(2091, 95, '1303', 'easy_carpet', 10, 0, 0, 1, '0'),
(2092, 95, '1304', 'easy_bowl2', 10, 0, 0, 1, '0'),
(2093, 95, '1319', 'netari_carpet', 10, 0, 0, 1, '0'),
(2094, 40, '1325', 'sob_carpet', 3, 0, 0, 1, '0'),
(2095, 95, '1326', 'igor_seat', 10, 0, 0, 1, '0'),
(2097, 95, '20041', 'year2010', 10, 0, 0, 1, '0'),
(2098, 95, '20042', 'party_lantern', 10, 0, 0, 1, '0'),
(2099, 95, '20043', 'party_lights', 10, 0, 0, 1, '0'),
(2101, 71, '20047', 'rela_stick', 3, 0, 0, 1, '0'),
(2102, 29, '20046', 'exe_elevator', 5, 0, 0, 1, '0'),
(2103, 56, '20045', 'arabian_tile', 5, 0, 0, 1, '0'),
(2105, 29, '20048', 'ads_mall_elevator', 10, 0, 0, 1, '0'),
(2106, 94, '247', 'rare_daffodil_rug', 800, 0, 0, 100, '0'),
(2107, 95, '20050', 'xm09_infotv', 10, 0, 0, 1, '0'),
(2108, 91, '20051', 'ads_twi_trophy', 10, 0, 0, 1, '0'),
(2110, 112, '20052', 'ads_twi_crest', 6, 0, 0, 1, '0'),
(2112, 112, '20053', 'ads_twi_paint', 3, 0, 0, 1, '0'),
(2113, 112, '20054', 'ads_twi_windw', 3, 0, 0, 1, '0'),
(2114, 112, '20055', 'ads_twi_bwall2', 3, 0, 0, 1, '0'),
(2115, 112, '20056', 'ads_twi_dreamc', 3, 0, 0, 1, '0'),
(2116, 112, '20057', 'ads_twi_bwall1', 3, 0, 0, 1, '0'),
(2118, 5, '20060', 'DEAL_HC_1', 100, 0, 0, 1, '0'),
(2119, 5, '20060', 'DEAL_HC_3', 500, 0, 0, 6, '0'),
(2120, 5, '20060', 'DEAL_HC_2', 250, 0, 0, 3, '0'),
(2121, 56, '20059', 'arabian_wall', 4, 0, 0, 1, '0'),
(2123, 73, '20064', 'sf_mbar', 5, 0, 0, 1, '0'),
(2124, 27, '20063', 'xm09_cocoa', 6, 0, 0, 1, '0'),
(2126, 142, '317', 'nest', 3, 0, 0, 1, '0'),
(2127, 142, '318', 'petfood1', 3, 0, 0, 1, '0'),
(2128, 142, '319', 'petfood2', 3, 0, 0, 1, '0'),
(2129, 142, '320', 'petfood3', 3, 0, 0, 1, '0'),
(2130, 142, '321', 'waterbowl*4', 3, 0, 0, 1, '0'),
(2131, 142, '322', 'waterbowl*5', 3, 0, 0, 1, '0'),
(2132, 142, '326', 'toy1', 3, 0, 0, 1, '0'),
(2133, 142, '323', 'waterbowl*2', 3, 0, 0, 1, '0'),
(2134, 142, '324', 'waterbowl*1', 3, 0, 0, 1, '0'),
(2135, 142, '325', 'waterbowl*3', 3, 0, 0, 1, '0'),
(2136, 142, '327', 'toy1*1', 3, 0, 0, 1, '0'),
(2137, 142, '328', 'toy1*2', 3, 0, 0, 1, '0'),
(2138, 142, '329', 'toy1*3', 3, 0, 0, 1, '0'),
(2139, 142, '330', 'toy1*4', 3, 0, 0, 1, '0'),
(2140, 142, '331', 'goodie1', 3, 0, 0, 1, '0'),
(2141, 142, '332', 'goodie1*1', 3, 0, 0, 1, '0'),
(2142, 142, '333', 'goodie1*2', 3, 0, 0, 1, '0'),
(2143, 142, '334', 'goodie2', 3, 0, 0, 1, '0'),
(2144, 142, '334', 'goodie2', 3, 0, 0, 1, '0'),
(2145, 134, '1478', 'ecotron_box', 3, 0, 0, 1, '0'),
(2146, 134, '1479', 'eco_light2', 3, 0, 0, 1, '0'),
(2147, 134, '1480', 'eco_chair3', 3, 0, 0, 1, '0'),
(2148, 134, '1481', 'eco_table3', 3, 0, 0, 1, '0'),
(2149, 134, '1482', 'eco_lamp2', 3, 0, 0, 1, '0'),
(2150, 134, '1483', 'eco_sofa3', 3, 0, 0, 1, '0'),
(2151, 134, '1484', 'eco_table2', 3, 0, 0, 1, '0'),
(2152, 134, '1485', 'eco_fruits2', 3, 0, 0, 1, '0'),
(2153, 134, '1486', 'eco_sofa1', 3, 0, 0, 1, '0'),
(2154, 134, '1487', 'eco_fruits3', 3, 0, 0, 1, '0'),
(2155, 134, '1488', 'eco_light1', 3, 0, 0, 1, '0'),
(2156, 134, '1489', 'eco_tree1', 3, 0, 0, 1, '0'),
(2157, 134, '1490', 'eco_cactus2', 3, 0, 0, 1, '0'),
(2158, 134, '1493', 'eco_cactus1', 3, 0, 0, 1, '0'),
(2159, 134, '1494', 'eco_chair2', 3, 0, 0, 1, '0'),
(2160, 134, '1495', 'eco_cactus3', 3, 0, 0, 1, '0'),
(2161, 134, '1498', 'eco_lamp3', 3, 0, 0, 1, '0'),
(2163, 142, '819', 'petfood4', 3, 0, 0, 1, '0'),
(2164, 30, '631', 'divider_poly3*8', 3, 0, 0, 1, '0'),
(2165, 134, '164', 'present_gen', 3, 0, 0, 1, '0'),
(2166, 134, '165', 'present_gen1', 3, 0, 0, 1, '0'),
(2167, 134, '166', 'present_gen2', 3, 0, 0, 1, '0'),
(2168, 134, '167', 'present_gen3', 3, 0, 0, 1, '0'),
(2169, 134, '168', 'present_gen4', 3, 0, 0, 1, '0'),
(2170, 134, '169', 'present_gen5', 3, 0, 0, 1, '0'),
(2171, 134, '170', 'present_gen6', 3, 0, 0, 1, '0'),
(2172, 134, '1450', 'lc_medusa2', 3, 0, 0, 1, '0'),
(2173, 134, '1007', 'song_disk', 3, 0, 0, 1, '0'),
(2174, 134, '1499', 'eco_table1', 3, 0, 0, 1, '0'),
(2175, 134, '1500', 'eco_chair1', 3, 0, 0, 1, '0'),
(2176, 134, '1501', 'eco_sofa2', 3, 0, 0, 1, '0'),
(2177, 134, '1503', 'eco_fruits1', 3, 0, 0, 1, '0'),
(2178, 134, '1504', 'eco_lamp1', 3, 0, 0, 1, '0'),
(2179, 134, '1505', 'eco_light3', 3, 0, 0, 1, '0'),
(2180, 134, '1506', 'eco_tree2', 3, 0, 0, 1, '0'),
(2181, 134, '1542', 'eco_mush1', 3, 0, 0, 1, '0'),
(2182, 134, '1547', 'eco_mush2', 3, 0, 0, 1, '0'),
(2183, 134, '1764', 'eco_curtains1', 3, 0, 0, 1, '0'),
(2184, 134, '1766', 'eco_curtains3', 3, 0, 0, 1, '0'),
(2185, 134, '1767', 'eco_curtains2', 3, 0, 0, 1, '0'),
(2190, 41, '20151', 'flag_singapore', 3, 0, 0, 1, '0'),
(2191, 41, '20153', 'flag_columbia', 3, 0, 0, 1, '0'),
(2193, 41, '20154', 'flag_chile', 3, 0, 0, 1, '0'),
(2194, 41, '20155', 'flag_ecuador', 3, 0, 0, 1, '0'),
(2195, 41, '20156', 'flag_dominicanrepublic', 3, 0, 0, 1, '0'),
(2196, 41, '20157', 'flag_newzealand', 3, 0, 0, 1, '0'),
(2197, 41, '20158', 'flag_malaysia', 3, 0, 0, 1, '0'),
(2198, 41, '20160', 'flag_venezl', 3, 0, 0, 1, '0'),
(2199, 41, '20161', 'flag_algeria', 3, 0, 0, 1, '0'),
(2200, 41, '20162', 'flag_tunisia', 3, 0, 0, 1, '0'),
(2201, 41, '20163', 'flag_panama', 3, 0, 0, 1, '0'),
(2202, 41, '20164', 'flag_mexico', 3, 0, 0, 1, '0'),
(2203, 41, '20165', 'flag_argentina', 3, 0, 0, 1, '0'),
(2204, 41, '20166', 'flag_philippines', 3, 0, 0, 1, '0'),
(2205, 41, '20167', 'flag_greece', 3, 0, 0, 1, '0'),
(2206, 41, '20168', 'flag_peru', 3, 0, 0, 1, '0'),
(2207, 41, '20169', 'flag_morocco', 3, 0, 0, 1, '0'),
(2208, 41, '20170', 'flag_turkey', 3, 0, 0, 1, '0'),
(2209, 136, '20117', 'bling_fridge', 5, 0, 0, 1, '0'),
(2210, 136, '20121', 'bling_chair_a', 3, 0, 0, 1, '0'),
(2211, 136, '20123', 'bling_pool', 3, 0, 0, 1, '0'),
(2212, 136, '20124', 'bling_toilet', 4, 0, 0, 1, '0'),
(2213, 136, '20126', 'bling_chair_c', 3, 0, 0, 1, '0'),
(2214, 136, '20127', 'bling_chair_b', 3, 0, 0, 1, '0'),
(2215, 136, '20128', 'bling_shwr', 5, 0, 0, 1, '0'),
(2216, 136, '20129', 'bling_bed', 3, 0, 0, 1, '0');
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`, `hc_state`) VALUES
(2217, 136, '20130', 'bling_sofa', 4, 0, 0, 1, '0'),
(2218, 136, '20144', 'bling_fridge_restricted', 3, 0, 0, 1, '0'),
(2219, 136, '20200', 'bling_sink', 3, 0, 0, 1, '0'),
(2220, 136, '20202', 'bling_cabinet', 3, 0, 0, 1, '0'),
(2223, 137, '20103', 'org_chairpnk', 3, 0, 0, 1, '0'),
(2224, 137, '20104', 'org_tblpnk', 3, 0, 0, 1, '0'),
(2225, 137, '20105', 'org_lampblk', 3, 0, 0, 1, '0'),
(2226, 137, '20106', 'org_lamppnk', 3, 0, 0, 1, '0'),
(2227, 137, '20107', 'org_table', 3, 0, 0, 1, '0'),
(2228, 137, '20111', 'org_chairblk', 3, 0, 0, 1, '0'),
(2229, 137, '20112', 'org_tblblk', 3, 0, 0, 1, '0'),
(2230, 137, '20113', 'org_chrblk', 3, 0, 0, 1, '0'),
(2231, 137, '20115', 'org_chrpnk', 3, 0, 0, 1, '0'),
(2232, 76, '20125', 'val09_floor', 3, 0, 0, 1, '0'),
(2233, 76, '20131', 'val09_floor2', 3, 0, 0, 1, '0'),
(2234, 76, '20198', 'val09_wdrobe_b', 5, 0, 0, 1, '0'),
(2235, 76, '20199', 'val09_wall2', 4, 0, 0, 1, '0'),
(2236, 76, '20201', 'val09_wall1', 4, 0, 0, 1, '0'),
(2237, 76, '20204', 'val09_wdrobe_g', 5, 0, 0, 1, '0'),
(2238, 76, '20134', 'val_hSeat*1', 3, 0, 0, 1, '0'),
(2239, 76, '20135', 'val_hSeat*2', 3, 0, 0, 1, '0'),
(2240, 76, '20136', 'val_hSeat*3', 3, 0, 0, 1, '0'),
(2241, 76, '20137', 'val_hSeat*4', 3, 0, 0, 1, '0'),
(2242, 76, '20138', 'val_hSeat*5', 3, 0, 0, 1, '0'),
(2243, 76, '20139', 'val_hSeat*6', 3, 0, 0, 1, '0'),
(2244, 76, '20140', 'val_hSeat*7', 3, 0, 0, 1, '0'),
(2245, 76, '20141', 'val_basket', 3, 0, 0, 1, '0'),
(2246, 76, '20190', 'val_table1', 4, 0, 0, 1, '0'),
(2248, 27, '20093', 'xm09_lrgBauble', 10, 0, 0, 1, '0'),
(2250, 93, '20109', 'xm09_trophy', 6, 0, 0, 1, '0'),
(2251, 27, '20171', 'xm09_bauble_12', 3, 0, 0, 1, '0'),
(2252, 27, '20172', 'xm09_bauble_16', 3, 0, 0, 1, '0'),
(2253, 27, '20173', 'xm09_bauble_17', 3, 0, 0, 1, '0'),
(2254, 27, '20174', 'xm09_bauble_15', 3, 0, 0, 1, '0'),
(2255, 27, '20175', 'xm09_bauble_10', 3, 0, 0, 1, '0'),
(2256, 27, '20176', 'xm09_bauble_9', 3, 0, 0, 1, '0'),
(2257, 27, '20177', 'xm09_bauble_18', 3, 0, 0, 1, '0'),
(2258, 27, '20178', 'xm09_bauble_13', 3, 0, 0, 1, '0'),
(2259, 27, '20179', 'xm09_bauble_2', 3, 0, 0, 1, '0'),
(2260, 27, '20180', 'xm09_bauble_1', 3, 0, 0, 1, '0'),
(2261, 27, '20181', 'xm09_bauble_22', 3, 0, 0, 1, '0'),
(2262, 27, '20182', 'xm09_bauble_3', 3, 0, 0, 1, '0'),
(2263, 27, '20183', 'xm09_bauble_21', 3, 0, 0, 1, '0'),
(2264, 27, '20184', 'xm09_bauble_8', 3, 0, 0, 1, '0'),
(2265, 27, '20185', 'xm09_bauble_4', 3, 0, 0, 1, '0'),
(2266, 27, '20186', 'xm09_bauble_5', 3, 0, 0, 1, '0'),
(2267, 27, '20187', 'xm09_bauble_11', 3, 0, 0, 1, '0'),
(2268, 27, '20188', 'xm09_bauble_20', 3, 0, 0, 1, '0'),
(2269, 27, '20191', 'xm09_bauble_14', 3, 0, 0, 1, '0'),
(2270, 27, '20192', 'xm09_bauble_7', 3, 0, 0, 1, '0'),
(2271, 27, '20193', 'xm09_bauble_6', 3, 0, 0, 1, '0'),
(2272, 27, '20194', 'xm09_bauble_19', 3, 0, 0, 1, '0'),
(2273, 76, '20132', 'teddy_basic', 4, 0, 0, 1, '0'),
(2274, 76, '20133', 'teddy_pendergrass', 5, 0, 0, 1, '0'),
(2275, 76, '20142', 'teddy_bear', 3, 0, 0, 1, '0'),
(2276, 76, '20143', 'teddy_pink', 4, 0, 0, 1, '0'),
(2277, 142, '20079', 'nest_plow_reg', 3, 0, 0, 1, '0'),
(2278, 142, '20080', 'nest_snug_yel', 4, 0, 0, 1, '0'),
(2279, 142, '20085', 'nest_snug_grn', 4, 0, 0, 1, '0'),
(2280, 142, '20086', 'nest_snug_red', 4, 0, 0, 1, '0'),
(2281, 142, '20087', 'nest_snug_grn', 4, 0, 0, 1, '0'),
(2282, 142, '20088', 'nest_plow_bro', 3, 0, 0, 1, '0'),
(2283, 142, '20089', 'nest_plow_red', 3, 0, 0, 1, '0'),
(2284, 142, '20090', 'nest_snug_blu', 4, 0, 0, 1, '0'),
(2285, 142, '20092', 'nest_plow_blu', 3, 0, 0, 1, '0'),
(2286, 142, '20094', 'nest_dirt', 2, 0, 0, 1, '0'),
(2287, 142, '20095', 'nest_snug_prp', 3, 0, 0, 1, '0'),
(2288, 142, '20096', 'nest_nest', 3, 0, 0, 1, '0'),
(2289, 142, '20097', 'nest_nails', 2, 0, 0, 1, '0'),
(2290, 142, '20098', 'nest_basket', 2, 0, 0, 1, '0'),
(2291, 142, '20099', 'nest_ice', 2, 0, 0, 1, '0'),
(2292, 142, '20100', 'nest_plow_skl', 3, 0, 0, 1, '0'),
(2293, 142, '20101', 'nest_snug_bla', 4, 0, 0, 1, '0'),
(2294, 95, '20071', 'ads_gsArcade_2', 10, 0, 0, 1, '0'),
(2295, 95, '20073', 'ads_idol_l_carpet', 10, 0, 0, 1, '0'),
(2296, 134, '20068', 'ads_cllava2', 10, 0, 0, 1, '0'),
(2297, 95, '20072', 'ads_gsArcade_1', 10, 0, 0, 1, '0'),
(2298, 95, '20074', 'ads_mtvtrophy_silver', 10, 0, 0, 1, '0'),
(2299, 105, '20075', 'ads_spang_sleep', 10, 0, 0, 1, '0'),
(2300, 95, '20076', 'ads_mtvtrophy_gold', 10, 0, 0, 1, '0'),
(2301, 95, '20102', 'ads_cl_moodi', 10, 0, 0, 1, '0'),
(2302, 95, '20116', 'ads_chups', 10, 0, 0, 1, '0'),
(2303, 95, '20119', 'ads_droetker_paula', 10, 0, 0, 1, '0'),
(2304, 95, '20145', 'ads_percyrock', 10, 0, 0, 1, '0'),
(2305, 95, '20147', 'ads_idol_l_logo', 10, 0, 0, 1, '0'),
(2306, 95, '20197', 'ads_percyw', 10, 0, 0, 1, '0'),
(2307, 95, '20150', 'ads_mtv_tv', 10, 0, 0, 1, '0'),
(2308, 95, '20196', 'ads_tv_jaapuisto', 10, 0, 0, 1, '0'),
(2310, 134, '20159', 'byesw_loadscreen', 10, 0, 0, 1, '0'),
(2312, 95, '20149', 'ads_mtv_bigtv', 10, 0, 0, 1, '0'),
(2313, 95, '20148', 'ads_idol_l_tv', 10, 0, 0, 1, '0'),
(2314, 27, '20066', 'tree2', 2, 0, 0, 1, '0'),
(2317, 30, '20067', 'divider_poly3*7', 6, 0, 0, 1, '0'),
(2318, 178, '20077', 'ktchn_hlthNut', 5, 0, 0, 1, '0'),
(2319, 142, '20078', 'petfood8', 10, 0, 0, 1, '0'),
(2320, 142, '20081', 'petfood9', 10, 0, 0, 1, '0'),
(2321, 142, '20082', 'petfood10', 10, 0, 0, 1, '0'),
(2322, 142, '20083', 'petfood7', 10, 0, 0, 1, '0'),
(2323, 142, '20084', 'petfood6', 10, 0, 0, 1, '0'),
(2324, 142, '20091', 'petfood5', 10, 0, 0, 1, '0'),
(2325, 142, '20118', 'petfood12', 10, 0, 0, 1, '0'),
(2326, 142, '20120', 'petfood11', 10, 0, 0, 1, '0'),
(2327, 142, '20122', 'petfood13', 10, 0, 0, 1, '0'),
(2329, 94, '20146', 'md_can', 10, 0, 0, 1, '0'),
(2330, 66, '20152', 'hween09_curt', 4, 0, 0, 1, '0'),
(2331, 57, '20108', 'china_tiger', 4, 0, 0, 1, '0'),
(2332, 57, '20110', 'china_plmTree', 3, 0, 0, 1, '0'),
(2333, 134, '20114', 'china_tigrSeat', 3, 0, 0, 1, '0'),
(2334, 57, '20195', 'china_pstr3', 3, 0, 0, 1, '0'),
(2335, 129, '1502', 'bump_road', 0, 1250, 0, 20, '0'),
(2336, 62, '20207', 'rare_ironmaiden name', 5, 0, 0, 1, '0'),
(2337, 95, '20208', 'rare_trex name', 10, 0, 0, 1, '0'),
(2338, 143, '20209', 'beanstalk', 6, 0, 0, 1, '0'),
(2339, 94, '20210', 'rare_vdoll name', 3, 0, 0, 1, '0'),
(2340, 94, '20211', 'Sofa Mamut', 20, 20, 0, 1, '0'),
(2341, 136, '20212', 'crystal_patch', 3, 0, 0, 1, '0'),
(2342, 95, '20213', 'ads_boost_surfb name', 10, 0, 0, 1, '0'),
(2343, 95, '20214', 'ads_tlc_wheel name', 10, 0, 0, 1, '0'),
(2346, 94, '227', 'Dragon Egg', 100, 100, 0, 1, '0'),
(2348, 134, '180', 'doorC', 10, 0, 0, 100, '0'),
(2349, 141, '20220', 'a0 pet5', 20, 0, 0, 1, '0'),
(2350, 143, '20221', 'garden_lupin4', 4, 0, 0, 1, '0'),
(2351, 143, '20222', 'garden_mursu3', 5, 0, 0, 1, '0'),
(2352, 143, '20223', 'garden_lupin5', 4, 0, 0, 1, '0'),
(2353, 143, '20224', 'garden_seed', 3, 0, 0, 1, '0'),
(2354, 143, '20225', 'garden_flytrap', 6, 0, 0, 1, '0'),
(2355, 143, '20226', 'garden_flo3', 2, 0, 0, 1, '0'),
(2357, 143, '20227', 'garden_volcano', 5, 0, 0, 1, '0'),
(2358, 143, '20228', 'garden_flolamp', 8, 0, 0, 1, '0'),
(2359, 143, '20229', 'garden_mursu2', 5, 0, 0, 1, '0'),
(2360, 143, '20230', 'garden_jyrki', 4, 0, 0, 1, '0'),
(2361, 143, '20231', 'garden_mursu4', 4, 0, 0, 1, '0'),
(2362, 143, '20232', 'garden_leaves', 3, 0, 0, 1, '0'),
(2363, 143, '20233', 'garden_lupin2', 4, 0, 0, 1, '0'),
(2364, 143, '20234', 'garden_lupin3', 4, 0, 0, 1, '0'),
(2365, 143, '20235', 'garden_mursu', 4, 0, 0, 1, '0'),
(2366, 143, '20238', 'garden_orchtree', 6, 0, 0, 1, '0'),
(2367, 143, '20237', 'garden_flo2', 2, 0, 0, 1, '0'),
(2368, 143, '20239', 'garden_lupin1', 4, 0, 0, 1, '0'),
(2369, 143, '20240', 'garden_staringbush', 5, 0, 0, 1, '0'),
(2370, 143, '20242', 'garden_flo1', 2, 0, 0, 1, '0'),
(2371, 143, '20243', 'garden_jungle', 5, 0, 0, 1, '0'),
(2372, 143, '20286', 'garden_wall', 4, 0, 0, 1, '0'),
(2374, 144, '20247', 'runway_display', 5, 0, 0, 1, '0'),
(2375, 144, '20248', 'runway_bigchr_5', 4, 0, 0, 1, '0'),
(2376, 144, '20249', 'runway_bigchr_4', 4, 0, 0, 1, '0'),
(2377, 144, '20253', 'runway_stool', 4, 0, 0, 1, '0'),
(2378, 144, '20254', 'runway_dvdr', 3, 0, 0, 1, '0'),
(2379, 144, '20255', 'runway_block_2', 5, 0, 0, 1, '0'),
(2380, 144, '20256', 'runway_bigchr_1', 5, 0, 0, 1, '0'),
(2381, 144, '20260', 'runway_block_1', 5, 0, 0, 1, '0'),
(2382, 144, '20261', 'runway_bench', 4, 0, 0, 1, '0'),
(2383, 144, '20262', 'runway_chair_2', 3, 0, 0, 1, '0'),
(2384, 144, '20265', 'runway_bigchr_3', 4, 0, 0, 1, '0'),
(2385, 144, '20268', 'runway_bigchr_2', 4, 0, 0, 1, '0'),
(2386, 144, '20270', 'runway_table_2', 4, 0, 0, 1, '0'),
(2387, 144, '20271', 'runway_table_1', 5, 0, 0, 1, '0'),
(2388, 144, '20272', 'runway_manqn_1', 4, 0, 0, 1, '0'),
(2389, 144, '20276', 'runway_head', 4, 0, 0, 1, '0'),
(2390, 144, '20277', 'runway_manqn_2', 4, 0, 0, 1, '0'),
(2391, 144, '20285', 'runway_chair_1', 3, 0, 0, 1, '0'),
(2392, 144, '20289', 'runway_shelf', 3, 0, 0, 1, '0'),
(2393, 144, '20292', 'runway_fabric', 3, 0, 0, 1, '0'),
(2394, 8, '20245', 'hc2_frplc', 5, 0, 0, 1, '0'),
(2395, 8, '20246', 'hc2_barchair', 3, 0, 0, 1, '0'),
(2396, 8, '20250', 'hc3_dc', 4, 0, 0, 1, '0'),
(2397, 8, '20252', 'hc2_sofatbl', 4, 0, 0, 1, '0'),
(2398, 8, '20257', 'hc2_biglamp', 3, 0, 0, 1, '0'),
(2399, 8, '20258', 'hc2_sofa', 4, 0, 0, 1, '0'),
(2400, 8, '20259', 'hc2_carpet', 5, 0, 0, 1, '0'),
(2401, 8, '20264', 'hc3_table', 3, 0, 0, 1, '0'),
(2402, 8, '20266', 'hc3_stool', 3, 0, 0, 1, '0'),
(2403, 8, '20267', 'hc3_sofa', 4, 0, 0, 1, '0'),
(2404, 8, '20269', 'hc2_armchair', 3, 0, 0, 1, '0'),
(2405, 8, '20273', 'hc2_dvn', 4, 0, 0, 1, '0'),
(2406, 8, '20274', 'hc3_light', 3, 0, 0, 1, '0'),
(2407, 8, '20275', 'hc3_shelf', 5, 0, 0, 1, '0'),
(2408, 8, '20278', 'hc2_divider', 3, 0, 0, 1, '0'),
(2409, 8, '20279', 'hc2_coffee', 5, 0, 0, 1, '0'),
(2410, 8, '20280', 'hc2_cart', 3, 0, 0, 1, '0'),
(2411, 8, '20281', 'hc3_bard', 10, 0, 0, 1, '0'),
(2412, 8, '20282', 'hc3_hugelamp', 5, 0, 0, 1, '0'),
(2413, 8, '20283', 'hc3_divider', 3, 0, 0, 1, '0'),
(2414, 8, '20284', 'hc2_vase', 4, 0, 0, 1, '0'),
(2415, 8, '20288', 'hc3_walldeco', 10, 0, 0, 1, '0'),
(2416, 134, '20295', 'camera', 10, 0, 0, 1, '0'),
(2417, 134, '20045', 'arabian_tile', 10, 0, 0, 100, '0'),
(2418, 95, '20241', 'ads_grefusa_yum', 10, 0, 0, 1, '0'),
(2419, 95, '20244', 'merger_chesT', 10, 0, 0, 1, '0'),
(2420, 95, '20263', 'ads_cheetos name', 10, 0, 0, 1, '0'),
(2421, 95, '20287', 'ads_tv_yle name', 10, 0, 0, 1, '0'),
(2422, 95, '20290', 'ads_nokia_x6', 10, 0, 0, 1, '0'),
(2423, 95, '20291', 'ads_target_wall', 10, 0, 0, 1, '0'),
(2424, 95, '20293', 'ads_latrobe_flag', 10, 0, 0, 1, '0'),
(2425, 27, '20296', 'holly', 4, 0, 0, 1, '0'),
(2426, 145, '20297', 'wed_arch', 12, 0, 0, 1, '0'),
(2427, 145, '20298', 'wed_plant', 15, 0, 0, 1, '0'),
(2428, 145, '20299', 'wed_icesculp', 15, 0, 0, 1, '0'),
(2429, 145, '20300', 'wed_carsofa', 15, 0, 0, 1, '0'),
(2430, 147, '20301', 'a0 pet3', 20, 0, 0, 1, '0'),
(2431, 148, '20303', 'a0 pet4', 20, 0, 0, 1, '0'),
(2432, 149, '20304', 'a0 pet1', 20, 0, 0, 1, '0'),
(2433, 150, '20305', 'a0 pet0', 20, 0, 0, 1, '0'),
(2434, 151, '20306', 'a0 pet2', 20, 0, 0, 1, '0'),
(2443, 185, '20313', 'Fuente Pez Sangrienta', 32, 0, 0, 1, '0'),
(2444, 185, '20314', 'Fuente Pez Oro', 32, 0, 0, 1, '0'),
(2445, 185, '20315', 'Fuente Pez Verde', 32, 0, 0, 1, '0'),
(2446, 185, '20316', 'Fuente Pez Roja', 32, 0, 0, 1, '0'),
(2447, 185, '20317', 'Fuente Pez Gris', 32, 0, 0, 1, '0'),
(2449, 125, '21001', 'avatar_effect26', 0, 100, 0, 1, '0'),
(2450, 125, '21002', 'avatar_effect25', 0, 100, 0, 1, '0'),
(2451, 125, '21003', 'avatar_effect24', 0, 100, 0, 1, '0'),
(2452, 125, '21004', 'avatar_effect23', 0, 100, 0, 1, '0'),
(2454, 152, '20324', 'fball_audbench', 1, 0, 0, 1, '0'),
(2455, 152, '20325', 'fball_ball', 1, 0, 0, 1, '0'),
(2456, 152, '20326', 'fball_ball2', 1, 0, 0, 1, '0'),
(2457, 152, '20328', 'fball_ball4', 1, 0, 0, 1, '0'),
(2458, 152, '20329', 'fball_ball5', 1, 0, 0, 1, '0'),
(2459, 152, '20330', 'fball_bench', 1, 0, 0, 1, '0'),
(2460, 152, '20331', 'fball_cote', 1, 0, 0, 1, '0'),
(2461, 152, '20332', 'fball_crnr', 1, 0, 0, 1, '0'),
(2462, 152, '20333', 'fball_fnc1', 1, 0, 0, 1, '0'),
(2463, 152, '20334', 'fball_fnc3', 1, 0, 0, 1, '0'),
(2464, 152, '20335', 'fball_goal_b', 1, 0, 0, 1, '0'),
(2465, 152, '20336', 'fball_goal_g', 1, 0, 0, 1, '0'),
(2466, 152, '20337', 'fball_goal_r', 1, 0, 0, 1, '0'),
(2467, 152, '20338', 'fball_goal_y', 1, 0, 0, 1, '0'),
(2468, 152, '20339', 'fball_light', 1, 0, 0, 1, '0'),
(2469, 152, '20340', 'fball_gate', 1, 0, 0, 1, '0'),
(2470, 152, '20341', 'fball_counter', 1, 0, 0, 1, '0'),
(2471, 152, '20342', 'fball_ptch0', 1, 0, 0, 1, '0'),
(2472, 152, '20343', 'fball_ptch1', 1, 0, 0, 1, '0'),
(2473, 152, '20344', 'fball_ptch2', 1, 0, 0, 1, '0'),
(2474, 152, '20345', 'fball_ptch3', 1, 0, 0, 1, '0'),
(2475, 152, '20346', 'fball_ptch4', 1, 0, 0, 1, '0'),
(2476, 152, '20347', 'fball_ptch5', 1, 0, 0, 1, '0'),
(2477, 152, '20348', 'fball_ptch6', 1, 0, 0, 1, '0'),
(2478, 152, '20349', 'fball_ptch7', 1, 0, 0, 1, '0'),
(2479, 152, '20350', 'fball_ptch8', 1, 0, 0, 1, '0'),
(2480, 152, '20351', 'fball_score_b', 1, 0, 0, 1, '0'),
(2481, 152, '20352', 'fball_score_g', 1, 0, 0, 1, '0'),
(2482, 152, '20353', 'fball_score_r', 1, 0, 0, 1, '0'),
(2483, 152, '20354', 'fball_score_y', 1, 0, 0, 1, '0'),
(2488, 157, '20392', 'ads_chocapic', 30, 0, 0, 1, '0'),
(2489, 157, '20393', 'ads_tv_chocapic_01', 30, 0, 0, 1, '0'),
(2490, 157, '20394', 'ads_super_pop', 30, 0, 0, 1, '0'),
(2491, 157, '20395', 'party_crate1_1', 30, 0, 0, 1, '0'),
(2492, 157, '20396', 'party_crate1_2', 30, 0, 0, 1, '0'),
(2493, 157, '20397', 'party_crate1_3', 30, 0, 0, 1, '0'),
(2494, 157, '20398', 'party_crate1_4', 30, 0, 0, 1, '0'),
(2495, 157, '20399', 'party_crate2_1', 30, 0, 0, 1, '0'),
(2496, 157, '20400', 'party_crate2_2', 30, 0, 0, 1, '0'),
(2497, 157, '20401', 'party_crate2_3', 30, 0, 0, 1, '0'),
(2498, 157, '20402', 'party_crate2_4', 30, 0, 0, 1, '0'),
(2499, 157, '20403', 'party_djset', 30, 0, 0, 1, '0'),
(2601, 125, '20415', 'avatar_effect28', 0, 108, 0, 1, '0'),
(2615, 163, '20425', 'ads_capri_chair', 3, 0, 0, 1, '0'),
(2616, 163, '20426', 'ads_capri_lava', 5, 0, 0, 1, '0'),
(2619, 163, '20427', 'ads_capri_tree', 3, 0, 0, 1, '0'),
(2620, 163, '20428', 'ads_capri_arcade', 5, 0, 0, 1, '0'),
(2906, 185, '21298', 'Fuente Pez Morada', 32, 1, 0, 1, '0'),
(3001, 15, '19896', 'wallpaper_single_101', 3, 0, 0, 1, '0'),
(3002, 15, '19896', 'wallpaper_single_102', 3, 0, 0, 1, '0'),
(3003, 15, '19896', 'wallpaper_single_103', 3, 0, 0, 1, '0'),
(3004, 15, '19896', 'wallpaper_single_104', 3, 0, 0, 1, '0'),
(3005, 15, '19896', 'wallpaper_single_105', 3, 0, 0, 1, '0'),
(3006, 15, '19896', 'wallpaper_single_106', 3, 0, 0, 1, '0'),
(3007, 15, '19896', 'wallpaper_single_107', 3, 0, 0, 1, '0'),
(3008, 15, '19896', 'wallpaper_single_108', 3, 0, 0, 1, '0'),
(3009, 15, '19896', 'wallpaper_single_109', 3, 0, 0, 1, '0'),
(3010, 15, '19896', 'wallpaper_single_110', 3, 0, 0, 1, '0'),
(3011, 15, '19896', 'wallpaper_single_111', 3, 0, 0, 1, '0'),
(3012, 15, '19896', 'wallpaper_single_112', 3, 0, 0, 1, '0'),
(3013, 15, '19896', 'wallpaper_single_113', 3, 0, 0, 1, '0'),
(3014, 15, '19896', 'wallpaper_single_114', 3, 0, 0, 1, '0'),
(3015, 15, '19896', 'wallpaper_single_115', 3, 0, 0, 1, '0'),
(3016, 15, '19896', 'wallpaper_single_201', 3, 0, 0, 1, '0'),
(3017, 15, '19896', 'wallpaper_single_202', 3, 0, 0, 1, '0'),
(3018, 15, '19896', 'wallpaper_single_203', 3, 0, 0, 1, '0'),
(3019, 15, '19896', 'wallpaper_single_204', 3, 0, 0, 1, '0'),
(3020, 15, '19896', 'wallpaper_single_204', 3, 0, 0, 1, '0'),
(3021, 15, '19896', 'wallpaper_single_205', 3, 0, 0, 1, '0'),
(3022, 15, '19896', 'wallpaper_single_206', 3, 0, 0, 1, '0'),
(3023, 15, '19896', 'wallpaper_single_207', 3, 0, 0, 1, '0'),
(3024, 15, '19896', 'wallpaper_single_208', 3, 0, 0, 1, '0'),
(3025, 15, '19896', 'wallpaper_single_209', 3, 0, 0, 1, '0'),
(3026, 15, '19896', 'wallpaper_single_210', 3, 0, 0, 1, '0'),
(3027, 15, '19896', 'wallpaper_single_211', 3, 0, 0, 1, '0'),
(3028, 15, '19896', 'wallpaper_single_212', 3, 0, 0, 1, '0'),
(3029, 15, '19896', 'wallpaper_single_213', 3, 0, 0, 1, '0'),
(3030, 15, '19896', 'wallpaper_single_214', 3, 0, 0, 1, '0'),
(3031, 15, '19896', 'wallpaper_single_215', 3, 0, 0, 1, '0'),
(3032, 15, '19896', 'wallpaper_single_216', 3, 0, 0, 1, '0'),
(3033, 15, '19896', 'wallpaper_single_217', 3, 0, 0, 1, '0'),
(3034, 15, '19896', 'wallpaper_single_218', 3, 0, 0, 1, '0'),
(3035, 15, '19896', 'wallpaper_single_301', 3, 0, 0, 1, '0'),
(3036, 15, '19896', 'wallpaper_single_302', 3, 0, 0, 1, '0'),
(3037, 15, '19896', 'wallpaper_single_303', 3, 0, 0, 1, '0'),
(3038, 15, '19896', 'wallpaper_single_304', 3, 0, 0, 1, '0'),
(3039, 15, '19896', 'wallpaper_single_305', 3, 0, 0, 1, '0'),
(3040, 15, '19896', 'wallpaper_single_306', 3, 0, 0, 1, '0'),
(3041, 15, '19896', 'wallpaper_single_307', 3, 0, 0, 1, '0'),
(3042, 15, '19896', 'wallpaper_single_401', 3, 0, 0, 1, '0'),
(3043, 15, '19896', 'wallpaper_single_402', 3, 0, 0, 1, '0'),
(3044, 15, '19896', 'wallpaper_single_403', 3, 0, 0, 1, '0'),
(3045, 15, '19896', 'wallpaper_single_404', 3, 0, 0, 1, '0'),
(3046, 15, '19896', 'wallpaper_single_405', 3, 0, 0, 1, '0'),
(3047, 15, '19896', 'wallpaper_single_406', 3, 0, 0, 1, '0'),
(3048, 15, '19896', 'wallpaper_single_407', 3, 0, 0, 1, '0'),
(3049, 15, '19896', 'wallpaper_single_408', 3, 0, 0, 1, '0'),
(3050, 15, '19896', 'wallpaper_single_501', 3, 0, 0, 1, '0'),
(3051, 15, '19896', 'wallpaper_single_502', 3, 0, 0, 1, '0'),
(3052, 15, '19896', 'wallpaper_single_503', 3, 0, 0, 1, '0'),
(3053, 15, '19896', 'wallpaper_single_504', 3, 0, 0, 1, '0'),
(3054, 15, '19896', 'wallpaper_single_505', 3, 0, 0, 1, '0'),
(3055, 15, '19896', 'wallpaper_single_506', 3, 0, 0, 1, '0'),
(3056, 15, '19896', 'wallpaper_single_507', 3, 0, 0, 1, '0'),
(3057, 15, '19896', 'wallpaper_single_508', 3, 0, 0, 1, '0'),
(3058, 15, '19896', 'wallpaper_single_601', 3, 0, 0, 1, '0'),
(3059, 15, '19896', 'wallpaper_single_602', 3, 0, 0, 1, '0'),
(3060, 15, '19896', 'wallpaper_single_603', 3, 0, 0, 1, '0'),
(3061, 15, '19896', 'wallpaper_single_604', 3, 0, 0, 1, '0'),
(3062, 15, '19896', 'wallpaper_single_605', 3, 0, 0, 1, '0'),
(3063, 15, '19896', 'wallpaper_single_606', 3, 0, 0, 1, '0'),
(3064, 15, '19896', 'wallpaper_single_607', 3, 0, 0, 1, '0'),
(3065, 15, '19896', 'wallpaper_single_608', 3, 0, 0, 1, '0'),
(3066, 15, '19896', 'wallpaper_single_609', 3, 0, 0, 1, '0'),
(3067, 15, '19896', 'wallpaper_single_610', 3, 0, 0, 1, '0'),
(3068, 15, '19896', 'wallpaper_single_701', 3, 0, 0, 1, '0'),
(3069, 15, '19896', 'wallpaper_single_702', 3, 0, 0, 1, '0'),
(3070, 15, '19896', 'wallpaper_single_703', 3, 0, 0, 1, '0'),
(3071, 15, '19896', 'wallpaper_single_704', 3, 0, 0, 1, '0'),
(3072, 15, '19896', 'wallpaper_single_705', 3, 0, 0, 1, '0'),
(3073, 15, '19896', 'wallpaper_single_706', 3, 0, 0, 1, '0'),
(3074, 15, '19896', 'wallpaper_single_707', 3, 0, 0, 1, '0'),
(3075, 15, '19896', 'wallpaper_single_708', 3, 0, 0, 1, '0'),
(3076, 15, '19896', 'wallpaper_single_709', 3, 0, 0, 1, '0'),
(3077, 15, '19896', 'wallpaper_single_710', 3, 0, 0, 1, '0'),
(3078, 15, '19896', 'wallpaper_single_801', 3, 0, 0, 1, '0'),
(3079, 15, '19896', 'wallpaper_single_802', 3, 0, 0, 1, '0'),
(3080, 15, '19896', 'wallpaper_single_803', 3, 0, 0, 1, '0'),
(3081, 15, '19896', 'wallpaper_single_804', 3, 0, 0, 1, '0'),
(3082, 15, '19896', 'wallpaper_single_805', 3, 0, 0, 1, '0'),
(3083, 15, '19896', 'wallpaper_single_806', 3, 0, 0, 1, '0'),
(3084, 15, '19896', 'wallpaper_single_807', 3, 0, 0, 1, '0'),
(3085, 15, '19896', 'wallpaper_single_808', 3, 0, 0, 1, '0'),
(3086, 15, '19896', 'wallpaper_single_809', 3, 0, 0, 1, '0'),
(3087, 15, '19896', 'wallpaper_single_810', 3, 0, 0, 1, '0'),
(3088, 15, '19896', 'wallpaper_single_901', 3, 0, 0, 1, '0'),
(3089, 15, '19896', 'wallpaper_single_902', 3, 0, 0, 1, '0'),
(3090, 15, '19896', 'wallpaper_single_903', 3, 0, 0, 1, '0'),
(3091, 15, '19896', 'wallpaper_single_904', 3, 0, 0, 1, '0'),
(3092, 15, '19896', 'wallpaper_single_905', 3, 0, 0, 1, '0'),
(3093, 15, '19896', 'wallpaper_single_906', 3, 0, 0, 1, '0'),
(3094, 15, '19896', 'wallpaper_single_907', 3, 0, 0, 1, '0'),
(3095, 15, '19896', 'wallpaper_single_908', 3, 0, 0, 1, '0'),
(3096, 15, '19896', 'wallpaper_single_1001', 3, 0, 0, 1, '0'),
(3097, 15, '19896', 'wallpaper_single_1002', 3, 0, 0, 1, '0'),
(3098, 15, '19896', 'wallpaper_single_1003', 3, 0, 0, 1, '0'),
(3099, 15, '19896', 'wallpaper_single_1004', 3, 0, 0, 1, '0'),
(3100, 15, '19896', 'wallpaper_single_1005', 3, 0, 0, 1, '0'),
(3101, 15, '19896', 'wallpaper_single_1006', 3, 0, 0, 1, '0'),
(3102, 15, '19896', 'wallpaper_single_1007', 3, 0, 0, 1, '0'),
(3103, 15, '19896', 'wallpaper_single_1101', 3, 0, 0, 1, '0'),
(3104, 15, '19896', 'wallpaper_single_1201', 3, 0, 0, 1, '0'),
(3105, 15, '19896', 'wallpaper_single_1301', 3, 0, 0, 1, '0'),
(3106, 15, '19896', 'wallpaper_single_1401', 3, 0, 0, 1, '0'),
(3107, 15, '19896', 'wallpaper_single_1501', 3, 0, 0, 1, '0'),
(3108, 15, '19896', 'wallpaper_single_1601', 3, 0, 0, 1, '0'),
(3109, 15, '19896', 'wallpaper_single_1701', 3, 0, 0, 1, '0'),
(3110, 15, '19896', 'wallpaper_single_1801', 3, 0, 0, 1, '0'),
(3111, 15, '19896', 'wallpaper_single_1901', 3, 0, 0, 1, '0'),
(3112, 15, '19896', 'wallpaper_single_1902', 3, 0, 0, 1, '0'),
(3113, 15, '19896', 'wallpaper_single_2001', 3, 0, 0, 1, '0'),
(3114, 15, '19896', 'wallpaper_single_2002', 3, 0, 0, 1, '0'),
(3115, 15, '19896', 'wallpaper_single_2003', 3, 0, 0, 1, '0'),
(3116, 15, '19896', 'wallpaper_single_2101', 4, 0, 0, 1, '0'),
(3117, 15, '19896', 'wallpaper_single_2102', 4, 0, 0, 1, '0'),
(3118, 15, '19896', 'wallpaper_single_2103', 4, 0, 0, 1, '0'),
(3119, 15, '19896', 'wallpaper_single_2201', 4, 0, 0, 1, '0'),
(3120, 15, '19896', 'wallpaper_single_2202', 4, 0, 0, 1, '0'),
(3121, 15, '19896', 'wallpaper_single_2203', 4, 0, 0, 1, '0'),
(3122, 15, '19896', 'wallpaper_single_2204', 4, 0, 0, 1, '0'),
(3123, 15, '19896', 'wallpaper_single_2205', 4, 0, 0, 1, '0'),
(3124, 15, '19896', 'wallpaper_single_2206', 4, 0, 0, 1, '0'),
(3125, 15, '19896', 'wallpaper_single_2207', 4, 0, 0, 1, '0'),
(3126, 15, '19896', 'wallpaper_single_2301', 4, 0, 0, 1, '0'),
(3127, 15, '19896', 'wallpaper_single_2302', 4, 0, 0, 1, '0'),
(3128, 15, '19896', 'wallpaper_single_2303', 4, 0, 0, 1, '0'),
(3129, 15, '19896', 'wallpaper_single_2304', 4, 0, 0, 1, '0'),
(3130, 15, '19896', 'wallpaper_single_2401', 4, 0, 0, 1, '0'),
(3131, 15, '19896', 'wallpaper_single_2402', 4, 0, 0, 1, '0'),
(3132, 15, '19896', 'wallpaper_single_2403', 4, 0, 0, 1, '0'),
(3133, 15, '19896', 'wallpaper_single_2501', 4, 0, 0, 1, '0'),
(3134, 15, '19896', 'wallpaper_single_2502', 4, 0, 0, 1, '0'),
(3135, 15, '19896', 'wallpaper_single_2503', 4, 0, 0, 1, '0'),
(3136, 15, '19896', 'wallpaper_single_2504', 4, 0, 0, 1, '0'),
(3137, 15, '19896', 'wallpaper_single_2601', 4, 0, 0, 1, '0'),
(3138, 15, '19896', 'wallpaper_single_2602', 4, 0, 0, 1, '0'),
(3139, 15, '19896', 'wallpaper_single_2603', 4, 0, 0, 1, '0'),
(3140, 15, '19896', 'wallpaper_single_2604', 4, 0, 0, 1, '0'),
(3141, 15, '19896', 'wallpaper_single_2701', 4, 0, 0, 1, '0'),
(3142, 15, '19896', 'wallpaper_single_2702', 4, 0, 0, 1, '0'),
(3143, 15, '19896', 'wallpaper_single_2703', 4, 0, 0, 1, '0'),
(3144, 15, '19896', 'wallpaper_single_2704', 4, 0, 0, 1, '0'),
(3145, 15, '19896', 'wallpaper_single_2801', 4, 0, 0, 1, '0'),
(3146, 15, '19896', 'wallpaper_single_2802', 4, 0, 0, 1, '0'),
(3147, 15, '19896', 'wallpaper_single_2803', 4, 0, 0, 1, '0'),
(3148, 15, '19896', 'wallpaper_single_2804', 4, 0, 0, 1, '0'),
(3149, 15, '19896', 'wallpaper_single_2901', 4, 0, 0, 1, '0'),
(3150, 15, '19896', 'wallpaper_single_2902', 4, 0, 0, 1, '0'),
(3151, 15, '19896', 'wallpaper_single_2903', 4, 0, 0, 1, '0'),
(3152, 15, '19896', 'wallpaper_single_2904', 4, 0, 0, 1, '0'),
(3153, 15, '19896', 'wallpaper_single_3001', 3, 0, 0, 1, '0'),
(3154, 15, '19896', 'wallpaper_single_3002', 3, 0, 0, 1, '0'),
(3155, 15, '19896', 'wallpaper_single_3003', 3, 0, 0, 1, '0'),
(3156, 15, '19896', 'wallpaper_single_3004', 3, 0, 0, 1, '0'),
(3157, 15, '19896', 'wallpaper_single_3101', 3, 0, 0, 1, '0'),
(3158, 15, '19896', 'wallpaper_single_3102', 3, 0, 0, 1, '0'),
(3159, 15, '19896', 'wallpaper_single_3103', 3, 0, 0, 1, '0'),
(3160, 15, '19896', 'wallpaper_single_3104', 3, 0, 0, 1, '0'),
(3161, 15, '19896', 'wallpaper_single_3105', 3, 0, 0, 1, '0'),
(3162, 15, '19896', 'wallpaper_single_3106', 3, 0, 0, 1, '0'),
(3163, 15, '19894', 'floor_single_101', 2, 0, 0, 1, '0'),
(3164, 15, '19894', 'floor_single_102', 2, 0, 0, 1, '0'),
(3165, 15, '19894', 'floor_single_102', 2, 0, 0, 1, '0'),
(3166, 15, '19894', 'floor_single_104', 2, 0, 0, 1, '0'),
(3167, 15, '19894', 'floor_single_105', 2, 0, 0, 1, '0'),
(3168, 15, '19894', 'floor_single_106', 2, 0, 0, 1, '0'),
(3169, 15, '19894', 'floor_single_107', 0, 100, 0, 1, '0'),
(3170, 15, '19894', 'floor_single_108', 2, 0, 0, 1, '0'),
(3171, 15, '19894', 'floor_single_109', 2, 0, 0, 1, '0'),
(3172, 15, '19894', 'floor_single_110', 0, 100, 0, 1, '0'),
(3173, 15, '19894', 'floor_single_111', 2, 0, 0, 1, '0'),
(3174, 15, '19894', 'floor_single_201', 2, 0, 0, 1, '0'),
(3175, 15, '19894', 'floor_single_202', 2, 0, 0, 1, '0'),
(3176, 15, '19894', 'floor_single_202', 2, 0, 0, 1, '0'),
(3177, 15, '19894', 'floor_single_204', 2, 0, 0, 1, '0'),
(3178, 15, '19894', 'floor_single_205', 2, 0, 0, 1, '0'),
(3179, 15, '19894', 'floor_single_206', 2, 0, 0, 1, '0'),
(3180, 15, '19894', 'floor_single_207', 2, 0, 0, 1, '0'),
(3181, 15, '19894', 'floor_single_208', 2, 0, 0, 1, '0'),
(3182, 15, '19894', 'floor_single_209', 2, 0, 0, 1, '0'),
(3183, 15, '19894', 'floor_single_210', 2, 0, 0, 1, '0'),
(3184, 15, '19894', 'floor_single_211', 2, 0, 0, 1, '0'),
(3185, 15, '19894', 'floor_single_201', 2, 0, 0, 1, '0'),
(3186, 15, '19894', 'floor_single_202', 2, 0, 0, 1, '0'),
(3187, 15, '19894', 'floor_single_202', 2, 0, 0, 1, '0'),
(3188, 15, '19894', 'floor_single_204', 2, 0, 0, 1, '0'),
(3189, 15, '19894', 'floor_single_205', 2, 0, 0, 1, '0'),
(3190, 15, '19894', 'floor_single_206', 2, 0, 0, 1, '0'),
(3191, 15, '19894', 'floor_single_207', 2, 0, 0, 1, '0'),
(3192, 15, '19894', 'floor_single_401', 2, 0, 0, 1, '0'),
(3193, 15, '19894', 'floor_single_402', 2, 0, 0, 1, '0'),
(3194, 15, '19894', 'floor_single_402', 2, 0, 0, 1, '0'),
(3195, 15, '19894', 'floor_single_404', 2, 0, 0, 1, '0'),
(3196, 15, '19894', 'floor_single_405', 2, 0, 0, 1, '0'),
(3197, 15, '19894', 'floor_single_406', 2, 0, 0, 1, '0'),
(3198, 15, '19894', 'floor_single_407', 2, 0, 0, 1, '0'),
(3199, 15, '19894', 'floor_single_408', 2, 0, 0, 1, '0'),
(3200, 15, '19894', 'floor_single_409', 2, 0, 0, 1, '0'),
(3201, 15, '19894', 'floor_single_410', 2, 0, 0, 1, '0'),
(3202, 15, '19894', 'floor_single_501', 2, 0, 0, 1, '0'),
(3203, 15, '19894', 'floor_single_502', 2, 0, 0, 1, '0'),
(3204, 15, '19894', 'floor_single_502', 2, 0, 0, 1, '0'),
(3205, 15, '19894', 'floor_single_504', 2, 0, 0, 1, '0'),
(3206, 15, '19894', 'floor_single_505', 2, 0, 0, 1, '0'),
(3207, 15, '19894', 'floor_single_506', 2, 0, 0, 1, '0'),
(3208, 15, '19894', 'floor_single_507', 2, 0, 0, 1, '0'),
(3209, 15, '19894', 'floor_single_601', 2, 0, 0, 1, '0'),
(3210, 15, '19894', 'floor_single_602', 2, 0, 0, 1, '0'),
(3211, 15, '19894', 'floor_single_602', 2, 0, 0, 1, '0'),
(3212, 15, '19894', 'floor_single_604', 2, 0, 0, 1, '0'),
(3213, 15, '19894', 'floor_single_605', 2, 0, 0, 1, '0'),
(3214, 15, '19894', 'floor_single_606', 2, 0, 0, 1, '0'),
(3215, 15, '19894', 'floor_single_607', 2, 0, 0, 1, '0'),
(3216, 15, '19894', 'floor_single_608', 2, 0, 0, 1, '0'),
(3217, 15, '19894', 'floor_single_609', 2, 0, 0, 1, '0'),
(3218, 15, '19894', 'floor_single_610', 2, 0, 0, 1, '0'),
(3219, 15, '19926', 'landscape_single_1.1', 3, 0, 0, 1, '0'),
(3220, 15, '19926', 'landscape_single_2.1', 3, 0, 0, 1, '0'),
(3221, 15, '19926', 'landscape_single_3.1', 3, 0, 0, 1, '0'),
(3222, 15, '19926', 'landscape_single_4.1', 3, 0, 0, 1, '0'),
(3223, 15, '19926', 'landscape_single_5.1', 3, 0, 0, 1, '0'),
(3224, 15, '19926', 'landscape_single_6.1', 3, 0, 0, 1, '0'),
(3225, 15, '19926', 'landscape_single_7.1', 3, 0, 0, 1, '0'),
(3226, 15, '19926', 'landscape_single_1.2', 3, 0, 0, 1, '0'),
(3227, 15, '19926', 'landscape_single_1.3', 3, 0, 0, 1, '0'),
(3228, 15, '19926', 'landscape_single_2.3', 3, 0, 0, 1, '0'),
(3229, 15, '19926', 'landscape_single_3.3', 3, 0, 0, 1, '0'),
(3230, 15, '19926', 'landscape_single_4.3', 3, 0, 0, 1, '0'),
(3231, 15, '19926', 'landscape_single_5.3', 3, 0, 0, 1, '0'),
(3232, 15, '19926', 'landscape_single_6.3', 3, 0, 0, 1, '0'),
(3233, 15, '19926', 'landscape_single_7.3', 3, 0, 0, 1, '0'),
(3234, 15, '19926', 'landscape_single_1.4', 3, 0, 0, 1, '0'),
(3235, 15, '19926', 'landscape_single_2.4', 3, 0, 0, 1, '0'),
(3236, 15, '19926', 'landscape_single_3.4', 3, 0, 0, 1, '0'),
(3237, 15, '19926', 'landscape_single_4.4', 3, 0, 0, 1, '0'),
(3238, 15, '19926', 'landscape_single_5.4', 3, 0, 0, 1, '0'),
(3239, 15, '19926', 'landscape_single_6.4', 3, 0, 0, 1, '0'),
(3240, 15, '19926', 'landscape_single_7.4', 3, 0, 0, 1, '0'),
(3241, 15, '19926', 'landscape_single_1.5', 3, 0, 0, 1, '0'),
(3242, 15, '19926', 'landscape_single_2.5', 3, 0, 0, 1, '0'),
(3243, 15, '19926', 'landscape_single_3.5', 3, 0, 0, 1, '0'),
(3244, 15, '19926', 'landscape_single_4.5', 3, 0, 0, 1, '0'),
(3245, 15, '19926', 'landscape_single_5.5', 3, 0, 0, 1, '0'),
(3246, 15, '19926', 'landscape_single_6.5', 3, 0, 0, 1, '0'),
(3247, 15, '19926', 'landscape_single_7.5', 3, 0, 0, 1, '0'),
(3248, 15, '19926', 'landscape_single_1.6', 3, 0, 0, 1, '0'),
(3249, 15, '19926', 'landscape_single_2.6', 3, 0, 0, 1, '0'),
(3250, 15, '19926', 'landscape_single_3.6', 3, 0, 0, 1, '0'),
(3251, 15, '19926', 'landscape_single_4.6', 3, 0, 0, 1, '0'),
(3252, 15, '19926', 'landscape_single_5.6', 3, 0, 0, 1, '0'),
(3253, 15, '19926', 'landscape_single_6.6', 3, 0, 0, 1, '0'),
(3254, 15, '19926', 'landscape_single_7.6', 3, 0, 0, 1, '0'),
(3255, 15, '19926', 'landscape_single_1.7', 3, 0, 0, 1, '0'),
(3256, 15, '19926', 'landscape_single_2.7', 3, 0, 0, 1, '0'),
(3257, 15, '19926', 'landscape_single_3.7', 3, 0, 0, 1, '0'),
(3258, 15, '19926', 'landscape_single_4.7', 3, 0, 0, 1, '0'),
(3259, 15, '19926', 'landscape_single_5.7', 3, 0, 0, 1, '0'),
(3260, 15, '19926', 'landscape_single_6.7', 3, 0, 0, 1, '0'),
(3261, 15, '19926', 'landscape_single_7.7', 3, 0, 0, 1, '0'),
(3262, 15, '19926', 'landscape_single_1.8', 3, 0, 0, 1, '0'),
(3263, 15, '19926', 'landscape_single_1.9', 3, 0, 0, 1, '0'),
(3264, 15, '19926', 'landscape_single_1.10', 3, 0, 0, 1, '0'),
(3265, 15, '19926', 'landscape_single_1.11', 3, 0, 0, 1, '0'),
(3266, 15, '19926', 'landscape_single_7.12', 3, 0, 0, 1, '0'),
(5354, 168, '83545', 'a0 pet7', 20, 0, 0, 1, '0'),
(5683, 20, '2785096', 'bb_patch1', 5, 0, 0, 100, '0'),
(6000, 169, '20600', 'a0 pet8', 20, 0, 0, 1, '0'),
(6001, 182, '20601', 'a0 pet11', 20, 0, 0, 1, '0'),
(6002, 171, '20602', 'a0 pet10', 20, 0, 0, 1, '0'),
(6003, 506, '20602', 'a0 pet10', 20, 0, 0, 1, '0'),
(7457, 167, '84586', 'a0 pet6', 20, 0, 0, 1, '0'),
(10278, 496, '10278', 'hosptl_bbag name', 10, 0, 0, 1, '0'),
(10279, 496, '10279', 'hosptl_bed', 10, 0, 0, 1, '0'),
(10280, 496, '10280', 'hosptl_cab1', 5, 0, 0, 1, '0'),
(10281, 496, '10281', 'hosptl_cab2', 3, 0, 0, 1, '0'),
(10282, 496, '10282', 'hosptl_curtain', 3, 0, 0, 1, '0'),
(10283, 496, '10283', 'hosptl_defibs', 5, 0, 0, 1, '0'),
(10284, 496, '10284', 'hosptl_light', 15, 0, 0, 1, '0'),
(10285, 496, '10285', 'hosptl_seat', 5, 0, 0, 1, '0'),
(10286, 496, '10286', 'hosptl_skele', 1, 0, 0, 1, '0'),
(10287, 496, '10287', 'hosptl_xray', 10, 0, 0, 1, '0'),
(10289, 497, '10289', 'easel_0', 25, 0, 0, 1, '0'),
(10290, 497, '10290', 'easel_1', 25, 0, 0, 1, '0'),
(10291, 497, '10291', 'easel_2', 25, 0, 0, 1, '0'),
(10292, 497, '10292', 'easel_3', 25, 0, 0, 1, '0'),
(10293, 497, '10293', 'easel_4', 25, 0, 0, 1, '0'),
(10294, 497, '10294', 'easel_2', 25, 0, 0, 1, '0'),
(10350, 502, '10350', 'african_bones', 3, 0, 0, 1, '0'),
(10351, 502, '10351', 'african_fence', 5, 0, 0, 1, '0'),
(10352, 502, '10352', 'african_patch', 10, 0, 0, 1, '0'),
(10353, 502, '10353', 'african_stage', 5, 0, 0, 1, '0'),
(10354, 502, '10354', 'african_tree1', 10, 0, 0, 1, '0'),
(10355, 502, '10355', 'african_tree2', 10, 0, 0, 1, '0'),
(13000, 303, '29281', 'wf_act_move_rotate', 3, 0, 0, 1, '0'),
(13001, 303, '29281', 'wf_act_move_rotate', 3, 0, 0, 1, '0'),
(13002, 305, '29282', 'wf_wire2', 3, 0, 0, 1, '0'),
(13003, 304, '29283', 'wf_cnd_time_more_than', 3, 0, 0, 1, '0'),
(13004, 305, '29284', 'wf_colortile', 3, 0, 0, 1, '0'),
(13005, 305, '29285', 'wf_floor_switch2', 3, 0, 0, 1, '0'),
(13006, 302, '29286', 'wf_trg_state_changed', 3, 0, 0, 1, '0'),
(13007, 305, '29287', 'wf_xtra_random', 3, 0, 0, 1, '0'),
(13008, 305, '29288', 'wf_xtra_unseen', 3, 0, 0, 1, '0'),
(13009, 302, '29289', 'wf_trg_periodically', 3, 0, 0, 1, '0'),
(13010, 305, '29290', 'wf_pyramid', 3, 0, 0, 1, '0'),
(13011, 302, '29291', 'wf_trg_score_achieved', 3, 0, 0, 1, '0'),
(13012, 303, '29292', 'wf_act_teleport_to', 3, 0, 0, 1, '0'),
(13013, 302, '29293', 'wf_trg_says_something', 3, 0, 0, 1, '0'),
(13014, 305, '29294', 'wf_colorwheel', 3, 0, 0, 1, '0'),
(13015, 305, '29295', 'wf_wire4', 3, 0, 0, 1, '0'),
(13016, 302, '29296', 'wf_trg_walks_off_furni', 3, 0, 0, 1, '0'),
(13017, 302, '29297', 'wf_trg_at_given_time', 3, 0, 0, 1, '0'),
(13018, 302, '29298', 'wf_trg_game_ends', 3, 0, 0, 1, '0'),
(13019, 303, '29299', 'wf_act_show_message', 3, 0, 0, 1, '0'),
(13020, 304, '29300', 'wf_cnd_time_less_than', 3, 0, 0, 1, '0'),
(13021, 302, '29301', 'wf_trg_enter_room', 3, 0, 0, 1, '0'),
(13022, 303, '29303', 'wf_act_toggle_state', 3, 0, 0, 1, '0'),
(13023, 305, '29304', 'wf_firegate', 3, 0, 0, 1, '0'),
(13024, 305, '29305', 'wf_ringplate', 3, 0, 0, 1, '0'),
(13025, 305, '29306', 'wf_pressureplate', 3, 0, 0, 1, '0'),
(13026, 305, '29307', 'wf_glowball', 3, 0, 0, 1, '0'),
(13027, 303, '29309', 'wf_act_reset_timers', 3, 0, 0, 1, '0'),
(13028, 304, '29310', 'wf_cnd_furnis_hv_avtrs', 3, 0, 0, 1, '0'),
(13029, 305, '29311', 'wf_arrowplate', 3, 0, 0, 1, '0'),
(13030, 304, '29312', 'wf_cnd_trggrer_on_frn', 3, 0, 0, 1, '0'),
(13031, 304, '29313', 'wf_cnd_match_snapshot', 3, 0, 0, 1, '0'),
(13032, 305, '29314', 'wf_wire1', 3, 0, 0, 1, '0'),
(13033, 303, '29315', 'wf_act_give_score', 3, 0, 0, 1, '0'),
(13034, 305, '29316', 'wf_wire3', 3, 0, 0, 1, '0'),
(13035, 305, '29317', 'wf_glassdoor', 3, 0, 0, 1, '0'),
(13036, 303, '29318', 'wf_act_match_to_sshot', 3, 0, 0, 1, '0'),
(13037, 305, '29319', 'wf_floor_switch1', 3, 0, 0, 1, '0'),
(13038, 302, '29320', 'wf_trg_game_starts', 3, 0, 0, 1, '0'),
(13039, 302, '29321', 'wf_trg_walks_on_furni', 3, 0, 0, 1, '0'),
(30150, 105, '30150', 'ads_sunnyvend', 25, 0, 0, 1, '0'),
(30151, 105, '30151', 'ads_leaf_teleport', 16, 0, 0, 1, '0'),
(30250, 803, '30251', 'limo_w_front', 10, 0, 0, 1, '0'),
(30251, 803, '30252', 'limo_w_mid', 10, 0, 0, 1, '0'),
(30252, 803, '30253', 'limo_w_mid2', 10, 0, 0, 1, '0'),
(30253, 803, '30250', 'limo_w_back', 10, 0, 0, 1, '0'),
(40000, 900, '40000', 'limo_b_front', 10, 0, 0, 1, '0'),
(40001, 900, '40001', 'limo_b_mid', 4, 0, 0, 1, '0'),
(40002, 900, '40002', 'limo_b_mid2', 4, 0, 0, 1, '0'),
(40003, 900, '40003', 'limo_b_mid3', 6, 0, 0, 1, '0'),
(40004, 900, '40004', 'limo_b_back', 10, 0, 0, 1, '0'),
(40005, 900, '40005', 'cine_star', 5, 0, 0, 1, '0'),
(40006, 900, '40006', 'prizetrophy_cine', 30, 0, 0, 1, '0'),
(40007, 900, '40007', 'cine_vipsing', 8, 0, 0, 1, '0'),
(40008, 900, '40008', 'cine_screen', 25, 0, 0, 1, '0'),
(40009, 900, '40009', 'cine_curtain', 20, 0, 0, 1, '0'),
(40010, 900, '40010', 'theatre_seat_g', 10, 0, 0, 1, '0'),
(40011, 900, '40011', 'theatre_seat_b', 10, 0, 0, 1, '0'),
(40012, 900, '40012', 'wf_box', 4, 0, 0, 1, '0'),
(40013, 900, '40013', 'cine_tile', 2, 0, 0, 1, '0'),
(40014, 900, '40014', 'cine_projector', 15, 0, 0, 1, '0'),
(40015, 900, '40015', 'cine_ticket_booth', 30, 0, 0, 1, '0'),
(40016, 900, '40016', 'cine_bench', 8, 0, 0, 1, '0'),
(40017, 900, '40017', 'cine_bench_g', 8, 0, 0, 1, '0'),
(40018, 900, '40018', 'cine_bench_b', 8, 0, 0, 1, '0'),
(40019, 900, '40019', 'cine_popcorn', 13, 0, 0, 1, '0'),
(40020, 900, '40020', 'cine_roof', 6, 0, 0, 1, '0'),
(40021, 900, '40021', 'cine_light1', 4, 0, 0, 1, '0'),
(40022, 900, '40022', 'cine_light2', 4, 0, 0, 1, '0'),
(41082, 75, '25355', 'bw_lgchair', 8, 0, 0, 1, '0'),
(41083, 75, '25359', 'bw_fin', 15, 0, 0, 1, '0'),
(41084, 75, '25360', 'bw_ccnuts', 3, 0, 0, 1, '0'),
(41085, 75, '25361', 'bw_shower', 6, 0, 0, 1, '0'),
(41086, 75, '25362', 'bw_water_2', 10, 0, 0, 1, '0'),
(41087, 75, '25363', 'bw_croc', 7, 0, 0, 1, '0'),
(41088, 75, '25364', 'bw_sboard', 6, 0, 0, 1, '0'),
(41089, 75, '25366', 'bw_table', 4, 0, 0, 1, '0'),
(41091, 75, '25368', 'bw_mttrss', 6, 0, 0, 1, '0'),
(41092, 75, '25369', 'bw_van', 25, 0, 0, 1, '0'),
(41094, 75, '25371', 'bw_fnc_crnr', 4, 0, 0, 1, '0'),
(41095, 75, '25372', 'bw_fnc', 3, 0, 0, 1, '0'),
(41097, 75, '25357', 'bw_sofa', 5, 0, 0, 1, '0'),
(41098, 75, '25354', 'bw_boat', 12, 0, 0, 1, '0'),
(41099, 75, '25365', 'bw_chair', 4, 0, 0, 1, '0'),
(57016, 159, '39916', 'prison_crnr', 4, 0, 0, 1, '0'),
(57017, 159, '39913', 'prison_dvdr1', 5, 0, 0, 1, '0'),
(57018, 159, '39912', 'prison_gate', 4, 0, 0, 1, '0'),
(57019, 159, '39911', 'prison_dvdr2', 5, 0, 0, 1, '0'),
(57020, 159, '39914', 'prison_stone', 1, 0, 0, 1, '0'),
(57021, 159, '39915', 'prison_tower', 10, 0, 0, 1, '0'),
(57022, 159, '39913', 'prison_dvdr1', 20, 0, 0, 10, '0'),
(57023, 159, '39911', 'prison_dvdr2', 20, 0, 0, 10, '0'),
(57024, 8, '39917', 'hc3_stereo', 3, 0, 0, 1, '0'),
(67546, 501, '67546', 'fireworks_06', 10, 0, 0, 1, '0'),
(68026, 94, '3568296', 'poster1', 50, 0, 0, 1, '0'),
(68027, 21, '3568297', 'poster2', 50, 0, 0, 1, '0'),
(68028, 21, '3568399', 'poster4', 25, 0, 0, 1, '0'),
(68029, 21, '3568300', 'poster5', 3, 0, 0, 1, '0'),
(68030, 21, '3568301', 'poster6', 3, 0, 0, 1, '0'),
(68031, 21, '3568302', 'poster7', 3, 0, 0, 1, '0'),
(68032, 21, '3568303', 'poster8', 3, 0, 0, 1, '0'),
(68033, 21, '3568304', 'poster9', 3, 0, 0, 1, '0'),
(68034, 21, '3568305', 'poster10', 3, 0, 0, 1, '0'),
(68035, 21, '3568306', 'poster11', 3, 0, 0, 1, '0'),
(68036, 21, '3568307', 'poster12', 3, 0, 0, 1, '0'),
(68037, 21, '3568308', 'poster13', 3, 0, 0, 1, '0'),
(68038, 21, '3568309', 'poster14', 3, 0, 0, 1, '0'),
(68039, 21, '3568310', 'poster15', 3, 0, 0, 1, '0'),
(68040, 21, '3568311', 'poster16', 3, 0, 0, 1, '0'),
(68041, 21, '3568312', 'poster17', 3, 0, 0, 1, '0'),
(68042, 21, '3568313', 'poster18', 3, 0, 0, 1, '0'),
(68043, 21, '3568314', 'poster19', 3, 0, 0, 1, '0'),
(68044, 21, '3568315', 'poster20', 3, 0, 0, 1, '0'),
(68045, 21, '3568316', 'poster21', 3, 0, 0, 1, '0'),
(68046, 21, '3568316', 'poster22', 3, 0, 0, 1, '0'),
(68047, 21, '3568318', 'poster23', 3, 0, 0, 1, '0'),
(68048, 21, '3568319', 'poster24', 3, 0, 0, 1, '0'),
(68049, 21, '3568320', 'poster25', 3, 0, 0, 1, '0'),
(68050, 21, '3568321', 'poster26', 3, 0, 0, 1, '0'),
(68051, 21, '3568322', 'poster27', 3, 0, 0, 1, '0'),
(68052, 21, '3568298', 'poster3', 25, 0, 0, 1, '0'),
(68053, 21, '3568324', 'poster29', 25, 0, 0, 1, '0'),
(68054, 21, '3568325', 'poster30', 3, 0, 0, 1, '0'),
(68055, 21, '3568326', 'poster31', 3, 0, 0, 1, '0'),
(68056, 21, '3568327', 'poster32', 3, 0, 0, 1, '0'),
(68057, 21, '3568328', 'poster33', 3, 0, 0, 1, '0'),
(68058, 21, '3568329', 'poster34', 3, 0, 0, 1, '0'),
(68059, 21, '3568330', 'poster35', 3, 0, 0, 1, '0'),
(68060, 21, '3568331', 'poster36', 3, 0, 0, 1, '0'),
(68061, 21, '3568332', 'poster37', 3, 0, 0, 1, '0'),
(68062, 21, '3568333', 'poster38', 3, 0, 0, 1, '0'),
(68063, 21, '3568334', 'poster39', 3, 0, 0, 1, '0'),
(68064, 21, '3568335', 'poster40', 3, 0, 0, 1, '0'),
(68065, 21, '3568336', 'poster41', 3, 0, 0, 1, '0'),
(68066, 21, '3568337', 'poster42', 3, 0, 0, 1, '0'),
(68067, 21, '3568338', 'poster43', 3, 0, 0, 1, '0'),
(68068, 21, '3568339', 'poster44', 3, 0, 0, 1, '0'),
(68069, 21, '3568340', 'poster45', 3, 0, 0, 1, '0'),
(68070, 21, '3568341', 'poster46', 3, 0, 0, 1, '0'),
(68071, 21, '3568342', 'poster47', 3, 0, 0, 1, '0'),
(68072, 21, '3568343', 'poster48', 3, 0, 0, 1, '0'),
(68073, 21, '3568344', 'poster49', 3, 0, 0, 1, '0'),
(68074, 21, '3568345', 'poster50', 3, 0, 0, 1, '0'),
(68075, 21, '3568346', 'poster51', 3, 0, 0, 1, '0'),
(68076, 21, '3568347', 'poster52', 3, 0, 0, 1, '0'),
(68077, 21, '3568348', 'poster53', 3, 0, 0, 1, '0'),
(68078, 105, '3568349', 'poster54', 3, 0, 0, 1, '0'),
(68079, 105, '3568350', 'poster55', 3, 0, 0, 1, '0'),
(68080, 105, '3568351', 'poster56', 3, 0, 0, 1, '0'),
(68081, 105, '3568352', 'poster57', 3, 0, 0, 1, '0'),
(68082, 105, '3568353', 'poster58', 3, 0, 0, 1, '0'),
(68083, 105, '3568354', 'poster2005', 3, 0, 0, 1, '0'),
(68084, 21, '3568323', 'poster28', 25, 0, 0, 1, '0'),
(76534, 501, '758335', 'fireworks_02', 20, 0, 0, 1, '0'),
(77024, 8, '59918', 'Vase Vip', 5, 0, 0, 1, '0'),
(77025, 75, '59939', 'bw_jaws', 5, 0, 0, 1, '0'),
(77027, 75, '3530', 'bw_water_1', 5, 0, 0, 1, '0'),
(77701, 777, '77701', 'bling11_block', 3, 0, 0, 1, '0'),
(77702, 777, '77702', 'bling11_dvd', 3, 0, 0, 1, '0'),
(77703, 777, '77703', 'bling11_dvn', 3, 0, 0, 1, '0'),
(77704, 777, '77704', 'bling11_floor', 3, 0, 0, 1, '0'),
(77705, 777, '77705', 'bling11_pillar', 3, 0, 0, 1, '0'),
(77706, 777, '77706', 'bling11_plant', 3, 0, 0, 1, '0'),
(77707, 777, '77707', 'bling11_rug1', 3, 0, 0, 1, '0'),
(77708, 777, '77708', 'bling11_rug2', 3, 0, 0, 1, '0'),
(77709, 777, '77709', 'bling11_seat1', 3, 0, 0, 1, '0'),
(77710, 777, '77710', 'bling11_seat2', 3, 0, 0, 1, '0'),
(77711, 777, '77711', 'bling11_slot', 3, 0, 0, 1, '0'),
(77712, 777, '77712', 'bling11_sofa', 3, 0, 0, 1, '0'),
(77713, 777, '77713', 'bling11_statue1', 3, 0, 0, 1, '0'),
(77714, 777, '77714', 'bling11_statue2', 3, 0, 0, 1, '0'),
(77715, 777, '77715', 'bling11_tele', 3, 0, 0, 1, '0'),
(77716, 777, '77716', 'bling11_towels', 3, 0, 0, 1, '0'),
(77717, 777, '77717', 'bling11_val11_floor', 3, 0, 0, 1, '0'),
(77801, 94, '77801', 'china_rabbit', 200, 200, 0, 1, '0'),
(81000, 175, '81000', 'waasa_rug1', 5, 0, 0, 1, '0'),
(81001, 175, '81001', 'waasa_rug3', 7, 0, 0, 1, '0'),
(81002, 175, '81002', 'waasa_rug2', 8, 0, 0, 1, '0'),
(81003, 175, '81003', 'waasa_rug4', 6, 0, 0, 1, '0'),
(81004, 175, '81004', 'waasa_rug5', 4, 0, 0, 1, '0'),
(81005, 175, '81005', 'waasa_aquarium', 9, 0, 0, 1, '0'),
(89907, 200, '89907', 'gothic_st_glass', 3, 0, 0, 1, '0'),
(89908, 200, '89908', 'gothic_candles', 3, 0, 0, 1, '0'),
(89909, 200, '89909', 'gothic_bed', 3, 0, 0, 1, '0'),
(89910, 200, '89910', 'gothic_desk', 3, 0, 0, 1, '0'),
(89911, 200, '89911', 'gothic_bowl', 3, 0, 0, 1, '0'),
(89912, 200, '89912', 'ads_grefu_trophy', 3, 0, 0, 1, '0'),
(89945, 174, '89945', 'cubie_rug_b', 3, 0, 0, 1, '0'),
(89946, 174, '89946', 'cubie_lamp_p', 3, 0, 0, 1, '0'),
(89947, 174, '89947', 'cubie_shelf_3_p', 3, 0, 0, 1, '0'),
(89948, 174, '89948', 'cubie_shelf_4_b', 3, 0, 0, 1, '0'),
(89949, 174, '89949', 'cubie_shelf_1_b', 3, 0, 0, 1, '0'),
(89950, 174, '89950', 'cubie_shelf_1_p', 3, 0, 0, 1, '0'),
(89951, 174, '89951', 'cubie_chair_p', 3, 0, 0, 1, '0'),
(89952, 174, '89952', 'cubie_shelf_4_p', 3, 0, 0, 1, '0'),
(89953, 174, '89953', 'cubie_bigtable_p', 3, 0, 0, 1, '0'),
(89954, 174, '89954', 'cubie_shelf_0_p', 3, 0, 0, 1, '0'),
(89955, 174, '89955', 'cubie_beanbag_b', 3, 0, 0, 1, '0'),
(89956, 174, '89956', 'cubie_chair_b', 3, 0, 0, 1, '0'),
(89957, 174, '89957', 'cubie_bed_b', 3, 0, 0, 1, '0'),
(89958, 174, '89958', 'cubie_bigtable_b', 3, 0, 0, 1, '0'),
(89959, 174, '89959', 'cubie_stool_b', 3, 0, 0, 1, '0'),
(89960, 174, '89960', 'cubie_beanbag_p', 3, 0, 0, 1, '0'),
(89961, 174, '89961', 'cubie_shelf_0_b', 3, 0, 0, 1, '0'),
(89962, 174, '89962', 'cubie_shelf_2_p', 3, 0, 0, 1, '0'),
(89963, 174, '89963', 'cubie_rug_p', 3, 0, 0, 1, '0'),
(89964, 174, '89964', 'cubie_sofaseat_b', 3, 0, 0, 1, '0'),
(89965, 174, '89965', 'cubie_table', 3, 0, 0, 1, '0'),
(89966, 174, '89966', 'cubie_sofaseat_p', 3, 0, 0, 1, '0'),
(89967, 174, '89967', 'cubie_bed_p', 3, 0, 0, 1, '0'),
(89968, 174, '89968', 'cubie_shelf_3_b', 3, 0, 0, 1, '0'),
(89969, 174, '89969', 'cubie_shelf_2_b', 3, 0, 0, 1, '0'),
(89970, 174, '89970', 'cubie_lamp_b', 3, 0, 0, 1, '0'),
(89971, 174, '89971', 'cubie_stool_p', 3, 0, 0, 1, '0'),
(89972, 174, '89972', 'cubie_wallshelf_b', 3, 0, 0, 1, '0'),
(89973, 174, '89973', 'cubie_decklight_p', 3, 0, 0, 1, '0'),
(89974, 174, '89974', 'cubie_wallshelf_p', 3, 0, 0, 1, '0'),
(89975, 174, '89975', 'cubie_decal_0', 3, 0, 0, 1, '0'),
(89976, 174, '89976', 'cubie_decal_3', 3, 0, 0, 1, '0'),
(89977, 174, '89977', 'cubie_decal_1_p', 3, 0, 0, 1, '0'),
(89978, 174, '89978', 'cubie_decklight_b', 3, 0, 0, 1, '0'),
(89979, 174, '89979', 'cubie_decal_1_b', 3, 0, 0, 1, '0'),
(89980, 174, '89980', 'cubie_decal_2_b', 3, 0, 0, 1, '0'),
(89981, 174, '89981', 'cubie_decal_3_p', 3, 0, 0, 1, '0'),
(89982, 174, '89982', 'cubie_decal_2_p', 3, 0, 0, 1, '0'),
(89983, 174, '89983', 'cubie_decal_3_b', 3, 0, 0, 1, '0'),
(89984, 175, '89984', 'newbie_present', 3, 0, 0, 1, '0'),
(89985, 175, '89985', 'tv_flat', 3, 0, 0, 1, '0'),
(89986, 175, '89986', 'waasa_table2', 3, 0, 0, 1, '0'),
(89987, 175, '89987', 'computer_flatscreen', 3, 0, 0, 1, '0'),
(89988, 175, '89988', 'waasa_chair', 3, 0, 0, 1, '0'),
(89989, 175, '89989', 'waasa_ship2', 3, 0, 0, 1, '0'),
(89990, 175, '89990', 'waasa_ship1', 3, 0, 0, 1, '0'),
(89991, 175, '89991', 'waasa_bunk_bed', 3, 0, 0, 1, '0'),
(89992, 175, '89992', 'computer_laptop', 3, 0, 0, 1, '0'),
(89993, 175, '89993', 'computer_old', 3, 0, 0, 1, '0'),
(89994, 175, '89994', 'waasa_table1', 3, 0, 0, 1, '0'),
(89995, 175, '89995', 'waasa_desk', 3, 0, 0, 1, '0'),
(89996, 175, '89996', 'waasa_wall_shelf2', 3, 0, 0, 1, '0'),
(89997, 175, '89997', 'waasa_wall_shelf1', 3, 0, 0, 1, '0'),
(89998, 175, '89998', 'waasa_chair_wood', 3, 0, 0, 1, '0'),
(90002, 59, '90002', 'easter11_basket', 3, 0, 0, 1, '0'),
(90003, 507, '90003', 'easter11_grasspatch', 5, 0, 0, 1, '0'),
(90004, 507, '90008', 'easter11_tag', 3, 0, 0, 1, '0'),
(90005, 507, '90003', 'easter11_grasspatch', 15, 0, 0, 6, '0'),
(90006, 507, '90003', 'easter11_grasspatch', 30, 0, 0, 12, '0'),
(90007, 507, '90003', 'easter11_grasspatch', 60, 0, 0, 24, '0'),
(90010, 105, '90010', 'ads_suun', 3, 0, 0, 1, '0'),
(90011, 59, '90011', 'easter11_tuip_g', 3, 0, 0, 1, '0'),
(90012, 59, '90012', 'easter11_tuip_y', 3, 0, 0, 1, '0'),
(90013, 59, '90013', 'easter11_mushroom4', 3, 0, 0, 1, '0'),
(90014, 59, '90014', 'easter11_mushroom1', 3, 0, 0, 1, '0'),
(90015, 508, '90015', 'kuurna_sofa', 3, 0, 0, 1, '0'),
(90016, 59, '90016', 'easter11_mushroom3', 3, 0, 0, 1, '0'),
(90017, 59, '90017', 'easter11_mushroom2', 3, 0, 0, 1, '0'),
(90018, 508, '90018', 'kuurna_lamp', 3, 0, 0, 1, '0'),
(90019, 508, '90019', 'kuurna_chair', 3, 0, 0, 1, '0'),
(90020, 508, '90020', 'kuurna_mat', 3, 0, 0, 1, '0'),
(90021, 508, '90021', 'kuurna_table1', 3, 0, 0, 1, '0'),
(90022, 508, '90022', 'kuurna_table', 3, 0, 0, 1, '0'),
(90023, 508, '90023', 'kuurna_chair1', 3, 0, 0, 1, '0'),
(90024, 59, '90024', 'easter11_tuip_p', 3, 0, 0, 1, '0'),
(90025, 59, '90025', 'easter11_wall', 3, 0, 0, 1, '0'),
(90026, 105, '90026', 'ads_suunvuorow', 3, 0, 0, 1, '0'),
(90027, 105, '90027', 'ads_volkswagen_poster', 10, 0, 0, 1, '0'),
(90028, 509, '90028', 'anna_divider*1', 3, 0, 0, 1, '0'),
(90029, 509, '90029', 'anna_divider*2', 3, 0, 0, 1, '0'),
(90030, 509, '90030', 'anna_divider*3', 3, 0, 0, 1, '0'),
(90031, 509, '90031', 'anna_divider*4', 3, 0, 0, 1, '0'),
(90032, 509, '90032', 'anna_divider*5', 3, 0, 0, 1, '0'),
(90033, 509, '90033', 'anna_div_gate*1', 3, 0, 0, 1, '0'),
(90034, 509, '90034', 'anna_div_gate*2', 3, 0, 0, 1, '0'),
(90035, 509, '90035', 'anna_div_gate*3', 3, 0, 0, 1, '0'),
(90036, 509, '90036', 'anna_div_gate*4', 3, 0, 0, 1, '0'),
(90037, 509, '90037', 'anna_div_gate*5', 3, 0, 0, 1, '0'),
(90038, 509, '90038', 'anna_chair*1', 3, 0, 0, 1, '0'),
(90039, 509, '90039', 'anna_chair*2', 3, 0, 0, 1, '0'),
(90040, 509, '90040', 'anna_chair*3', 3, 0, 0, 1, '0'),
(90041, 509, '90041', 'anna_chair*4', 3, 0, 0, 1, '0'),
(90042, 509, '90042', 'anna_chair*5', 3, 0, 0, 1, '0'),
(90043, 509, '90043', 'anna_stool*1', 3, 0, 0, 1, '0'),
(90044, 509, '90044', 'anna_stool*2', 3, 0, 0, 1, '0'),
(90045, 509, '90045', 'anna_stool*3', 3, 0, 0, 1, '0'),
(90046, 509, '90046', 'anna_stool*4', 3, 0, 0, 1, '0'),
(90047, 509, '90047', 'anna_stool*5', 3, 0, 0, 1, '0'),
(90048, 509, '90048', 'anna_table*1', 3, 0, 0, 1, '0'),
(90049, 509, '90049', 'anna_table*2', 3, 0, 0, 1, '0'),
(90050, 509, '90050', 'anna_table*3', 3, 0, 0, 1, '0'),
(90051, 509, '90051', 'anna_table*4', 3, 0, 0, 1, '0'),
(90052, 509, '90052', 'anna_table*5', 3, 0, 0, 1, '0'),
(90053, 509, '90053', 'anna_rug*1', 3, 0, 0, 1, '0'),
(90054, 509, '90054', 'anna_rug*2', 3, 0, 0, 1, '0'),
(90055, 509, '90055', 'anna_rug*3', 3, 0, 0, 1, '0'),
(90056, 509, '90056', 'anna_rug*4', 3, 0, 0, 1, '0'),
(90057, 509, '90057', 'anna_rug*5', 3, 0, 0, 1, '0'),
(90058, 509, '90058', 'anna_sofa*1', 3, 0, 0, 1, '0'),
(90059, 509, '90059', 'anna_sofa*2', 3, 0, 0, 1, '0'),
(90060, 509, '90060', 'anna_sofa*3', 3, 0, 0, 1, '0'),
(90061, 509, '90061', 'anna_sofa*4', 3, 0, 0, 1, '0'),
(90062, 509, '90062', 'anna_sofa*5', 3, 0, 0, 1, '0'),
(90063, 509, '90063', 'anna_pill*1', 3, 0, 0, 1, '0'),
(90064, 509, '90064', 'anna_pill*2', 3, 0, 0, 1, '0'),
(90065, 509, '90065', 'anna_pill*3', 3, 0, 0, 1, '0'),
(90066, 509, '90066', 'anna_pill*4', 3, 0, 0, 1, '0'),
(90067, 509, '90067', 'anna_pill*5', 3, 0, 0, 1, '0'),
(90068, 509, '90068', 'anna_lamp*1', 3, 0, 0, 1, '0'),
(90069, 509, '90069', 'anna_lamp*2', 3, 0, 0, 1, '0'),
(90070, 509, '90070', 'anna_lamp*3', 3, 0, 0, 1, '0'),
(90071, 509, '90071', 'anna_lamp*4', 3, 0, 0, 1, '0'),
(90072, 509, '90072', 'anna_lamp*5', 3, 0, 0, 1, '0'),
(90073, 509, '90073', 'anna_div_crnr*1', 3, 0, 0, 1, '0'),
(90074, 509, '90074', 'anna_div_crnr*2', 3, 0, 0, 1, '0'),
(90075, 509, '90075', 'anna_div_crnr*3', 3, 0, 0, 1, '0'),
(90076, 509, '90076', 'anna_div_crnr*4', 3, 0, 0, 1, '0'),
(90077, 509, '90077', 'anna_div_crnr*5', 3, 0, 0, 1, '0'),
(95678, 501, '98345', 'fireworks_01', 20, 0, 0, 1, '0'),
(97027, 95, '95371', 'Lava', 5, 0, 0, 1, '0'),
(97308, 75, '95383', 'bw_pool_a3', 5, 0, 0, 1, '0'),
(97309, 75, '95382', 'bw_pool_a2', 5, 0, 0, 1, '0'),
(97310, 75, '95381', 'bw_pool_b2', 5, 0, 0, 1, '0'),
(97311, 75, '95380', 'bw_mttrss_g', 5, 0, 0, 1, '0'),
(97312, 75, '95379', 'bw_boat_p', 5, 0, 0, 1, '0'),
(97313, 75, '95378', 'bw_sofa_p', 5, 0, 0, 1, '0'),
(97314, 75, '95377', 'bw_fnc_crnr_g', 5, 0, 0, 1, '0'),
(97315, 75, '95376', 'bw_fnc_crnr_p', 5, 0, 0, 1, '0'),
(97316, 75, '95375', 'ads_pepsi0', 5, 0, 0, 1, '0'),
(97317, 75, '95374', 'ads_grefusa_surfb', 5, 0, 0, 1, '0'),
(97318, 75, '95395', 'bw_fnc_g', 5, 0, 0, 1, '0'),
(97319, 75, '95394', 'bw_sofa_p', 5, 0, 0, 1, '0'),
(97320, 75, '95393', 'bw_sofa_g', 5, 0, 0, 1, '0'),
(97321, 75, '95392', 'bw_van_g', 5, 0, 0, 1, '0'),
(97322, 75, '95391', 'bw_van_p', 5, 0, 0, 1, '0'),
(97323, 75, '95390', 'bw_table_p', 5, 0, 0, 1, '0'),
(97324, 75, '95389', 'bw_table_g', 5, 0, 0, 1, '0'),
(97326, 75, '95387', 'bw_surfb_g', 5, 0, 0, 1, '0'),
(97327, 75, '95386', 'bw_fnc_crnr_p', 5, 0, 0, 1, '0'),
(97328, 75, '95385', 'bw_pool_b1', 5, 0, 0, 1, '0'),
(97329, 75, '95384', 'bw_pool_a1', 5, 0, 0, 1, '0'),
(97419, 178, '97419', 'ktchn10_block', 5, 0, 0, 1, '0'),
(97420, 178, '97420', 'ktchn10_cabnt', 5, 0, 0, 1, '0'),
(97421, 178, '97421', 'ktchn10_pot', 5, 0, 0, 1, '0'),
(97422, 178, '97422', 'ktchn10_sink', 5, 0, 0, 1, '0'),
(97423, 178, '97423', 'ktchn10_stove', 5, 0, 0, 1, '0'),
(97424, 178, '97424', 'ktchn10_tea', 5, 0, 0, 1, '0');
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`, `hc_state`) VALUES
(98765, 501, '64245', 'fireworks_05', 20, 0, 0, 1, '0'),
(99000, 500, '99000', 'qt_xm10_nest', 10, 0, 0, 1, '0'),
(99001, 500, '99001', 'qt_xm10_icedragon', 10, 0, 0, 1, '0'),
(99002, 500, '99002', 'qt_xm10_stone', 10, 0, 0, 1, '0'),
(99003, 500, '99003', 'qt_xm10_icetiger', 10, 0, 0, 1, '0'),
(99004, 500, '99004', 'qt_xm10_trex', 10, 0, 0, 1, '0'),
(99005, 500, '99005', 'qt_xm10_palm_tree', 10, 0, 0, 1, '0'),
(99006, 500, '99006', 'qt_xm10_bench', 10, 0, 0, 1, '0'),
(99007, 500, '99007', 'qt_xm10_icelupin', 10, 0, 0, 1, '0'),
(99008, 500, '99008', 'qt_xm10_xmduck', 10, 0, 0, 1, '0'),
(99009, 500, '99009', 'qt_xm10_iceduck', 10, 0, 0, 1, '0'),
(99010, 500, '99010', 'qt_xm10_bauble1', 10, 0, 0, 1, '0'),
(99011, 500, '99011', 'qt_xm10_bauble2', 10, 0, 0, 1, '0'),
(99012, 500, '99012', 'qt_xm10_bauble3', 10, 0, 0, 1, '0'),
(99013, 500, '99013', 'qt_xm10_iceplasto', 10, 0, 0, 1, '0'),
(99014, 500, '99014', 'qt_xm10_ice_fish', 10, 0, 0, 1, '0'),
(99015, 500, '99015', 'qt_xm10_gnome', 10, 0, 0, 1, '0'),
(99016, 500, '99016', 'qt_xm10_icesilotable', 10, 0, 0, 1, '0'),
(99017, 500, '99017', 'qt_xm10_iceteddy', 10, 0, 0, 1, '0'),
(99018, 500, '99018', 'qt_xm10_elephant', 10, 0, 0, 1, '0'),
(99019, 500, '99019', 'qt_xm10_iceclubsofa', 10, 0, 0, 1, '0'),
(99020, 504, '99020', 'es_skating_ice', 10, 0, 0, 1, '0'),
(99021, 500, '99021', 'es_sidewalk', 10, 0, 0, 1, '0'),
(99022, 500, '99022', 'es_wpost', 10, 0, 0, 1, '0'),
(99023, 504, '99023', 'es_tagging', 10, 0, 0, 1, '0'),
(99024, 500, '99024', 'es_santa', 10, 0, 0, 1, '0'),
(99025, 500, '99025', 'es_window', 10, 0, 0, 1, '0'),
(99026, 500, '99026', 'es_bench', 10, 0, 0, 1, '0'),
(99027, 500, '99027', 'es_fnc_1', 10, 0, 0, 1, '0'),
(99028, 500, '99028', 'es_fnc_2', 10, 0, 0, 1, '0'),
(99029, 500, '99029', 'es_fnc_crnr', 10, 0, 0, 1, '0'),
(99030, 500, '99030', 'es_epictree', 10, 0, 0, 1, '0'),
(99031, 500, '99031', 'es_icestar_g', 10, 0, 0, 1, '0'),
(99032, 500, '99032', 'es_icestar_r', 10, 0, 0, 1, '0'),
(99033, 500, '99033', 'es_icestar_y', 10, 0, 0, 1, '0'),
(99034, 500, '99034', 'es_icestar', 10, 0, 0, 1, '0'),
(99035, 504, '99035', 'es_puck', 10, 0, 0, 1, '0'),
(99036, 500, '99036', 'es_roaster', 10, 0, 0, 1, '0'),
(99037, 500, '99037', 'es_lmppst', 10, 0, 0, 1, '0'),
(99038, 500, '99038', 'es_statue', 10, 0, 0, 1, '0'),
(99039, 504, '99020', 'es_skating_ice', 220, 0, 0, 24, '0'),
(99904, 501, '99904', 'year2011_waver_b', 25, 0, 0, 1, '0'),
(99905, 501, '99905', 'year2011_waver_g', 25, 0, 0, 1, '0'),
(99906, 501, '99906', 'year2011_waver_r', 25, 0, 0, 1, '0'),
(99907, 501, '99907', 'year2011_waver_y', 25, 0, 0, 1, '0'),
(99908, 501, '99908', 'prizetrophy_2011_y', 25, 0, 0, 1, '0'),
(99909, 501, '99909', 'prizetrophy_2011_b', 25, 0, 0, 1, '0'),
(99910, 501, '99910', 'prizetrophy_2011_r', 25, 0, 0, 1, '0'),
(99911, 501, '99911', 'prizetrophy_2011_p', 25, 0, 0, 1, '0'),
(99912, 501, '99912', 'prizetrophy_2011_g', 25, 0, 0, 1, '0'),
(99913, 501, '99913', 'prizetrophy_2011_w', 25, 0, 0, 1, '0'),
(99914, 501, '99914', 'year2011', 25, 0, 0, 1, '0'),
(129528, 185, '96398', 'Nobox Rojo', 3, 0, 0, 1, '0'),
(129529, 185, '96399', 'Nobox Azul', 3, 0, 0, 1, '0'),
(129530, 185, '96400', 'Nobox Amarillo', 3, 0, 0, 1, '0'),
(129531, 185, '96401', 'Submarino', 5, 0, 0, 1, '0'),
(200000, 800, '200000', 'bling11_block', 6, 0, 0, 1, '0'),
(200001, 800, '200001', 'bling11_dvd', 6, 0, 0, 1, '0'),
(200002, 800, '200002', 'bling11_dvn', 6, 0, 0, 1, '0'),
(200003, 800, '200003', 'bling11_floor', 6, 0, 0, 1, '0'),
(200004, 800, '200004', 'bling11_pillar', 6, 0, 0, 1, '0'),
(200005, 800, '200005', 'bling11_plant', 6, 0, 0, 1, '0'),
(200006, 800, '200006', 'bling11_rug1', 6, 0, 0, 1, '0'),
(200007, 800, '200007', 'bling11_rug2', 6, 0, 0, 1, '0'),
(200008, 800, '200008', 'bling11_seat1', 6, 0, 0, 1, '0'),
(200009, 800, '200009', 'bling11_seat2', 6, 0, 0, 1, '0'),
(200010, 800, '200010', 'bling11_slot', 6, 0, 0, 1, '0'),
(200011, 800, '200011', 'bling11_sofa', 6, 0, 0, 1, '0'),
(200012, 800, '200012', 'bling11_statue1', 6, 0, 0, 1, '0'),
(200013, 800, '200013', 'bling11_statue2', 6, 0, 0, 1, '0'),
(200014, 800, '200014', 'bling11_tele', 6, 0, 0, 1, '0'),
(200015, 800, '200015', 'bling11_towels', 6, 0, 0, 1, '0'),
(200016, 800, '200016', 'bling11_wall1', 6, 0, 0, 1, '0'),
(200017, 800, '200017', 'bling11_wall2', 6, 0, 0, 1, '0'),
(200018, 800, '200018', 'bling11_wall3', 6, 0, 0, 1, '0'),
(200019, 800, '200019', 'bling11_wall4', 6, 0, 0, 1, '0'),
(200020, 800, '200020', 'bling11_big1', 6, 0, 0, 1, '0'),
(200021, 800, '200021', 'val11_floor', 6, 0, 0, 1, '0'),
(200022, 800, '200022', 'val11_rail', 6, 0, 0, 1, '0'),
(200023, 800, '200023', 'val11_playa', 6, 0, 0, 1, '0'),
(200024, 800, '200024', 'val11_chair', 6, 0, 0, 1, '0'),
(200025, 800, '200025', 'qt_val11_nest', 6, 0, 0, 1, '0'),
(200026, 800, '200026', 'qt_val11_jellychair', 6, 0, 0, 1, '0'),
(200027, 800, '200027', 'qt_val11_jellyheart', 6, 0, 0, 1, '0'),
(200028, 105, '200028', 'qt_val11_holoduck', 6, 0, 0, 1, '0'),
(200029, 105, '200029', 'qt_val11_holoheart', 6, 0, 0, 1, '0'),
(200030, 800, '200030', 'qt_val11_heartlights', 6, 0, 0, 1, '0'),
(200031, 800, '200031', 'qt_val11_duckformer', 6, 0, 0, 1, '0'),
(200032, 800, '200032', 'qt_val11_discoball', 6, 0, 0, 1, '0'),
(200033, 800, '200033', 'nest_terrarium', 6, 0, 0, 1, '0'),
(600000, 75, '25362', 'bw_water_2', 10, 0, 0, 50, '0'),
(600014, 120, '2785090', 'bb_knj1', 3, 0, 0, 1, '0'),
(600015, 120, '2785091', 'bb_gate_r', 1, 0, 0, 1, '0'),
(600016, 120, '2785092', 'bb_tddhnd', 3, 0, 0, 1, '0'),
(600017, 120, '2785093', 'bb_lightdiv', 4, 0, 0, 1, '0'),
(600018, 120, '2785094', 'bb_tddhead', 4, 0, 0, 1, '0'),
(600019, 120, '2785095', 'bb_pyramid', 3, 0, 0, 1, '0'),
(600020, 120, '2785096', 'bb_patch1', 100, 0, 0, 100, '0'),
(600021, 120, '2785097', 'bb_fnc3', 3, 0, 0, 1, '0'),
(600022, 120, '2785098', 'bb_gate_y', 2, 0, 0, 1, '0'),
(600023, 120, '2785099', 'bb_apparatus', 3, 0, 0, 1, '0'),
(600024, 120, '2785100', 'bb_caterbody', 2, 0, 0, 1, '0'),
(600026, 120, '2785102', 'bb_fnc1', 3, 0, 0, 1, '0'),
(600027, 120, '2785103', 'bb_puck', 3, 0, 0, 1, '0'),
(600028, 120, '2785104', 'bb_rnd_tele', 3, 0, 0, 1, '0'),
(600029, 120, '2785105', 'bb_gate_b', 3, 0, 0, 1, '0'),
(600031, 120, '2785107', 'bb_painimies1', 3, 0, 0, 1, '0'),
(600032, 120, '2785108', 'bb_painimies2', 5, 0, 0, 1, '0'),
(600033, 120, '2785109', 'bb_counter', 20, 0, 0, 1, '0'),
(600040, 170, '2785115', 'hween10_zombie', 10, 0, 0, 1, '0'),
(600041, 170, '2785116', 'hween10_fogwall', 10, 0, 0, 1, '0'),
(600042, 170, '2785117', 'hween10_bat', 10, 0, 0, 1, '0'),
(600043, 170, '2785118', 'hween10_card_1', 10, 0, 0, 1, '0'),
(600044, 170, '2785119', 'hween10_card_2', 10, 0, 0, 1, '0'),
(600045, 170, '2785120', 'hween10_card_3', 10, 0, 0, 1, '0'),
(600046, 170, '2785121', 'hween10_card_4', 10, 0, 0, 1, '0'),
(600047, 170, '2785122', 'hween10_card_5', 10, 0, 0, 1, '0'),
(600048, 170, '2785123', 'hween10_card_6', 10, 0, 0, 1, '0'),
(600049, 170, '2785124', 'hween10_chicken', 10, 0, 0, 1, '0'),
(600050, 170, '2785125', 'hween10_ffly', 10, 0, 0, 1, '0'),
(600051, 170, '2785126', 'hween10_fog', 10, 0, 0, 1, '0'),
(600052, 170, '2785127', 'hween10_jar', 10, 0, 0, 1, '0'),
(600053, 170, '2785128', 'hween10_logs', 10, 0, 0, 1, '0'),
(600054, 170, '2785129', 'hween10_pond', 10, 0, 0, 1, '0'),
(600055, 170, '2785130', 'hween10_portch', 10, 0, 0, 1, '0'),
(600056, 170, '2785131', 'hween10_skullpost', 10, 0, 0, 1, '0'),
(600057, 170, '2785132', 'hween10_swamp', 10, 0, 0, 1, '0'),
(600058, 170, '2785133', 'hween10_tarot', 10, 0, 0, 1, '0'),
(600059, 29, '2785134', 'hween10_tele', 10, 0, 0, 1, '0'),
(600060, 170, '2785135', 'hween10_throne', 10, 0, 0, 1, '0'),
(600061, 170, '2785136', 'hween10_tree', 10, 0, 0, 1, '0'),
(600062, 170, '2785137', 'hween10_voodoo1', 10, 0, 0, 1, '0'),
(600063, 170, '2785138', 'hween10_voodoo2', 10, 0, 0, 1, '0'),
(600064, 170, '2785139', 'hween10_voodoo3', 10, 0, 0, 1, '0'),
(600065, 170, '2785140', 'hween10_wallskull', 10, 0, 0, 1, '0'),
(604003, 120, '2785079', 'bb_robo', 3, 0, 0, 1, '0'),
(604004, 120, '2785080', 'bb_dragon', 8, 0, 0, 1, '0'),
(604005, 120, '2785081', 'bb_ducklight', 3, 0, 0, 1, '0'),
(604006, 120, '2785082', 'bb_caterhead', 3, 0, 0, 1, '0'),
(604007, 120, '2785083', 'bb_cargobox', 4, 0, 0, 1, '0'),
(604008, 120, '2785084', 'bb_gate_g', 3, 0, 0, 1, '0'),
(604009, 120, '2785085', 'bb_crchair3', 4, 0, 0, 1, '0'),
(604011, 120, '2785087', 'bb_crchair', 3, 0, 0, 1, '0'),
(604012, 120, '2785088', 'bb_crchair2', 3, 0, 0, 1, '0'),
(604013, 120, '2785096', 'bb_patch1', 2, 0, 0, 1, '0'),
(604014, 120, '2785106', 'bb_score_r', 3, 0, 0, 1, '0'),
(604015, 120, '2785078', 'bb_score_b', 3, 0, 0, 1, '0'),
(604016, 120, '2785086', 'bb_score_g', 3, 0, 0, 1, '0'),
(604017, 120, '2785089', 'bb_score_y', 3, 0, 0, 1, '0'),
(745670, 501, '678766', 'fireworks_04', 10, 0, 0, 1, '0'),
(766666, 501, '766666', 'fireworks_07', 10, 0, 0, 1, '0'),
(896556, 501, '765321', 'fireworks_03', 20, 0, 0, 1, '0'),
(3568276, 142, '3568276', 'nest_lion', 3, 0, 0, 1, '0'),
(3568277, 142, '3568277', 'nest_lion2', 3, 0, 0, 1, '0'),
(3568278, 142, '3568278', 'nest_rhino', 3, 0, 0, 1, '0'),
(3568279, 142, '3568279', 'petfood14', 3, 0, 0, 1, '0'),
(3568280, 142, '3568280', 'petfood15', 3, 0, 0, 1, '0'),
(3568281, 162, '3568281', 'ads_mtv_tv2', 3, 0, 0, 1, '0'),
(3568282, 162, '3568282', 'ads_mtv_bigtv2', 3, 0, 0, 1, '0'),
(3568424, 60, '3568405', 'exe_sensor', 3, 0, 0, 1, '0'),
(3568425, 60, '3568404', 'exe_seccam', 3, 0, 0, 1, '0'),
(3568426, 60, '3568403', 'exe_wrkdesk', 5, 0, 0, 1, '0'),
(3568427, 60, '3568402', 'exe_glassdvdr', 5, 0, 0, 1, '0'),
(3568428, 60, '3568401', 'exe_copier', 5, 0, 0, 1, '0'),
(2345678, 513, '2345678', 'picnic_blanket_yel', 3, 0, 0, 1, '0'),
(2345679, 513, '2345679', 'picnic_pillow_yel', 3, 0, 0, 1, '0'),
(2345610, 513, '2345610', 'picnic_food1', 3, 0, 0, 1, '0'),
(2345611, 513, '2345611', 'note_tag', 3, 0, 0, 1, '0'),
(2345612, 513, '2345612', 'picnic_wfall', 3, 0, 0, 1, '0'),
(2345613, 513, '2345613', 'picnic_blanket_blu', 3, 0, 0, 1, '0'),
(2345614, 513, '2345614', 'picnic_food3', 3, 0, 0, 1, '0'),
(2345615, 513, '2345615', 'picnic_blanket', 3, 0, 0, 1, '0'),
(2345616, 513, '2345616', 'picnic_pillow_blu', 3, 0, 0, 1, '0'),
(2345617, 513, '2345617', 'picnic_food2', 3, 0, 0, 1, '0'),
(2345618, 513, '2345618', 'picnic_tele', 3, 0, 0, 1, '0'),
(2345619, 513, '2345619', 'picnic_basket', 3, 0, 0, 1, '0'),
(2345620, 513, '2345620', 'picnic_pillow', 3, 0, 0, 1, '0'),
(2345621, 513, '2345621', 'picnic_chair', 3, 0, 0, 1, '0'),
(2345622, 513, '2345622', 'picnic_3brds', 3, 0, 0, 1, '0'),
(9465, 720, '9465', 'a0 pet12', 30, 0, 0, 1, '0'),
(8973465, 1188, '8973465', 'dng_throne', 15, 0, 0, 1, '0'),
(8973466, 1188, '8973466', 'dng_pillar', 4, 0, 0, 1, '0'),
(8973467, 1188, '8973467', 'dng_stairs', 3, 0, 0, 1, '0'),
(8973468, 1188, '8973468', 'dng_block', 2, 0, 0, 1, '0'),
(8973469, 1188, '8973469', 'dng_floor', 5, 0, 0, 1, '0'),
(8973470, 1188, '8973470', 'dng_wall', 8, 0, 0, 1, '0'),
(8973471, 1188, '8973471', 'dng_treasure', 12, 0, 0, 1, '0'),
(8973472, 1188, '8973472', 'dng_treasure2', 9, 0, 0, 1, '0'),
(8973473, 1188, '8973470', 'dng_wall', 45, 0, 0, 10, '0'),
(8973474, 1188, '8973469', 'dng_floor', 30, 0, 0, 10, '0'),
(9037532, 1188, '9037532', 'dng_ground', 5, 0, 0, 1, '0'),
(9037533, 1188, '9037533', 'dng_cube', 4, 0, 0, 1, '0'),
(199868, 8765, '199868', 'qt_sum11_ictrolley', 0, 100, 0, 1, '0'),
(199869, 8765, '199869', 'qt_sum11_platfrm', 8, 0, 0, 1, '0'),
(199870, 8765, '199870', 'qt_sum11_shell3', 3, 0, 0, 1, '0'),
(199871, 8765, '199871', 'qt_sum11_shell2', 3, 0, 0, 1, '0'),
(199872, 8765, '199872', 'qt_sum11_chair', 4, 0, 0, 1, '0'),
(199873, 8765, '199873', 'qt_sum11_shell4', 3, 0, 0, 1, '0'),
(199874, 8765, '199874', 'qt_sum11_shell1', 3, 0, 0, 1, '0'),
(199875, 8765, '199875', 'qt_sum11_shell5', 3, 0, 0, 1, '0'),
(199876, 8765, '199876', 'qt_sum11_petfood', 2, 100, 0, 1, '0'),
(55901, 556, '55901', 'prizetrophy_skate*1', 3, 0, 0, 1, '0'),
(55902, 556, '55902', 'prizetrophy_skate*2', 3, 0, 0, 1, '0'),
(55903, 556, '55903', 'prizetrophy_skate*3', 3, 0, 0, 1, '0'),
(55904, 556, '55904', 'sb_rail', 3, 0, 0, 1, '0'),
(55905, 556, '55905', 'sb_ramp', 3, 0, 0, 1, '0'),
(55906, 556, '55906', 'sb_block', 3, 0, 0, 1, '0'),
(3267, 516, '3267', 'mm_lamp', 10, 0, 0, 1, '0'),
(3268, 516, '3268', 'mm_lemon_drink', 10, 0, 0, 1, '0'),
(3269, 516, '3269', 'mm_tub', 10, 0, 0, 1, '0'),
(9681, 514, '9681', 'race_trophy', 3, 0, 0, 1, '0'),
(9682, 514, '9682', 'ads_kfp2_wall', 3, 0, 0, 1, '0'),
(9683, 514, '9683', 'ads_kfp2_statue', 3, 0, 0, 1, '0'),
(9684, 514, '9684', 'ads_kfp2_tv', 3, 0, 0, 1, '0'),
(9685, 514, '9685', 'picture_car', 3, 0, 0, 1, '0'),
(9686, 514, '9686', 'ads_kelloggs_statue', 3, 0, 0, 1, '0'),
(10934, 179, '10934', 'a0 pet9', 15, 0, 0, 1, '0'),
(30000, 180, '30000', 'a0 pet14', 0, 2000, 0, 1, '0'),
(12458, 1042, '254874', 'Black Hole', 3, 0, 0, 1, '0'),
(91061, 98, '91061', 'ads_durex_carpet', 5, 0, 0, 1, '0'),
(91062, 98, '91062', 'ads_durex_screen', 5, 0, 0, 1, '0'),
(91063, 98, '91063', 'ads_durex_vend', 5, 0, 0, 1, '0'),
(91066, 195, '91066', 'ads_mtv_floor', 5, 0, 0, 1, '0'),
(91067, 195, '91067', 'ads_mtv_wall', 5, 0, 0, 1, '0'),
(91068, 195, '91068', 'studio_amp1', 5, 0, 0, 1, '0'),
(91069, 195, '91069', 'studio_amp2', 5, 0, 0, 1, '0'),
(91070, 195, '91070', 'studio_camera', 5, 0, 0, 1, '0'),
(91071, 195, '91071', 'studio_chair', 5, 0, 0, 1, '0'),
(91072, 195, '91072', 'studio_drums', 5, 0, 0, 1, '0'),
(91073, 195, '91073', 'studio_fence', 5, 0, 0, 1, '0'),
(91074, 195, '91074', 'studio_fencecr', 5, 0, 0, 1, '0'),
(91075, 195, '91075', 'studio_floorlight', 5, 0, 0, 1, '0'),
(91076, 195, '91076', 'studio_guitar', 5, 0, 0, 1, '0'),
(91077, 195, '91077', 'studio_lights1', 5, 0, 0, 1, '0'),
(91078, 195, '91078', 'studio_lights2', 5, 0, 0, 1, '0'),
(91079, 195, '91079', 'studio_lights3', 5, 0, 0, 1, '0'),
(91080, 195, '91080', 'studio_mixingdesk', 5, 0, 0, 1, '0'),
(91081, 195, '91081', 'studio_monitor', 5, 0, 0, 1, '0'),
(91082, 195, '91082', 'studio_stool', 5, 0, 0, 1, '0'),
(91083, 195, '91083', 'studio_tv', 5, 0, 0, 1, '0'),
(86003, 191, '86003', 'lm_jackbox', 5, 0, 0, 1, '0'),
(85000, 190, '85000', 'coco_chair', 5, 0, 0, 1, '0'),
(85001, 190, '85001', 'coco_chair_c2', 5, 0, 0, 1, '0'),
(85002, 190, '85002', 'coco_chair_c3', 5, 0, 0, 1, '0'),
(85003, 190, '85003', 'coco_chair_c4', 5, 0, 0, 1, '0'),
(85004, 190, '85004', 'coco_divan', 10, 0, 0, 1, '0'),
(85005, 190, '85005', 'coco_divan_c2', 10, 0, 0, 1, '0'),
(85006, 190, '85006', 'coco_divan_c3', 10, 0, 0, 1, '0'),
(85007, 190, '85007', 'coco_divan_c4', 10, 0, 0, 1, '0'),
(85008, 190, '85008', 'coco_sofa', 20, 0, 0, 1, '0'),
(85009, 190, '85009', 'coco_sofa_c2', 20, 0, 0, 1, '0'),
(85010, 190, '85010', 'coco_sofa_c3', 20, 0, 0, 1, '0'),
(85011, 190, '85011', 'coco_sofa_c4', 20, 0, 0, 1, '0'),
(85012, 190, '85012', 'coco_sofatable', 6, 0, 0, 1, '0'),
(85013, 190, '85013', 'coco_sofatable_c2', 6, 0, 0, 1, '0'),
(85014, 190, '85014', 'coco_sofatable_c3', 6, 0, 0, 1, '0'),
(85015, 190, '85015', 'coco_sofatable_c4', 6, 0, 0, 1, '0'),
(85016, 190, '85016', 'coco_stool', 8, 0, 0, 1, '0'),
(85017, 190, '85017', 'coco_stool_c2', 8, 0, 0, 1, '0'),
(85018, 190, '85018', 'coco_stool_c3', 8, 0, 0, 1, '0'),
(85019, 190, '85019', 'coco_stool_c4', 8, 0, 0, 1, '0'),
(85020, 190, '85020', 'coco_throne', 32, 0, 0, 1, '0'),
(85021, 190, '85021', 'coco_throne__c2', 32, 0, 0, 1, '0'),
(85022, 190, '85022', 'coco_throne_c3', 32, 0, 0, 1, '0'),
(85023, 190, '85023', 'coco_throne_c4', 32, 0, 0, 1, '0'),
(85024, 190, '85024', 'coco_patch', 5, 0, 0, 1, '0'),
(85025, 190, '85025', 'coco_stick', 6, 0, 0, 1, '0'),
(85026, 190, '85026', 'coco_table', 12, 0, 0, 1, '0'),
(85027, 190, '85027', 'coco_table2', 12, 0, 0, 1, '0'),
(6008, 1009, '28603', 'a0 pet14', 20, 0, 0, 1, '0'),
(6009, 1010, '29603', 'a0 pet09', 20, 0, 0, 1, '0');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `catalog_marketplace_offers`
--

CREATE TABLE IF NOT EXISTS `catalog_marketplace_offers` (
  `offer_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `item_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `asking_price` int(11) NOT NULL,
  `total_price` int(11) NOT NULL DEFAULT '0',
  `public_name` text NOT NULL,
  `sprite_id` int(11) NOT NULL,
  `item_type` enum('1','2') NOT NULL DEFAULT '1',
  `timestamp` double NOT NULL,
  `state` enum('1','2') NOT NULL DEFAULT '1',
  `extra_data` text NOT NULL,
  PRIMARY KEY (`offer_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `catalog_pages`
--

CREATE TABLE IF NOT EXISTS `catalog_pages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL DEFAULT '-1',
  `caption` varchar(100) NOT NULL,
  `icon_color` int(11) NOT NULL DEFAULT '1',
  `icon_image` int(11) NOT NULL DEFAULT '1',
  `visible` enum('0','1') NOT NULL DEFAULT '1',
  `enabled` enum('0','1') NOT NULL DEFAULT '1',
  `min_rank` int(10) unsigned NOT NULL DEFAULT '1',
  `club_only` enum('0','1') NOT NULL DEFAULT '0',
  `order_num` int(11) NOT NULL,
  `page_layout` enum('default_3x3','frontpage','spaces','recycler','recycler_info','recycler_prizes','trophies','plasto','marketplace','marketplace_own_items','pets','pets2','club_gifts','club_buy') NOT NULL DEFAULT 'default_3x3',
  `page_headline` text NOT NULL,
  `page_teaser` text NOT NULL,
  `page_special` text NOT NULL,
  `page_text1` text NOT NULL,
  `page_text2` text NOT NULL,
  `page_text_details` text NOT NULL,
  `page_text_teaser` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=8766 ;

--
-- Gegevens worden uitgevoerd voor tabel `catalog_pages`
--

INSERT INTO `catalog_pages` (`id`, `parent_id`, `caption`, `icon_color`, `icon_image`, `visible`, `enabled`, `min_rank`, `club_only`, `order_num`, `page_layout`, `page_headline`, `page_teaser`, `page_special`, `page_text1`, `page_text2`, `page_text_details`, `page_text_teaser`) VALUES
(-1, 1, 'Inicio', 0, 1, '1', '1', 1, '0', 1, 'frontpage', 'catalog_frontpage_headline2_it', 'topstory_anna_001', '', 'Dale Color a tus SalasNada como los objetos ''Anna'' para hacerlo...', '¿Cómo conseguir Créditos?1. Pide siempre primero permiso a quien vaya a pagar. 2. Si te conectas desde España, te recomendamos Paysafe, un método de lo más rentable. 3. Elige la cantidad de Créditos que prefieras y canjea tu código. 4. Para más info, haz clic en el link ''Lograr Créditos''.', 'Ingresa tu codigo aquí: ', ''),
(3, -1, 'Tienda', 3, 2, '1', '0', 1, '0', 4, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(4, -1, 'Furni básico & Pixel', 5, 5, '1', '0', 1, '0', 6, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(5, -1, 'Compra Club', 7, 75, '1', '1', 1, '0', 4, 'default_3x3', 'catalog_club_headline1', 'catalog_hc_teaser', '', '', '', '', ''),
(6, -1, 'Tienda Traxs', 4, 4, '1', '1', 7, '0', 11, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(8, 5, 'Furni HC', 1, 75, '1', '1', 1, '0', 2, 'default_3x3', 'catalog_club_headline1', 'catalog_hc_teaser', '', 'Da un toque elegante a tu sala, algo único nada como pasar un buen rato juntos con los amigos con los Furnis exclusios para HC!\r\n¡Haddoz!', '', '', ''),
(9, -1, 'Ecotron', 3, 7, '1', '0', 1, '0', 6, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(10, 9, 'Ecotron', 1, 7, '1', '1', 1, '0', 4, 'recycler', 'catalog_recycler_headline3', 'ctlg_ecotron_image', '', 'Become an Eco-warrior', 'Recicla tus cosas sin valor y ser recompensado con un premio al azar. Echa un vistazo a los premios y las instrucciones para su reciclaje.\r\n¡Haddoz!', 'Arrastre 5 artículos de las siguientes casillas y haga clic en reciclar!', ''),
(11, 9, 'Premios', 1, 26, '1', '1', 1, '0', 3, 'recycler_prizes', 'catalog_recycler_headline3', '', '', '¿Cuáles son los premios? Cuadro Ecotron puede contener uno de estos:', '', '', ''),
(12, 9, 'Instrucciones', 1, 42, '1', '1', 1, '0', 2, 'recycler_info', 'catalog_recycler_headline3', 'ctlg_ecotron_box', '', 'El Ecotron es una empresa de reciclaje muebles. Deshágase de muebles viejos ... lo que obtienes a cambio? Es una sorpresa! Conviértete en un sistema Haddo-guerrero. No se aceptan devoluciones!\r\n', '¿para usar el Ecotron?', '1. Sólo tienes que arrastrar 5 artículos de la mano a la Ecotron. Uno de los puntos / plaza. Los artículos reciclables están marcados en su inventario con una imagen. Cuando usted tiene 5 artículos en las cajas, haga clic en el "reciclaje" botón. Ahora puede encontrar el cuadro de premios Ecotron de tu mano.\r\n\r\n2. Haga clic en la caja para ver su etiqueta. Abra la caja, o el comercio sin abrir. El cronómetro que muestra cuánto tiempo tiene que esperar antes de poder reciclar más elementos. Compruebe los premios antes de reciclar, no se sorprenda por la sorpresa!\r\n¡Haddoz!', ''),
(13, -1, 'Habbo Cambio', 11, 6, '1', '1', 1, '0', 4, 'default_3x3', 'catalog_bank_headline1', 'catalog_bank_teaser', 'catalog_special_txtbg1', 'Cambia tus créditos por una Moneda Furni!!!\r\n¡Haddoz!', '', 'Click en un Furni para más información', '¡¡Oro!! ¡Fantasy!!'),
(14, -1, 'Mascotas', 2, 8, '1', '1', 1, '0', 4, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(15, 4, 'Tapizados', 1, 55, '1', '1', 1, '0', 2, 'spaces', 'catalog_spaces_headline1', '', '', 'Pisos, fondos de escritorio y paisajes - obtener una combinación genial de su habitación! Utilice nuestra sala de muestra a continuación para probar antes de comprar! Seleccione sus diseños y colores favoritos y simplemente haga clic en Comprar!', '', '', ''),
(16, -1, 'Habbo VIP', 1, 26, '1', '1', 2, '0', 4, 'default_3x3', 'catalog_limited_headline1', 'catalog_limited_teaser', '', 'Edición limitada, estara por poco tiempo!', '', 'Click en un Furni para más información', ''),
(21, 4, 'Cuadros', 1, 47, '1', '1', 1, '0', 18, 'default_3x3', '', '', '', '', '', '', ''),
(24, 4, 'Ventanas', 0, 63, '1', '1', 1, '0', 3, 'default_3x3', 'ctlg_windows_headline1_en', 'ctlg_windows_teaser1_en', 'catalog_special_txtbg2', 'Deje un poco de luz en el! Nuestras ventanas vienen en muchos estilos para dar un aspecto más atractivo a su habitación. Comprar paisajes para ir con las ventanas de la página ''Espacios''!', '', 'Click a un Furni para más información', 'Ooh, Nueva Vista!!'),
(26, 4, 'Reguladores', 0, 40, '1', '1', 1, '0', 4, 'default_3x3', 'catalog_dimmers_header_en', 'dimmers_teaser', '', 'Nuestra gama de reguladores le permiten controlar el ambiente y transformar su habitación en un solo clic. ¿Cuál será su cuarto aspecto tiene? Haga clic en el interruptor y averiguar ahora!', '', 'Clcik a un Furni para más información', ''),
(27, 3, 'Navidad', 1, 64, '1', '1', 1, '0', 47, 'default_3x3', 'catalog_xmas_headline1', 'xmas2009_catalogue', 'catalog_special_txtbg2', 'Consiga en el espíritu de la Navidad con nuestra selección de muebles de fiesta! Desde bolas de caca de reno, lo tenemos todo!!\r\n¡Haddoz!', '', 'Click a un Furni para más información', '''tis the season!'),
(28, 3, 'Ártico', 0, 13, '1', '1', 1, '0', 35, 'default_3x3', 'catalog_arc_header1_en', 'catalog_arc_teaser1_en', '', 'Mantente fresco (o caliente con fogata fuera!) con y crear su propio país de las maravillas del invierno o Nacional para su humilde pingüinos.\r\n¡Haddoz!', '', 'Click a un Furni para más información', ''),
(29, 4, 'Teleports', 0, 58, '1', '1', 1, '0', 12, 'default_3x3', 'catalog_doors_headline1', 'catalog_door_a', 'catalog_special_txtbg1', 'Lleve a su departamento a un nuevo nivel con nuestra gama de teletransportadores era espacial! Acaba de comprar un par, poner uno en cada habitación y ¡voilá! Usted tiene dos habitaciones unidas!\r\n¡Haddoz', '', 'Click a un Furni para más información', 'LLeve su habitación a otro nivel!'),
(30, 4, 'Mode', 0, 39, '1', '1', 1, '0', 5, 'default_3x3', 'catalog_mode_headline1', 'catalog_mode_teaser1', 'catalog_special_txtbg2', 'Gris industrial, con un diseño elegante. El rango ideal para un habitante de la ciudad callejera.\r\n¡Haddoz!', '', 'Click on an item for more information.', 'So shiny and new..'),
(31, 4, 'Candy', 0, 19, '1', '1', 1, '0', 6, 'default_3x3', 'catalog_candy_headline1', 'catalog_candy_teaser1', 'catalog_special_txtbg2', 'Un poco más femenina que ''Mode '', esto añadirá un poco de glamour y brillo a sus habitaciones. A falta de algunos artículos? Jefe de más a la ''Mode '' categoría!', '', 'Click a un Furni para más información.', 'lol yo maté a un oso de color rosa para esta manta!'),
(32, 4, 'Pura', 0, 48, '1', '1', 1, '0', 9, 'default_3x3', 'catalog_pura_headline1', 'catalog_pura_teaser1', 'catalog_special_txtbg2', 'El clenest, rango más frescos. Casi se puede oír fresco aliento y tranquilidad dentro de su habitación. Se usa para crear un refugio lejos del defecto.\r\n¡Haddoz!', '', 'Click a un Furni para más información ', '¡Qué colores!'),
(33, 4, 'Area', 0, 14, '1', '1', 1, '0', 8, 'default_3x3', 'catalog_area_headline1', 'catalog_area_teaser1', 'catalog_special_txtbg2', ' Algo mas serio, elegante ,Es Simplicidad es medieval y se añade un encanto acogedor de cada habitación.', '', 'Click a un Furni para más Información', 'Beautiful in it''s simplicity! '),
(34, 505, 'Campo', 0, 21, '1', '1', 1, '0', 31, 'default_3x3', 'country_header1_en_001', 'country_teaser1', 'catalog_special_txtbg2', 'Vamos a dejar las calles de la ciudad ocupada y la cabeza hacia el abismo gama de whear de oro, esmeraldas y los campos de cosecha propia, verduras orgánicas. Todo lo queque necesitas para crear una granja !', '', 'Click a un Furni para más información.', 'Who''d be a crow, eh?'),
(35, 4, 'Rústico', 0, 37, '1', '1', 1, '0', 7, 'default_3x3', 'catalog_lodge_headline1', 'catalog_lodge_teaser1', 'catalog_special_txtbg2', 'Para tal efecto espléndidas pistas de madera con chimenea y el whisky en la barra lateral. Esta gama es para aquellos que appreicate la verdadera belleza de la madera sólida.', '', 'Click a un Furni para más información', '¡A tomar Whisky!'),
(36, 4, 'Plástico', 0, 46, '1', '1', 1, '0', 11, 'plasto', 'catalog_plasto_headline1', '', '', 'A través de un afro y agarrar una bola de discoteca! Siente que retro, 1970 vibra? Pronto con esta gama de colores, de plástico! Elija un color para adaptarse a su estado de ánimo y listo!', '', 'Click a un Furni para más información', ''),
(38, 4, 'Baño', 0, 17, '1', '1', 1, '0', 14, 'default_3x3', 'catalog_bath_headline1', 'catalog_bath_teaser1', 'catalog_special_txtbg2', 'Deja la cara .. no se puede vivir sin su cuarto de baño. Ofrecer a los huéspedes la suya en algún lugar para refrescarse con nuestra colección de baño cheeful!', '', 'Click a un Furni para más información', 'Every Haddoz needs one!'),
(39, 4, 'Plantas', 0, 45, '1', '1', 1, '0', 15, 'default_3x3', 'catalog_plants_headline1', 'catalog_plants_teaser1', 'catalog_special_txtbg2', 'Cada habitación necesita un poco de verdor, querida! No sólo mejorar la calidad del aire, que animar a una habitación para que sea simplemente espléndida! Y qué mejor regalo para un amigo de un elegante rosa ..\r\n¡Haddoz!', '', 'Click a un Furni para más información', 'Soy un árbol!'),
(40, 4, 'Alfombras', 0, 52, '1', '1', 1, '0', 16, 'default_3x3', 'catalog_rugs_headline1', 'catalog_posters_teaser1', 'catalog_special_txtbg2', 'Tapetes para todas las ocasiones, el blanco para las bodas, negro para los funerales y todo lo demás! Todas las mantas y antideslizante y lavable a máquina. Haga su elección!', '', 'Haga clic en un elemento para obtener más información.', 'Esto va a ser perfecto en mi habitación!'),
(41, 4, 'Cuadros', 0, 47, '1', '1', 1, '0', 17, 'default_3x3', 'catalog_gallery_headline1', 'catalog_posters_teaser1', 'catalog_special_txtbg2', 'Decora tus paredes con carteles, arte, placas y tapices. Esta galería está llena de artículos para todos los gustos, tradicionales y modernos!', '', 'Haga clic en un elemento para obtener más información.', 'Llena de color tus paredes!'),
(42, 4, 'Trofeos', 0, 60, '1', '1', 1, '0', 20, 'trophies', 'catalog_trophies_headline1', '', '', 'ganador de trofeos Haddoz! Ahora usted puede premiar a todos sus amigos con nuestra amplia pre-pulido de trohpies. En bronce, plata y oro.\r\nPrimero elija el modelo de trofeo, entonces el tipo de metal y con cuidado su inscripción. No te preocupes, vamos a grabar todo con su nombre y la fecha.', '', 'Haga clic en un elemento para obtener más información.', ''),
(43, 4, 'Accesorios', 0, 11, '1', '1', 1, '0', 19, 'default_3x3', 'catalog_extra_headline1', 'catalog_extra_teaser1', 'catalog_special_txtbg2', 'Sin embargo, usted quiere dejar tus objetos personales, sus últimos toques que realmente hacen que una habitación y expresar tu verdadera personalidad. No se olvide, como cualquier otra cosa, puede mover todos a punto de adaptarse a su estado de ánimo!', '', 'Click a un Furni para más informacion', 'Me encanta mi conejo ...'),
(45, 4, 'Alquiler Píxel', 0, 44, '1', '1', 1, '0', 23, 'default_3x3', 'catalog_pixelrent_headline1_en', 'catalog_pxl_teaser3_en', '', 'Alquiler de algunos efectos fresco para añadir un toque explosivo a su habitación. De burbujas firestarters, puede mejorar dramáticamente su habitación!', '', 'Click en un Furni para más información', ''),
(55, 4, 'Iced', 0, 13, '1', '1', 1, '0', 10, 'default_3x3', 'catalog_iced_headline1', '', '', 'El rango de helado, blandito, suave y más fresco definitivamente. Sean cuales sean sus necesidades, esta gama con estilo en caso de que la cubierta!', '', 'Click a un Furni para más información', ''),
(56, 3, 'Alhambra', 0, 12, '1', '1', 1, '0', 22, 'default_3x3', 'catalog_alh_headline1_en', '', '', 'Por las noches frías y días calurosos de Arabia Saudita, tendrá un palacio .. y tenemos justo lo que necesitas! Impresión verde flor debe cubrirlo bien!', '', 'Click a un Furni para más información', ''),
(57, 3, 'Chino', 0, 15, '1', '1', 1, '0', 23, 'default_3x3', 'catalog_asian_headline1', '', '', 'Ting Tong! Ching chong? Ting Ting Chong, mesa de ping ping! Quiero decir eh .. con nuestros muebles chinos auténticos, puede hacer que una habitación oriental hermosa!', '', 'Click a un Furni para más información', ''),
(58, 3, 'Ciudad Perdida', 0, 18, '1', '1', 1, '0', 26, 'default_3x3', 'catalog_lc_headline2_en', '', '', 'Bajo el mar, oh, Bajo el mar sí! ¿Cuál será tu mirada del mundo bajo el agua, como? Lo tenemos todo aquí, los cangrejos, las verrugas genitales y VIH!', '', 'Click a un Furni para más Información', ''),
(59, 505, 'Páscua', 0, 25, '1', '1', 1, '0', 48, 'default_3x3', 'catalog_easter_headline1_es', 'catalog_easter_teaser1', '', 'Poco birdies eclosión de sus huevos, bonita, delicada flor en flor y lindos conejos hinchables en los prados de primavera .. Al diablo con todo! DEJA COMPRAR juntas!', '', 'Click a un Furni para más información', ''),
(60, 3, 'Ejecutivo', 0, 27, '1', '1', 1, '0', 38, 'default_3x3', 'catalog_exe_headline1_en', '', '', 'Para el hombre de negocios última, el rango de Ejecutivo, con sus asientos de cuero y café italiano es un sueño! ¿Qué tal si pruebas el estilo de vida fácil?', '', 'Click a un Furni para más información', ''),
(61, 3, 'Cristal', 0, 29, '1', '1', 1, '0', 40, 'default_3x3', 'catalog_glass_headline1', '', '', '¿De verdad se puede abrir un espacio con este estilo de muebles de cristal, simplemente no entrar en ella!', '', 'Click a un Furni para más información', ''),
(62, 3, 'Gotico', 0, 30, '1', '1', 1, '0', 37, 'default_3x3', 'catalog_gothic_headline1', '', '', 'Como las campanas suenan la medianoche, camina a través de su sala de adoquines iluminado por velas, tírate en su trono medieval y pintar sus uñas de negro. Esto es lo que nos imaginamos cuando ordenó este rango!', '', 'Click a un Furni para más información', ''),
(63, 3, 'Deporte', 0, 56, '1', '1', 1, '0', 43, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'El deporte abarca todas las piezas vitales Olímpicos de pistas de atletismo a los tribunales de baloncesto! 3 2 1 GO!', '', 'Click a un Furni para más información', ''),
(64, 3, 'Grunge', 0, 32, '1', '1', 1, '0', 28, 'default_3x3', 'catalog_grunge_headline1', '', '', 'Duermen en la calle? Hacer las calles un poco más soportable con nuestra colección de muebles sin hogar, Grunge!', '', 'Clcik a un Furni para más información', ''),
(65, 3, 'Habbo Wood', 0, 33, '1', '1', 1, '0', 39, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'No hay fotografía con flash, cariño! Esta gama es sólo para los VIP de los actores de Hollywood!', '', 'Click a un Furni para más información', ''),
(66, 3, 'Habbo Ween', 0, 34, '1', '1', 1, '0', 50, 'default_3x3', 'catalog_halloween_headline1', '', '', 'WooOOOOoooOOoo! Spooky! No quiero quedar con este rango en la noche .. quién sabe lo que pasaría!', '', 'Click a un Furni para más información', ''),
(67, 3, 'Japón', 0, 36, '1', '1', 1, '0', 24, 'default_3x3', 'catalog_jap_headline2_en', '', '', 'Tenemos sushi, tatami y katana! No tengo idea de cuál es la diferencia, pero estoy seguro que sabe su japoneses! Cumplir tus fantasías y comprar algunos hoy en día!', '', 'Click a un Furni para más información', ''),
(68, 3, 'Tribu Perdida', 0, 38, '1', '1', 1, '0', 27, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Comience su propio pueblo tribal con los muebles antiguos, todos tallados en piedra resistente. NOTA: La lava es caliente, obtener un adulto que te ayude.', '', 'Click a un Furni para más información', ''),
(69, 3, 'Neón', 0, 41, '1', '1', 1, '0', 42, 'default_3x3', 'catalog_neon_header1_en', '', '', 'Nuevo fin de año, cumpleaños y cualquier otro día del año, siempre hay un exscuse para una fiesta! Así que, ¿por qué no comprar muebles de neón!?', '', 'Click a un Furni para más información', ''),
(71, 3, 'Relax', 0, 49, '1', '1', 1, '0', 41, 'default_3x3', 'rela_header_en', '', '', 'Relájese después de un ajetreado día en el salón de bienvenida. La luz algunas velas y relajarse con una buena lectura en una silla de mimbre. Entendemos las necesidades de una Uber con un estilo de vida agitado!', '', 'Click a un furni para más información', ''),
(72, 3, 'Romántico', 0, 50, '1', '1', 1, '0', 45, 'default_3x3', 'catalog_romantique_headline1', '', '', 'Se encuentra en un granero francés, esta gama de dulces, pero romántico sexy abastece a todas las necesidades de las damas. Sólo va a polvo mi nariz!', '', 'Click a un Furni para más información', ''),
(73, 3, 'Ciencía Ficción', 0, 53, '1', '1', 1, '0', 28, 'default_3x3', 'sf_header_en', '', '', 'Blip blip blip blip blop .. Ooh .. ¿Qué es esto botón hacer? .. Usted puede saber exactamente lo que hace con nuestra nueva gama de Scifi, pilas incluidas!', '', 'Click a un Furni para más información', ''),
(74, 3, 'Shalimar', 0, 54, '1', '1', 1, '0', 44, 'default_3x3', 'catalog_shal_header1_en', '', '', 'Todo el mundo ama a Bollywood! ¿Quieres algunos créditos de libre? Dile a Oscar con éxito lea la página de Shalimar! Dile a nadie más que se encuentran este huevo de Pascua. Tenga cuidado con los pétalos de rosa!', '', 'Click a un Furni para más información', ''),
(75, 3, 'Verano', 0, 57, '1', '1', 1, '0', 32, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Poner en marcha la Barbie! Esta gama tiene todo lo necesario para el jardín de verano, perfecto!', '', 'Click a un Furni para más información', ''),
(76, 3, 'Amor', 0, 62, '1', '1', 1, '0', 46, 'default_3x3', 'catalog_love_headline1', '', '', 'El amor está en el aire una vez más! Compra tu amor una rosa o susurrar palabras dulces al oído en un sofá amor. ¿Puedes sentirlo? <3\r\n¡Haddoz!', '', 'Click a un Furni para más información', ''),
(77, 3, 'Griego', 0, 31, '1', '1', 1, '0', 25, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Ser transportado de vuelta a la antigua Grecia con un par de miles de libras y British Airways. Hasta entonces, construir su propia panthenon con nuestra gama griega realista!', '', 'Click a un Furnni para más información', ''),
(85, 91, 'Coleccionables Píxxel', 0, 71, '1', '1', 7, '0', 1, 'default_3x3', 'catalog_pixeldeals_headline1_en', 'catalog_pxl_teaser2_en', '', 'El Coleccionismo de píxeles son los objetos de colección definitiva, lo que requiere un mamut 2000 píxeles y créditos para comprar! Si usted recoge todas las piezas y la gestión de ponerlos juntos en cierta manera, usted recibirá un efecto especial!', '', 'Click a un Furni para más información', ''),
(88, 3, 'Virus', 0, 42, '1', '1', 1, '0', 36, 'default_3x3', 'catalog_vir_header1_en', '', '', 'Todos los suministros Haddoz pandemia de emergencia se mantienen aquí! Necesitan un poco de limpieza después de la explosión de la enfermedad de pus, pero .. que van a hacer bien!', '', 'Click a un Furni para más información', ''),
(91, -1, 'Categoría Staff', 6, 28, '1', '0', 7, '0', 12, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(93, 91, 'Trofeos', 1, 60, '1', '1', 7, '0', 1, 'trophies', 'catalog_trophies_headline1', '', '', 'Esta página contiene trofeos especiales para el personal para dar como premios. PERSONAL DE REVELACIÓN DE LOS ATRAPADOS SIN RAZÓN será degradado.', '', 'Haga clic en este cuadro gris y el tipo de su inscripción * cuidado * - es permanente!', ''),
(94, 91, 'Rares', 1, 10, '1', '1', 7, '0', 2, 'default_3x3', 'catalog_rares_headline1', '', '', 'Esta página contiene raras especiales disponibles para el personal. PERSONAL DE REVELACIÓN DE LOS ATRAPADOS SIN RAZÓN será degradado.', '', 'Click a un Furni par más información', ''),
(95, 91, 'Promoción', 1, 11, '1', '1', 7, '0', 3, 'default_3x3', 'catalog_rares_headline1', '', '', 'Esta página contiene artículos promocionales especiales para el personal. PERSONAL DE REVELACIÓN DE LOS ATRAPADOS SIN RAZÓN será degradado.', '', 'Click a un Furni para más información', ''),
(102, 4, 'Rollers', 0, 16, '1', '1', 1, '0', 13, 'default_3x3', 'catalog_roller_headline1', '', '', 'Zoooooooom, Zooooooooooooooooooooooooooom! ¿Es un avión? ¿Es un pájaro!? No, fue Roy en un rodillo! Usted puede utilizar rodillos en los juegos, eventos o simplemente para pasar una cola a lo largo.\r\n¡Haddoz!', '', 'Click a un Furni para más información', ''),
(103, 4, 'Diner', 0, 51, '1', '1', 1, '0', 30, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Al principio de los años 50 este mobiliario ha sido renovado y puesto a la derecha en el catálogo! Use este modo con la gama de cocina para la experiencia última cena!', '', 'Click a  un Furni para más información', ''),
(105, 91, 'Rares', 0, 69, '1', '1', 7, '0', 57, 'default_3x3', 'catalog_rares_headline1', '', '', 'En esta página, tenemos algunas rares bonitos para ti! Hemos mantenido una detrás de algunos de los premios y eventos!', '', 'Click a un Furni para más información', ''),
(112, 3, 'Luna Nueva', 0, 64, '1', '1', 1, '0', 51, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Nunca he leído el libro, todo lo que sé es que tiene vampiros jugando baloncesto y algunos latido del corazón llamado Edward Cullen, pero el mobiliario se ve bien!', '', 'Click a un Furni para más información', ''),
(116, -1, 'Mercadillo', 6, 69, '1', '1', 1, '0', 10, 'default_3x3', 'catalog_frontpage_headline2_es', '', '', '', '', '', ''),
(117, 116, 'Ofertas', 1, 70, '1', '1', 1, '0', 1, 'marketplace', 'catalog_marketplace_header_es', '', '', '', '', '', ''),
(118, 116, 'Mis ventas', 1, 71, '1', '1', 1, '0', 2, 'marketplace_own_items', 'catalog_marketplace_header_es', '', '', '', '', '', ''),
(120, 192, 'Battle Banzai', 5, 78, '1', '1', 1, '0', 1, 'default_3x3', 'Battlebanzai', '', '', 'Preparate para Battle Banzai!! Ya llego a Haddoz!!', '', '', ''),
(121, 6, 'Trax Machines', 0, 4, '1', '1', 1, '0', 52, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Compra aquí tus máquinas Trax aquí, listo para cargar con todas sus maravillosas creaciones, musicales! Compruebe la página de Juegos de sonido para todos los discos se puede utilizar!', '', 'Click a un Furni para más información', ''),
(122, 6, 'CD Traxs', 0, 4, '1', '1', 1, '0', 53, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Tenemos todos los sonidos que usted podría desear aquí! De los efectos de sonido y melodías ambientales para el rock and roll y el heavy metal!', '', 'Click a un Furni para más información', ''),
(123, 4, 'Furni Bienvenida!', 0, 35, '1', '1', 1, '0', 24, 'default_3x3', 'catalog_hello_header1_en', 'catalog_hello_teaser1_en', '', 'Bienvenido Furni está disponible con píxeles y es perfecto si usted está adornando su habitación para la primera vez. Los Furni es tuyo para siempre y por lo tanto no puede ser objeto de comercio.', '', 'Click a un Furni para más información', ''),
(125, 4, 'Efectos Especiales', 0, 61, '1', '1', 1, '0', 25, 'default_3x3', 'catalog_pixeleffects_headline1_en', 'catalog_pxl_teaser1_en', '', 'Conéctate a tu personaje con efectos muy interesantes para la ocasión. Viaja en el hoverboard y escupió en el micrófono. Los efectos se pueden activar desde el menú, haciendo clic en su avatar.', '', 'Click a un Furni para más información', ''),
(126, 3, 'Tiki', 0, 59, '1', '1', 1, '0', 33, 'default_3x3', 'catalog_tiki_header1_en', '', '', 'Imagínese en la escena .. perdido en una isla desierta cuando se tropieza con una tribu local pequeño .. ahora puede hacerlo con nuestra gama de Tiki!', '', 'Click a un Furni para más información', ''),
(128, 3, 'Urbano', 0, 26, '1', '1', 1, '0', 21, 'default_3x3', 'urban_header_en', '', '', 'Nueva York Ciudad gama muebles de estilo, urbano es perfecto para cualquier calle, callejón o camino. Papeleras, farolas y bancos, todo el mobiliario urbano que necesita!', '', 'Click a un Furni para más información', ''),
(129, 4, 'Auto', 0, 16, '1', '1', 1, '0', 26, 'default_3x3', 'catalog_automobile_header1_en', 'catalog_automobile_teaser1_en', '', 'traen un poco del interior exterior, sino que también aumentan la calidad del aire! Y qué mejor regalo para un amigo que una señal de tráfico hermosa o pila de neumáticos elegante ...!', '', 'Click a un Furni para más información', ''),
(130, 3, 'Naturaleza', 0, 21, '1', '1', 1, '0', 34, 'default_3x3', '', '', '', 'Ir verde con nuestra gama de Medio Ambiente el medio ambiente! Esta selección de muebles es perfecto para un jardín hermoso y relajante.', '', 'Click a un Furni para más información', ''),
(134, 91, 'Sistema', 0, 1, '1', '1', 6, '0', 4, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click a un Furni para más información', ''),
(136, 3, 'Bling', 0, 42, '1', '1', 1, '0', 52, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Bling, Bling! Flash, Flash! ¿Quieres tener ese estilo de vida de celebridades reales? Bueno, ir a otro lugar, todo lo que tenemos aquí es una gama de muebles pegajosa.', '', 'Clicka un Furni para más información', ''),
(137, 3, 'Orgie', 51, 1, '1', '1', 1, '0', 55, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'La última gama de Ann Summers, la línea de Orgias. Hecho de suave, limpie de plástico limpio, es perfecto para cualquiera de los tres, cuatro o quinteto!', '', 'Click a un Furni para más información', ''),
(139, 14, 'Información Mascotas', 0, 42, '1', '1', 1, '0', 13, 'pets2', 'catalog_pet_headline1', 'ctlg_pet_note', '', 'Las mascotas son habitantes de uberHotel también, por lo que cada dueño de la mascota tiene que saber un poco acerca de ellos. Cuida de tu mascota mirando a través de nuestros puntos clave a continuación.', '', '', '- No puedes cambiar o regalar mascotas. Una vez que los compra, que será tuyo para siempre.\r\n- Usted puede ser dueño de lo que quiera, pero usted no puede tener más de 5 mascotas por habitación.\r\n- Usted puede llevar sus mascotas con usted a otras habitaciones, si el propietario de la sala le permiten hacerlo.\r\n- Su mascota necesita ser entrenado antes de que se va a escuchar a sus comandos. Al entrenar a sus mascotas, usted puede obtener algunos logros impresionantes también.'),
(141, 14, 'Cerdos', 0, 67, '1', '1', 1, '0', 11, 'pets', 'catalog_pet_headline1', '', '', 'Estos pícaros poco estaban destinados a la mesa del comedor hasta que llegó a un acuerdo con un agricultor de la zona para rescatar a sus coletas lindo! Adoptar hoy su cerdito, todo lo que necesitamos ahora es un nombre.', '', 'Dar un nombre:Cerdo a color:cerdo a race:', ''),
(142, 14, 'Accesorios Mascotas', 0, 43, '1', '1', 1, '0', 12, 'default_3x3', 'catalog_pet_headline1', 'ctlg_pet_teaser1', 'catalog_special_txtbg2', 'Esta página tiene todo lo necesario para darle a su mascota la vida feliz que se merece. Tenemos una gran selección!', '', 'Click a un Furni para más información', '¡Feliz!'),
(143, 505, 'Flower Power', 0, 73, '1', '1', 1, '0', 53, 'default_3x3', 'flowerpower_header_en', '', '', 'Woah! Lejos al hombre ... que los pétalos de tomar el control. Vamos a colaborar en un refugio hippy y plantar algunas semillas! Lucy en el cielo con diamantes eyy estilo?!', '', 'Click a un Furni para más información', ''),
(144, 3, 'Pista', 0, 74, '1', '1', 1, '0', 54, 'default_3x3', 'runway_header_en', '', '', 'Darle vida a tu salón, salón de pelo o de estilo boutique con nuestra gama de elegante y práctico! Desde máquinas de coser a cómodos asientos, tenemos la opción perfecta para usted.', '', 'Click a un Furni para más información', ''),
(145, 3, 'Boda', 0, 10, '1', '1', 1, '0', 56, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Quien es el afortunado de casarse?', '', 'Click a un Furni para más información', ''),
(147, 14, 'Terriers', 0, 66, '1', '1', 1, '0', 6, 'pets', 'catalog_pet_headline1', '', '', 'Las cosas buenas vienen en paquetes pequeños y Terriers Habbo no son una excepción!\r\n¡Haddoz!', '', 'Give a name:Pick a color:Pick a race:', ''),
(148, 14, 'Osos', 0, 68, '1', '1', 1, '0', 7, 'pets', 'catalog_pet_headline1', '', '', 'Una gran mamífero pesados??, que camina en las plantas de sus pies, con piel gruesa y una cola muy corta. Enamórate de nuestra gama de adorables osos que incluyen las variedades grizzly y polar!', '', 'Give a name:Pick a color:Pick a race:', ''),
(149, 14, 'Gatos', 0, 20, '1', '1', 1, '0', 8, 'pets', 'catalog_pet_headline1', '', '', 'Pelusa, bigotes, maullidos y ronroneos! Estás a punto de entrar en el mundo de los gatos Haddo. Estas pequeñas criaturas lindas y grandes compañeros de juego que te hará compañía si se mira detrás de ellos también. Encontrar un nuevo amigo de nuestra selección en constante cambio.', '', 'Give a name:Pick a color:Pick a race:', ''),
(150, 14, 'Perros', 0, 24, '1', '1', 1, '0', 9, 'pets', 'catalog_pet_headline1', '', '', 'Narices húmedas, las patas, ladra y tramas! Estás a punto de entrar en el mundo de Haddo perros . Un adorable y fiel siervo te espera con una cola que mueve cada vez que te ven. Encontrar un nuevo amigo de nuestra selección en constante cambio.', '', 'Give a name:Pick a color:Pick a race:', ''),
(151, 14, 'Cocodrilos', 0, 22, '1', '1', 1, '0', 10, 'pets', 'catalog_pet_headline1', '', '', 'Piel escamosa, gruñidos y encaje! Estás a punto de entrar en el mundo de Haddo Cocodrilos. Seguridad para su sitio o para asustar a sus amigos un compañero de confianza y amor sorprendente puede ser tuyo. Encontrar un nuevo amigo de nuestra selección en constante cambio.', '', 'Give a name:Pick a color:Pick a race:', ''),
(152, 3, 'Fútbol!', 0, 56, '1', '1', 1, '0', 2, 'default_3x3', 'WorldCup', 'worldcup_teaser', '', 'Reta a tus amigos a un Campeonato de Fútbol! ¿Qué esperas? compra ya los Furnis Fútbol!', '', 'Click a un Furni para más información', ''),
(157, 3, 'Fiesta', 1, 4, '1', '1', 1, '0', 1, 'default_3x3', 'catalog_frontpage_headline2_en', 'country_teaser1', '', 'Neón era de los viejos, ¿por que no disfrutar de las fiestas? Fiesta nos trae todo lo que necesitamos :) ', '', '', ''),
(159, 3, 'Prisión', 2, 14, '1', '1', 1, '0', 0, 'default_3x3', 'catalog_extra_headline1', 'catalog_extra_teaser1', 'catalog_special_txtbg2', '¡Nuevos Furnis Cárcel en Haddoz! Rápido!! Se escapán!!! ', '', 'Click a un Furni para más información', ''),
(162, 192, 'MTV', 0, 4, '1', '1', 1, '0', 3, 'default_3x3', 'catalog_rares_headline1', '', '', 'Haste con una publicidad para tu Sala.', '', 'Click a un Furni para más información', ''),
(163, 3, 'CapriSun', 1, 64, '1', '1', 1, '0', 9, 'default_3x3', 'caprisun_header', 'caprisun_teaser', '', 'Mira ese jugo, tal persona quiere tomarlo, ¿eh? Hay muchas formas de refrescarse ahora en este verano. Y CapriSun es uno de los mejores refrescos de este verano 2010. ¡Pruebalo!', '', '', ''),
(167, 14, 'León', 1, 76, '1', '1', 1, '0', 5, 'pets', 'catalog_pet_headline1', '', '', '', '', 'Give a name:Pick a color:Pick a race:', ''),
(168, 14, 'Rinoceronte', 1, 77, '1', '1', 1, '0', 1, 'pets', 'catalog_pet_headline1', '', '', '', '', 'Give a name:Pick a color:Pick a race:', ''),
(169, 14, 'Arañas', 1, 95, '1', '1', 1, '0', 0, 'pets', 'catalog_pet_headline1', '', '', 'Una de las criaturas más temidas en la naturaleza, y quizás el más incomprendido. La mayoría de las arañas son depredadores con afilados colmillos que inyectan el veneno en sus presas se preocupe-Pero no, estas arañas costumbre morderte! Tal vez ..\r\n.', '', 'Nombra tu araña:', ''),
(170, 192, 'Habbo Ween 2010', 1, 34, '1', '1', 1, '0', 170, 'default_3x3', 'catalog_voodoo_header_en', 'catalog_voodoo_teaser', '', 'Los nuevos furnis de Halloween 2010, haz una casa embrujada y invita a tus amigos!! ¿Crees qué los llegues a asustar?\r\nIntentalo!!', '', 'Click a un Furni para más información', ''),
(171, 14, 'Pollito', 1, 107, '1', '1', 1, '0', 0, 'pets', 'catalog_pet_headline1', '', '', 'En haddo hotel nos propusimos hacer unas mascotas que a todos les encantaran y aquí están! los pollitos :D! ¡Disfrútalos mucho antes de que se te escapen!', '', 'Nombra tu pollo:', ''),
(172, 94, 'Ofertas especiales', 0, 3, '0', '0', 1, '0', 6, 'default_3x3', 'catalog_cltbs_header1_en', 'catalog_cltbs_teaser_en', '', 'Los Raros coleccionables son Furni especial que se vende s??lo por un breve espacio de tiempo. Aumentan tu poder de cambio y lucen como ning??n otro objeto en tus Salas.', '', '', ''),
(556, 3, 'Skate', 1, 1, '1', '1', 1, '0', 0, 'default_3x3', 'default_3x3', '', '', '', '', '', ''),
(516, -1, 'Mad Money! VIP!', 1, 1, '1', '1', 2, '0', 4, 'default_3x3', 'catalog_madmoney_header_en', 'catalog_madmoney_teaser_en', '', 'Verde como el broccoli!', '', 'Click para mas informacion!.', ''),
(174, 192, 'Cubie', 1, 100, '1', '1', 1, '0', 5, 'default_3x3', 'catalog_cubie_header_en', 'catalog_cubie_teaser', '', 'Hemos hecho un gran puesto por el diseño y por varios Furni modulares que incluso se pueden apilar. ¿A que esperas para para probarlos?', '', '', ''),
(175, 192, 'Wassa', 1, 103, '1', '1', 1, '0', 5, 'default_3x3', 'waasa_catalogue_header', 'waasa_teaser', '', '¿Quieres tener todos estos furnis?,¡Aprovéchalos están a muy bajo precio!', '', '¡Click en un item para más información!', ''),
(178, 3, 'Cocina', 1, 51, '1', '1', 1, '0', 4, 'default_3x3', '', '', '', 'Prepara una Haddoz Comida!! Invita a desayunar, almorzar ó cenar a tús amigos!!', '', '', ''),
(182, 14, 'Ranas', 1, 97, '1', '1', 1, '0', 0, 'pets', 'catalog_pet_headline1', '', '', 'La Rana. Lindo, verde y viscoso! Las ranas vienen en una variedad de colores raros y se pueden encontrar en todo el mundo. Las ranas son puentes grandes, y hacer grandes animales domésticos, pero son más difíciles de retener a una supermodelo en un tornado', '', 'Nombra tu rana:', ''),
(185, 3, 'Fuentes de pescado', 1, 18, '1', '1', 1, '0', 3, 'default_3x3', 'catalog_rares_headl ine1', '', '', 'Aquí tienes una larga lista de Fuentes !!', '', 'Click a un Furni para más información', ''),
(192, -1, 'Ultimos Furnis', 1, 2, '1', '0', 1, '0', 5, 'default_3x3', '', '', '', '', '', '', ''),
(200, 192, 'Gótico 2011', 1, 30, '1', '1', 1, '0', 7, 'default_3x3', 'catalog_gothic_headline1', '', '', 'Como las campanas suenan la medianoche, camina a través de su sala de adoquines iluminado por velas, tírate en su trono medieval y pintar sus uñas de negro. Esto es lo que nos imaginamos cuando ordenó este rango!', '', 'Click a un Furni para más información', ''),
(302, 192, 'Series', 1, 84, '1', '1', 1, '0', 1, 'default_3x3', 'catalog_wired_header6_es', 'ctlg_pic_wired_deals', '', 'La forma más fácil de comprar en  conjunto de paquetes con conexión de cable terminado. Ver mas paquetes que contienen todos los productos, por ejemplo, una contraseña o una puerta cerrada con una palanca de control sobre la adopción.', '', '¡Haz click en cada objeto para ver lo que hace cada Efecto!', ''),
(303, 192, 'Efectos', 1, 82, '1', '1', 1, '0', 2, 'default_3x3', 'catalog_wired_header3_es', 'ctlg_pic_wired_effects', '', 'Esta función determina lo que sucede cuando el obturador se activa. función programable mediante la colocación en el piso y la sala haciendo doble clic en la materia. Ajuste la función en el botón del obturador, para que trabajen juntos.', '', '¡Haz click en cada objeto para ver lo que hace cada Efecto!', ''),
(304, 192, 'Condiciones', 1, 83, '1', '1', 1, '0', 3, 'default_3x3', 'catalog_wired_header4_es', 'ctlg_pic_wired_effects', '', 'Las Condiciones son determinados criterios que deben ser especificados antes de que el Causante se ponga en marcha. Si quieres usar una Condición, deberás apilarla sobre un Causante y un Efecto.', '', '¡Haz click en cada objeto para ver lo que hace cada Efecto!', ''),
(305, 192, 'Complementos', 1, 83, '1', '1', 1, '0', 4, 'default_3x3', 'catalog_wired_header5_es', 'ctlg_pic_wired_support_furniture', '', 'Estos productos, que puede sintonizar con cable de su habitación! Los productos son artículos de primera necesidad, que puede agregar funcionalidad adicional mediante la combinación de los factores desencadenantes, las funciones y condiciones.', '', '¡Haz click en cada objeto para ver lo que hace cada Efecto!', ''),
(496, 3, 'Hospital', 10, 1, '1', '1', 1, '0', 5, 'default_3x3', 'La gama de mobiliario nuevo hospital ya está aquí! ¡Cómpralo ya! y crear su propio hospital!', '', '', 'La gama de mobiliario nuevo hospital ya está aquí! ¡Cómpralo ya! y crear su propio hospital!', '', '', ''),
(497, 3, 'Stray Pixel', 1, 64, '1', '1', 1, '0', 7, 'default_3x3', 'Stray Pixel', '', '', 'Stray Pixel', '', '', ''),
(500, 3, 'Navidad 10', 1, 13, '1', '1', 1, '0', 1, 'default_3x3', 'catalog_snowflake_en', 'ctlg_pic_snowflake_pilot', '', '¡La navidad LLego a Haddoz nuevamente!\r\n', '', 'Click a un Furni para más información', ''),
(501, 192, 'Año Nuevo 11!', 1, 91, '1', '1', 1, '0', 1, 'default_3x3', 'catalog_frontpage_headline2_en', 'catalog_limited_teaser_en', '', 'Demosle la Bienvenida al Año Nuevo en Haddoz con estos furnis!!!', '', 'Click a un Furni para más información\r\n', ''),
(502, 3, 'Africa', 1, 30, '1', '1', 1, '0', 1, 'default_3x3', 'La nueva gama de muebles de África ya está aquí!!', '', '', 'La nueva gama de muebles de África ya está aquí!', '', '', ''),
(504, 192, 'Hielo!!', 1, 13, '1', '1', 1, '0', 3, 'default_3x3', 'arctic', ' ', ' ', 'Coming Soon', ' ', 'Coming Soon', ' '),
(505, -1, 'Pascua', 1, 107, '1', '0', 1, '0', 4, 'default_3x3', '', '', '', '', '', '', ''),
(506, 505, 'Pollito', 1, 107, '1', '1', 1, '0', 1, 'pets', 'catalog_pet_headline1', '', '', 'En haddo hotel nos propusimos hacer unas mascotas que a todos les encantaran y aquí están! los pollitos :D! ¡Disfrútalos mucho antes de que se te escapen!', '', 'Nombra tu pollo:', ''),
(507, 505, 'Conejo Veloz', 1, 108, '1', '1', 1, '0', 2, 'default_3x3', 'catalog_easter_headline1_es', 'bunnyrun_teaser', '', '¿Estás listo para el juego que transcurre a mayor velocidad en Haddo? Coloca todos los Céspedes para Conejos que quieras y, al menos, una Luz para conejos sobre ellos para iniciar la partida.', '', '', ''),
(508, 192, 'Kurna', 1, 44, '1', '1', 1, '0', 4, 'default_3x3', 'catalog_kuurna_headline_en', 'ctlg_kuurna_teaser', '', 'Emplea tus créditos que hayas ganado para hacerte con unos Muebles cuyo diseño es de los que te quitan el hipo. Mira, mira...', '', '', ''),
(509, -1, 'Anna', 8, 104, '1', '1', 1, '0', 5, 'default_3x3', 'catalog_anna_header', 'catalog_anna_teaser', 'catalog_special_txtbg2', 'Decora con estilo tus Salas gracias alos Furnis que puedes encontrar en esta sección.', '', '¡Que esperas hazte con uno!', 'Estos furnis son los mejores!'),
(800, 192, 'Bling & Valentin', 1, 93, '1', '1', 1, '0', 5, 'default_3x3', 'catalog_header_bling_en', 'catalog_teaser_valquest', '', 'El amor se siente por los aires de Habbo. Hazte con algún furni para demostrar que tu tambien amas.', '', 'Click en un ITEM para más información.', ''),
(803, 192, 'Limosina', 4, 64, '1', '1', 1, '0', 4, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Viaja de lo más chic. Crea tu propia limosina.', '', 'Click en un item para más información', ''),
(900, 192, 'Habbo Wood', 8, 33, '1', '1', 1, '0', 4, 'default_3x3', 'catalog_header_hw', 'catalog_wood_teaser', '', '¡HabboWood 2011 ya está en Habbo! Consigue estos increibles Furni por precios increibles.', '', 'Click en un item para más información', ''),
(513, 3, 'Picnic', 1, 1, '1', '1', 1, '0', 1, 'default_3x3', '', '', '', '', '', '', ''),
(720, 14, 'Dragones', 1, 109, '1', '1', 1, '0', -13, 'pets', 'catalog_pet_headline1_es', '', '', '¡La nueva mascota dragón ya está aquí! Mas rapidos que cualquier otro hotel, les traemos a ustedes la nueva mascota que hara arder tus salas. Habbo Fantsy Hotel (HUH.SYTES.NET)', '', '', ''),
(1188, 3, 'Furnis Calabozos', 1, 113, '1', '1', 1, '0', 1, 'default_3x3', 'catalog_pet_headline1', 'catalog_asian_teaser1', '', 'Bij een draak heb je natuurlijk ook wat extras nodig zoals eten, een slaapplek, een speelplek, en een beetje een landschap voor je kamer.', '', 'Klik op een item voor meer informatie.', ''),
(8765, -1, 'Habbo Beach Store', 1, 59, '1', '1', 1, '0', 1, 'default_3x3', 'head_shop', 'teas_shop', '', 'Furnis verano', '', '', ''),
(514, 3, 'Kung FU Panda 2', 1, 1, '1', '1', 1, '0', 1, 'default_3x3', '', '', '', '', '', '', ''),
(1042, 3, 'Black Hole', 8, 125, '1', '1', 0, '0', 40, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(179, 14, 'Tortuga', 1, 126, '1', '1', 1, '0', 3, 'pets', 'catalog_pet_headline1', '', '', 'Por muy aburrida que parezca, para nada lo es, diviertete con ella en la playa!', '', 'Nombra tu tortuga:', 'Escoge un color:'),
(180, 14, 'Mono', 1, 128, '1', '1', 1, '0', 1, 'pets', 'catalog_pet_headline1', ' ', ' ', ' ', ' ', 'Dale un Nombre:', 'Escoge un color: '),
(98, 3, 'Durex (Nuevo)', 1, 115, '1', '1', 1, '0', 94, 'default_3x3', 'catalog_spe_headline1_es', 'catalog_limited_teaser1', '', 'Maxima duracion, placer y proteccion total con Durex', '', 'Clic para mas información de los furnis', ''),
(195, 3, 'Studio MTV', 1, 33, '1', '1', 1, '0', 195, 'default_3x3', 'vignette_navigateur_01', 'mtv-1', '', 'Studio MTV ha llegado con los mejores equipos en diseño de furnis para decorar tu sala como un Estudio de Television', '', 'Clic para mas información de los furnis', ''),
(191, 3, 'Bananas', 1, 128, '1', '1', 1, '0', 191, 'default_3x3', 'catalog_spe_headline1_es', 'catalog_banana_header', '', 'Furni Banana, consiguelos antes que un mono se los robe xD', '', 'Clic para mas información de los furnis', ''),
(190, 3, 'Coco (Nuevo)', 1, 127, '1', '1', 1, '0', 6, 'default_3x3', 'catalog_frontpage_headline2_en', 'catalog_limited_teaser_en', '', '¡Llegaron los Furni Coco! Consiguelos por estos increibles precios ;)', '', '', ''),
(1009, 14, 'Monkey', 1, 129, '1', '1', 1, '0', 0, 'pets', '', '', '', '', '', 'Give a name:Pick a color:Pick a race', ''),
(1010, 14, 'Turttle', 1, 1, '1', '1', 1, '0', 0, 'pets', 'catalog_pet_headline1', '', '', 'Rawr', '', 'Give a name:Pick a color:Pick a race:', '');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `chatlogs`
--

CREATE TABLE IF NOT EXISTS `chatlogs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `room_id` int(10) unsigned NOT NULL,
  `hour` int(11) NOT NULL,
  `minute` int(11) NOT NULL,
  `full_date` varchar(120) NOT NULL,
  `timestamp` double NOT NULL,
  `message` text NOT NULL,
  `user_name` varchar(100) NOT NULL DEFAULT 'Unknown User',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`,`room_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=115 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `club_gifts`
--

CREATE TABLE IF NOT EXISTS `club_gifts` (
  `id` int(255) NOT NULL AUTO_INCREMENT,
  `name` text NOT NULL,
  `type` enum('s','i') NOT NULL,
  `spriteid` int(255) NOT NULL,
  `is_vip` enum('0','1') NOT NULL DEFAULT '0',
  `days` int(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ;

--
-- Gegevens worden uitgevoerd voor tabel `club_gifts`
--

INSERT INTO `club_gifts` (`id`, `name`, `type`, `spriteid`, `is_vip`, `days`) VALUES
(1, 'hc2_sofa', 's', 3452, '0', 1),
(2, 'hc3_sofa', 's', 3441, '1', 1),
(3, 'hc2_sofatbl', 's', 3434, '0', 32),
(4, 'hc3_table', 's', 3466, '1', 32),
(5, 'hc2_biglamp', 's', 3446, '0', 63),
(6, 'hc3_bard', 's', 3445, '1', 63),
(7, 'hc2_cart', 's', 3430, '0', 94),
(8, 'hc3_light', 's', 3465, '1', 94),
(9, 'hc2_vase', 's', 3428, '0', 125),
(10, 'hc3_dc', 's', 3461, '1', 125),
(11, 'hc2_divider', 's', 3449, '0', 156),
(12, 'hc3_shelf', 's', 3438, '1', 156),
(13, 'hc2_carpet', 's', 3440, '0', 187),
(14, 'hc3_stool', 's', 3448, '1', 187),
(15, 'hc2_dvn', 's', 3459, '0', 218),
(16, 'hc3_divider', 's', 3431, '1', 218),
(17, 'hc2_coffee', 's', 3450, '0', 249),
(18, 'hc3_hugelamp', 's', 3447, '1', 249),
(19, 'hc2_frplc', 's', 3458, '0', 280),
(20, 'hc3_walldeco', 'i', 4329, '1', 280),
(21, 'hc2_barchair', 's', 3439, '0', 311),
(22, 'hc3_stereo', 's', 3470, '1', 311),
(23, 'hc2_armchair', 's', 3436, '0', 342),
(24, 'hc3_vase', 's', 3479, '1', 342);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `credit_vouchers`
--

CREATE TABLE IF NOT EXISTS `credit_vouchers` (
  `code` varchar(50) NOT NULL,
  `value` int(11) NOT NULL DEFAULT '0',
  KEY `code` (`code`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `ecotron_rewards`
--

CREATE TABLE IF NOT EXISTS `ecotron_rewards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `display_id` int(10) unsigned NOT NULL,
  `item_id` int(10) unsigned NOT NULL,
  `reward_level` int(11) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=27 ;

--
-- Gegevens worden uitgevoerd voor tabel `ecotron_rewards`
--

INSERT INTO `ecotron_rewards` (`id`, `display_id`, `item_id`, `reward_level`) VALUES
(1, 2857, 1542, 5),
(2, 2862, 1547, 4),
(3, 2799, 1485, 3),
(4, 2802, 1487, 3),
(5, 2818, 1503, 3),
(6, 2797, 1483, 2),
(7, 2800, 1486, 2),
(8, 2816, 1501, 2),
(9, 2805, 1490, 1),
(10, 2808, 1493, 1),
(11, 2810, 1495, 1),
(12, 2796, 1482, 1),
(13, 2813, 1498, 1),
(14, 2819, 1504, 1),
(15, 2794, 1480, 2),
(16, 2809, 1494, 2),
(17, 2815, 1500, 2),
(18, 2793, 1479, 2),
(19, 2803, 1488, 2),
(20, 2820, 1505, 2),
(21, 4102, 1764, 2),
(22, 4104, 1766, 2),
(23, 4105, 1767, 2),
(24, 2795, 1481, 2),
(25, 2798, 1484, 2),
(26, 2814, 1499, 2);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `external_texts`
--

CREATE TABLE IF NOT EXISTS `external_texts` (
  `skey` text NOT NULL,
  `sval` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `external_texts`
--

INSERT INTO `external_texts` (`skey`, `sval`) VALUES
('badge_desc_MDMWW', 'I won the Uber Home Exhibition competition!'),
('badge_name_ADM', 'Uber Staff'),
('badge_name_MDMWW', 'Home Exhibition'),
('badge_desc_ADM', 'I''m a staff member here, at Uber.'),
('badge_name_CAA', 'Trial Moderator'),
('badge_desc_CAA', 'I am a new Moderator being trialed at Uber.'),
('badge_name_WHY', '...'),
('badge_desc_WHY', 'What?'),
('badge_name_Z63', 'BETA Lab Rat'),
('badge_desc_Z63', 'I helped test the new Uber.'),
('badge_name_BOT', 'Uber Bot'),
('badge_desc_BOT', 'I''m an automated worker at uberHotel.'),
('navigator.roomsettings.deleteroom.confirm.message', 'Are you sure you want to delete %room_name%? YOU WILL LOSE ALL YOUR FURNITURE!'),
('badge_name_HUG', 'Hug me'),
('badge_desc_HUG', '<3'),
('badge_name_HC1', 'Uber Club Member'),
('badge_desc_HC1', 'A member of the exclusive Uber Club.');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `external_variables`
--

CREATE TABLE IF NOT EXISTS `external_variables` (
  `skey` text NOT NULL,
  `sval` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `external_variables`
--

INSERT INTO `external_variables` (`skey`, `sval`) VALUES
('client.fatal.error.url', '%www%/account/disconnected?source=client_error'),
('habboinfotool.url', '%www%/manage/index.php?_cmd=userinfo&searchParam='),
('wordfilter.url', '%www%/manage/index.php?_cmd=wordfilter'),
('roomadmin.url', '%www%/manage/index.php?_cmd=roomadmin&searchParam='),
('link.format.habboclub', '%www%/credits/uberclub'),
('logout.disconnect.url', '%www%/account/disconnected?reason=disconnected&origin=%origin%'),
('logout.url', '%www%/account/logout'),
('moderatoractionlog.url', '%www%/manage/index.php?_cmd=actionlog&searchParam='),
('moderator.cmds', '[":alert x",":ban x",":kick x",":superban x",":shutup x",":unmute x",":transfer x",":softkick x"]'),
('interstitial.max.displays', '9999999'),
('interstitial.interval', '30'),
('interstitial.show.time', '3000');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `furniture`
--

CREATE TABLE IF NOT EXISTS `furniture` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `public_name` text NOT NULL COMMENT 'temp only',
  `item_name` varchar(100) NOT NULL,
  `type` enum('s','i','e','h','v') NOT NULL DEFAULT 's',
  `width` int(11) NOT NULL DEFAULT '1',
  `length` int(11) NOT NULL DEFAULT '1',
  `stack_height` double NOT NULL DEFAULT '1',
  `can_stack` enum('0','1') NOT NULL DEFAULT '1',
  `can_sit` enum('0','1') NOT NULL DEFAULT '0',
  `is_walkable` enum('0','1') NOT NULL DEFAULT '0',
  `sprite_id` int(11) NOT NULL,
  `allow_recycle` enum('0','1') NOT NULL DEFAULT '1',
  `allow_trade` enum('0','1') NOT NULL DEFAULT '1',
  `allow_marketplace_sell` enum('0','1') NOT NULL DEFAULT '1',
  `allow_gift` enum('0','1') NOT NULL DEFAULT '1',
  `allow_inventory_stack` enum('0','1') NOT NULL DEFAULT '1',
  `interaction_type` enum('default','gate','postit','roomeffect','dimmer','trophy','bed','scoreboard','vendingmachine','alert','onewaygate','loveshuffler','habbowheel','dice','bottle','teleport','rentals','pet','roller','ball') DEFAULT 'default',
  `interaction_modes_count` int(11) NOT NULL DEFAULT '1',
  `vending_ids` varchar(100) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=9037534 ;

--
-- Gegevens worden uitgevoerd voor tabel `furniture`
--

INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(1, 'Bookcase', 'shelves_norja', 's', 1, 1, 1, '0', '0', '0', 13, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2, 'Bookcase', 'shelves_polyfon', 's', 2, 1, 1, '0', '0', '0', 14, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3, 'Bookcase', 'shelves_silo', 's', 2, 1, 1, '0', '0', '0', 15, '1', '1', '1', '1', '1', 'default', 1, '0'),
(4, 'Small Coffee Table', 'table_polyfon_small', 's', 2, 2, 1, '0', '0', '0', 17, '1', '1', '1', '1', '1', 'default', 1, '0'),
(5, 'Dining Chair', 'chair_polyfon', 's', 1, 1, 1, '0', '1', '0', 18, '1', '1', '1', '1', '1', 'default', 1, '0'),
(6, 'Coffee Table', 'table_norja_med', 's', 2, 2, 1, '1', '0', '0', 20, '1', '1', '1', '1', '1', 'default', 1, '0'),
(7, 'Coffee Table', 'table_silo_med', 's', 2, 2, 1, '1', '0', '0', 21, '1', '1', '1', '1', '1', 'default', 1, '0'),
(8, 'Occasional Table', 'table_plasto_4leg', 's', 2, 2, 1, '1', '0', '0', 22, '1', '1', '1', '1', '1', 'default', 1, '0'),
(9, 'Round Dining Table', 'table_plasto_round', 's', 2, 2, 1, '1', '0', '0', 23, '1', '1', '1', '1', '1', 'default', 1, '0'),
(10, 'Square Dining Table', 'table_plasto_bigsquare', 's', 2, 2, 1, '1', '0', '0', 24, '1', '1', '1', '1', '1', 'default', 1, '0'),
(11, 'Shelf', 'stand_polyfon_z', 's', 1, 1, 0.5, '1', '0', '0', 25, '1', '1', '1', '1', '1', 'default', 1, '0'),
(12, 'Dining Chair', 'chair_silo', 's', 1, 1, 1.1, '0', '1', '0', 26, '1', '1', '1', '1', '1', 'default', 1, '0'),
(13, 'Cushioned', 'sofa_silo', 's', 2, 1, 1.1, '0', '1', '0', 28, '1', '1', '1', '1', '1', 'default', 1, '0'),
(14, 'Bench', 'couch_norja', 's', 2, 1, 1, '0', '1', '0', 29, '1', '1', '1', '1', '1', 'default', 1, '0'),
(15, 'Chair', 'chair_norja', 's', 1, 1, 1, '0', '1', '0', 30, '1', '1', '1', '1', '1', 'default', 1, '0'),
(16, 'Large Coffee Table', 'table_polyfon_med', 's', 2, 2, 1, '1', '0', '0', 31, '1', '1', '1', '1', '1', 'default', 1, '0'),
(17, 'Doormat', 'doormat_love', 's', 1, 1, 0.1, '0', '0', '1', 32, '1', '1', '1', '1', '1', 'default', 1, '0'),
(18, 'Doormat', 'doormat_plain', 's', 1, 1, 0.1, '0', '0', '1', 33, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19, 'Armchair', 'sofachair_polyfon', 's', 1, 1, 1.1, '0', '1', '0', 34, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20, 'Two-seater Sofa', 'sofa_polyfon', 's', 2, 1, 1.1, '0', '1', '0', 35, '1', '1', '1', '1', '1', 'default', 1, '0'),
(21, 'Large', 'sofachair_silo', 's', 1, 1, 1.1, '0', '1', '0', 36, '1', '1', '1', '1', '1', 'default', 1, '0'),
(22, 'Plastic Pod Chair', 'chair_plasty', 's', 1, 1, 1, '0', '1', '0', 38, '1', '1', '1', '1', '1', 'default', 1, '0'),
(23, 'Chair', 'chair_plasto', 's', 1, 1, 1, '0', '1', '0', 39, '1', '1', '1', '1', '1', 'default', 1, '0'),
(24, 'Occasional Table', 'table_plasto_square', 's', 1, 1, 1, '1', '0', '0', 40, '1', '1', '1', '1', '1', 'default', 1, '0'),
(25, 'Double Bed', 'bed_polyfon', 's', 2, 3, 1.8, '0', '0', '0', 41, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(26, 'Single Bed', 'bed_polyfon_one', 's', 1, 3, 1.8, '0', '0', '0', 42, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(27, 'Plain Single Bed', 'bed_trad_one', 's', 2, 3, 1, '0', '0', '0', 43, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(28, 'Plain Double Bed', 'bed_trad', 's', 2, 3, 1, '0', '0', '0', 44, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(29, 'Single Bed', 'bed_silo_one', 's', 1, 3, 1.8, '0', '0', '0', 45, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(30, 'Double Bed', 'bed_silo_two', 's', 2, 3, 1.8, '0', '0', '0', 46, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(31, 'Occasional Table', 'table_silo_small', 's', 1, 1, 1, '1', '0', '0', 47, '1', '1', '1', '1', '1', 'default', 1, '0'),
(32, 'Double Bed', 'bed_armas_two', 's', 2, 3, 1.8, '0', '0', '0', 48, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(33, 'bed_budget_one', 'bed_budget_one', 's', 1, 3, 1.9, '0', '0', '0', 49, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(34, 'Comfortable', 'bed_budget', 's', 2, 3, 1.9, '0', '0', '0', 50, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(35, 'Bookcase', 'shelves_armas', 's', 2, 1, 1, '0', '0', '0', 51, '1', '1', '1', '1', '1', 'default', 1, '0'),
(36, 'Bench', 'bench_armas', 's', 2, 1, 1.1, '0', '1', '0', 52, '1', '1', '1', '1', '1', 'default', 1, '0'),
(37, 'Dining Table', 'table_armas', 's', 2, 2, 1, '1', '0', '0', 53, '1', '1', '1', '1', '1', 'default', 1, '0'),
(38, 'Occasional Table', 'small_table_armas', 's', 1, 1, 1, '1', '0', '0', 54, '1', '1', '1', '1', '1', 'default', 1, '0'),
(39, 'Stool', 'small_chair_armas', 's', 1, 1, 1, '0', '1', '0', 55, '1', '1', '1', '1', '1', 'default', 1, '0'),
(40, 'Authentic', 'fireplace_armas', 's', 2, 1, 1, '0', '0', '0', 56, '1', '1', '1', '1', '1', 'default', 2, '0'),
(41, 'Table Lamp', 'lamp_armas', 's', 1, 1, 1, '0', '0', '0', 57, '1', '1', '1', '1', '1', 'default', 2, '0'),
(42, 'Single Bed', 'bed_armas_one', 's', 1, 3, 1.8, '0', '0', '0', 58, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(43, 'Floor rug', 'carpet_standard', 's', 3, 5, 0, '1', '0', '1', 59, '1', '1', '1', '1', '1', 'default', 1, '0'),
(44, 'Hand-Woven Rug', 'carpet_armas', 's', 2, 4, 0, '1', '0', '1', 60, '1', '1', '1', '1', '1', 'default', 1, '0'),
(45, 'Faux-Fur Bear Rug', 'carpet_polar', 's', 2, 3, 0, '1', '0', '1', 61, '1', '1', '1', '1', '1', 'default', 1, '0'),
(46, 'Fireplace', 'fireplace_polyfon', 's', 2, 1, 1, '0', '0', '0', 62, '1', '1', '1', '1', '1', 'default', 2, '0'),
(47, 'Square Dining Table', 'table_plasto_4leg*1', 's', 2, 2, 1, '1', '0', '0', 63, '1', '1', '1', '1', '1', 'default', 1, '0'),
(48, 'Square Dining Table', 'table_plasto_bigsquare*1', 's', 2, 2, 1, '1', '0', '0', 64, '1', '1', '1', '1', '1', 'default', 1, '0'),
(49, 'Round Dining Table', 'table_plasto_round*1', 's', 2, 2, 1, '1', '0', '0', 65, '1', '1', '1', '1', '1', 'default', 1, '0'),
(50, 'Occasional Table', 'table_plasto_square*1', 's', 1, 1, 1, '1', '0', '0', 66, '1', '1', '1', '1', '1', 'default', 1, '0'),
(51, 'Chair', 'chair_plasto*1', 's', 1, 1, 1, '0', '1', '0', 67, '1', '1', '1', '1', '1', 'default', 1, '0'),
(52, 'Floor Rug', 'carpet_standard*1', 's', 3, 5, 0, '1', '0', '1', 68, '1', '1', '1', '1', '1', 'default', 1, '0'),
(53, 'Doormat', 'doormat_plain*1', 's', 1, 1, 0.1, '0', '0', '1', 69, '1', '1', '1', '1', '1', 'default', 1, '0'),
(54, 'Occasional Table', 'table_plasto_4leg*2', 's', 2, 2, 1, '1', '0', '0', 70, '1', '1', '1', '1', '1', 'default', 1, '0'),
(55, 'Square Dining Table', 'table_plasto_bigsquare*2', 's', 2, 2, 1, '1', '0', '0', 71, '1', '1', '1', '1', '1', 'default', 1, '0'),
(56, 'Round Dining Table', 'table_plasto_round*2', 's', 2, 2, 1, '1', '0', '0', 72, '1', '1', '1', '1', '1', 'default', 1, '0'),
(57, 'Round Dining Table', 'table_plasto_square*2', 's', 1, 1, 1, '1', '0', '0', 73, '1', '1', '1', '1', '1', 'default', 1, '0'),
(58, 'Chair', 'chair_plasto*2', 's', 1, 1, 1, '0', '1', '0', 74, '1', '1', '1', '1', '1', 'default', 1, '0'),
(59, 'Doormat', 'doormat_plain*2', 's', 1, 1, 0.1, '0', '0', '1', 75, '1', '1', '1', '1', '1', 'default', 1, '0'),
(60, 'Floor Rug', 'carpet_standard*2', 's', 3, 5, 0, '1', '0', '1', 76, '1', '1', '1', '1', '1', 'default', 1, '0'),
(61, 'Round Dining Table', 'table_plasto_4leg*3', 's', 2, 2, 1, '1', '0', '0', 77, '1', '1', '1', '1', '1', 'default', 1, '0'),
(62, 'Square Dining Table', 'table_plasto_bigsquare*3', 's', 2, 2, 1, '1', '0', '0', 78, '1', '1', '1', '1', '1', 'default', 1, '0'),
(63, 'Round Dining Table', 'table_plasto_round*3', 's', 2, 2, 1, '1', '0', '0', 79, '1', '1', '1', '1', '1', 'default', 1, '0'),
(64, 'Square Dining Table', 'table_plasto_square*3', 's', 1, 1, 1, '1', '0', '0', 80, '1', '1', '1', '1', '1', 'default', 1, '0'),
(65, 'Chair', 'chair_plasto*3', 's', 1, 1, 1, '0', '1', '0', 81, '1', '1', '1', '1', '1', 'default', 1, '0'),
(66, 'Floor Rug', 'carpet_standard*3', 's', 3, 5, 0, '1', '0', '1', 82, '1', '1', '1', '1', '1', 'default', 1, '0'),
(67, 'Doormat', 'doormat_plain*3', 's', 1, 1, 0.1, '0', '0', '1', 83, '1', '1', '1', '1', '1', 'default', 1, '0'),
(68, 'Square Dining Table', 'table_plasto_4leg*4', 's', 2, 2, 1, '1', '0', '0', 84, '1', '1', '1', '1', '1', 'default', 1, '0'),
(71, 'Square Dining Table', 'table_plasto_square*4', 's', 1, 1, 1, '1', '0', '0', 87, '1', '1', '1', '1', '1', 'default', 1, '0'),
(72, 'Chair', 'chair_plasto*4', 's', 1, 1, 1, '0', '1', '0', 88, '1', '1', '1', '1', '1', 'default', 1, '0'),
(73, 'Floor Rug', 'carpet_standard*4', 's', 3, 5, 0, '1', '0', '1', 89, '1', '1', '1', '1', '1', 'default', 1, '0'),
(74, 'Doormat', 'doormat_plain*4', 's', 1, 1, 0.1, '0', '0', '1', 90, '1', '1', '1', '1', '1', 'default', 1, '0'),
(75, 'Doormat', 'doormat_plain*6', 's', 1, 1, 0.1, '0', '0', '1', 91, '1', '1', '1', '1', '1', 'default', 1, '0'),
(76, 'Doormat', 'doormat_plain*5', 's', 1, 1, 0.1, '0', '0', '1', 93, '1', '1', '1', '1', '1', 'default', 1, '0'),
(77, 'Floor Rug', 'carpet_standard*5', 's', 3, 5, 0, '1', '0', '1', 94, '1', '1', '1', '1', '1', 'default', 1, '0'),
(78, 'Occasional Table', 'table_plasto_4leg*5', 's', 2, 2, 1, '1', '0', '0', 95, '1', '1', '1', '1', '1', 'default', 1, '0'),
(79, 'Square Dining Table', 'table_plasto_bigsquare*5', 's', 2, 2, 1, '1', '0', '0', 96, '1', '1', '1', '1', '1', 'default', 1, '0'),
(80, 'Round Dining Table', 'table_plasto_round*5', 's', 2, 2, 1, '1', '0', '0', 97, '1', '1', '1', '1', '1', 'default', 1, '0'),
(81, 'Square Dining Table', 'table_plasto_square*5', 's', 1, 1, 1, '1', '0', '0', 98, '1', '1', '1', '1', '1', 'default', 1, '0'),
(82, 'Chair', 'chair_plasto*5', 's', 1, 1, 1, '0', '1', '0', 99, '1', '1', '1', '1', '1', 'default', 1, '0'),
(83, 'Occasional table Table', 'table_plasto_4leg*6', 's', 2, 2, 1, '1', '0', '0', 100, '1', '1', '1', '1', '1', 'default', 1, '0'),
(84, 'Square Dining Table', 'table_plasto_bigsquare*6', 's', 2, 2, 1, '1', '0', '0', 101, '1', '1', '1', '1', '1', 'default', 1, '0'),
(85, 'Round Dining Table', 'table_plasto_round*6', 's', 2, 2, 1, '1', '0', '0', 102, '1', '1', '1', '1', '1', 'default', 1, '0'),
(86, 'Square Dining Table', 'table_plasto_square*6', 's', 1, 1, 1, '1', '0', '0', 103, '1', '1', '1', '1', '1', 'default', 1, '0'),
(87, 'Chair', 'chair_plasto*6', 's', 1, 1, 1, '0', '1', '0', 104, '1', '1', '1', '1', '1', 'default', 1, '0'),
(88, 'Occasional table', 'table_plasto_4leg*7', 's', 2, 2, 1, '1', '0', '0', 105, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89, 'Square Dining Table', 'table_plasto_bigsquare*7', 's', 2, 2, 1, '1', '0', '0', 106, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90, 'Round Dining Table', 'table_plasto_round*7', 's', 2, 2, 1, '1', '0', '0', 107, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91, 'Square Dining Table', 'table_plasto_square*7', 's', 1, 1, 1, '1', '0', '0', 108, '1', '1', '1', '1', '1', 'default', 1, '0'),
(92, 'Chair', 'chair_plasto*7', 's', 1, 1, 1, '0', '1', '0', 109, '1', '1', '1', '1', '1', 'default', 1, '0'),
(93, 'Occasional Table', 'table_plasto_4leg*8', 's', 2, 2, 1, '1', '0', '0', 110, '1', '1', '1', '1', '1', 'default', 1, '0'),
(94, 'Square Dining Table', 'table_plasto_bigsquare*8', 's', 2, 2, 1, '1', '0', '0', 111, '1', '1', '1', '1', '1', 'default', 1, '0'),
(95, 'Round Dining Table', 'table_plasto_round*8', 's', 2, 2, 1, '1', '0', '0', 112, '1', '1', '1', '1', '1', 'default', 1, '0'),
(96, 'Square Dining Table', 'table_plasto_square*8', 's', 1, 1, 1, '1', '0', '0', 113, '1', '1', '1', '1', '1', 'default', 1, '0'),
(97, 'Chair', 'chair_plasto*8', 's', 1, 1, 1, '0', '1', '0', 114, '1', '1', '1', '1', '1', 'default', 1, '0'),
(98, 'Occasional Table', 'table_plasto_4leg*9', 's', 2, 2, 1, '1', '0', '0', 115, '1', '1', '1', '1', '1', 'default', 1, '0'),
(99, 'Square Dining Table', 'table_plasto_bigsquare*9', 's', 2, 2, 1, '1', '0', '0', 116, '1', '1', '1', '1', '1', 'default', 1, '0'),
(100, 'Square Dining Table', 'table_plasto_round*9', 's', 2, 2, 1, '1', '0', '0', 117, '1', '1', '1', '1', '1', 'default', 1, '0'),
(101, 'Chair', 'chair_plasto*9', 's', 1, 1, 1, '0', '1', '0', 119, '1', '1', '1', '1', '1', 'default', 1, '0'),
(102, 'Floor Rug', 'carpet_standard*6', 's', 3, 5, 0, '1', '0', '1', 120, '1', '1', '1', '1', '1', 'default', 1, '0'),
(103, 'Plastic Pod Chair', 'chair_plasty*1', 's', 1, 1, 1, '0', '1', '0', 121, '1', '1', '1', '1', '1', 'default', 1, '0'),
(104, 'Pizza Box', 'pizza', 's', 1, 1, 1, '0', '0', '0', 122, '1', '1', '1', '1', '1', 'default', 1, '0'),
(105, 'Empty Cans', 'drinks', 's', 1, 1, 1, '0', '0', '0', 123, '1', '1', '1', '1', '1', 'default', 1, '0'),
(106, 'Plastic Pod Chair', 'chair_plasty*2', 's', 1, 1, 1, '0', '1', '0', 124, '1', '1', '1', '1', '1', 'default', 1, '0'),
(107, 'Plastic Pod Chair', 'chair_plasty*3', 's', 1, 1, 1, '0', '1', '0', 125, '1', '1', '1', '1', '1', 'default', 1, '0'),
(108, 'Plastic Pod Chair', 'chair_plasty*4', 's', 1, 1, 1, '0', '1', '0', 126, '1', '1', '1', '1', '1', 'default', 1, '0'),
(109, 'Mini-Bar', 'bar_polyfon', 's', 1, 1, 1, '0', '0', '0', 127, '1', '1', '1', '1', '1', 'vendingmachine', 0, '6,5,2,1'),
(110, 'Aloe Vera', 'plant_cruddy', 's', 1, 1, 1, '0', '0', '0', 128, '1', '1', '1', '1', '1', 'default', 1, '0'),
(111, 'Empty Spinning Bottle', 'bottle', 's', 1, 1, 1, '0', '0', '0', 129, '1', '1', '1', '1', '1', 'bottle', 0, '0'),
(112, 'Bar/desk', 'bardesk_polyfon', 's', 2, 1, 1, '1', '0', '0', 130, '1', '1', '1', '1', '1', 'default', 1, '0'),
(113, 'Corner Cabinet/Desk', 'bardeskcorner_polyfon', 's', 1, 1, 1, '1', '0', '0', 131, '1', '1', '1', '1', '1', 'default', 1, '0'),
(115, 'Barrel Minibar', 'bar_armas', 's', 1, 1, 1, '0', '0', '0', 133, '1', '1', '1', '1', '1', 'vendingmachine', 0, '6,2,1'),
(116, 'Bardesk', 'bartable_armas', 's', 1, 3, 1.2, '1', '0', '0', 134, '1', '1', '1', '1', '1', 'default', 1, '0'),
(117, 'Barrel Stool', 'bar_chair_armas', 's', 1, 1, 1.2, '0', '1', '0', 135, '1', '1', '1', '1', '1', 'default', 1, '0'),
(118, 'Soft Wool Rug', 'carpet_soft', 's', 2, 4, 0, '1', '0', '1', 136, '1', '1', '1', '1', '1', 'default', 1, '0'),
(119, 'Soft Wool Rug', 'carpet_soft*1', 's', 2, 4, 0, '1', '0', '1', 137, '1', '1', '1', '1', '1', 'default', 1, '0'),
(120, 'Soft Wool Rug', 'carpet_soft*2', 's', 2, 4, 0, '1', '0', '1', 138, '1', '1', '1', '1', '1', 'default', 1, '0'),
(121, 'Soft Wool Rug', 'carpet_soft*3', 's', 2, 4, 0, '1', '0', '1', 139, '1', '1', '1', '1', '1', 'default', 1, '0'),
(122, 'Soft Wool Rug', 'carpet_soft*4', 's', 2, 4, 0, '1', '0', '1', 140, '1', '1', '1', '1', '1', 'default', 1, '0'),
(123, 'Soft Wool Rug', 'carpet_soft*5', 's', 2, 4, 0, '1', '0', '1', 141, '1', '1', '1', '1', '1', 'default', 1, '0'),
(124, 'Soft Wool Rug', 'carpet_soft*6', 's', 2, 4, 0, '1', '0', '1', 143, '1', '1', '1', '1', '1', 'default', 1, '0'),
(125, 'Portable TV', 'red_tv', 's', 1, 1, 1, '0', '0', '0', 144, '1', '1', '1', '1', '1', 'default', 2, '0'),
(126, 'Large TV', 'wood_tv', 's', 1, 2, 1, '0', '0', '0', 145, '1', '1', '1', '1', '1', 'default', 4, '0'),
(127, 'Pink Faux-Fur Bear Rug', 'carpet_polar*1', 's', 2, 3, 0, '1', '0', '1', 146, '1', '1', '1', '1', '1', 'default', 1, '0'),
(128, 'Plastic Pod Chair', 'chair_plasty*5', 's', 1, 1, 1, '0', '1', '0', 147, '1', '1', '1', '1', '1', 'default', 1, '0'),
(129, 'Blue Bear Rug', 'carpet_polar*2', 's', 2, 3, 0, '1', '0', '1', 148, '1', '1', '1', '1', '1', 'default', 1, '0'),
(130, 'Yellow Bear Rug', 'carpet_polar*3', 's', 2, 3, 0, '1', '0', '1', 149, '1', '1', '1', '1', '1', 'default', 1, '0'),
(131, 'Green Bear Rug', 'carpet_polar*4', 's', 2, 3, 0, '1', '0', '1', 150, '1', '1', '1', '1', '1', 'default', 1, '0'),
(132, 'Plastic Pod Chair', 'chair_plasty*6', 's', 1, 1, 1, '0', '1', '0', 151, '1', '1', '1', '1', '1', 'default', 1, '0'),
(133, 'Large Coffee Table', 'table_polyfon', 's', 2, 2, 1, '1', '0', '0', 152, '1', '1', '1', '1', '1', 'default', 1, '0'),
(134, 'Large Dining Table', 'smooth_table_polyfon', 's', 2, 2, 1, '1', '0', '0', 153, '1', '1', '1', '1', '1', 'default', 1, '0'),
(135, 'Armchair', 'sofachair_polyfon_girl', 's', 1, 1, 1.1, '0', '1', '0', 154, '1', '1', '1', '1', '1', 'default', 1, '0'),
(136, 'Single Bed', 'bed_polyfon_girl_one', 's', 1, 3, 1.8, '0', '0', '0', 155, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(137, 'Double Bed', 'bed_polyfon_girl', 's', 2, 3, 1.8, '0', '0', '0', 156, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(138, 'Two-seater Sofa', 'sofa_polyfon_girl', 's', 2, 1, 1.1, '0', '1', '0', 157, '1', '1', '1', '1', '1', 'default', 1, '0'),
(139, 'Plain Single Bed', 'bed_budgetb_one', 's', 1, 3, 1.9, '0', '0', '0', 158, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(140, 'Plain Double Bed', 'bed_budgetb', 's', 2, 3, 1.9, '0', '0', '0', 159, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(141, 'Pineapple Plant', 'plant_pineapple', 's', 1, 1, 1, '0', '0', '0', 160, '1', '1', '1', '1', '1', 'default', 1, '0'),
(142, 'Fruit Tree', 'plant_fruittree', 's', 1, 1, 1, '0', '0', '0', 161, '1', '1', '1', '1', '1', 'default', 1, '0'),
(143, 'Small Cactus', 'plant_small_cactus', 's', 1, 1, 1, '0', '0', '0', 162, '1', '1', '1', '1', '1', 'default', 1, '0'),
(144, 'Bonsai Tree', 'plant_bonsai', 's', 1, 1, 1, '0', '0', '0', 163, '1', '1', '1', '1', '1', 'default', 1, '0'),
(145, 'Mature Cactus', 'plant_big_cactus', 's', 1, 1, 1, '0', '0', '0', 164, '1', '1', '1', '1', '1', 'default', 1, '0'),
(146, 'Yukka Plant', 'plant_yukka', 's', 1, 1, 1, '0', '0', '0', 165, '1', '1', '1', '1', '1', 'default', 1, '0'),
(147, 'Floor Rug', 'carpet_standard*7', 's', 3, 5, 0, '1', '0', '1', 166, '1', '1', '1', '1', '1', 'default', 1, '0'),
(148, 'Floor Rug', 'carpet_standard*8', 's', 3, 5, 0, '1', '0', '1', 167, '1', '1', '1', '1', '1', 'default', 1, '0'),
(149, 'Floor Rug', 'carpet_standard*9', 's', 3, 5, 0, '1', '0', '1', 168, '1', '1', '1', '1', '1', 'default', 1, '0'),
(150, 'Floor Rug', 'carpet_standard*10', 's', 3, 5, 0, '1', '0', '1', 169, '1', '1', '1', '1', '1', 'default', 1, '0'),
(151, 'Floor Rug', 'carpet_standard*11', 's', 3, 5, 0, '1', '0', '1', 170, '1', '1', '1', '1', '1', 'default', 1, '0'),
(152, 'Cut Sunflower', 'plant_sunflower', 's', 1, 1, 1, '0', '0', '0', 171, '1', '1', '1', '1', '1', 'default', 1, '0'),
(153, 'Cut Roses', 'plant_rose', 's', 1, 1, 1, '0', '0', '0', 172, '1', '1', '1', '1', '1', 'default', 1, '0'),
(154, 'Digital TV', 'tv_luxus', 's', 1, 3, 1, '0', '0', '0', 173, '1', '1', '1', '1', '1', 'default', 2, '0'),
(155, 'Bubble Bath', 'bath', 's', 1, 2, 1, '0', '1', '0', 174, '1', '1', '1', '1', '1', 'default', 2, '0'),
(156, 'Sink', 'sink', 's', 1, 1, 1, '0', '0', '0', 177, '1', '1', '1', '1', '1', 'vendingmachine', 0, '100'),
(157, 'Loo Seat', 'toilet', 's', 1, 1, 1.2, '0', '1', '0', 178, '1', '1', '1', '1', '1', 'default', 2, '0'),
(158, 'Rubber Duck', 'duck', 's', 1, 1, 1, '0', '0', '0', 179, '1', '1', '1', '1', '1', 'default', 1, '0'),
(159, 'Floor Tiles', 'tile', 's', 4, 4, 0, '1', '0', '1', 180, '1', '1', '1', '1', '1', 'default', 1, '0'),
(160, 'Loo Seat', 'toilet_red', 's', 1, 1, 1.2, '0', '1', '0', 181, '1', '1', '1', '1', '1', 'default', 2, '0'),
(161, 'Loo Seat', 'toilet_yell', 's', 1, 1, 1.2, '0', '1', '0', 182, '1', '1', '1', '1', '1', 'default', 2, '0'),
(162, 'Floor Tiles', 'tile_red', 's', 4, 4, 0, '1', '0', '1', 183, '1', '1', '1', '1', '1', 'default', 1, '0'),
(163, 'Floor Tiles', 'tile_yell', 's', 4, 4, 0, '1', '0', '1', 184, '1', '1', '1', '1', '1', 'default', 1, '0'),
(164, 'Gift', 'present_gen', 's', 1, 1, 1, '1', '0', '0', 187, '1', '0', '1', '1', '1', 'default', 1, '0'),
(165, 'Gift', 'present_gen1', 's', 1, 1, 1, '1', '0', '0', 188, '1', '0', '1', '1', '1', 'default', 1, '0'),
(166, 'Gift', 'present_gen2', 's', 1, 1, 1, '1', '0', '0', 189, '1', '0', '1', '1', '1', 'default', 1, '0'),
(167, 'Gift', 'present_gen3', 's', 1, 1, 1, '1', '0', '0', 190, '1', '0', '1', '1', '1', 'default', 1, '0'),
(168, 'Gift', 'present_gen4', 's', 1, 1, 1, '1', '0', '0', 191, '1', '0', '1', '1', '1', 'default', 1, '0'),
(169, 'Gift', 'present_gen5', 's', 1, 1, 1, '1', '0', '0', 192, '1', '0', '1', '1', '1', 'default', 1, '0'),
(170, 'Gift', 'present_gen6', 's', 1, 1, 1, '1', '0', '0', 193, '1', '0', '1', '1', '1', 'default', 1, '0'),
(171, 'A Pura Minibar', 'bar_basic', 's', 1, 1, 1, '0', '0', '0', 195, '1', '1', '1', '1', '1', 'vendingmachine', 0, '6,2,5,1'),
(172, 'Pura Shelves', 'shelves_basic', 's', 2, 1, 1, '0', '0', '0', 196, '1', '1', '1', '1', '1', 'default', 1, '0'),
(173, 'iced sofachair', 'soft_sofachair_norja', 's', 1, 1, 1, '0', '1', '0', 197, '1', '1', '1', '1', '1', 'default', 1, '0'),
(174, 'iced sofa', 'soft_sofa_norja', 's', 2, 1, 1, '0', '1', '0', 198, '1', '1', '1', '1', '1', 'default', 1, '0'),
(175, 'Pura Lamp', 'lamp_basic', 's', 1, 1, 1, '0', '0', '0', 199, '1', '1', '1', '1', '1', 'default', 2, '0'),
(176, 'Lodge Candle', 'lamp2_armas', 's', 1, 1, 1, '0', '0', '0', 200, '1', '1', '1', '1', '1', 'default', 2, '0'),
(177, 'Pura Refridgerator', 'fridge', 's', 1, 1, 1, '0', '0', '0', 201, '1', '1', '1', '1', '1', 'vendingmachine', 0, '3,5,6,2'),
(178, 'Telephone Box', 'door', 's', 1, 1, 0.001, '0', '0', '0', 202, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(179, 'Wardrobe', 'doorB', 's', 1, 1, 0.001, '0', '0', '0', 204, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(180, 'Portaloo', 'doorC', 's', 1, 1, 0.001, '0', '0', '0', 205, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(181, 'Pumpkin Lamp', 'pumpkin', 's', 1, 1, 1, '1', '0', '0', 206, '1', '1', '1', '1', '1', 'default', 2, '0'),
(182, 'Skull Candle Holder', 'skullcandle', 's', 1, 1, 1, '0', '0', '0', 207, '1', '1', '1', '1', '1', 'default', 2, '0'),
(183, 'Blood', 'deadduck', 's', 1, 1, 1, '0', '0', '0', 208, '1', '1', '1', '1', '1', 'default', 1, '0'),
(184, 'Dead Duck 2', 'deadduck2', 's', 1, 1, 1, '0', '0', '0', 209, '1', '1', '1', '1', '1', 'default', 1, '0'),
(185, 'Dead Duck 3', 'deadduck3', 's', 1, 1, 1, '0', '0', '0', 210, '1', '1', '1', '1', '1', 'default', 1, '0'),
(186, 'Menorah', 'menorah', 's', 1, 1, 1, '0', '0', '0', 211, '1', '1', '1', '1', '1', 'default', 2, '0'),
(187, 'Christmas Pudding', 'pudding', 's', 1, 1, 1, '1', '0', '0', 212, '1', '1', '1', '1', '1', 'default', 1, '0'),
(188, 'Joint of Ham', 'ham', 's', 1, 1, 1, '0', '0', '0', 213, '1', '1', '1', '1', '1', 'default', 1, '0'),
(189, 'Roast Turkey', 'turkey', 's', 1, 1, 1, '0', '0', '0', 214, '1', '1', '1', '1', '1', 'default', 1, '0'),
(190, 'Christmas Rubber Duck', 'xmasduck', 's', 1, 1, 1, '1', '0', '0', 215, '1', '1', '1', '1', '1', 'default', 1, '0'),
(191, 'Gingerbread House', 'house', 's', 1, 1, 1, '0', '0', '0', 216, '1', '1', '1', '1', '1', 'default', 1, '0'),
(192, 'Electric Candles', 'triplecandle', 's', 1, 1, 1, '0', '0', '0', 217, '1', '1', '1', '1', '1', 'default', 2, '0'),
(193, 'Christmas Tree 1', 'tree3', 's', 1, 1, 1, '0', '0', '0', 218, '1', '1', '1', '1', '1', 'default', 1, '0'),
(194, 'Christmas Tree 2', 'tree4', 's', 1, 1, 1, '0', '0', '0', 219, '1', '1', '1', '1', '1', 'default', 2, '0'),
(195, 'Christmas Tree 3', 'tree5', 's', 1, 1, 1, '0', '0', '0', 220, '1', '1', '1', '1', '1', 'default', 2, '0'),
(196, 'Eaten Ham', 'ham2', 's', 1, 1, 1, '0', '0', '0', 223, '1', '1', '1', '1', '1', 'default', 1, '0'),
(197, 'White Candle Plate', 'wcandleset', 's', 1, 1, 1, '0', '0', '0', 224, '1', '1', '1', '1', '1', 'default', 2, '0'),
(198, 'Red Candle Plate', 'rcandleset', 's', 1, 1, 1, '0', '0', '0', 225, '1', '1', '1', '1', '1', 'default', 2, '0'),
(199, 'Giant Heart', 'statue', 's', 1, 1, 1, '0', '0', '0', 226, '1', '1', '1', '1', '1', 'default', 1, '0'),
(200, 'Valentine''s Duck', 'valeduck', 's', 1, 1, 1, '0', '0', '0', 228, '1', '1', '1', '1', '1', 'default', 1, '0'),
(201, 'Heart Sofa', 'heartsofa', 's', 2, 1, 1, '0', '1', '0', 229, '1', '1', '1', '1', '1', 'default', 1, '0'),
(202, 'Throne', 'throne', 's', 1, 1, 1, '0', '1', '0', 230, '0', '1', '1', '1', '1', 'default', 1, '0'),
(203, 'Russian Samovar', 'samovar', 's', 1, 1, 1, '0', '0', '0', 231, '0', '1', '1', '1', '1', 'vendingmachine', 0, '1'),
(204, 'Vase of Flowers', 'giftflowers', 's', 1, 1, 1, '0', '0', '0', 232, '1', '1', '1', '1', '1', 'default', 1, '0'),
(205, 'Cake', 'habbocake', 's', 1, 1, 1, '0', '0', '0', 233, '1', '1', '1', '1', '1', 'default', 1, '0'),
(206, 'Holopod', 'hologram', 's', 1, 1, 1, '0', '0', '0', 234, '1', '1', '1', '1', '1', 'default', 2, '0'),
(207, 'Wannabe bunny', 'easterduck', 's', 1, 1, 1, '0', '0', '0', 235, '1', '1', '1', '1', '1', 'default', 1, '0'),
(208, 'Squidgy Bunny', 'bunny', 's', 1, 1, 1, '0', '0', '0', 236, '1', '1', '1', '1', '1', 'default', 1, '0'),
(209, 'Basket Of Eggs', 'basket', 's', 1, 1, 1, '0', '0', '0', 237, '1', '1', '1', '1', '1', 'default', 1, '0'),
(210, 'Pop-up Egg', 'birdie', 's', 1, 1, 1, '0', '0', '0', 238, '1', '1', '1', '1', '1', 'default', 2, '0'),
(211, 'Holo-dice', 'edice', 's', 1, 1, 1, '0', '0', '0', 239, '1', '1', '1', '1', '1', 'dice', 1, '0'),
(212, 'Club sofa', 'club_sofa', 's', 2, 1, 1, '0', '1', '0', 267, '1', '1', '1', '1', '1', 'default', 1, '0'),
(213, 'Gold Trophy', 'prize1', 's', 1, 1, 1, '0', '0', '0', 185, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(214, 'Silver Trophy', 'prize2', 's', 1, 1, 1, '0', '0', '0', 186, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(215, 'Bronze Trophy', 'prize3', 's', 1, 1, 1, '0', '0', '0', 243, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(216, 'Hatch (Lockable)', 'divider_poly3', 's', 1, 1, 0.001, '0', '0', '0', 244, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(217, 'Corner plinth', 'divider_arm1', 's', 1, 1, 1.4, '1', '0', '0', 245, '1', '1', '1', '1', '1', 'default', 1, '0'),
(218, 'Room divider', 'divider_arm2', 's', 2, 1, 1, '0', '0', '0', 246, '1', '1', '1', '1', '1', 'default', 1, '0'),
(219, 'Knock', 'divider_arm3', 's', 1, 1, 0.001, '0', '0', '0', 247, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(220, 'Looks squishy', 'divider_nor1', 's', 1, 1, 1, '0', '0', '0', 248, '1', '1', '1', '1', '1', 'default', 1, '0'),
(221, 'Corner Shelf', 'divider_silo1', 's', 1, 1, 1, '0', '0', '0', 249, '1', '1', '1', '1', '1', 'default', 1, '0'),
(222, 'Strong', 'divider_nor2', 's', 2, 1, 1, '0', '0', '0', 250, '1', '1', '1', '1', '1', 'default', 1, '0'),
(223, 'Screen', 'divider_silo2', 's', 2, 1, 1, '0', '0', '0', 251, '1', '1', '1', '1', '1', 'default', 1, '0'),
(224, 'Door (Lockable)', 'divider_nor3', 's', 1, 1, 0.001, '0', '0', '0', 252, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(225, 'Gate (lockable)', 'divider_silo3', 's', 1, 1, 0.001, '0', '0', '0', 253, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(226, 'Typewriter', 'typingmachine', 's', 1, 1, 1, '0', '0', '0', 254, '0', '1', '1', '1', '1', 'default', 1, '0'),
(227, 'Dragon Egg', 'spyro', 's', 1, 1, 1, '0', '0', '0', 260, '0', '1', '1', '1', '1', 'default', 1, '0'),
(228, 'Holo-girl', 'redhologram', 's', 1, 1, 1, '0', '0', '0', 261, '0', '1', '1', '1', '1', 'default', 2, '0'),
(230, 'Poinsetta', 'joulutahti', 's', 1, 1, 1, '0', '0', '0', 264, '1', '1', '1', '1', '1', 'default', 1, '0'),
(231, 'Pink Hyacinth', 'hyacinth1', 's', 1, 1, 1, '0', '0', '0', 265, '1', '1', '1', '1', '1', 'default', 1, '0'),
(232, 'Blue Hyacinth', 'hyacinth2', 's', 1, 1, 1, '0', '0', '0', 266, '1', '1', '1', '1', '1', 'default', 1, '0'),
(233, 'Chair', 'chair_plasto*10', 's', 1, 1, 1, '0', '1', '0', 268, '1', '1', '1', '1', '1', 'default', 1, '0'),
(234, 'Chair', 'chair_plasto*11', 's', 1, 1, 1, '0', '1', '0', 269, '1', '1', '1', '1', '1', 'default', 1, '0'),
(235, 'Corner Cabinet/Desk', 'bardeskcorner_polyfon*12', 's', 1, 1, 1, '1', '0', '0', 270, '1', '1', '1', '1', '1', 'default', 1, '0'),
(236, 'Corner Cabinet/Desk', 'bardeskcorner_polyfon*13', 's', 1, 1, 1, '1', '0', '0', 271, '1', '1', '1', '1', '1', 'default', 1, '0'),
(237, 'Chair', 'chair_plasto*12', 's', 1, 1, 1, '0', '1', '0', 273, '1', '1', '1', '1', '1', 'default', 1, '0'),
(238, 'Chair', 'chair_plasto*13', 's', 1, 1, 1, '0', '1', '0', 274, '1', '1', '1', '1', '1', 'default', 1, '0'),
(239, 'HC chair', 'chair_plasto*14', 's', 1, 1, 1, '0', '1', '0', 275, '1', '1', '1', '1', '1', 'default', 1, '0'),
(240, 'HC table', 'table_plasto_4leg*14', 's', 2, 2, 1, '1', '0', '0', 276, '1', '1', '1', '1', '1', 'default', 1, '0'),
(241, 'Mochamaster', 'mocchamaster', 's', 1, 1, 1, '1', '0', '0', 277, '1', '1', '1', '1', '1', 'vendingmachine', 0, '9,8,14,15,6,10,11,12,17,13'),
(242, 'Basketball Court', 'carpet_legocourt', 's', 3, 3, 0, '1', '0', '1', 278, '1', '1', '1', '1', '1', 'default', 1, '0'),
(243, 'Team Bench', 'bench_lego', 's', 4, 1, 1, '0', '1', '0', 279, '1', '1', '1', '1', '1', 'default', 1, '0'),
(244, 'Basketball Trophy', 'legotrophy', 's', 1, 1, 1, '0', '0', '0', 280, '1', '1', '1', '1', '0', 'trophy', 2, '0'),
(245, 'Holiday Romance', 'valentinescreen', 's', 2, 1, 0.1, '0', '0', '1', 283, '1', '1', '1', '1', '1', 'default', 1, '0'),
(246, 'Dicemaster', 'edicehc', 's', 1, 1, 1, '0', '0', '0', 284, '1', '1', '1', '1', '1', 'dice', 1, '0'),
(247, 'Petal Patch', 'rare_daffodil_rug', 's', 2, 2, 0, '1', '0', '1', 285, '1', '1', '1', '1', '1', 'default', 1, '0'),
(248, 'Blue Amber Lamp', 'rare_beehive_bulb', 's', 1, 1, 1, '0', '0', '0', 286, '1', '1', '1', '1', '1', 'default', 2, '0'),
(249, 'Throne Sofa', 'hcsohva', 's', 2, 1, 1, '0', '1', '0', 287, '1', '1', '1', '1', '1', 'default', 1, '0'),
(250, 'Tubmaster', 'hcamme', 's', 1, 2, 0.6, '0', '1', '0', 288, '1', '1', '1', '1', '1', 'default', 2, '0'),
(251, 'Golden Elephant', 'rare_elephant_statue', 's', 1, 1, 1, '0', '0', '0', 290, '1', '1', '1', '1', '1', 'default', 1, '0'),
(252, 'Bird Bath (red)', 'rare_fountain', 's', 1, 1, 1, '0', '0', '0', 291, '1', '1', '1', '1', '1', 'default', 2, '0'),
(253, 'Speaker''s Corner', 'rare_stand', 's', 1, 1, 1.7, '0', '1', '0', 292, '1', '1', '1', '1', '1', 'default', 1, '0'),
(254, 'Snow Globe', 'rare_globe', 's', 1, 1, 1, '0', '0', '0', 293, '1', '1', '1', '1', '1', 'default', 2, '0'),
(255, 'Hammock', 'rare_hammock', 's', 1, 3, 1.57, '0', '0', '0', 294, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(256, 'Silver Elephant', 'rare_elephant_statue*1', 's', 1, 1, 1, '0', '0', '0', 295, '1', '1', '1', '1', '1', 'default', 1, '0'),
(257, 'Bronze Elephant', 'rare_elephant_statue*2', 's', 1, 1, 1, '0', '0', '0', 296, '1', '1', '1', '1', '1', 'default', 1, '0'),
(258, 'Bird Bath (grey)', 'rare_fountain*1', 's', 1, 1, 1, '0', '0', '0', 297, '1', '1', '1', '1', '1', 'default', 2, '0'),
(259, 'Bird Bath (green)', 'rare_fountain*2', 's', 1, 1, 1, '0', '0', '0', 298, '1', '1', '1', '1', '1', 'default', 2, '0'),
(260, 'Bird Bath (blue)', 'rare_fountain*3', 's', 1, 1, 1, '0', '0', '0', 299, '1', '1', '1', '1', '1', 'default', 2, '0'),
(261, 'Red Amber Lamp', 'rare_beehive_bulb*1', 's', 1, 1, 1, '0', '0', '0', 300, '1', '1', '1', '1', '1', 'default', 2, '0'),
(262, 'Yellow Amber Lamp', 'rare_beehive_bulb*2', 's', 1, 1, 1, '0', '0', '0', 301, '1', '1', '1', '1', '1', 'default', 2, '0'),
(263, 'Lappland Greetings', 'rare_xmas_screen', 's', 2, 1, 0, '0', '0', '1', 302, '1', '1', '1', '1', '1', 'default', 1, '0'),
(264, 'Yellow Parasol', 'rare_parasol*1', 's', 1, 1, 1, '0', '0', '0', 303, '1', '1', '1', '1', '1', 'default', 2, '0'),
(265, 'Orange Parasol', 'rare_parasol*2', 's', 1, 1, 1, '0', '0', '0', 304, '1', '1', '1', '1', '1', 'default', 2, '0'),
(266, 'Violet Parasol', 'rare_parasol*3', 's', 1, 1, 1, '0', '0', '0', 305, '1', '1', '1', '1', '1', 'default', 2, '0'),
(267, 'Dead tree', 'tree1', 's', 1, 1, 1, '0', '0', '0', 1758, '1', '1', '1', '1', '1', 'default', 1, '0'),
(269, 'White Candle', 'wcandle', 's', 1, 1, 1, '0', '0', '0', 2102, '1', '1', '1', '1', '1', 'default', 2, '0'),
(270, 'Red Candle', 'rcandle', 's', 1, 1, 1, '0', '0', '0', 2121, '1', '1', '1', '1', '1', 'default', 2, '0'),
(272, 'Gingerbread House', 'house2', 's', 1, 1, 1, '0', '0', '0', 428, '1', '1', '1', '1', '1', 'default', 1, '0'),
(273, 'Habbo Turntable', 'djesko_turntable', 's', 1, 1, 1, '0', '0', '0', 449, '1', '1', '1', '1', '1', 'default', 1, '0'),
(275, 'Habbo Cola Machine', 'md_limukaappi', 's', 1, 1, 1, '0', '0', '0', 457, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(276, 'Occasional Table', 'table_plasto_4leg*10', 's', 2, 2, 1, '1', '0', '0', 1484, '1', '1', '1', '1', '1', 'default', 1, '0'),
(277, 'Occasional Table', 'table_plasto_4leg*15', 's', 2, 2, 1, '1', '0', '0', 1486, '1', '1', '1', '1', '1', 'default', 1, '0'),
(278, 'Occasional Table', 'table_plasto_bigsquare*14', 's', 2, 2, 1, '1', '0', '0', 1487, '1', '1', '1', '1', '1', 'default', 1, '0'),
(279, 'Occasional Table', 'table_plasto_bigsquare*15', 's', 2, 2, 1, '1', '0', '0', 1488, '1', '1', '1', '1', '1', 'default', 1, '0'),
(280, 'Occasional Table', 'table_plasto_round*14', 's', 2, 2, 1, '1', '0', '0', 1489, '1', '1', '1', '1', '1', 'default', 1, '0'),
(281, 'Occasional Table', 'table_plasto_round*15', 's', 2, 2, 1, '1', '0', '0', 1490, '1', '1', '1', '1', '1', 'default', 1, '0'),
(282, 'Occasional Table', 'table_plasto_square*14', 's', 1, 1, 1, '1', '0', '0', 1491, '1', '1', '1', '1', '1', 'default', 1, '0'),
(283, 'Occasional Table', 'table_plasto_square*15', 's', 1, 1, 1, '1', '0', '0', 1492, '1', '1', '1', '1', '1', 'default', 1, '0'),
(284, 'Chair', 'chair_plasto*15', 's', 1, 1, 1, '0', '1', '0', 1495, '1', '1', '1', '1', '1', 'default', 1, '0'),
(285, 'Plastic Pod Chair', 'chair_plasty*7', 's', 1, 1, 1, '0', '1', '0', 1496, '1', '1', '1', '1', '1', 'default', 1, '0'),
(286, 'Plastic Pod Chair', 'chair_plasty*8', 's', 1, 1, 1, '0', '1', '0', 1497, '1', '1', '1', '1', '1', 'default', 1, '0'),
(287, 'Plastic Pod Chair', 'chair_plasty*9', 's', 1, 1, 1, '0', '1', '0', 1498, '1', '1', '1', '1', '1', 'default', 1, '0'),
(288, 'Plastic Pod Chair', 'chair_plasty*10', 's', 1, 1, 1, '0', '1', '0', 1499, '1', '1', '1', '1', '1', 'default', 1, '0'),
(289, 'Plastic Pod Chair', 'chair_plasty*11', 's', 1, 1, 1, '0', '1', '0', 1500, '1', '1', '1', '1', '1', 'default', 1, '0'),
(290, 'Chair', 'chair_plasto*16', 's', 1, 1, 1, '0', '1', '0', 1501, '1', '1', '1', '1', '1', 'default', 1, '0'),
(291, 'Occasional Table', 'table_plasto_4leg*16', 's', 2, 2, 1, '1', '0', '0', 1502, '1', '1', '1', '1', '1', 'default', 1, '0'),
(292, 'Scoreboard', 'hockey_score', 's', 1, 1, 1, '0', '0', '0', 1503, '1', '1', '1', '1', '1', 'scoreboard', 100, '0'),
(293, 'Lert', 'hockey_light', 's', 1, 1, 1, '0', '0', '0', 1504, '1', '1', '1', '1', '1', 'alert', 2, '0'),
(294, 'Imperial Teleport', 'doorD', 's', 1, 1, 0.001, '0', '0', '0', 1505, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(295, 'Duck trophy', 'a0 prizetrophy2_b', 's', 1, 1, 1, '0', '0', '0', 1506, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(296, 'Globe trophy', 'a0 prizetrophy3_b', 's', 1, 1, 1, '0', '0', '0', 1507, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(297, 'Fish trophy', 'a0 prizetrophy4_b', 's', 1, 1, 1, '0', '0', '0', 1508, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(298, 'Champion trophy', 'a0 prizetrophy5_b', 's', 1, 1, 1, '0', '0', '0', 1509, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(299, 'Classic trophy', 'prizetrophy*1', 's', 1, 1, 1, '0', '0', '0', 1512, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(300, 'Duck trophy', 'a0 prizetrophy2_g', 's', 1, 1, 1, '0', '0', '0', 1512, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(301, 'Globe trophy', 'a0 prizetrophy3_g', 's', 1, 1, 1, '0', '0', '0', 1513, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(302, 'Fish trophy', 'a0 prizetrophy4_g', 's', 1, 1, 1, '0', '0', '0', 1514, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(303, 'Duo trophy', 'a0 prizetrophy5_g', 's', 1, 1, 1, '0', '0', '0', 1515, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(304, 'Champion trophy', 'a0 prizetrophy6_g', 's', 1, 1, 1, '0', '0', '0', 1516, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(305, 'Classic trophy', 'prizetrophy*2', 's', 1, 1, 1, '0', '0', '0', 1519, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(306, 'Duck trophy', 'a0 prizetrophy2_s', 's', 1, 1, 1, '0', '0', '0', 1518, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(307, 'Globe trophy', 'a0 prizetrophy3_s', 's', 1, 1, 1, '0', '0', '0', 1519, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(308, 'Fish trophy', 'a0 prizetrophy4_s', 's', 1, 1, 1, '0', '0', '0', 1520, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(309, 'Duo trophy', 'a0 prizetrophy5_s', 's', 1, 1, 1, '0', '0', '0', 1521, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(310, 'Champion trophy', 'a0 prizetrophy6_s', 's', 1, 1, 1, '0', '0', '0', 1522, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(311, 'Classic trophy', 'prizetrophy*3', 's', 1, 1, 1, '0', '0', '0', 1526, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(312, 'Green Parasol', 'rare_parasol*0', 's', 1, 1, 1, '0', '0', '0', 289, '1', '1', '1', '1', '1', 'default', 2, '0'),
(313, 'Oil Lamp', 'hc_lmp', 's', 1, 1, 1, '0', '0', '0', 1529, '1', '1', '1', '1', '1', 'default', 2, '0'),
(314, 'Nordic Table', 'hc_tbl', 's', 1, 3, 1, '1', '0', '0', 1528, '1', '1', '1', '1', '1', 'default', 1, '0'),
(315, 'Majestic Chair', 'hc_chr', 's', 1, 1, 1, '0', '1', '0', 1527, '1', '1', '1', '1', '1', 'default', 1, '0'),
(316, 'Study Desk', 'hc_dsk', 's', 1, 2, 1, '0', '0', '0', 1530, '1', '1', '1', '1', '1', 'default', 2, '0'),
(317, 'Night', 'nest', 's', 1, 1, 1, '1', '0', '0', 1531, '1', '1', '1', '1', '1', 'default', 1, '0'),
(318, 'Bones Mega Multipack', 'petfood1', 's', 1, 1, 1, '1', '0', '0', 1532, '1', '1', '1', '1', '1', 'default', 1, '0'),
(319, 'Sardines Mega Multipack', 'petfood2', 's', 1, 1, 1, '1', '0', '0', 1533, '1', '1', '1', '1', '1', 'default', 1, '0'),
(320, 'Cabbage Mega Multipack', 'petfood3', 's', 1, 1, 1, '1', '0', '0', 1534, '1', '1', '1', '1', '1', 'default', 1, '0'),
(321, 'Blue Water Bowl', 'waterbowl*4', 's', 1, 1, 1, '1', '0', '0', 1535, '1', '1', '1', '1', '1', 'default', 1, '0'),
(322, 'Brown Water Bowl', 'waterbowl*5', 's', 1, 1, 1, '1', '0', '0', 1536, '1', '1', '1', '1', '1', 'default', 1, '0'),
(323, 'Green Water Bowl', 'waterbowl*2', 's', 1, 1, 1, '1', '0', '0', 1537, '1', '1', '1', '1', '1', 'default', 1, '0'),
(324, 'Red Water Bowl', 'waterbowl*1', 's', 1, 1, 1, '1', '0', '0', 1538, '1', '1', '1', '1', '1', 'default', 1, '0'),
(325, 'Yellow Water Bowl', 'waterbowl*3', 's', 1, 1, 1, '1', '0', '0', 1539, '1', '1', '1', '1', '1', 'default', 1, '0'),
(326, 'Rubber Ball', 'toy1', 's', 1, 1, 1, '1', '0', '0', 1540, '1', '1', '1', '1', '1', 'default', 1, '0'),
(327, 'Rubber Ball', 'toy1*1', 's', 1, 1, 1, '1', '0', '0', 1541, '1', '1', '1', '1', '1', 'default', 1, '0'),
(328, 'Rubber Ball', 'toy1*2', 's', 1, 1, 1, '1', '0', '0', 1542, '1', '1', '1', '1', '1', 'default', 1, '0'),
(329, 'Rubber Ball', 'toy1*3', 's', 1, 1, 1, '1', '0', '0', 1543, '1', '1', '1', '1', '1', 'default', 1, '0'),
(330, 'Rubber Ball', 'toy1*4', 's', 1, 1, 1, '1', '0', '0', 1544, '1', '1', '1', '1', '1', 'default', 1, '0'),
(331, 'Marzipan Man', 'goodie1', 's', 1, 1, 1, '1', '0', '0', 1545, '1', '1', '1', '1', '1', 'default', 1, '0'),
(332, 'Marzipan Man', 'goodie1*1', 's', 1, 1, 1, '1', '0', '0', 1546, '1', '1', '1', '1', '1', 'default', 1, '0'),
(333, 'Marzipan Man', 'goodie1*2', 's', 1, 1, 1, '1', '0', '0', 1547, '1', '1', '1', '1', '1', 'default', 1, '0'),
(334, 'Chocolate Mouse', 'goodie2', 's', 1, 1, 1, '1', '0', '0', 1548, '1', '1', '1', '1', '1', 'default', 1, '0'),
(335, 'Bronze Habbo trophy', 'a0 prizetrophy7_b', 's', 1, 1, 1, '0', '0', '0', 1547, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(336, 'Gold Habbo trophy', 'a0 prizetrophy7_g', 's', 1, 1, 1, '0', '0', '0', 1548, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(337, 'Silver Habbo trophy', 'a0 prizetrophy7_s', 's', 1, 1, 1, '0', '0', '0', 1549, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(338, 'Red Laser Door', 'scifiport*0', 's', 1, 1, 0.001, '0', '0', '0', 1549, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(339, 'Violet Sci-Fi Port', 'scifiport*9', 's', 1, 1, 0.001, '0', '0', '0', 1550, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(340, 'Purple Sci-Fi Port', 'scifiport*8', 's', 1, 1, 0.001, '0', '0', '0', 1551, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(341, 'Aqua Laser Gate', 'scifiport*7', 's', 1, 1, 0.001, '0', '0', '0', 1552, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(342, 'White Sci-Fi Port', 'scifiport*6', 's', 1, 1, 0.001, '0', '0', '0', 1553, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(343, 'Security Fence', 'scifiport*5', 's', 1, 1, 0.001, '0', '0', '0', 1554, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(344, 'Pink Sci-Fi Port', 'scifiport*4', 's', 1, 1, 0.001, '0', '0', '0', 1555, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(345, 'Jade Sci-Fi Port', 'scifiport*3', 's', 1, 1, 0.001, '0', '0', '0', 1556, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(346, 'Blue Laser Gate', 'scifiport*2', 's', 1, 1, 0.001, '0', '0', '0', 1557, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(347, 'Gold Laser Gate', 'scifiport*1', 's', 1, 1, 0.001, '0', '0', '0', 1558, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(348, 'Neptune Smoke Machine', 'scifirocket*9', 's', 1, 1, 1, '0', '0', '0', 1559, '1', '1', '1', '1', '1', 'default', 2, '0'),
(349, 'From a space far', 'scifirocket*8', 's', 1, 1, 1, '0', '0', '0', 1560, '1', '1', '1', '1', '1', 'default', 2, '0'),
(350, 'Jupiter Smoke Machine', 'scifirocket*7', 's', 1, 1, 1, '0', '0', '0', 1561, '1', '1', '1', '1', '1', 'default', 2, '0'),
(351, 'Mercury Smoke Machine', 'scifirocket*6', 's', 1, 1, 1, '0', '0', '0', 1562, '1', '1', '1', '1', '1', 'default', 2, '0'),
(352, 'Uranus Smoke Machine', 'scifirocket*5', 's', 1, 1, 1, '0', '0', '0', 1563, '1', '1', '1', '1', '1', 'default', 2, '0'),
(353, 'Venus Smoke Machine', 'scifirocket*4', 's', 1, 1, 1, '0', '0', '0', 1564, '1', '1', '1', '1', '1', 'default', 2, '0'),
(354, 'Endor Smoke Machine', 'scifirocket*3', 's', 1, 1, 1, '0', '0', '0', 1565, '1', '1', '1', '1', '1', 'default', 2, '0'),
(355, 'Earth Smoke Machine', 'scifirocket*2', 's', 1, 1, 1, '0', '0', '0', 1566, '1', '1', '1', '1', '1', 'default', 2, '0'),
(356, 'Saturn Smoke Machine', 'scifirocket*1', 's', 1, 1, 1, '0', '0', '0', 1567, '1', '1', '1', '1', '1', 'default', 2, '0'),
(357, 'Mars Smoke Machine', 'scifirocket*0', 's', 1, 1, 1, '0', '0', '0', 1568, '1', '1', '1', '1', '1', 'default', 2, '0'),
(358, 'Violet Starship Door', 'scifidoor*10', 's', 1, 1, 0.001, '0', '0', '0', 1569, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(359, 'It''s blue', 'scifidoor*9', 's', 1, 1, 0.001, '0', '0', '0', 1570, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(360, 'Purple Spaceship Door', 'scifidoor*8', 's', 1, 1, 0.001, '0', '0', '0', 1571, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(361, 'Aqua Spaceship Door', 'scifidoor*7', 's', 1, 1, 0.001, '0', '0', '0', 1572, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(362, 'Black Monolith', 'scifidoor*6', 's', 1, 1, 0.001, '0', '0', '0', 1573, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(363, 'White Spaceship Door', 'scifidoor*5', 's', 1, 1, 0.001, '0', '0', '0', 1574, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(364, 'Emerald Spaceship Door', 'scifidoor*4', 's', 1, 1, 0.001, '0', '0', '0', 1575, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(365, 'Lightblue Spaceship Door', 'scifidoor*3', 's', 1, 1, 0.001, '0', '0', '0', 1576, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(366, 'Yellow Spaceship Door', 'scifidoor*2', 's', 1, 1, 0.001, '0', '0', '0', 1577, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(367, 'Pink Spaceship Door', 'scifidoor*1', 's', 1, 1, 0.001, '0', '0', '0', 1578, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(368, 'Puffy', 'pillow*5', 's', 1, 1, 1, '0', '1', '0', 1579, '1', '1', '1', '1', '1', 'default', 1, '0'),
(369, 'Puffy', 'pillow*8', 's', 1, 1, 1, '0', '1', '0', 1580, '1', '1', '1', '1', '1', 'default', 1, '0'),
(370, 'White Lace Pillow', 'pillow*0', 's', 1, 1, 1, '0', '1', '0', 1581, '1', '1', '1', '1', '1', 'default', 1, '0'),
(371, 'Puffy', 'pillow*1', 's', 1, 1, 1, '0', '1', '0', 1582, '1', '1', '1', '1', '1', 'default', 1, '0'),
(372, 'Puffy', 'pillow*2', 's', 1, 1, 1, '0', '1', '0', 1583, '1', '1', '1', '1', '1', 'default', 1, '0'),
(373, 'Purple Velvet Pillow', 'pillow*7', 's', 1, 1, 1, '0', '1', '0', 1584, '1', '1', '1', '1', '1', 'default', 1, '0'),
(374, 'Puffy', 'pillow*9', 's', 1, 1, 1, '0', '1', '0', 1585, '1', '1', '1', '1', '1', 'default', 1, '0'),
(375, 'Puffy', 'pillow*4', 's', 1, 1, 1, '0', '1', '0', 1586, '1', '1', '1', '1', '1', 'default', 1, '0'),
(376, 'Puffy', 'pillow*6', 's', 1, 1, 1, '0', '1', '0', 1587, '1', '1', '1', '1', '1', 'default', 1, '0'),
(377, 'Puffy', 'pillow*3', 's', 1, 1, 1, '0', '1', '0', 1588, '1', '1', '1', '1', '1', 'default', 1, '0'),
(378, 'Pink marquee', 'marquee*1', 's', 1, 1, 0.001, '0', '0', '0', 1589, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(379, 'Red Dragon Marquee', 'marquee*2', 's', 1, 1, 0.001, '0', '0', '0', 1590, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(380, 'Purple Marquee', 'marquee*7', 's', 1, 1, 0.001, '0', '0', '0', 1591, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(381, 'White Marquee', 'marquee*10', 's', 1, 1, 0.001, '0', '0', '0', 1592, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(382, 'Ultramarine Marquee', 'marquee*8', 's', 1, 1, 0.001, '0', '0', '0', 1593, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(383, 'Green Marquee', 'marquee*9', 's', 1, 1, 0.001, '0', '0', '0', 1594, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(384, 'Graphite Marquee', 'marquee*5', 's', 1, 1, 0.001, '0', '0', '0', 1595, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(385, 'Yellow Marquee', 'marquee*4', 's', 1, 1, 0.001, '0', '0', '0', 1596, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(386, 'Blue Marquee', 'marquee*6', 's', 1, 1, 0.001, '0', '0', '0', 1597, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(387, 'Aqua Marquee', 'marquee*3', 's', 1, 1, 0.001, '0', '0', '0', 1598, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(388, 'Pink Oriental screen', 'wooden_screen*1', 's', 1, 2, 1, '0', '0', '0', 1599, '1', '1', '1', '1', '1', 'default', 1, '0'),
(389, 'RosewoodScreen', 'wooden_screen*2', 's', 1, 2, 1, '0', '0', '0', 1600, '1', '1', '1', '1', '1', 'default', 1, '0'),
(390, 'Purple Oriental Screen', 'wooden_screen*7', 's', 1, 2, 1, '0', '0', '0', 1601, '1', '1', '1', '1', '1', 'default', 1, '0'),
(391, 'White Oriental Screen', 'wooden_screen*0', 's', 1, 2, 1, '0', '0', '0', 1602, '1', '1', '1', '1', '1', 'default', 1, '0'),
(392, 'Night Blue Oriental Screen', 'wooden_screen*8', 's', 1, 2, 1, '0', '0', '0', 1603, '1', '1', '1', '1', '1', 'default', 1, '0'),
(393, 'Gray Oriental Screen', 'wooden_screen*5', 's', 1, 2, 1, '0', '0', '0', 1604, '1', '1', '1', '1', '1', 'default', 1, '0'),
(394, 'Green Oriental Screen', 'wooden_screen*9', 's', 1, 2, 1, '0', '0', '0', 1605, '1', '1', '1', '1', '1', 'default', 1, '0'),
(395, 'Golden Oriental Screen', 'wooden_screen*4', 's', 1, 2, 1, '0', '0', '0', 1606, '1', '1', '1', '1', '1', 'default', 1, '0'),
(396, 'Blue Oriental Screen', 'wooden_screen*6', 's', 1, 2, 1, '0', '0', '0', 1607, '1', '1', '1', '1', '1', 'default', 1, '0'),
(397, 'Terracotta Pillar', 'wooden_screen*3', 's', 1, 2, 1, '0', '0', '0', 1608, '1', '1', '1', '1', '1', 'default', 1, '0'),
(398, 'Pink Marble Pillar', 'pillar*1', 's', 1, 1, 1, '0', '0', '0', 1610, '1', '1', '1', '1', '1', 'default', 1, '0'),
(399, 'Rock Pillar', 'pillar*9', 's', 1, 1, 1, '0', '0', '0', 1611, '1', '1', '1', '1', '1', 'default', 1, '0'),
(400, 'Classy architect', 'pillar*0', 's', 1, 1, 1, '0', '0', '0', 1612, '1', '1', '1', '1', '1', 'default', 1, '0'),
(401, 'Roman Pillar', 'pillar*8', 's', 1, 1, 1, '0', '0', '0', 1613, '1', '1', '1', '1', '1', 'default', 1, '0'),
(402, 'Nordic Pillar', 'pillar*2', 's', 1, 1, 1, '0', '0', '0', 1614, '1', '1', '1', '1', '1', 'default', 1, '0'),
(403, 'Pagan Pillar', 'pillar*5', 's', 1, 1, 1, '0', '0', '0', 1615, '1', '1', '1', '1', '1', 'default', 1, '0'),
(404, 'Dark Ages Pillar', 'pillar*4', 's', 1, 1, 1, '0', '0', '0', 1616, '1', '1', '1', '1', '1', 'default', 1, '0'),
(405, 'Atlantean Pillar', 'pillar*7', 's', 1, 1, 1, '0', '0', '0', 1617, '1', '1', '1', '1', '1', 'default', 1, '0'),
(406, 'blue pillar', 'pillar*3', 's', 1, 1, 1, '0', '0', '0', 1618, '1', '1', '1', '1', '1', 'default', 1, '0'),
(407, 'Serpent of Doom', 'rare_dragonlamp*4', 's', 1, 1, 1, '0', '0', '0', 1619, '1', '1', '1', '1', '1', 'default', 2, '0'),
(408, 'Fire Dragon Lamp', 'rare_dragonlamp*0', 's', 1, 1, 1, '0', '0', '0', 1620, '1', '1', '1', '1', '1', 'default', 2, '0'),
(409, 'Elf Green Dragon Lamp', 'rare_dragonlamp*5', 's', 1, 1, 1, '0', '0', '0', 1621, '1', '1', '1', '1', '1', 'default', 2, '0'),
(410, 'Jade Dragon Lamp', 'rare_dragonlamp*2', 's', 1, 1, 1, '0', '0', '0', 1622, '1', '1', '1', '1', '1', 'default', 2, '0'),
(411, 'Bronze Dragon Lamp', 'rare_dragonlamp*8', 's', 1, 1, 1, '0', '0', '0', 1623, '1', '1', '1', '1', '1', 'default', 2, '0'),
(412, 'Purple Dragon Lamp', 'rare_dragonlamp*9', 's', 1, 1, 1, '0', '0', '0', 1624, '1', '1', '1', '1', '1', 'default', 2, '0'),
(413, 'Sky Dragon Lamp', 'rare_dragonlamp*7', 's', 1, 1, 1, '0', '0', '0', 1625, '1', '1', '1', '1', '1', 'default', 2, '0'),
(414, 'Gold Dragon Lamp', 'rare_dragonlamp*6', 's', 1, 1, 1, '0', '0', '0', 1626, '1', '1', '1', '1', '1', 'default', 2, '0'),
(415, 'Sea Dragon Lamp', 'rare_dragonlamp*1', 's', 1, 1, 1, '0', '0', '0', 1627, '1', '1', '1', '1', '1', 'default', 2, '0'),
(416, 'Silver Dragon Lamp', 'rare_dragonlamp*3', 's', 1, 1, 1, '0', '0', '0', 1628, '1', '1', '1', '1', '1', 'default', 2, '0'),
(417, 'Blueberry Ice Cream Machine', 'rare_icecream*1', 's', 1, 1, 1, '0', '0', '0', 1629, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(418, 'Chocolate Ice Cream Machine', 'rare_icecream*7', 's', 1, 1, 1, '0', '0', '0', 1630, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(419, 'Peppermint Ice Cream Machine', 'rare_icecream*8', 's', 1, 1, 1, '0', '0', '0', 1631, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(420, 'Pistachio Ice Cream Machine', 'rare_icecream*2', 's', 1, 1, 1, '0', '0', '0', 1632, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(421, 'Toffee Ice Cream Machine', 'rare_icecream*6', 's', 1, 1, 1, '0', '0', '0', 1633, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(422, 'Bubblegum Ice Cream Machine', 'rare_icecream*9', 's', 1, 1, 1, '0', '0', '0', 1634, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(423, 'Blackcurrant Ice Cream Machine', 'rare_icecream*3', 's', 1, 1, 1, '0', '0', '0', 1635, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(424, 'Cherry Ice Cream Machine', 'rare_icecream*0', 's', 1, 1, 1, '0', '0', '0', 1636, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(425, 'Strawberry Ice Cream Machine', 'rare_icecream*4', 's', 1, 1, 1, '0', '0', '0', 1637, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(426, 'Vanilla Ice Cream Machine', 'rare_icecream*5', 's', 1, 1, 1, '0', '0', '0', 1638, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(427, 'Brown Powered Fan', 'rare_fan*7', 's', 1, 1, 1, '0', '0', '0', 1639, '1', '1', '1', '1', '1', 'default', 2, '0'),
(428, 'Ochre Powered Fan', 'rare_fan*6', 's', 1, 1, 1, '0', '0', '0', 1640, '1', '1', '1', '1', '1', 'default', 2, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(429, 'Fucsia Powered Fan', 'rare_fan*9', 's', 1, 1, 1, '0', '0', '0', 1641, '1', '1', '1', '1', '1', 'default', 2, '0'),
(430, 'Purple Dragon Skin Fan', 'rare_fan*3', 's', 1, 1, 1, '0', '0', '0', 1642, '1', '1', '1', '1', '1', 'default', 2, '0'),
(431, 'Festive Fan', 'rare_fan*0', 's', 1, 1, 1, '0', '0', '0', 1643, '1', '1', '1', '1', '1', 'default', 2, '0'),
(432, 'SUPERLOVE Fan', 'rare_fan*4', 's', 1, 1, 1, '0', '0', '0', 1644, '1', '1', '1', '1', '1', 'default', 2, '0'),
(433, 'Yellow Powered Fan', 'rare_fan*5', 's', 1, 1, 1, '0', '0', '0', 1645, '1', '1', '1', '1', '1', 'default', 2, '0'),
(434, 'Birthday Fan', 'rare_fan*1', 's', 1, 1, 1, '0', '0', '0', 1646, '1', '1', '1', '1', '1', 'default', 2, '0'),
(435, 'Stylish', 'rare_fan*8', 's', 1, 1, 1, '0', '0', '0', 1647, '1', '1', '1', '1', '1', 'default', 2, '0'),
(436, 'Green Powered Fan', 'rare_fan*2', 's', 1, 1, 1, '0', '0', '0', 1648, '1', '1', '1', '1', '1', 'default', 2, '0'),
(437, 'Ice Habbo Roller', 'queue_tile1*3', 's', 1, 1, 0.5, '1', '0', '1', 1649, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(438, 'Blue Habbo Roller', 'queue_tile1*6', 's', 1, 1, 0.5, '1', '0', '1', 1650, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(439, 'Gold Habbo Roller', 'queue_tile1*4', 's', 1, 1, 0.5, '1', '0', '1', 1651, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(440, 'Green Habbo Roller', 'queue_tile1*9', 's', 1, 1, 0.5, '1', '0', '1', 1652, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(441, 'Navy Habbo Roller', 'queue_tile1*8', 's', 1, 1, 0.5, '1', '0', '1', 1653, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(442, 'Knight Roller', 'queue_tile1*5', 's', 1, 1, 0.5, '1', '0', '1', 1654, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(443, 'Purple Habbo Roller', 'queue_tile1*7', 's', 1, 1, 0.5, '1', '0', '1', 1655, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(444, 'Red Habbo Roller', 'queue_tile1*2', 's', 1, 1, 0.5, '1', '0', '1', 1656, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(445, 'Pink Habbo Roller', 'queue_tile1*1', 's', 1, 1, 0.5, '1', '0', '1', 1657, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(446, 'White Quest Roller', 'queue_tile1*0', 's', 1, 1, 0.5, '1', '0', '1', 1658, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(448, 'Snow Rug', 'rare_snowrug', 's', 2, 2, 0, '1', '0', '1', 1738, '1', '1', '1', '1', '1', 'default', 1, '0'),
(449, 'Lantern', 'cn_lamp', 's', 1, 1, 1, '0', '0', '0', 1741, '1', '1', '1', '1', '1', 'default', 2, '0'),
(450, 'Chinese Sofa', 'cn_sofa', 's', 3, 1, 1, '0', '1', '0', 1742, '1', '1', '1', '1', '1', 'default', 1, '0'),
(451, 'Sport track straight', 'sporttrack1*1', 's', 2, 2, 0, '1', '0', '1', 1745, '1', '1', '1', '1', '1', 'default', 1, '0'),
(452, 'Sport track straight grass', 'sporttrack1*3', 's', 2, 2, 0, '1', '0', '1', 1747, '1', '1', '1', '1', '1', 'default', 1, '0'),
(453, 'Sport track straight asphalt', 'sporttrack1*2', 's', 2, 2, 0, '1', '0', '1', 1748, '1', '1', '1', '1', '1', 'default', 1, '0'),
(454, 'Sport corner tartan', 'sporttrack2*1', 's', 2, 2, 0, '1', '0', '1', 1750, '1', '1', '1', '1', '1', 'default', 1, '0'),
(455, 'Sport corner asphalt', 'sporttrack2*2', 's', 2, 2, 0, '1', '0', '1', 1751, '1', '1', '1', '1', '1', 'default', 1, '0'),
(456, 'Sport corner grass', 'sporttrack2*3', 's', 2, 2, 0, '1', '0', '1', 1752, '1', '1', '1', '1', '1', 'default', 1, '0'),
(457, 'Sport goal tartan', 'sporttrack3*1', 's', 2, 2, 0, '1', '0', '1', 1754, '1', '1', '1', '1', '1', 'default', 1, '0'),
(458, 'Sport goal asphalt', 'sporttrack3*2', 's', 2, 2, 0, '1', '0', '1', 1755, '1', '1', '1', '1', '1', 'default', 1, '0'),
(459, 'Sport goal grass', 'sporttrack3*3', 's', 2, 2, 0, '1', '0', '1', 1756, '1', '1', '1', '1', '1', 'default', 1, '0'),
(460, 'Football Lamp', 'footylamp', 's', 1, 1, 1, '0', '0', '0', 1757, '1', '1', '1', '1', '1', 'default', 2, '0'),
(461, 'Bar Stool', 'barchair_silo', 's', 1, 1, 1.2, '0', '1', '0', 1759, '1', '1', '1', '1', '1', 'default', 1, '0'),
(462, 'Habbos', 'divider_nor4*4', 's', 2, 1, 1, '0', '0', '0', 1760, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(463, 'Classic Traffic Light', 'traffic_light*1', 's', 1, 1, 1, '0', '0', '0', 1761, '1', '1', '1', '1', '1', 'default', 3, '0'),
(464, 'Blue Traffic Light', 'traffic_light*2', 's', 1, 1, 1, '0', '0', '0', 1762, '1', '1', '1', '1', '1', 'default', 3, '0'),
(465, 'Purple Traffic Light', 'traffic_light*3', 's', 1, 1, 1, '0', '0', '0', 1763, '1', '1', '1', '1', '1', 'default', 3, '0'),
(466, 'Yellow Traffic Light', 'traffic_light*4', 's', 1, 1, 1, '0', '0', '0', 1764, '1', '1', '1', '1', '1', 'default', 3, '0'),
(467, 'Red Traffic Light', 'traffic_light*6', 's', 1, 1, 1, '0', '0', '0', 1765, '1', '1', '1', '1', '1', 'default', 3, '0'),
(468, 'Blue Inflatable Chair', 'rubberchair*1', 's', 1, 1, 1, '0', '1', '0', 1766, '1', '1', '1', '1', '1', 'default', 1, '0'),
(469, 'Pink Inflatable Chair', 'rubberchair*2', 's', 1, 1, 1, '0', '1', '0', 1767, '1', '1', '1', '1', '1', 'default', 1, '0'),
(470, 'Orange Inflatable Chair', 'rubberchair*3', 's', 1, 1, 1, '0', '1', '0', 1768, '1', '1', '1', '1', '1', 'default', 1, '0'),
(471, 'Ocean Inflatable Chair', 'rubberchair*4', 's', 1, 1, 1, '0', '1', '0', 1769, '1', '1', '1', '1', '1', 'default', 1, '0'),
(472, 'Lime Inflatable Chair', 'rubberchair*5', 's', 1, 1, 1, '0', '1', '0', 1770, '1', '1', '1', '1', '1', 'default', 1, '0'),
(473, 'Violet Inflatable Chair', 'rubberchair*6', 's', 1, 1, 1, '0', '1', '0', 1771, '1', '1', '1', '1', '1', 'default', 1, '0'),
(474, 'Yellow Maze Barrier', 'barrier*1', 's', 1, 2, 1, '0', '0', '0', 1772, '1', '1', '1', '1', '1', 'default', 2, '0'),
(475, 'No trespassing', 'barrier*2', 's', 1, 2, 1, '0', '0', '0', 1773, '1', '1', '1', '1', '1', 'default', 2, '0'),
(476, 'No trespassing', 'barrier*3', 's', 1, 2, 1, '0', '0', '0', 1774, '1', '1', '1', '1', '1', 'default', 2, '0'),
(477, 'White Inflatable Chair', 'rubberchair*7', 's', 1, 1, 1, '0', '1', '0', 1775, '1', '1', '1', '1', '1', 'default', 1, '0'),
(478, 'Black Inflatable Chair', 'rubberchair*8', 's', 1, 1, 1, '0', '1', '0', 1776, '1', '1', '1', '1', '1', 'default', 1, '0'),
(479, 'Black Iced Table', 'table_norja_med*2', 's', 2, 2, 1, '1', '0', '0', 1777, '1', '1', '1', '1', '1', 'default', 1, '0'),
(480, 'White Iced Table', 'table_norja_med*3', 's', 2, 2, 1, '1', '0', '0', 1778, '1', '1', '1', '1', '1', 'default', 1, '0'),
(481, 'Urban Iced Coffee Table', 'table_norja_med*4', 's', 2, 2, 1, '1', '0', '0', 1779, '1', '1', '1', '1', '1', 'default', 1, '0'),
(482, 'Large Coffee Table Pink', 'table_norja_med*5', 's', 2, 2, 1, '1', '0', '0', 1780, '1', '1', '1', '1', '1', 'default', 1, '0'),
(483, 'Large Coffee Table Blue', 'table_norja_med*6', 's', 2, 2, 1, '1', '0', '0', 1781, '1', '1', '1', '1', '1', 'default', 1, '0'),
(484, 'Rural Iced Coffee Table', 'table_norja_med*7', 's', 2, 2, 1, '1', '0', '0', 1782, '1', '1', '1', '1', '1', 'default', 1, '0'),
(485, 'Large Coffee Table Yellow', 'table_norja_med*8', 's', 2, 2, 1, '1', '0', '0', 1783, '1', '1', '1', '1', '1', 'default', 1, '0'),
(486, 'Large Coffee Table Red', 'table_norja_med*9', 's', 2, 2, 1, '1', '0', '0', 1784, '1', '1', '1', '1', '1', 'default', 1, '0'),
(487, 'Black Iced Bench', 'couch_norja*2', 's', 2, 1, 1, '0', '1', '0', 1785, '1', '1', '1', '1', '1', 'default', 1, '0'),
(488, 'White Iced Bench', 'couch_norja*3', 's', 2, 1, 1, '0', '1', '0', 1786, '1', '1', '1', '1', '1', 'default', 1, '0'),
(489, 'Urban Iced Bench', 'couch_norja*4', 's', 2, 1, 1, '0', '1', '0', 1787, '1', '1', '1', '1', '1', 'default', 1, '0'),
(490, 'Pink Bench', 'couch_norja*5', 's', 2, 1, 1, '0', '1', '0', 1788, '1', '1', '1', '1', '1', 'default', 1, '0'),
(491, 'Blue Bench', 'couch_norja*6', 's', 2, 1, 1, '0', '1', '0', 1789, '1', '1', '1', '1', '1', 'default', 1, '0'),
(492, 'Rural Iced Bench', 'couch_norja*7', 's', 2, 1, 1, '0', '1', '0', 1790, '1', '1', '1', '1', '1', 'default', 1, '0'),
(493, 'Yellow Bench', 'couch_norja*8', 's', 2, 1, 1, '0', '1', '0', 1791, '1', '1', '1', '1', '1', 'default', 1, '0'),
(494, 'Red Bench', 'couch_norja*9', 's', 2, 1, 1, '0', '1', '0', 1792, '1', '1', '1', '1', '1', 'default', 1, '0'),
(495, 'Black Iced Bookcase', 'shelves_norja*2', 's', 1, 1, 1, '0', '0', '0', 1793, '1', '1', '1', '1', '1', 'default', 1, '0'),
(496, 'Urban Iced Bookcase', 'shelves_norja*3', 's', 1, 1, 1, '0', '0', '0', 1794, '1', '1', '1', '1', '1', 'default', 1, '0'),
(497, 'Pink Bookcase', 'shelves_norja*5', 's', 1, 1, 1, '0', '0', '0', 1796, '1', '1', '1', '1', '1', 'default', 1, '0'),
(498, 'Blue Bookcase', 'shelves_norja*6', 's', 1, 1, 1, '0', '0', '0', 1797, '1', '1', '1', '1', '1', 'default', 1, '0'),
(499, 'Rural Iced Bookcase', 'shelves_norja*7', 's', 1, 1, 1, '0', '0', '0', 1798, '1', '1', '1', '1', '1', 'default', 1, '0'),
(500, 'Yellow Bookcase', 'shelves_norja*8', 's', 1, 1, 1, '0', '0', '0', 1799, '1', '1', '1', '1', '1', 'default', 1, '0'),
(501, 'Red Bookcase', 'shelves_norja*9', 's', 1, 1, 1, '0', '0', '0', 1800, '1', '1', '1', '1', '1', 'default', 1, '0'),
(502, 'Black Iced Chair', 'chair_norja*2', 's', 1, 1, 1, '0', '1', '0', 1801, '1', '1', '1', '1', '1', 'default', 1, '0'),
(503, 'White Iced Chair', 'chair_norja*3', 's', 1, 1, 1, '0', '1', '0', 1802, '1', '1', '1', '1', '1', 'default', 1, '0'),
(504, 'Urban Iced Chair', 'chair_norja*4', 's', 1, 1, 1, '0', '1', '0', 1803, '1', '1', '1', '1', '1', 'default', 1, '0'),
(505, 'Pink Chair', 'chair_norja*5', 's', 1, 1, 1, '0', '1', '0', 1804, '1', '1', '1', '1', '1', 'default', 1, '0'),
(506, 'Blue Chair', 'chair_norja*6', 's', 1, 1, 1, '0', '1', '0', 1805, '1', '1', '1', '1', '1', 'default', 1, '0'),
(507, 'Rural Chair', 'chair_norja*7', 's', 1, 1, 1, '0', '1', '0', 1806, '1', '1', '1', '1', '1', 'default', 1, '0'),
(508, 'Yellow Chair', 'chair_norja*8', 's', 1, 1, 1, '0', '1', '0', 1807, '1', '1', '1', '1', '1', 'default', 1, '0'),
(509, 'Red Chair', 'chair_norja*9', 's', 1, 1, 1, '0', '1', '0', 1808, '1', '1', '1', '1', '1', 'default', 1, '0'),
(510, 'Black Iced Corner', 'divider_nor1*2', 's', 1, 1, 1, '0', '0', '0', 1809, '1', '1', '1', '1', '1', 'default', 1, '0'),
(511, 'Looks squishy', 'divider_nor1*3', 's', 1, 1, 1, '0', '0', '0', 1810, '1', '1', '1', '1', '1', 'default', 1, '0'),
(512, 'Urban Iced Corner', 'divider_nor1*4', 's', 1, 1, 1, '0', '0', '0', 1811, '1', '1', '1', '1', '1', 'default', 1, '0'),
(513, 'Pink Ice corner', 'divider_nor1*5', 's', 1, 1, 1, '0', '0', '0', 1812, '1', '1', '1', '1', '1', 'default', 1, '0'),
(514, 'Blue Ice corner', 'divider_nor1*6', 's', 1, 1, 1, '0', '0', '0', 1813, '1', '1', '1', '1', '1', 'default', 1, '0'),
(515, 'Rural Iced Corner', 'divider_nor1*7', 's', 1, 1, 1, '0', '0', '0', 1814, '1', '1', '1', '1', '1', 'default', 1, '0'),
(516, 'Yellow Ice corner', 'divider_nor1*8', 's', 1, 1, 1, '0', '0', '0', 1815, '1', '1', '1', '1', '1', 'default', 1, '0'),
(517, 'Red Ice corner', 'divider_nor1*9', 's', 1, 1, 1, '0', '0', '0', 1816, '1', '1', '1', '1', '1', 'default', 1, '0'),
(518, 'Black Iced Sofa', 'soft_sofa_norja*2', 's', 2, 1, 1, '0', '1', '0', 1817, '1', '1', '1', '1', '1', 'default', 1, '0'),
(519, 'Pristine white', 'soft_sofa_norja*3', 's', 2, 1, 1, '0', '1', '0', 1818, '1', '1', '1', '1', '1', 'default', 1, '0'),
(520, 'Urban Iced Sofa', 'soft_sofa_norja*4', 's', 2, 1, 1, '0', '1', '0', 1819, '1', '1', '1', '1', '1', 'default', 1, '0'),
(521, 'Pink Iced Sofa', 'soft_sofa_norja*5', 's', 2, 1, 1, '0', '1', '0', 1820, '1', '1', '1', '1', '1', 'default', 1, '0'),
(522, 'Blue Iced Sofa', 'soft_sofa_norja*6', 's', 2, 1, 1, '0', '1', '0', 1821, '1', '1', '1', '1', '1', 'default', 1, '0'),
(523, 'Rural Iced Sofa', 'soft_sofa_norja*7', 's', 2, 1, 1, '0', '1', '0', 1822, '1', '1', '1', '1', '1', 'default', 1, '0'),
(524, 'Yellow Iced Sofa', 'soft_sofa_norja*8', 's', 2, 1, 1, '0', '1', '0', 1823, '1', '1', '1', '1', '1', 'default', 1, '0'),
(525, 'Red Iced Sofa', 'soft_sofa_norja*9', 's', 2, 1, 1, '0', '1', '0', 1824, '1', '1', '1', '1', '1', 'default', 1, '0'),
(526, 'Black Iced Sofachair', 'soft_sofachair_norja*2', 's', 1, 1, 1, '0', '1', '0', 1825, '1', '1', '1', '1', '1', 'default', 1, '0'),
(527, 'White Iced Sofachair', 'soft_sofachair_norja*3', 's', 1, 1, 1, '0', '1', '0', 1826, '1', '1', '1', '1', '1', 'default', 1, '0'),
(528, 'Urban Iced Sofachair', 'soft_sofachair_norja*4', 's', 1, 1, 1, '0', '1', '0', 1827, '1', '1', '1', '1', '1', 'default', 1, '0'),
(529, 'Pink Iced Sofachair', 'soft_sofachair_norja*5', 's', 1, 1, 1, '0', '1', '0', 1828, '1', '1', '1', '1', '1', 'default', 1, '0'),
(530, 'Blue Iced Sofachair', 'soft_sofachair_norja*6', 's', 1, 1, 1, '0', '1', '0', 1829, '1', '1', '1', '1', '1', 'default', 1, '0'),
(531, 'Rural Iced Sofachair', 'soft_sofachair_norja*7', 's', 1, 1, 1, '0', '1', '0', 1830, '1', '1', '1', '1', '1', 'default', 1, '0'),
(532, 'Yellow Iced Sofachair', 'soft_sofachair_norja*8', 's', 1, 1, 1, '0', '1', '0', 1831, '1', '1', '1', '1', '1', 'default', 1, '0'),
(533, 'Red Iced Sofachair', 'soft_sofachair_norja*9', 's', 1, 1, 1, '0', '1', '0', 1832, '1', '1', '1', '1', '1', 'default', 1, '0'),
(534, 'Large', 'sofachair_silo*2', 's', 1, 1, 1.1, '0', '1', '0', 1833, '1', '1', '1', '1', '1', 'default', 1, '0'),
(535, 'Large', 'sofachair_silo*3', 's', 1, 1, 1.1, '0', '1', '0', 1834, '1', '1', '1', '1', '1', 'default', 1, '0'),
(536, 'Beige Area Armchair', 'sofachair_silo*4', 's', 1, 1, 1.1, '0', '1', '0', 1835, '1', '1', '1', '1', '1', 'default', 1, '0'),
(537, 'Pink Area Armchair', 'sofachair_silo*5', 's', 1, 1, 1.1, '0', '1', '0', 1836, '1', '1', '1', '1', '1', 'default', 1, '0'),
(538, 'Blue Area Armchair', 'sofachair_silo*6', 's', 1, 1, 1.1, '0', '1', '0', 1837, '1', '1', '1', '1', '1', 'default', 1, '0'),
(539, 'Green Area Armchair', 'sofachair_silo*7', 's', 1, 1, 1.1, '0', '1', '0', 1838, '1', '1', '1', '1', '1', 'default', 1, '0'),
(540, 'Large', 'sofachair_silo*8', 's', 1, 1, 1.1, '0', '1', '0', 1839, '1', '1', '1', '1', '1', 'default', 1, '0'),
(541, 'Red Area Armchair', 'sofachair_silo*9', 's', 1, 1, 1.1, '0', '1', '0', 1840, '1', '1', '1', '1', '1', 'default', 1, '0'),
(542, 'Black Occasional Table', 'table_silo_small*2', 's', 1, 1, 1, '1', '0', '0', 1841, '1', '1', '1', '1', '1', 'default', 1, '0'),
(543, 'White Occasional Table', 'table_silo_small*3', 's', 1, 1, 1, '1', '0', '0', 1842, '1', '1', '1', '1', '1', 'default', 1, '0'),
(544, 'Beige Area Occasional Table', 'table_silo_small*4', 's', 1, 1, 1, '1', '0', '0', 1843, '1', '1', '1', '1', '1', 'default', 1, '0'),
(545, 'Pink Area Occasional Table', 'table_silo_small*5', 's', 1, 1, 1, '1', '0', '0', 1844, '1', '1', '1', '1', '1', 'default', 1, '0'),
(546, 'Blue Area Occasional Table', 'table_silo_small*6', 's', 1, 1, 1, '1', '0', '0', 1845, '1', '1', '1', '1', '1', 'default', 1, '0'),
(547, 'Green Area Occasional Table', 'table_silo_small*7', 's', 1, 1, 1, '1', '0', '0', 1846, '1', '1', '1', '1', '1', 'default', 1, '0'),
(548, 'Yellow Occasional Table', 'table_silo_small*8', 's', 1, 1, 1, '1', '0', '0', 1847, '1', '1', '1', '1', '1', 'default', 1, '0'),
(549, 'Red Area Occasional Table', 'table_silo_small*9', 's', 1, 1, 1, '1', '0', '0', 1848, '1', '1', '1', '1', '1', 'default', 1, '0'),
(550, 'Black Corner Shelf', 'divider_silo1*2', 's', 1, 1, 1, '0', '0', '0', 1849, '1', '1', '1', '1', '1', 'default', 1, '0'),
(551, 'White Corner Shelf', 'divider_silo1*3', 's', 1, 1, 1, '0', '0', '0', 1850, '1', '1', '1', '1', '1', 'default', 1, '0'),
(552, 'Beige Area Corner Shelf', 'divider_silo1*4', 's', 1, 1, 1, '0', '0', '0', 1851, '1', '1', '1', '1', '1', 'default', 1, '0'),
(553, 'Pink Area Corner Shelf', 'divider_silo1*5', 's', 1, 1, 1, '0', '0', '0', 1852, '1', '1', '1', '1', '1', 'default', 1, '0'),
(554, 'Blue Area Corner Shelf', 'divider_silo1*6', 's', 1, 1, 1, '0', '0', '0', 1853, '1', '1', '1', '1', '1', 'default', 1, '0'),
(555, 'Green Area Corner Shelf', 'divider_silo1*7', 's', 1, 1, 1, '0', '0', '0', 1854, '1', '1', '1', '1', '1', 'default', 1, '0'),
(556, 'Yellow Corner Shelf', 'divider_silo1*8', 's', 1, 1, 1, '0', '0', '0', 1855, '1', '1', '1', '1', '1', 'default', 1, '0'),
(557, 'Red Area Corner Shelf', 'divider_silo1*9', 's', 1, 1, 1, '0', '0', '0', 1856, '1', '1', '1', '1', '1', 'default', 1, '0'),
(558, 'Black Area Gate', 'divider_silo3*2', 's', 1, 1, 0.001, '0', '0', '0', 1857, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(559, 'White Area Gate', 'divider_silo3*3', 's', 1, 1, 0.001, '0', '0', '0', 1858, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(560, 'Beige Area Gate', 'divider_silo3*4', 's', 1, 1, 0.001, '0', '0', '0', 1859, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(561, 'Pink Area Gate', 'divider_silo3*5', 's', 1, 1, 0.001, '0', '0', '0', 1860, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(562, 'Blue Area Gate', 'divider_silo3*6', 's', 1, 1, 0.001, '0', '0', '0', 1861, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(563, 'Green Area Gate', 'divider_silo3*7', 's', 1, 1, 0.001, '0', '0', '0', 1862, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(564, 'Yellow Area Gate', 'divider_silo3*8', 's', 1, 1, 0.001, '0', '0', '0', 1863, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(565, 'Red Area Gate', 'divider_silo3*9', 's', 1, 1, 0.001, '0', '0', '0', 1864, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(566, 'Black Coffee Table', 'table_silo_med*2', 's', 2, 2, 1, '1', '0', '0', 1865, '1', '1', '1', '1', '1', 'default', 1, '0'),
(567, 'White Coffee Table', 'table_silo_med*3', 's', 2, 2, 1, '1', '0', '0', 1866, '1', '1', '1', '1', '1', 'default', 1, '0'),
(568, 'Beige Area Coffee Table', 'table_silo_med*4', 's', 2, 2, 1, '1', '0', '0', 1867, '1', '1', '1', '1', '1', 'default', 1, '0'),
(569, 'Pink Area Coffee Table', 'table_silo_med*5', 's', 2, 2, 1, '1', '0', '0', 1868, '1', '1', '1', '1', '1', 'default', 1, '0'),
(570, 'Blue Area Coffee Table', 'table_silo_med*6', 's', 2, 2, 1, '1', '0', '0', 1869, '1', '1', '1', '1', '1', 'default', 1, '0'),
(571, 'Green Area Coffee Table', 'table_silo_med*7', 's', 2, 2, 1, '1', '0', '0', 1870, '1', '1', '1', '1', '1', 'default', 1, '0'),
(572, 'Yellow Coffee Table', 'table_silo_med*8', 's', 2, 2, 1, '1', '0', '0', 1871, '1', '1', '1', '1', '1', 'default', 1, '0'),
(573, 'Red Area Coffee Table', 'table_silo_med*9', 's', 2, 2, 1, '1', '0', '0', 1872, '1', '1', '1', '1', '1', 'default', 1, '0'),
(574, 'Cushioned', 'sofa_silo*2', 's', 2, 1, 1.1, '0', '1', '0', 1873, '1', '1', '1', '1', '1', 'default', 1, '0'),
(575, 'Cushioned', 'sofa_silo*3', 's', 2, 1, 1.1, '0', '1', '0', 1874, '1', '1', '1', '1', '1', 'default', 1, '0'),
(576, 'Beige Area Sofa', 'sofa_silo*4', 's', 2, 1, 1.1, '0', '1', '0', 1875, '1', '1', '1', '1', '1', 'default', 1, '0'),
(577, 'Pink Area Sofa', 'sofa_silo*5', 's', 2, 1, 1.1, '0', '1', '0', 1876, '1', '1', '1', '1', '1', 'default', 1, '0'),
(578, 'Blue Area Sofa', 'sofa_silo*6', 's', 2, 1, 1.1, '0', '1', '0', 1877, '1', '1', '1', '1', '1', 'default', 1, '0'),
(579, 'Green Area Sofa', 'sofa_silo*7', 's', 2, 1, 1.1, '0', '1', '0', 1878, '1', '1', '1', '1', '1', 'default', 1, '0'),
(580, 'Cushioned', 'sofa_silo*8', 's', 2, 1, 1.1, '0', '1', '0', 1879, '1', '1', '1', '1', '1', 'default', 1, '0'),
(581, 'Red Area Sofa', 'sofa_silo*9', 's', 2, 1, 1.1, '0', '1', '0', 1880, '1', '1', '1', '1', '1', 'default', 1, '0'),
(582, 'Black Mode Armchair', 'sofachair_polyfon*2', 's', 1, 1, 1.1, '0', '1', '0', 1881, '1', '1', '1', '1', '1', 'default', 1, '0'),
(583, 'White Armchair', 'sofachair_polyfon*3', 's', 1, 1, 1.1, '0', '1', '0', 1882, '1', '1', '1', '1', '1', 'default', 1, '0'),
(584, 'Beige Mode Armchair', 'sofachair_polyfon*4', 's', 1, 1, 1.1, '0', '1', '0', 1883, '1', '1', '1', '1', '1', 'default', 1, '0'),
(585, 'Blue Mode Armchair', 'sofachair_polyfon*6', 's', 1, 1, 1.1, '0', '1', '0', 1884, '1', '1', '1', '1', '1', 'default', 1, '0'),
(586, 'Green Armchair', 'sofachair_polyfon*7', 's', 1, 1, 1.1, '0', '1', '0', 1885, '1', '1', '1', '1', '1', 'default', 1, '0'),
(587, 'Yellow Mode Armchair', 'sofachair_polyfon*8', 's', 1, 1, 1.1, '0', '1', '0', 1886, '1', '1', '1', '1', '1', 'default', 1, '0'),
(588, 'Red Armchair', 'sofachair_polyfon*9', 's', 1, 1, 1.1, '0', '1', '0', 1887, '1', '1', '1', '1', '1', 'default', 1, '0'),
(589, 'Black Mode Sofa', 'sofa_polyfon*2', 's', 2, 1, 1.1, '0', '1', '0', 1888, '1', '1', '1', '1', '1', 'default', 1, '0'),
(590, 'White Two-seater Sofa', 'sofa_polyfon*3', 's', 2, 1, 1.1, '0', '1', '0', 1889, '1', '1', '1', '1', '1', 'default', 1, '0'),
(591, 'Beige Mode Sofa', 'sofa_polyfon*4', 's', 2, 1, 1.1, '0', '1', '0', 1890, '1', '1', '1', '1', '1', 'default', 1, '0'),
(592, 'Blue Mode Sofa', 'sofa_polyfon*6', 's', 2, 1, 1.1, '0', '1', '0', 1891, '1', '1', '1', '1', '1', 'default', 1, '0'),
(593, 'Green Two-seater Sofa', 'sofa_polyfon*7', 's', 2, 1, 1.1, '0', '1', '0', 1892, '1', '1', '1', '1', '1', 'default', 1, '0'),
(594, 'Yellow Mode Sofa', 'sofa_polyfon*8', 's', 2, 1, 1.1, '0', '1', '0', 1893, '1', '1', '1', '1', '1', 'default', 1, '0'),
(595, 'Black Mode Double Bed', 'sofa_polyfon*9', 's', 2, 1, 1.1, '0', '1', '0', 1894, '1', '1', '1', '1', '1', 'default', 1, '0'),
(596, 'White Double Bed', 'bed_polyfon*3', 's', 2, 3, 1.8, '0', '0', '0', 1896, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(597, 'Beige Mode Double Bed', 'bed_polyfon*4', 's', 2, 3, 1.8, '0', '0', '0', 1897, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(598, 'Blue Mode Double Bed', 'bed_polyfon*6', 's', 2, 3, 1.8, '0', '0', '0', 1898, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(599, 'Green Double Bed', 'bed_polyfon*7', 's', 2, 3, 1.8, '0', '0', '0', 1899, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(600, 'Yellow Mode Double Bed', 'bed_polyfon*8', 's', 2, 3, 1.8, '0', '0', '0', 1900, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(601, 'Red Double Bed', 'bed_polyfon*9', 's', 2, 3, 1.8, '0', '0', '0', 1901, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(602, 'Black Mode Single Bed', 'bed_polyfon_one*2', 's', 1, 3, 1.8, '0', '0', '0', 1902, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(603, 'White Single Bed', 'bed_polyfon_one*3', 's', 1, 3, 1.8, '0', '0', '0', 1903, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(604, 'Beige Mode Single Bed', 'bed_polyfon_one*4', 's', 1, 3, 1.8, '0', '0', '0', 1904, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(605, 'Blue Mode Single Bed', 'bed_polyfon_one*6', 's', 1, 3, 1.8, '0', '0', '0', 1905, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(606, 'Green Single Bed', 'bed_polyfon_one*7', 's', 1, 3, 1.8, '0', '0', '0', 1906, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(607, 'Yellow Mode Single Bed', 'bed_polyfon_one*8', 's', 1, 3, 1.8, '0', '0', '0', 1907, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(608, 'Red Single Bed', 'bed_polyfon_one*9', 's', 1, 3, 1.8, '0', '0', '0', 1908, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(609, 'Black Mode Bardesk', 'bardesk_polyfon*2', 's', 2, 1, 1, '1', '0', '0', 1909, '1', '1', '1', '1', '1', 'default', 1, '0'),
(610, 'White Bardesk', 'bardesk_polyfon*3', 's', 2, 1, 1, '1', '0', '0', 1910, '1', '1', '1', '1', '1', 'default', 1, '0'),
(611, 'Beige Mode Bardesk', 'bardesk_polyfon*4', 's', 2, 1, 1, '1', '0', '0', 1911, '1', '1', '1', '1', '1', 'default', 1, '0'),
(612, 'Candy Bar', 'bardesk_polyfon*5', 's', 2, 1, 1, '1', '0', '0', 1912, '1', '1', '1', '1', '1', 'default', 1, '0'),
(613, 'Blue Mode Bardesk', 'bardesk_polyfon*6', 's', 2, 1, 1, '1', '0', '0', 1913, '1', '1', '1', '1', '1', 'default', 1, '0'),
(614, 'Green Bardesk', 'bardesk_polyfon*7', 's', 2, 1, 1, '1', '0', '0', 1914, '1', '1', '1', '1', '1', 'default', 1, '0'),
(615, 'Yellow Mode Bardesk', 'bardesk_polyfon*8', 's', 2, 1, 1, '1', '0', '0', 1915, '1', '1', '1', '1', '1', 'default', 1, '0'),
(616, 'Red Bardesk', 'bardesk_polyfon*9', 's', 2, 1, 1, '1', '0', '0', 1916, '1', '1', '1', '1', '1', 'default', 1, '0'),
(617, 'Black Mode Bardesk Corner', 'bardeskcorner_polyfon*2', 's', 1, 1, 1, '1', '0', '0', 1917, '1', '1', '1', '1', '1', 'default', 1, '0'),
(618, 'White Corner Desk', 'bardeskcorner_polyfon*3', 's', 1, 1, 1, '1', '0', '0', 1918, '1', '1', '1', '1', '1', 'default', 1, '0'),
(619, 'Beige Mode Bardesk Corner', 'bardeskcorner_polyfon*4', 's', 1, 1, 1, '1', '0', '0', 1919, '1', '1', '1', '1', '1', 'default', 1, '0'),
(620, 'Candy Corner', 'bardeskcorner_polyfon*5', 's', 1, 1, 1, '1', '0', '0', 1920, '1', '1', '1', '1', '1', 'default', 1, '0'),
(621, 'Blue Mode Bardesk Corner', 'bardeskcorner_polyfon*6', 's', 1, 1, 1, '1', '0', '0', 1921, '1', '1', '1', '1', '1', 'default', 1, '0'),
(622, 'Green Corner Desk', 'bardeskcorner_polyfon*7', 's', 1, 1, 1, '1', '0', '0', 1922, '1', '1', '1', '1', '1', 'default', 1, '0'),
(623, 'Yellow Mode Bardesk Corner', 'bardeskcorner_polyfon*8', 's', 1, 1, 1, '1', '0', '0', 1923, '1', '1', '1', '1', '1', 'default', 1, '0'),
(624, 'Red Corner Desk', 'bardeskcorner_polyfon*9', 's', 1, 1, 1, '1', '0', '0', 1924, '1', '1', '1', '1', '1', 'default', 1, '0'),
(625, 'Black Mode Bardesk Gate', 'divider_poly3*2', 's', 1, 1, 0.001, '0', '0', '0', 1925, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(626, 'White Hatch', 'divider_poly3*3', 's', 1, 1, 0.001, '0', '0', '0', 1926, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(627, 'Beige Mode Bardesk Gate', 'divider_poly3*4', 's', 1, 1, 0.001, '0', '0', '0', 1927, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(628, 'Candy Hatch (Lockable)', 'divider_poly3*5', 's', 1, 1, 0.001, '0', '0', '0', 1928, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(629, 'Blue Mode Bardesk Gate', 'divider_poly3*6', 's', 1, 1, 0.001, '0', '0', '0', 1929, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(631, 'Yellow Mode Bardesk Gate', 'divider_poly3*8', 's', 1, 1, 0.001, '0', '0', '0', 1931, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(632, 'Red Hatch', 'divider_poly3*9', 's', 1, 1, 0.001, '0', '0', '0', 1932, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(633, 'Black Dining Chair', 'chair_silo*2', 's', 1, 1, 1.1, '0', '1', '0', 1933, '1', '1', '1', '1', '1', 'default', 1, '0'),
(634, 'White Dining Chair', 'chair_silo*3', 's', 1, 1, 1.1, '0', '1', '0', 1934, '1', '1', '1', '1', '1', 'default', 1, '0'),
(635, 'Beige Silo Dining Chair', 'chair_silo*4', 's', 1, 1, 1.1, '0', '1', '0', 1935, '1', '1', '1', '1', '1', 'default', 1, '0'),
(636, 'Pink Silo Dining Chair', 'chair_silo*5', 's', 1, 1, 1.1, '0', '1', '0', 1936, '1', '1', '1', '1', '1', 'default', 1, '0'),
(637, 'Blue Area Dining Chair', 'chair_silo*6', 's', 1, 1, 1.1, '0', '1', '0', 1937, '1', '1', '1', '1', '1', 'default', 1, '0'),
(638, 'Green Area Dining Chair', 'chair_silo*7', 's', 1, 1, 1.1, '0', '1', '0', 1938, '1', '1', '1', '1', '1', 'default', 1, '0'),
(639, 'Yellow Dining Chair', 'chair_silo*8', 's', 1, 1, 1.1, '0', '1', '0', 1939, '1', '1', '1', '1', '1', 'default', 1, '0'),
(640, 'Red Area Dining Chair', 'chair_silo*9', 's', 1, 1, 1.1, '0', '1', '0', 1940, '1', '1', '1', '1', '1', 'default', 1, '0'),
(641, 'No way through', 'divider_nor3*2', 's', 1, 1, 1, '0', '0', '0', 1941, '1', '1', '1', '1', '1', 'default', 2, '0'),
(642, 'White Iced Gate', 'divider_nor3*3', 's', 1, 1, 0.001, '0', '0', '0', 1942, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(643, 'Urban Iced Gate', 'divider_nor3*4', 's', 1, 1, 0.001, '0', '0', '0', 1943, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(644, 'Pink Iced gate', 'divider_nor3*5', 's', 1, 1, 0.001, '0', '0', '0', 1944, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(645, 'Blue Iced gate', 'divider_nor3*6', 's', 1, 1, 0.001, '0', '0', '0', 1945, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(646, 'Rural Iced gate', 'divider_nor3*7', 's', 1, 1, 0.001, '0', '0', '0', 1946, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(647, 'Yellow Iced gate', 'divider_nor3*8', 's', 1, 1, 0.001, '0', '0', '0', 1947, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(648, 'Red Iced gate', 'divider_nor3*9', 's', 1, 1, 0.001, '0', '0', '0', 1948, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(649, 'Black Iced Bar-Desk', 'divider_nor2*2', 's', 2, 1, 1, '0', '0', '0', 1949, '1', '1', '1', '1', '1', 'default', 1, '0'),
(650, 'Strong', 'divider_nor2*3', 's', 2, 1, 1, '0', '0', '0', 1950, '1', '1', '1', '1', '1', 'default', 1, '0'),
(651, 'Urban Iced Bar', 'divider_nor2*4', 's', 2, 1, 1, '0', '0', '0', 1951, '1', '1', '1', '1', '1', 'default', 1, '0'),
(652, 'Pink Iced bar desk', 'divider_nor2*5', 's', 2, 1, 1, '0', '0', '0', 1952, '1', '1', '1', '1', '1', 'default', 1, '0'),
(653, 'Blue Iced  bar desk', 'divider_nor2*6', 's', 2, 1, 1, '0', '0', '0', 1953, '1', '1', '1', '1', '1', 'default', 1, '0'),
(654, 'Rural Iced Bar', 'divider_nor2*7', 's', 2, 1, 1, '0', '0', '0', 1954, '1', '1', '1', '1', '1', 'default', 1, '0'),
(655, 'Yellow Iced  bar desk', 'divider_nor2*8', 's', 2, 1, 1, '0', '0', '0', 1955, '1', '1', '1', '1', '1', 'default', 1, '0'),
(656, 'Red Iced  bar desk', 'divider_nor2*9', 's', 2, 1, 1, '0', '0', '0', 1956, '1', '1', '1', '1', '1', 'default', 1, '0'),
(657, 'Area Quest Desk', 'silo_studydesk', 's', 2, 1, 1, '1', '0', '0', 1957, '1', '1', '1', '1', '1', 'default', 1, '0'),
(658, 'White Solarium', 'solarium_norja', 's', 1, 1, 1, '0', '0', '0', 1958, '1', '1', '1', '1', '1', 'default', 2, '0'),
(659, 'Black Solarium', 'solarium_norja*1', 's', 1, 1, 1, '0', '0', '0', 1959, '1', '1', '1', '1', '1', 'default', 2, '0'),
(660, 'Beige Solarium', 'solarium_norja*2', 's', 1, 1, 1, '0', '0', '0', 1960, '1', '1', '1', '1', '1', 'default', 2, '0'),
(661, 'Urban Solarium', 'solarium_norja*3', 's', 1, 1, 1, '0', '0', '0', 1961, '1', '1', '1', '1', '1', 'default', 2, '0'),
(662, 'Pink Solarium', 'solarium_norja*5', 's', 1, 1, 1, '0', '0', '0', 1962, '1', '1', '1', '1', '1', 'default', 2, '0'),
(663, 'Blue Solarium', 'solarium_norja*6', 's', 1, 1, 1, '0', '0', '0', 1963, '1', '1', '1', '1', '1', 'default', 2, '0'),
(664, 'Rural Solarium', 'solarium_norja*7', 's', 1, 1, 1, '0', '0', '0', 1964, '1', '1', '1', '1', '1', 'default', 2, '0'),
(665, 'Yellow Solarium', 'solarium_norja*8', 's', 1, 1, 1, '0', '0', '0', 1965, '1', '1', '1', '1', '1', 'default', 2, '0'),
(666, 'Red Solarium', 'solarium_norja*9', 's', 1, 1, 1, '0', '0', '0', 1966, '1', '1', '1', '1', '1', 'default', 2, '0'),
(667, 'Tropical Beach Rug', 'sandrug', 's', 2, 2, 0, '1', '0', '1', 1967, '1', '1', '1', '1', '1', 'default', 1, '0'),
(668, 'Moon Patch', 'rare_moonrug', 's', 2, 2, 0, '1', '0', '1', 1968, '1', '1', '1', '1', '1', 'default', 1, '0'),
(669, 'Chinese Lacquer Chair', 'chair_china', 's', 1, 1, 1, '0', '1', '0', 1969, '1', '1', '1', '1', '1', 'default', 1, '0'),
(670, 'Chinese Lacquer Table', 'china_table', 's', 1, 1, 1, '1', '0', '0', 1970, '1', '1', '1', '1', '1', 'default', 1, '0'),
(671, 'Red Sleeping Bag', 'sleepingbag*1', 's', 1, 3, 0.8, '0', '0', '0', 1971, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(672, 'Lime Sleeping Bag', 'sleepingbag*2', 's', 1, 3, 0.8, '0', '0', '0', 1972, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(673, 'Ocean Sleeping Bag', 'sleepingbag*3', 's', 1, 3, 0.8, '0', '0', '0', 1973, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(674, 'Safety Sleeping Bag', 'sleepingbag*4', 's', 1, 3, 0.8, '0', '0', '0', 1974, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(675, 'Safe Minibar', 'safe_silo', 's', 1, 1, 1.3, '1', '0', '0', 1975, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(676, 'Orange Sleeping Bag', 'sleepingbag*7', 's', 1, 3, 0.8, '0', '0', '0', 1976, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(677, 'eXceptional Sleeping Bag', 'sleepingbag*9', 's', 1, 3, 0.8, '0', '0', '0', 1977, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(678, 'Graphite Sleeping Bag', 'sleepingbag*5', 's', 1, 3, 0.8, '0', '0', '0', 1978, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(679, 'Khaki Sleeping Bag', 'sleepingbag*10', 's', 1, 3, 0.8, '0', '0', '0', 1979, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(680, 'Purple Sleeping Bag', 'sleepingbag*6', 's', 1, 3, 0.8, '0', '0', '0', 1980, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(681, 'Golden Sleeping Bag', 'sleepingbag*8', 's', 1, 3, 0.8, '0', '0', '0', 1981, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(682, 'Chinese Bookshelf', 'china_shelve', 's', 2, 1, 1, '0', '0', '0', 1982, '1', '1', '1', '1', '1', 'default', 1, '0'),
(683, 'White Traffic Light', 'traffic_light*5', 's', 1, 1, 1, '0', '0', '0', 1983, '1', '1', '1', '1', '1', 'default', 3, '0'),
(684, 'Habbos', 'divider_nor4*2', 's', 2, 1, 1, '0', '0', '0', 1984, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(685, 'Habbos', 'divider_nor4*3', 's', 2, 1, 1, '0', '0', '0', 1985, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(686, 'Habbos', 'divider_nor4*5', 's', 2, 1, 1, '0', '0', '0', 1986, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(687, 'Habbos', 'divider_nor4*6', 's', 2, 1, 1, '0', '0', '0', 1987, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(688, 'Habbos', 'divider_nor4*7', 's', 2, 1, 1, '0', '0', '0', 1988, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(689, 'Habbos', 'divider_nor4*8', 's', 2, 1, 1, '0', '0', '0', 1989, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(690, 'Habbos', 'divider_nor4*9', 's', 2, 1, 1, '0', '0', '0', 1990, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(691, 'Black Iced Angle', 'divider_nor5*2', 's', 1, 1, 1, '0', '0', '0', 1991, '1', '1', '1', '1', '1', 'default', 2, '0'),
(692, 'White Iced Angle', 'divider_nor5*3', 's', 1, 1, 1, '0', '0', '0', 1992, '1', '1', '1', '1', '1', 'default', 2, '0'),
(693, 'Urban Iced Angle', 'divider_nor5*4', 's', 1, 1, 1, '0', '0', '0', 1993, '1', '1', '1', '1', '1', 'default', 2, '0'),
(694, 'Blue Iced Angle', 'divider_nor5*5', 's', 1, 1, 1, '0', '0', '0', 1994, '1', '1', '1', '1', '1', 'default', 2, '0'),
(695, 'Rural Iced Angle', 'divider_nor5*7', 's', 1, 1, 1, '0', '0', '0', 1996, '1', '1', '1', '1', '1', 'default', 2, '0'),
(696, 'Yellow Iced Angle', 'divider_nor5*8', 's', 1, 1, 1, '0', '0', '0', 1997, '1', '1', '1', '1', '1', 'default', 2, '0'),
(697, 'Red Iced Angle', 'divider_nor5*9', 's', 1, 1, 1, '0', '0', '0', 1998, '1', '1', '1', '1', '1', 'default', 2, '0'),
(698, 'Plain Iced Angle', 'divider_nor5', 's', 1, 1, 1, '0', '0', '0', 1999, '1', '1', '1', '1', '1', 'default', 2, '0'),
(699, 'Habbos', 'divider_nor4', 's', 2, 1, 1, '0', '0', '0', 2000, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(700, 'Dragon Screen', 'wall_china', 's', 1, 1, 1, '0', '0', '0', 2001, '1', '1', '1', '1', '1', 'default', 1, '0'),
(701, 'Firm', 'corner_china', 's', 1, 1, 1, '0', '0', '0', 2002, '1', '1', '1', '1', '1', 'default', 1, '0'),
(702, 'Black Bar Stool', 'barchair_silo*2', 's', 1, 1, 1.2, '0', '1', '0', 2003, '1', '1', '1', '1', '1', 'default', 1, '0'),
(703, 'White Bar Stool', 'barchair_silo*3', 's', 1, 1, 1.2, '0', '1', '0', 2004, '1', '1', '1', '1', '1', 'default', 1, '0'),
(704, 'Beige Bar Stool', 'barchair_silo*4', 's', 1, 1, 1.2, '0', '1', '0', 2005, '1', '1', '1', '1', '1', 'default', 1, '0'),
(705, 'Pink Bar Stool', 'barchair_silo*5', 's', 1, 1, 1.2, '0', '1', '0', 2006, '1', '1', '1', '1', '1', 'default', 1, '0'),
(706, 'Blue Bar Stool', 'barchair_silo*6', 's', 1, 1, 1.2, '0', '1', '0', 2007, '1', '1', '1', '1', '1', 'default', 1, '0'),
(707, 'Green Bar Stool', 'barchair_silo*7', 's', 1, 1, 1.2, '0', '1', '0', 2008, '1', '1', '1', '1', '1', 'default', 1, '0'),
(708, 'Yellow Bar Stool', 'barchair_silo*8', 's', 1, 1, 1.2, '0', '1', '0', 2009, '1', '1', '1', '1', '1', 'default', 1, '0'),
(709, 'Red Bar Stool', 'barchair_silo*9', 's', 1, 1, 1.2, '0', '1', '0', 2010, '1', '1', '1', '1', '1', 'default', 1, '0'),
(710, 'Black Safe Minibar', 'safe_silo*2', 's', 1, 1, 1.3, '1', '0', '0', 2011, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(711, 'White Safe Minibar', 'safe_silo*3', 's', 1, 1, 1.3, '1', '0', '0', 2012, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(712, 'Beige Safe Minibar', 'safe_silo*4', 's', 1, 1, 1.3, '1', '0', '0', 2013, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(713, 'Pink Safe Minibar', 'safe_silo*5', 's', 1, 1, 1.3, '1', '0', '0', 2014, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(714, 'Blue Safe Minibar', 'safe_silo*6', 's', 1, 1, 1.3, '1', '0', '0', 2015, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(715, 'Green Safe Minibar', 'safe_silo*7', 's', 1, 1, 1.3, '1', '0', '0', 2016, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(716, 'Yellow Safe Minibar', 'safe_silo*8', 's', 1, 1, 1.3, '1', '0', '0', 2017, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(717, 'Red Safe Minibar', 'safe_silo*9', 's', 1, 1, 1.3, '1', '0', '0', 2018, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(718, 'Glass shelf', 'glass_shelf', 's', 2, 1, 1, '0', '0', '0', 2019, '1', '1', '1', '1', '1', 'default', 1, '0'),
(719, 'Glass chair', 'glass_chair', 's', 1, 1, 1, '0', '1', '0', 2020, '1', '1', '1', '1', '1', 'default', 1, '0'),
(720, 'Glass stool', 'glass_stool', 's', 1, 1, 1, '0', '1', '0', 2021, '1', '1', '1', '1', '1', 'default', 1, '0'),
(721, 'Glass sofa', 'glass_sofa', 's', 2, 1, 1, '0', '1', '0', 2022, '1', '1', '1', '1', '1', 'default', 1, '0'),
(722, 'Glass table', 'glass_table', 's', 2, 2, 1, '1', '0', '0', 2023, '1', '1', '1', '1', '1', 'default', 1, '0'),
(723, 'Glass table', 'glass_table*2', 's', 2, 2, 1, '1', '0', '0', 2024, '1', '1', '1', '1', '1', 'default', 1, '0'),
(724, 'White Glass Table', 'glass_table*3', 's', 2, 2, 1, '1', '0', '0', 2025, '1', '1', '1', '1', '1', 'default', 1, '0'),
(725, 'Glass table', 'glass_table*4', 's', 2, 2, 1, '1', '0', '0', 2026, '1', '1', '1', '1', '1', 'default', 1, '0'),
(726, 'Candy Glass Table', 'glass_table*5', 's', 2, 2, 1, '1', '0', '0', 2027, '1', '1', '1', '1', '1', 'default', 1, '0'),
(727, 'Blue Glass Table', 'glass_table*6', 's', 2, 2, 1, '1', '0', '0', 2028, '1', '1', '1', '1', '1', 'default', 1, '0'),
(728, 'Green Glass Table', 'glass_table*7', 's', 2, 2, 1, '1', '0', '0', 2029, '1', '1', '1', '1', '1', 'default', 1, '0'),
(729, 'Yellow Glass Table', 'glass_table*8', 's', 2, 2, 1, '1', '0', '0', 2030, '1', '1', '1', '1', '1', 'default', 1, '0'),
(730, 'Glass table', 'glass_table*9', 's', 2, 2, 1, '1', '0', '0', 2031, '1', '1', '1', '1', '1', 'default', 1, '0'),
(731, 'Glass chair', 'glass_chair*2', 's', 1, 1, 1, '0', '1', '0', 2032, '1', '1', '1', '1', '1', 'default', 1, '0'),
(732, 'Glass chair', 'glass_chair*3', 's', 1, 1, 1, '0', '1', '0', 2033, '1', '1', '1', '1', '1', 'default', 1, '0'),
(733, 'Glass chair', 'glass_chair*4', 's', 1, 1, 1, '0', '1', '0', 2034, '1', '1', '1', '1', '1', 'default', 1, '0'),
(734, 'Candy Glass Chair', 'glass_chair*5', 's', 1, 1, 1, '0', '1', '0', 2035, '1', '1', '1', '1', '1', 'default', 1, '0'),
(735, 'Blue Glass Chair', 'glass_chair*6', 's', 1, 1, 1, '0', '1', '0', 2036, '1', '1', '1', '1', '1', 'default', 1, '0'),
(736, 'Green Glass Chair', 'glass_chair*7', 's', 1, 1, 1, '0', '1', '0', 2037, '1', '1', '1', '1', '1', 'default', 1, '0'),
(737, 'Yellow Glass Chair', 'glass_chair*8', 's', 1, 1, 1, '0', '1', '0', 2038, '1', '1', '1', '1', '1', 'default', 1, '0'),
(738, 'Glass chair', 'glass_chair*9', 's', 1, 1, 1, '0', '1', '0', 2039, '1', '1', '1', '1', '1', 'default', 1, '0'),
(739, 'Glass sofa', 'glass_sofa*2', 's', 2, 1, 1, '0', '1', '0', 2040, '1', '1', '1', '1', '1', 'default', 1, '0'),
(740, 'White Glass Sofa', 'glass_sofa*3', 's', 2, 1, 1, '0', '1', '0', 2041, '1', '1', '1', '1', '1', 'default', 1, '0'),
(741, 'Glass sofa', 'glass_sofa*4', 's', 2, 1, 1, '0', '1', '0', 2042, '1', '1', '1', '1', '1', 'default', 1, '0'),
(742, 'Candy Glass Sofa', 'glass_sofa*5', 's', 2, 1, 1, '0', '1', '0', 2043, '1', '1', '1', '1', '1', 'default', 1, '0'),
(743, 'Blue Glass Sofa', 'glass_sofa*6', 's', 2, 1, 1, '0', '1', '0', 2044, '1', '1', '1', '1', '1', 'default', 1, '0'),
(744, 'Green Glass Sofa', 'glass_sofa*7', 's', 2, 1, 1, '0', '1', '0', 2045, '1', '1', '1', '1', '1', 'default', 1, '0'),
(745, 'Yellow Glass Sofa', 'glass_sofa*8', 's', 2, 1, 1, '0', '1', '0', 2046, '1', '1', '1', '1', '1', 'default', 1, '0'),
(746, 'Glass sofa', 'glass_sofa*9', 's', 2, 1, 1, '0', '1', '0', 2047, '1', '1', '1', '1', '1', 'default', 1, '0'),
(747, 'Glass stool', 'glass_stool*2', 's', 1, 1, 1, '0', '1', '0', 2048, '1', '1', '1', '1', '1', 'default', 1, '0'),
(748, 'Glass stool', 'glass_stool*4', 's', 1, 1, 1, '0', '1', '0', 2050, '1', '1', '1', '1', '1', 'default', 1, '0'),
(749, 'Candy Glass Stool', 'glass_stool*5', 's', 1, 1, 1, '0', '1', '0', 2051, '1', '1', '1', '1', '1', 'default', 1, '0'),
(750, 'Blue Glass Stool', 'glass_stool*6', 's', 1, 1, 1, '0', '1', '0', 2052, '1', '1', '1', '1', '1', 'default', 1, '0'),
(751, 'Green Glass Stool', 'glass_stool*7', 's', 1, 1, 1, '0', '1', '0', 2053, '1', '1', '1', '1', '1', 'default', 1, '0'),
(752, 'Yellow Glass Stool', 'glass_stool*8', 's', 1, 1, 1, '0', '1', '0', 2054, '1', '1', '1', '1', '1', 'default', 1, '0'),
(753, 'White Glass Stool', 'glass_stool*3', 's', 1, 1, 1, '0', '1', '0', 2056, '1', '1', '1', '1', '1', 'default', 1, '0'),
(754, 'Glass stool', 'glass_stool*9', 's', 1, 1, 1, '0', '1', '0', 2057, '1', '1', '1', '1', '1', 'default', 1, '0'),
(755, 'Gold Coin', 'CF_10_coin_gold', 's', 1, 1, 0.2, '1', '0', '0', 2063, '1', '1', '1', '1', '1', 'default', 1, '0'),
(756, 'Bronze Coin', 'CF_1_coin_bronze', 's', 1, 1, 0.2, '1', '0', '0', 2064, '1', '1', '1', '1', '1', 'default', 1, '0'),
(757, 'Sack of Credits', 'CF_20_moneybag', 's', 1, 1, 1, '1', '0', '0', 2065, '1', '1', '1', '1', '1', 'default', 1, '0'),
(758, 'Gold Bar', 'CF_50_goldbar', 's', 1, 1, 0.2, '1', '0', '0', 2066, '1', '1', '1', '1', '1', 'default', 1, '0'),
(759, 'Silver Coin', 'CF_5_coin_silver', 's', 1, 1, 0.2, '1', '0', '0', 2067, '1', '1', '1', '1', '1', 'default', 1, '0'),
(760, 'Persian Carpet', 'hc_crpt', 's', 3, 5, 0, '1', '0', '0', 2068, '1', '1', '1', '1', '1', 'default', 1, '0'),
(761, 'Forget plasma', 'hc_tv', 's', 2, 1, 1.4, '0', '1', '0', 2069, '1', '1', '1', '1', '1', 'default', 2, '0'),
(762, 'Gothic Portcullis', 'gothgate', 's', 2, 1, 0.001, '0', '0', '0', 2070, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(763, 'Gothic Candelabra', 'gothiccandelabra', 's', 1, 1, 1, '0', '0', '0', 2071, '1', '1', '1', '1', '1', 'default', 2, '0'),
(764, 'Gothic Railing', 'gothrailing', 's', 2, 1, 1, '0', '0', '0', 2072, '1', '1', '1', '1', '1', 'default', 1, '0'),
(765, 'Gothic table', 'goth_table', 's', 1, 5, 1.7, '0', '0', '0', 2073, '1', '1', '1', '1', '1', 'default', 1, '0'),
(766, 'Medieval Bookcase', 'hc_bkshlf', 's', 1, 4, 1, '0', '0', '0', 2074, '1', '1', '1', '1', '1', 'default', 1, '0'),
(767, 'Electric Butler', 'hc_btlr', 's', 1, 1, 1, '0', '0', '0', 2075, '1', '1', '1', '1', '1', 'vendingmachine', 0, '24'),
(768, 'Antique Drapery', 'hc_crtn', 's', 2, 1, 0.001, '0', '0', '0', 2076, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(769, 'The Grammophon', 'hc_djset', 's', 3, 1, 1, '0', '0', '0', 2077, '1', '1', '1', '1', '1', 'default', 1, '0'),
(770, 'Heavy Duty Fireplace', 'hc_frplc', 's', 1, 3, 1, '0', '0', '0', 2078, '1', '1', '1', '1', '1', 'default', 1, '0'),
(771, 'Victorian Street Light', 'hc_lmpst', 's', 1, 1, 1, '0', '0', '0', 2079, '1', '1', '1', '1', '1', 'default', 2, '0'),
(772, 'Weird Science Machine', 'hc_machine', 's', 1, 3, 1, '0', '0', '0', 2080, '1', '1', '1', '1', '1', 'default', 2, '0'),
(773, 'HC Rollers Set', 'hc_rllr', 's', 1, 1, 1, '0', '0', '1', 2081, '1', '1', '1', '1', '1', 'default', 1, '0'),
(774, 'X-Ray Divider', 'hc_rntgn', 's', 2, 1, 1, '0', '0', '0', 2082, '1', '1', '1', '1', '1', 'default', 1, '0'),
(775, 'Drinks Trolley', 'hc_trll', 's', 1, 2, 1, '0', '0', '0', 2083, '1', '1', '1', '1', '1', 'default', 1, '0'),
(776, 'Gothic Chair Pink', 'gothic_chair*1', 's', 1, 1, 1, '0', '1', '0', 2084, '1', '1', '1', '1', '1', 'default', 1, '0'),
(777, 'Gothic Sofa Pink', 'gothic_sofa*1', 's', 2, 1, 1, '0', '1', '0', 2085, '1', '1', '1', '1', '1', 'default', 1, '0'),
(778, 'Gothic Stool Pink', 'gothic_stool*1', 's', 1, 1, 1, '0', '1', '0', 2086, '1', '1', '1', '1', '1', 'default', 1, '0'),
(779, 'Golden Gothic Chair', 'gothic_chair*2', 's', 1, 1, 1, '0', '1', '0', 2087, '1', '1', '1', '1', '1', 'default', 1, '0'),
(780, 'Golden Gothic Sofa', 'gothic_sofa*2', 's', 2, 1, 1, '0', '1', '0', 2088, '1', '1', '1', '1', '1', 'default', 1, '0'),
(781, 'Golden Gothic Stool', 'gothic_stool*2', 's', 1, 1, 1, '0', '1', '0', 2089, '1', '1', '1', '1', '1', 'default', 1, '0'),
(782, 'Red Gothic Chair', 'gothic_chair*3', 's', 1, 1, 1, '0', '1', '0', 2090, '1', '1', '1', '1', '1', 'default', 1, '0'),
(783, 'Red Gothic Sofa', 'gothic_sofa*3', 's', 2, 1, 1, '0', '1', '0', 2091, '1', '1', '1', '1', '1', 'default', 1, '0'),
(784, 'Red Gothic Stool', 'gothic_stool*3', 's', 1, 1, 1, '0', '1', '0', 2092, '1', '1', '1', '1', '1', 'default', 1, '0'),
(785, 'Black Gothic Chair', 'gothic_chair*4', 's', 1, 1, 1, '0', '1', '0', 2093, '1', '1', '1', '1', '1', 'default', 1, '0'),
(786, 'Black Gothic Sofa', 'gothic_sofa*4', 's', 2, 1, 1, '0', '1', '0', 2094, '1', '1', '1', '1', '1', 'default', 1, '0'),
(787, 'Black Gothic Stool', 'gothic_stool*4', 's', 1, 1, 1, '0', '1', '0', 2095, '1', '1', '1', '1', '1', 'default', 1, '0'),
(788, 'Green Gothic Chair', 'gothic_chair*5', 's', 1, 1, 1, '0', '1', '0', 2096, '1', '1', '1', '1', '1', 'default', 1, '0'),
(789, 'Green Gothic Sofa', 'gothic_sofa*5', 's', 2, 1, 1, '0', '1', '0', 2097, '1', '1', '1', '1', '1', 'default', 1, '0'),
(790, 'Green Gothic Stool', 'gothic_stool*5', 's', 1, 1, 1, '0', '1', '0', 2098, '1', '1', '1', '1', '1', 'default', 1, '0'),
(791, 'Gothic Chair Blue', 'gothic_chair*6', 's', 1, 1, 1, '0', '1', '0', 2099, '1', '1', '1', '1', '1', 'default', 1, '0'),
(792, 'Gothic Sofa Blue', 'gothic_sofa*6', 's', 2, 1, 1, '0', '1', '0', 2100, '1', '1', '1', '1', '1', 'default', 1, '0'),
(793, 'Valentine''s Cauldron', 'gothic_stool*6', 's', 1, 1, 1, '0', '1', '0', 2101, '1', '1', '1', '1', '1', 'default', 1, '0'),
(794, 'Sound Machine', 'sound_machine', 's', 1, 1, 1, '0', '0', '0', 2105, '1', '1', '1', '1', '1', 'default', 1, '0'),
(795, 'Turquoise Romantique Piano Chair', 'romantique_pianochair*3', 's', 1, 1, 1, '0', '1', '0', 2106, '1', '1', '1', '1', '1', 'default', 1, '0'),
(796, 'Onyx Piano Stool', 'romantique_pianochair*5', 's', 1, 1, 1, '0', '1', '0', 2107, '1', '1', '1', '1', '1', 'default', 1, '0'),
(797, 'Lime Romantique Piano Chair', 'romantique_pianochair*2', 's', 1, 1, 1, '0', '1', '0', 2108, '1', '1', '1', '1', '1', 'default', 1, '0'),
(798, 'Amber Piano Stool', 'romantique_pianochair*4', 's', 1, 1, 1, '0', '1', '0', 2109, '1', '1', '1', '1', '1', 'default', 1, '0'),
(799, 'Rose Quartz Piano Stool', 'romantique_pianochair*1', 's', 1, 1, 1, '0', '1', '0', 2110, '1', '1', '1', '1', '1', 'default', 1, '0'),
(800, 'Turquoise Romantique Divan', 'romantique_divan*3', 's', 2, 1, 1, '0', '1', '0', 2111, '1', '1', '1', '1', '1', 'default', 1, '0'),
(801, 'Onyx Chaise-Longue', 'romantique_divan*5', 's', 2, 1, 1, '0', '1', '0', 2112, '1', '1', '1', '1', '1', 'default', 1, '0'),
(802, 'Emerald Chaise-Longue', 'romantique_divan*2', 's', 2, 1, 1, '0', '1', '0', 2113, '1', '1', '1', '1', '1', 'default', 1, '0'),
(803, 'Amber Chaise-Longue', 'romantique_divan*4', 's', 2, 1, 1, '0', '1', '0', 2114, '1', '1', '1', '1', '1', 'default', 1, '0'),
(804, 'Rose Quartz Chaise-Longue', 'romantique_divan*1', 's', 2, 1, 1, '0', '1', '0', 2115, '1', '1', '1', '1', '1', 'default', 1, '0'),
(805, 'Turquoise Romantique Chair', 'romantique_chair*3', 's', 1, 1, 1, '0', '1', '0', 2116, '1', '1', '1', '1', '1', 'default', 1, '0'),
(806, 'Onyx Chair', 'romantique_chair*5', 's', 1, 1, 1, '0', '1', '0', 2117, '1', '1', '1', '1', '1', 'default', 1, '0'),
(807, 'Lime Romantique Chair', 'romantique_chair*2', 's', 1, 1, 1, '0', '1', '0', 2118, '1', '1', '1', '1', '1', 'default', 1, '0'),
(808, 'Amber Chair', 'romantique_chair*4', 's', 1, 1, 1, '0', '1', '0', 2119, '1', '1', '1', '1', '1', 'default', 1, '0'),
(809, 'Rose Quartz Chair', 'romantique_chair*1', 's', 1, 1, 1, '0', '1', '0', 2120, '1', '1', '1', '1', '1', 'default', 1, '0'),
(811, 'Yellow Valentine Rose', 'plant_valentinerose*3', 's', 1, 1, 1, '0', '0', '0', 2123, '1', '1', '1', '1', '1', 'default', 2, '0'),
(812, 'Purple Valentine''s Rose', 'plant_valentinerose*5', 's', 1, 1, 1, '0', '0', '0', 2124, '1', '1', '1', '1', '1', 'default', 2, '0'),
(813, 'White Valentine''s Rose', 'plant_valentinerose*2', 's', 1, 1, 1, '0', '0', '0', 2125, '1', '1', '1', '1', '1', 'default', 2, '0'),
(814, 'Pink Valentine''s Rose', 'plant_valentinerose*4', 's', 1, 1, 1, '0', '0', '0', 2126, '1', '1', '1', '1', '1', 'default', 2, '0'),
(815, 'Red Valentine''s Rose', 'plant_valentinerose*1', 's', 1, 1, 1, '0', '0', '0', 2127, '1', '1', '1', '1', '1', 'default', 2, '0'),
(816, 'Maze Shrubbery Gate', 'plant_mazegate', 's', 2, 1, 0.001, '0', '0', '0', 2128, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(817, 'Maze Shrubbery', 'plant_maze', 's', 2, 1, 1, '0', '0', '0', 2129, '1', '1', '1', '1', '1', 'default', 1, '0'),
(818, 'Bulrush', 'plant_bulrush', 's', 1, 1, 1, '0', '0', '0', 2130, '1', '1', '1', '1', '1', 'default', 1, '0'),
(819, 'T-Bones Mega Multipack', 'petfood4', 's', 1, 1, 1, '1', '0', '0', 2131, '1', '1', '1', '1', '1', 'default', 1, '0'),
(820, 'Red carpet', 'carpet_valentine', 's', 2, 7, 0, '1', '0', '1', 2132, '1', '1', '1', '1', '1', 'default', 1, '0'),
(821, 'Cobbled Path', 'gothic_carpet', 's', 2, 4, 0, '1', '0', '1', 2133, '1', '1', '1', '1', '1', 'default', 1, '0'),
(822, 'Dungeon Floor', 'gothic_carpet2', 's', 2, 4, 0, '1', '0', '1', 2134, '1', '1', '1', '1', '1', 'default', 1, '0'),
(823, '', 'gothic_chair', 's', 1, 1, 1, '0', '1', '0', 2135, '1', '1', '1', '1', '1', 'default', 1, '0'),
(824, '', 'gothic_sofa', 's', 2, 1, 1, '0', '1', '0', 2136, '1', '1', '1', '1', '1', 'default', 1, '0'),
(825, '', 'gothic_stool', 's', 1, 1, 1, '0', '1', '0', 2137, '1', '1', '1', '1', '1', 'default', 1, '0'),
(826, 'Pink Grand Piano', 'grand_piano*3', 's', 2, 2, 1, '0', '0', '0', 2138, '1', '1', '1', '1', '1', 'default', 2, '0'),
(827, 'Onyx Grand Piano', 'grand_piano*5', 's', 2, 2, 1, '0', '0', '0', 2139, '1', '1', '1', '1', '1', 'default', 2, '0'),
(828, 'Black Grand Piano', 'grand_piano*2', 's', 2, 2, 1, '0', '0', '0', 2140, '1', '1', '1', '1', '1', 'default', 2, '0'),
(829, 'Amber Grand Piano', 'grand_piano*4', 's', 2, 2, 1, '0', '0', '0', 2141, '1', '1', '1', '1', '1', 'default', 2, '0'),
(830, 'Turquoise Grand Piano', 'grand_piano*1', 's', 2, 2, 1, '0', '0', '0', 2142, '1', '1', '1', '1', '1', 'default', 2, '0'),
(831, 'Deluxe Theatre Chair', 'theatre_seat', 's', 1, 1, 1.2, '0', '1', '0', 2143, '1', '1', '1', '1', '1', 'default', 6, '0'),
(832, 'Treats Tray', 'romantique_tray2', 's', 1, 1, 1, '0', '0', '0', 2144, '1', '1', '1', '1', '1', 'default', 1, '0'),
(833, 'Breakfast Tray', 'romantique_tray1', 's', 1, 1, 1, '0', '0', '0', 2145, '1', '1', '1', '1', '1', 'default', 1, '0'),
(834, 'Turquoise Tray Table', 'romantique_smalltabl*3', 's', 1, 1, 1, '1', '0', '0', 2146, '1', '1', '1', '1', '1', 'default', 1, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(835, 'Onyx Tray Table', 'romantique_smalltabl*5', 's', 1, 1, 1, '1', '0', '0', 2147, '1', '1', '1', '1', '1', 'default', 1, '0'),
(836, 'Lime Tray Table', 'romantique_smalltabl*2', 's', 1, 1, 1, '1', '0', '0', 2148, '1', '1', '1', '1', '1', 'default', 1, '0'),
(837, 'Amber Tray Table', 'romantique_smalltabl*4', 's', 1, 1, 1, '1', '0', '0', 2149, '1', '1', '1', '1', '1', 'default', 1, '0'),
(838, 'Rose Quartz Tray Table', 'romantique_smalltabl*1', 's', 1, 1, 1, '1', '0', '0', 2150, '1', '1', '1', '1', '1', 'default', 1, '0'),
(839, 'Dressing Table', 'romantique_mirrortabl', 's', 1, 1, 1, '1', '0', '0', 2151, '1', '1', '1', '1', '1', 'default', 1, '0'),
(840, 'Turquoise Screen', 'romantique_divider*3', 's', 2, 1, 1, '0', '0', '0', 2152, '1', '1', '1', '1', '1', 'default', 1, '0'),
(841, 'Green Screen', 'romantique_divider*2', 's', 2, 1, 1, '1', '0', '0', 2153, '1', '1', '1', '1', '1', 'default', 1, '0'),
(842, 'Amber Screen', 'romantique_divider*4', 's', 2, 1, 1, '1', '0', '0', 2154, '1', '1', '1', '1', '1', 'default', 1, '0'),
(843, 'Rose Quartz Screen', 'romantique_divider*1', 's', 2, 1, 1, '1', '0', '0', 2155, '1', '1', '1', '1', '1', 'default', 1, '0'),
(844, 'Large Tatami Mat', 'jp_tatami2', 's', 2, 4, 0, '1', '0', '1', 2156, '1', '1', '1', '1', '1', 'default', 1, '0'),
(845, 'Small Tatami Mat', 'jp_tatami', 's', 2, 2, 0, '1', '0', '1', 2157, '1', '1', '1', '1', '1', 'default', 1, '0'),
(846, 'Director''s Chair', 'habbowood_chair', 's', 1, 1, 1.2, '0', '1', '0', 2158, '1', '1', '1', '1', '1', 'default', 1, '0'),
(847, 'Bamboo Forest', 'jp_bamboo', 's', 2, 2, 0, '1', '0', '1', 2159, '1', '1', '1', '1', '1', 'default', 1, '0'),
(848, 'Irori', 'jp_irori', 's', 2, 2, 1, '0', '0', '0', 2160, '1', '1', '1', '1', '1', 'default', 2, '0'),
(849, 'Pillow Chair', 'jp_pillow', 's', 1, 1, 0.8, '0', '1', '0', 2161, '1', '1', '1', '1', '1', 'default', 1, '0'),
(850, 'Habbo Sounds 1', 'sound_set_1', 's', 1, 1, 0.2, '1', '0', '0', 2162, '1', '1', '1', '1', '1', 'default', 1, '0'),
(851, 'Habbo Sounds 3', 'sound_set_2', 's', 1, 1, 0.2, '1', '0', '0', 2163, '1', '1', '1', '1', '1', 'default', 1, '0'),
(852, 'Electronic 1', 'sound_set_3', 's', 1, 1, 0.2, '1', '0', '0', 2164, '1', '1', '1', '1', '1', 'default', 1, '0'),
(853, 'Ambient 1', 'sound_set_4', 's', 1, 1, 0.2, '1', '0', '0', 2165, '1', '1', '1', '1', '1', 'default', 1, '0'),
(854, 'Ambient 4', 'sound_set_5', 's', 1, 1, 0.2, '1', '0', '0', 2166, '1', '1', '1', '1', '1', 'default', 1, '0'),
(855, 'Ambient 3', 'sound_set_6', 's', 1, 1, 0.2, '1', '0', '0', 2167, '1', '1', '1', '1', '1', 'default', 1, '0'),
(856, 'SFX 5', 'sound_set_7', 's', 1, 1, 0.2, '1', '0', '0', 2168, '1', '1', '1', '1', '1', 'default', 1, '0'),
(857, 'Ambient 2', 'sound_set_8', 's', 1, 1, 0.2, '1', '0', '0', 2169, '1', '1', '1', '1', '1', 'default', 1, '0'),
(858, 'Electronic 2', 'sound_set_9', 's', 1, 1, 0.2, '1', '0', '0', 2170, '1', '1', '1', '1', '1', 'default', 1, '0'),
(859, 'Traxmachine', 'sound_machine*1', 's', 1, 1, 1, '0', '0', '0', 2171, '1', '1', '1', '1', '1', 'default', 2, '0'),
(860, 'Habbowood Spotlight', 'spotlight', 's', 1, 1, 1, '0', '0', '0', 2519, '1', '1', '1', '1', '1', 'default', 6, '0'),
(861, 'Ocean Traxmachine', 'sound_machine*2', 's', 1, 1, 1, '0', '0', '0', 2543, '1', '1', '1', '1', '1', 'default', 1, '0'),
(862, 'Green Traxmachine', 'sound_machine*3', 's', 1, 1, 1, '0', '0', '0', 2544, '1', '1', '1', '1', '1', 'default', 1, '0'),
(863, 'For Funky', 'sound_machine*4', 's', 1, 1, 1, '0', '0', '0', 2545, '1', '1', '1', '1', '1', 'default', 1, '0'),
(864, 'Brown Traxmachine', 'sound_machine*5', 's', 1, 1, 1, '0', '0', '0', 2546, '1', '1', '1', '1', '1', 'default', 1, '0'),
(865, 'Purple Traxmachine', 'sound_machine*6', 's', 1, 1, 1, '0', '0', '0', 2547, '1', '1', '1', '1', '1', 'default', 1, '0'),
(866, 'Red Traxmachine', 'sound_machine*7', 's', 1, 1, 1, '0', '0', '0', 2548, '1', '1', '1', '1', '1', 'default', 1, '0'),
(867, 'Crystal Lamp', 'rom_lamp', 's', 1, 1, 1, '0', '0', '0', 2551, '1', '1', '1', '1', '1', 'default', 2, '0'),
(868, 'Polar Sofa', 'rclr_sofa', 's', 2, 1, 1, '0', '1', '0', 2459, '1', '1', '1', '1', '1', 'default', 1, '0'),
(869, 'Water Garden', 'rclr_garden', 's', 1, 3, 1, '0', '0', '0', 2458, '1', '1', '1', '1', '1', 'default', 2, '0'),
(870, 'Palm Chair', 'rclr_chair', 's', 1, 1, 1, '0', '1', '0', 2562, '1', '1', '1', '1', '1', 'default', 1, '0'),
(871, 'Rock 2', 'sound_set_28', 's', 1, 1, 0.2, '1', '0', '0', 2496, '1', '1', '1', '1', '1', 'default', 1, '0'),
(872, 'Groove 2', 'sound_set_27', 's', 1, 1, 0.2, '1', '0', '0', 2549, '1', '1', '1', '1', '1', 'default', 1, '0'),
(873, 'Groove 1', 'sound_set_26', 's', 1, 1, 0.2, '1', '0', '0', 2508, '1', '1', '1', '1', '1', 'default', 1, '0'),
(874, 'Actually', 'sound_set_25', 's', 1, 1, 0.2, '1', '0', '0', 2470, '1', '1', '1', '1', '1', 'default', 1, '0'),
(875, 'It''s all about the Pentiums', 'sound_set_24', 's', 1, 1, 0.2, '1', '0', '0', 2492, '1', '1', '1', '1', '1', 'default', 1, '0'),
(876, 'SFX 4', 'sound_set_23', 's', 1, 1, 0.2, '1', '0', '0', 2457, '1', '1', '1', '1', '1', 'default', 1, '0'),
(877, 'With a hamper full of sounds', 'sound_set_22', 's', 1, 1, 0.2, '1', '0', '0', 2521, '1', '1', '1', '1', '1', 'default', 1, '0'),
(878, 'Rock 1', 'sound_set_21', 's', 1, 1, 0.2, '1', '0', '0', 2494, '1', '1', '1', '1', '1', 'default', 1, '0'),
(879, 'SFX 2', 'sound_set_20', 's', 1, 1, 0.2, '1', '0', '0', 2524, '1', '1', '1', '1', '1', 'default', 1, '0'),
(880, 'Hip Hop Beats 4', 'sound_set_19', 's', 1, 1, 0.2, '1', '0', '0', 2469, '1', '1', '1', '1', '1', 'default', 1, '0'),
(881, 'Groove 4', 'sound_set_18', 's', 1, 1, 0.2, '1', '0', '0', 2497, '1', '1', '1', '1', '1', 'default', 1, '0'),
(882, 'Groove 3', 'sound_set_17', 's', 1, 1, 0.2, '1', '0', '0', 2550, '1', '1', '1', '1', '1', 'default', 1, '0'),
(883, 'Ferry', 'sound_set_16', 's', 1, 1, 0.2, '1', '0', '0', 2561, '1', '1', '1', '1', '1', 'default', 1, '0'),
(884, 'RnB Grooves 6', 'sound_set_15', 's', 1, 1, 0.2, '1', '0', '0', 2495, '1', '1', '1', '1', '1', 'default', 1, '0'),
(885, 'Hip Hop Beats 2', 'sound_set_14', 's', 1, 1, 0.2, '1', '0', '0', 2482, '1', '1', '1', '1', '1', 'default', 1, '0'),
(886, 'Dance 5', 'sound_set_13', 's', 1, 1, 0.2, '1', '0', '0', 2523, '1', '1', '1', '1', '1', 'default', 1, '0'),
(887, 'Habbo Sounds 2', 'sound_set_12', 's', 1, 1, 0.2, '1', '0', '0', 2493, '1', '1', '1', '1', '1', 'default', 1, '0'),
(888, 'Dance 4', 'sound_set_11', 's', 1, 1, 0.2, '1', '0', '0', 2563, '1', '1', '1', '1', '1', 'default', 1, '0'),
(889, 'Hip Hop Beats 1', 'sound_set_10', 's', 1, 1, 0.2, '1', '0', '0', 2481, '1', '1', '1', '1', '1', 'default', 1, '0'),
(890, 'Rope Divider', 'rope_divider', 's', 2, 1, 0.001, '0', '0', '0', 2518, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(891, 'romantique_clock', 'romantique_clock', 's', 1, 1, 1, '0', '0', '0', 2520, '1', '1', '1', '1', '1', 'default', 1, '0'),
(892, 'Aqua Pura Module 5', 'rare_icecream_campaign', 's', 1, 1, 1, '0', '0', '0', 2507, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(893, 'Pink Pura Module 5', 'pura_mdl5*2', 's', 1, 1, 1, '0', '1', '0', 2510, '1', '1', '1', '1', '1', 'default', 1, '0'),
(894, 'Black Pura Module 5', 'pura_mdl5*3', 's', 1, 1, 1, '0', '1', '0', 2511, '1', '1', '1', '1', '1', 'default', 1, '0'),
(895, 'White Pura Module 5', 'pura_mdl5*4', 's', 1, 1, 1, '0', '1', '0', 2512, '1', '1', '1', '1', '1', 'default', 1, '0'),
(896, 'beige pura module 5', 'pura_mdl5*5', 's', 1, 1, 1, '0', '1', '0', 2513, '1', '1', '1', '1', '1', 'default', 1, '0'),
(897, 'Blue Pura Module 5', 'pura_mdl5*6', 's', 1, 1, 1, '0', '1', '0', 2514, '1', '1', '1', '1', '1', 'default', 1, '0'),
(898, 'Green Pura Module 5', 'pura_mdl5*7', 's', 1, 1, 1, '0', '1', '0', 2515, '1', '1', '1', '1', '1', 'default', 1, '0'),
(899, 'Yellow Pura Module 5', 'pura_mdl5*8', 's', 1, 1, 1, '0', '1', '0', 2516, '1', '1', '1', '1', '1', 'default', 1, '0'),
(900, 'Red Pura Module 5', 'pura_mdl5*9', 's', 1, 1, 1, '0', '1', '0', 2517, '1', '1', '1', '1', '1', 'default', 1, '0'),
(901, 'Aqua Pura Module 4', 'pura_mdl4*1', 's', 1, 1, 1, '0', '1', '0', 2472, '1', '1', '1', '1', '1', 'default', 1, '0'),
(902, 'Pink Pura Module 4', 'pura_mdl4*2', 's', 1, 1, 1, '0', '1', '0', 2473, '1', '1', '1', '1', '1', 'default', 1, '0'),
(903, 'Black Pura Module 4', 'pura_mdl4*3', 's', 1, 1, 1, '0', '1', '0', 2474, '1', '1', '1', '1', '1', 'default', 1, '0'),
(904, 'White Pura Module 4', 'pura_mdl4*4', 's', 1, 1, 1, '0', '1', '0', 2475, '1', '1', '1', '1', '1', 'default', 1, '0'),
(905, 'beige pura module 4', 'pura_mdl4*5', 's', 1, 1, 1, '0', '1', '0', 2476, '1', '1', '1', '1', '1', 'default', 1, '0'),
(906, 'Blue Pura Module 4', 'pura_mdl4*6', 's', 1, 1, 1, '0', '1', '0', 2477, '1', '1', '1', '1', '1', 'default', 1, '0'),
(907, 'Green Pura Module 4', 'pura_mdl4*7', 's', 1, 1, 1, '0', '1', '0', 2478, '1', '1', '1', '1', '1', 'default', 1, '0'),
(908, 'yellow pura module 4', 'pura_mdl4*8', 's', 1, 1, 1, '0', '1', '0', 2479, '1', '1', '1', '1', '1', 'default', 1, '0'),
(909, 'Red Pura Module 4', 'pura_mdl4*9', 's', 1, 1, 1, '0', '1', '0', 2480, '1', '1', '1', '1', '1', 'default', 1, '0'),
(910, 'Aqua Pura Module 3', 'pura_mdl3*1', 's', 1, 1, 1, '0', '1', '0', 2534, '1', '1', '1', '1', '1', 'default', 1, '0'),
(911, 'Pink Pura Module 3', 'pura_mdl3*2', 's', 1, 1, 1, '0', '1', '0', 2535, '1', '1', '1', '1', '1', 'default', 1, '0'),
(912, 'Black Pura Module 3', 'pura_mdl3*3', 's', 1, 1, 1, '0', '1', '0', 2536, '1', '1', '1', '1', '1', 'default', 1, '0'),
(913, 'White Pura Module 3', 'pura_mdl3*4', 's', 1, 1, 1, '0', '1', '0', 2537, '1', '1', '1', '1', '1', 'default', 1, '0'),
(914, 'beige pura module 3', 'pura_mdl3*5', 's', 1, 1, 1, '0', '1', '0', 2538, '1', '1', '1', '1', '1', 'default', 1, '0'),
(915, 'Blue Pura Module 3', 'pura_mdl3*6', 's', 1, 1, 1, '0', '1', '0', 2539, '1', '1', '1', '1', '1', 'default', 1, '0'),
(916, 'Green Pura Module 3', 'pura_mdl3*7', 's', 1, 1, 1, '0', '1', '0', 2540, '1', '1', '1', '1', '1', 'default', 1, '0'),
(917, 'yellow pura module 3', 'pura_mdl3*8', 's', 1, 1, 1, '0', '1', '0', 2541, '1', '1', '1', '1', '1', 'default', 1, '0'),
(918, 'Red Pura Module 3', 'pura_mdl3*9', 's', 1, 1, 1, '0', '1', '0', 2542, '1', '1', '1', '1', '1', 'default', 1, '0'),
(919, 'Aqua Pura Module 2', 'pura_mdl2*1', 's', 1, 1, 1, '0', '1', '0', 2483, '1', '1', '1', '1', '1', 'default', 1, '0'),
(920, 'Pink Pura Module 2', 'pura_mdl2*2', 's', 1, 1, 1, '0', '1', '0', 2484, '1', '1', '1', '1', '1', 'default', 1, '0'),
(921, 'Black Pura Module 2', 'pura_mdl2*3', 's', 1, 1, 1, '0', '1', '0', 2485, '1', '1', '1', '1', '1', 'default', 1, '0'),
(922, 'White Pura Module 2', 'pura_mdl2*4', 's', 1, 1, 1, '0', '1', '0', 2486, '1', '1', '1', '1', '1', 'default', 1, '0'),
(923, 'beige pura module 2', 'pura_mdl2*5', 's', 1, 1, 1, '0', '1', '0', 2487, '1', '1', '1', '1', '1', 'default', 1, '0'),
(924, 'Blue Pura Module 2', 'pura_mdl2*6', 's', 1, 1, 1, '0', '1', '0', 2488, '1', '1', '1', '1', '1', 'default', 1, '0'),
(925, 'Green Pura Module 2', 'pura_mdl2*7', 's', 1, 1, 1, '0', '1', '0', 2489, '1', '1', '1', '1', '1', 'default', 1, '0'),
(926, 'yellow pura module 2', 'pura_mdl2*8', 's', 1, 1, 1, '0', '1', '0', 2490, '1', '1', '1', '1', '1', 'default', 1, '0'),
(927, 'Red Pura Module 2', 'pura_mdl2*9', 's', 1, 1, 1, '0', '1', '0', 2491, '1', '1', '1', '1', '1', 'default', 1, '0'),
(928, 'Aqua Pura Module 1', 'pura_mdl1*1', 's', 1, 1, 1, '0', '1', '0', 2460, '1', '1', '1', '1', '1', 'default', 1, '0'),
(929, 'Pink Pura Module 1', 'pura_mdl1*2', 's', 1, 1, 1, '0', '1', '0', 2461, '1', '1', '1', '1', '1', 'default', 1, '0'),
(930, 'Black Pura Module 1', 'pura_mdl1*3', 's', 1, 1, 1, '0', '1', '0', 2462, '1', '1', '1', '1', '1', 'default', 1, '0'),
(931, 'White Pura Module 1', 'pura_mdl1*4', 's', 1, 1, 1, '0', '1', '0', 2463, '1', '1', '1', '1', '1', 'default', 1, '0'),
(932, 'beige pura module 1', 'pura_mdl1*5', 's', 1, 1, 1, '0', '1', '0', 2464, '1', '1', '1', '1', '1', 'default', 1, '0'),
(933, 'Blue Pura Module 1', 'pura_mdl1*6', 's', 1, 1, 1, '0', '1', '0', 2465, '1', '1', '1', '1', '1', 'default', 1, '0'),
(934, 'Green Pura Module 1', 'pura_mdl1*7', 's', 1, 1, 1, '0', '1', '0', 2466, '1', '1', '1', '1', '1', 'default', 1, '0'),
(935, 'yellow pura module 1', 'pura_mdl1*8', 's', 1, 1, 1, '0', '1', '0', 2467, '1', '1', '1', '1', '1', 'default', 1, '0'),
(936, 'Red Pura Module 1', 'pura_mdl1*9', 's', 1, 1, 1, '0', '1', '0', 2468, '1', '1', '1', '1', '1', 'default', 1, '0'),
(937, 'Japanese Lantern', 'jp_lantern', 's', 1, 1, 1, '0', '0', '0', 2471, '1', '1', '1', '1', '1', 'default', 2, '0'),
(938, 'chair_basic', 'chair_basic*1', 's', 1, 1, 1.1, '0', '1', '0', 2525, '1', '1', '1', '1', '1', 'default', 1, '0'),
(939, 'Pink Pura Egg Chair', 'chair_basic*2', 's', 1, 1, 1.1, '0', '1', '0', 2526, '1', '1', '1', '1', '1', 'default', 1, '0'),
(940, 'Black Pura Egg Chair', 'chair_basic*3', 's', 1, 1, 1.1, '0', '1', '0', 2527, '1', '1', '1', '1', '1', 'default', 1, '0'),
(941, 'White Pura Egg Chair', 'chair_basic*4', 's', 1, 1, 1.1, '0', '1', '0', 2528, '1', '1', '1', '1', '1', 'default', 1, '0'),
(942, 'Beige Pura Egg Chair', 'chair_basic*5', 's', 1, 1, 1.1, '0', '1', '0', 2529, '1', '1', '1', '1', '1', 'default', 1, '0'),
(943, 'Blue Pura Egg Chair', 'chair_basic*6', 's', 1, 1, 1.1, '0', '1', '0', 2530, '1', '1', '1', '1', '1', 'default', 1, '0'),
(944, 'Green Pura Egg Chair', 'chair_basic*7', 's', 1, 1, 1.1, '0', '1', '0', 2531, '1', '1', '1', '1', '1', 'default', 1, '0'),
(945, 'chair_basic', 'chair_basic*8', 's', 1, 1, 1.1, '0', '1', '0', 2532, '1', '1', '1', '1', '1', 'default', 1, '0'),
(946, 'Red Pura Egg Chair', 'chair_basic*9', 's', 1, 1, 1.1, '0', '1', '0', 2533, '1', '1', '1', '1', '1', 'default', 1, '0'),
(947, '', 'bed_budget*1', 's', 2, 3, 1.9, '0', '0', '0', 2552, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(948, 'Pink Pura Double Bed', 'bed_budget*2', 's', 2, 3, 1.9, '0', '0', '0', 2553, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(949, 'Black Pura Double Bed', 'bed_budget*3', 's', 2, 3, 1.9, '0', '0', '0', 2554, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(950, 'White Pura Double Bed', 'bed_budget*4', 's', 2, 3, 1.9, '0', '0', '0', 2555, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(951, 'Beige Pura Double Bed', 'bed_budget*5', 's', 2, 3, 1.9, '0', '0', '0', 2556, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(952, 'Blue Pura Double Bed', 'bed_budget*6', 's', 2, 3, 1.9, '0', '0', '0', 2557, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(953, 'Green Pura Double Bed', 'bed_budget*7', 's', 2, 3, 1.9, '0', '0', '0', 2558, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(954, 'Yellow Pura Double Bed', 'bed_budget*8', 's', 2, 3, 1.9, '0', '0', '0', 2559, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(955, 'Red Pura Double Bed', 'bed_budget*9', 's', 2, 3, 1.9, '0', '0', '0', 2560, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(956, '', 'bed_budget_one*1', 's', 1, 3, 1.9, '0', '0', '0', 2498, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(957, 'Pink Pura Bed', 'bed_budget_one*2', 's', 1, 3, 1.9, '0', '0', '0', 2499, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(958, 'Black Pura Bed', 'bed_budget_one*3', 's', 1, 3, 1.9, '0', '0', '0', 2500, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(959, 'White Pura Bed', 'bed_budget_one*4', 's', 1, 3, 1.9, '0', '0', '0', 2501, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(960, 'Beige Pura Bed', 'bed_budget_one*5', 's', 1, 3, 1.9, '0', '0', '0', 2502, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(961, 'Blue Pura Bed', 'bed_budget_one*6', 's', 1, 3, 1.9, '0', '0', '0', 2503, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(962, 'Green Pura Bed', 'bed_budget_one*7', 's', 1, 3, 1.9, '0', '0', '0', 2504, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(963, 'Yellow Pura Bed', 'bed_budget_one*8', 's', 1, 3, 1.9, '0', '0', '0', 2505, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(964, 'Red Pura Bed', 'bed_budget_one*9', 's', 1, 3, 1.9, '0', '0', '0', 2506, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(965, 'Japanese Drawer', 'jp_drawer', 's', 1, 1, 1, '1', '0', '0', 2522, '1', '1', '1', '1', '1', 'default', 2, '0'),
(966, 'Star Tile', 'tile_stella', 's', 1, 1, 0.05, '1', '0', '1', 2568, '1', '1', '1', '1', '1', 'default', 1, '0'),
(967, 'Marble Tile', 'tile_marble', 's', 1, 1, 0.1, '1', '0', '1', 2566, '1', '1', '1', '1', '1', 'default', 1, '0'),
(968, 'Red Tile', 'tile_brown', 's', 1, 1, 0.05, '1', '0', '1', 2582, '1', '1', '1', '1', '1', 'default', 1, '0'),
(969, 'Blue Barbeque Grill', 'summer_grill*1', 's', 2, 1, 1, '0', '0', '0', 2587, '1', '1', '1', '1', '1', 'default', 2, '0'),
(970, 'Red Barbeque Grill', 'summer_grill*2', 's', 2, 1, 1, '0', '0', '0', 2588, '1', '1', '1', '1', '1', 'default', 2, '0'),
(971, 'Green Barbeque Grill', 'summer_grill*3', 's', 2, 1, 1, '0', '0', '0', 2589, '1', '1', '1', '1', '1', 'default', 2, '0'),
(972, 'Green Barbeque Grill', 'summer_grill*4', 's', 2, 1, 1, '0', '0', '0', 2590, '1', '1', '1', '1', '1', 'default', 2, '0'),
(973, 'Aqua Deck Chair', 'summer_chair*1', 's', 1, 1, 1, '0', '1', '0', 2571, '1', '1', '1', '1', '1', 'default', 1, '0'),
(974, 'Pink Deck Chair', 'summer_chair*2', 's', 1, 1, 1, '0', '1', '0', 2572, '1', '1', '1', '1', '1', 'default', 1, '0'),
(975, 'Black Deck Chair', 'summer_chair*3', 's', 1, 1, 1, '0', '1', '0', 2573, '1', '1', '1', '1', '1', 'default', 1, '0'),
(976, 'White Deck Chair', 'summer_chair*4', 's', 1, 1, 1, '0', '1', '0', 2574, '1', '1', '1', '1', '1', 'default', 1, '0'),
(977, 'Deck Chair', 'summer_chair*5', 's', 1, 1, 1, '0', '1', '0', 2575, '1', '1', '1', '1', '1', 'default', 1, '0'),
(978, 'Deck Chair', 'summer_chair*6', 's', 1, 1, 1, '0', '1', '0', 2576, '1', '1', '1', '1', '1', 'default', 1, '0'),
(979, 'Green Deck Chair', 'summer_chair*7', 's', 1, 1, 1, '0', '1', '0', 2577, '1', '1', '1', '1', '1', 'default', 1, '0'),
(980, 'Yellow Deck Chair', 'summer_chair*8', 's', 1, 1, 1, '0', '1', '0', 2578, '1', '1', '1', '1', '1', 'default', 1, '0'),
(981, 'Red Deck Chair', 'summer_chair*9', 's', 1, 1, 1, '0', '1', '0', 2579, '1', '1', '1', '1', '1', 'default', 1, '0'),
(982, 'Latin Love 1', 'sound_set_36', 's', 1, 1, 0.2, '1', '0', '0', 2583, '1', '1', '1', '1', '1', 'default', 1, '0'),
(983, 'Dance 6', 'sound_set_35', 's', 1, 1, 0.2, '1', '0', '0', 2595, '1', '1', '1', '1', '1', 'default', 1, '0'),
(984, 'Rock 5', 'sound_set_34', 's', 1, 1, 0.2, '1', '0', '0', 2570, '1', '1', '1', '1', '1', 'default', 1, '0'),
(985, 'Rock 3', 'sound_set_33', 's', 1, 1, 0.2, '1', '0', '0', 2564, '1', '1', '1', '1', '1', 'default', 1, '0'),
(986, 'Instrumental 2', 'sound_set_32', 's', 1, 1, 0.2, '1', '0', '0', 2569, '1', '1', '1', '1', '1', 'default', 1, '0'),
(987, 'Dance 3', 'sound_set_31', 's', 1, 1, 0.2, '1', '0', '0', 2596, '1', '1', '1', '1', '1', 'default', 1, '0'),
(988, 'Instrumental 1', 'sound_set_30', 's', 1, 1, 0.2, '1', '0', '0', 2585, '1', '1', '1', '1', '1', 'default', 1, '0'),
(989, 'Dance 2', 'sound_set_29', 's', 1, 1, 0.2, '1', '0', '0', 2580, '1', '1', '1', '1', '1', 'default', 1, '0'),
(990, 'Sound Machine Pro', 'sound_machine_pro', 's', 1, 1, 1, '0', '0', '0', 2606, '1', '1', '1', '1', '1', 'default', 1, '0'),
(991, 'Aqua One Way Gate', 'rare_mnstr', 's', 1, 1, 0.001, '0', '0', '0', 2584, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(992, 'Black HC Gate', 'one_way_door*2', 's', 1, 1, 0.001, '0', '0', '0', 2598, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(993, 'White HC Gate', 'one_way_door*3', 's', 1, 1, 0.001, '0', '0', '0', 2599, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(994, 'Beige One Way Gate', 'one_way_door*4', 's', 1, 1, 0.001, '0', '0', '0', 2600, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(995, 'Pink One Way Gate', 'one_way_door*5', 's', 1, 1, 0.001, '0', '0', '0', 2601, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(996, 'Blue HC Gate', 'one_way_door*6', 's', 1, 1, 0.001, '0', '0', '0', 2602, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(997, 'Green One Way Gate', 'one_way_door*7', 's', 1, 1, 0.001, '0', '0', '0', 2603, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(998, 'Yellow One Way Gate', 'one_way_door*8', 's', 1, 1, 0.001, '0', '0', '0', 2604, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(999, 'Red One Way Gate', 'one_way_door*9', 's', 1, 1, 0.001, '0', '0', '0', 2605, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(1000, 'Executive Rug', 'exe_rug', 's', 3, 3, 0, '1', '0', '1', 2567, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1001, 'Executive Glass Table', 'exe_s_table', 's', 2, 2, 1, '1', '0', '0', 2581, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1002, 'Sound set 37', 'sound_set_37', 's', 1, 1, 0.2, '1', '0', '0', 2565, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1003, 'Blue Summer Pool', 'summer_pool*1', 's', 2, 2, 0, '0', '0', '1', 2591, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1004, 'Red Summer Pool', 'summer_pool*2', 's', 2, 2, 0, '0', '0', '1', 2592, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1005, 'Green Summer Pool', 'summer_pool*3', 's', 2, 2, 0, '0', '0', '1', 2593, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1006, 'Yellow Summer Pool', 'summer_pool*4', 's', 2, 2, 0, '0', '0', '1', 2594, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1007, 'Burn', 'song_disk', 's', 1, 1, 0.1, '1', '0', '0', 2607, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1008, 'Jukebox', 'jukebox*1', 's', 1, 1, 1, '1', '0', '0', 2608, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1009, 'Welcome', 'carpet_soft_tut', 's', 1, 1, 0, '1', '0', '1', 2609, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1010, 'Graveyard Portal', 'sound_set_44', 's', 1, 1, 0.2, '1', '0', '0', 2610, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1011, 'SFX 1', 'sound_set_43', 's', 1, 1, 0.2, '1', '0', '0', 2614, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1012, 'Haunted Mansion', 'sound_set_42', 's', 1, 1, 0.2, '1', '0', '0', 2624, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1013, 'Rock 8', 'sound_set_41', 's', 1, 1, 0.2, '1', '0', '0', 2612, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1014, 'Rock 4', 'sound_set_40', 's', 1, 1, 0.2, '1', '0', '0', 2615, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1015, 'Rock 7', 'sound_set_39', 's', 1, 1, 0.2, '1', '0', '0', 2622, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1016, 'Rock 6', 'sound_set_38', 's', 1, 1, 0.2, '1', '0', '0', 2616, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1017, 'Grunge Chair', 'grunge_chair', 's', 1, 1, 1, '0', '1', '0', 2617, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1018, 'Grunge Mattress', 'grunge_mattress', 's', 3, 1, 1, '0', '1', '0', 2618, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1019, 'Radiator', 'grunge_radiator', 's', 1, 1, 1, '0', '0', '0', 2621, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1020, 'Grunge Bookshelf', 'grunge_shelf', 's', 3, 1, 1, '0', '0', '0', 2619, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1021, 'Road Sign', 'grunge_sign', 's', 1, 1, 1, '0', '0', '0', 2613, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1022, 'Grunge Table', 'grunge_table', 's', 2, 2, 1, '1', '0', '0', 2623, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1023, 'Creepy Crypt', 'habboween_crypt', 's', 1, 3, 1.1, '0', '0', '0', 2611, '1', '1', '1', '1', '1', 'bed', 2, '0'),
(1024, 'Unholy Ground', 'habboween_grass', 's', 2, 2, 0, '0', '0', '1', 2626, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1025, 'Habboween Cauldron', 'hal_cauldron', 's', 1, 1, 1, '0', '0', '0', 2625, '1', '1', '1', '1', '1', 'vendingmachine', 0, '30'),
(1026, 'Haunted Grave', 'hal_grave', 's', 1, 1, 1, '0', '0', '0', 2620, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1027, 'Christmas Party', 'sound_set_52', 's', 1, 1, 0.2, '1', '0', '0', 2633, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1028, 'Club 6', 'sound_set_51', 's', 1, 1, 0.2, '1', '0', '0', 2631, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1029, 'Club 5', 'sound_set_50', 's', 1, 1, 0.2, '1', '0', '0', 2632, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1030, 'Club 4', 'sound_set_49', 's', 1, 1, 0.2, '1', '0', '0', 2634, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1031, 'Club 3', 'sound_set_48', 's', 1, 1, 0.2, '1', '0', '0', 2629, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1032, 'Club 2', 'sound_set_47', 's', 1, 1, 0.2, '1', '0', '0', 2627, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1033, 'Club 1', 'sound_set_46', 's', 1, 1, 0.2, '1', '0', '0', 2630, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1034, 'Lost_Beatness', 'sound_set_45', 's', 1, 1, 0.2, '1', '0', '0', 2628, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1035, 'Lantern Bundle 2', 'xmas_icelamp', 's', 1, 1, 1, '1', '0', '0', 2641, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1036, 'Ice Castle Wall', 'xmas_cstl_wall', 's', 2, 1, 1, '0', '0', '0', 2646, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1037, 'Ice Castle Tower', 'xmas_cstl_twr', 's', 1, 1, 1, '0', '0', '0', 2651, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1038, 'Ice Castle Gate', 'xmas_cstl_gate', 's', 2, 1, 0.001, '0', '0', '0', 2636, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1039, 'Snowy Christmas Tree', 'tree7', 's', 1, 1, 1, '0', '0', '0', 2653, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1040, 'Flashy Christmas Tree', 'tree6', 's', 1, 1, 1, '0', '0', '0', 2638, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1041, 'Oh Blinging Tree', 'sound_set_54', 's', 1, 1, 0.2, '1', '0', '0', 2649, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1042, 'Snowy Surprise', 'sound_set_53', 's', 1, 1, 0.2, '1', '0', '0', 2652, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1043, 'postbank Safe', 'safe_silo_pb', 's', 1, 1, 1.3, '1', '0', '0', 2642, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(1044, 'Snowy Maze Gate', 'plant_mazegate_snow', 's', 2, 1, 0.001, '0', '0', '1', 2640, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1045, 'Snowy Maze Bundle 2', 'plant_maze_snow', 's', 2, 1, 1, '0', '0', '1', 2635, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1046, 'Winter Sleigh', 'christmas_sleigh', 's', 2, 2, 1, '0', '1', '0', 2648, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1047, 'Reindeer', 'christmas_reindeer', 's', 1, 2, 1, '0', '0', '0', 2637, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1048, 'Reindeer Droppings', 'christmas_poop', 's', 1, 1, 1, '0', '0', '0', 2654, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1049, 'Executive Bar Desk', 'exe_bardesk', 's', 1, 1, 1, '1', '0', '0', 2643, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1050, 'Executive Sofa Chair', 'exe_chair', 's', 1, 1, 1, '0', '1', '0', 2647, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1051, 'Executive Boss Chair', 'exe_chair2', 's', 1, 1, 1, '0', '1', '0', 2650, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1052, 'Executive Corner Desk', 'exe_corner', 's', 1, 1, 1, '1', '0', '0', 2655, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1053, 'Executive Drinks Tray', 'exe_drinks', 's', 1, 1, 1, '0', '0', '0', 2645, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1054, '3-Seater Sofa', 'exe_sofa', 's', 3, 1, 1, '0', '1', '0', 2639, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1055, 'Take a memo', 'exe_table', 's', 3, 2, 1.1, '0', '0', '0', 2644, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1056, 'RnB Grooves 5', 'sound_set_59', 's', 1, 1, 0.2, '1', '0', '0', 2670, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1057, 'RnB Grooves 4', 'sound_set_58', 's', 1, 1, 0.2, '1', '0', '0', 2656, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1058, 'RnB Grooves 3', 'sound_set_57', 's', 1, 1, 0.2, '1', '0', '0', 2673, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1059, 'RnB Grooves 2', 'sound_set_56', 's', 1, 1, 0.2, '1', '0', '0', 2669, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1060, 'RnB Grooves 1', 'sound_set_55', 's', 1, 1, 0.2, '1', '0', '0', 2671, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1061, 'Lightweight', 'noob_table*1', 's', 2, 2, 1, '1', '0', '0', 2687, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1062, 'Lightweight', 'noob_table*2', 's', 2, 2, 1, '1', '0', '0', 2688, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1063, 'Lightweight', 'noob_table*3', 's', 2, 2, 1, '1', '0', '0', 2689, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1064, 'Lightweight', 'noob_table*4', 's', 2, 2, 1, '1', '0', '0', 2690, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1065, 'Lightweight', 'noob_table*5', 's', 2, 2, 1, '1', '0', '0', 2691, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1066, 'Lightweight', 'noob_table*6', 's', 2, 2, 1, '1', '0', '0', 2692, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1067, 'My first Habbo stool', 'noob_stool*1', 's', 1, 1, 1, '0', '1', '0', 2657, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1068, 'My first Habbo stool', 'noob_stool*2', 's', 1, 1, 1, '0', '1', '0', 2658, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1069, 'My first Habbo stool', 'noob_stool*3', 's', 1, 1, 1, '0', '1', '0', 2659, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1070, 'My first Habbo stool', 'noob_stool*4', 's', 1, 1, 1, '0', '1', '0', 2660, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1071, 'My first Habbo stool', 'noob_stool*5', 's', 1, 1, 1, '0', '1', '0', 2661, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1072, 'My first Habbo stool', 'noob_stool*6', 's', 1, 1, 1, '0', '1', '0', 2662, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1073, 'My first Habbo rug', 'noob_rug*1', 's', 2, 3, 0, '1', '0', '1', 2681, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1074, 'My first Habbo rug', 'noob_rug*2', 's', 2, 3, 0, '1', '0', '1', 2682, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1075, 'My first Habbo rug', 'noob_rug*3', 's', 2, 3, 0, '1', '0', '1', 2683, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1076, 'My first Habbo rug', 'noob_rug*4', 's', 2, 3, 0, '1', '0', '1', 2684, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1077, 'My first Habbo rug', 'noob_rug*5', 's', 2, 3, 0, '1', '0', '1', 2685, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1078, 'My first Habbo rug', 'noob_rug*6', 's', 2, 3, 0, '1', '0', '1', 2686, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1079, 'My first Habbo lamp', 'noob_lamp*1', 's', 1, 1, 1, '0', '0', '0', 2663, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1080, 'My first Habbo lamp', 'noob_lamp*2', 's', 1, 1, 1, '0', '0', '0', 2664, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1081, 'My first Habbo lamp', 'noob_lamp*3', 's', 1, 1, 1, '0', '0', '0', 2665, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1082, 'My first Habbo lamp', 'noob_lamp*4', 's', 1, 1, 1, '0', '0', '0', 2666, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1083, 'My first Habbo lamp', 'noob_lamp*5', 's', 1, 1, 1, '0', '0', '0', 2667, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1084, 'My first Habbo lamp', 'noob_lamp*6', 's', 1, 1, 1, '0', '0', '0', 2668, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1085, 'Lightweight', 'noob_chair*1', 's', 1, 1, 1, '0', '1', '0', 2675, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1086, ' practical', 'noob_chair*2', 's', 1, 1, 1, '0', '1', '0', 2676, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1087, ' practical', 'noob_chair*3', 's', 1, 1, 1, '0', '1', '0', 2677, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1088, ' practical', 'noob_chair*4', 's', 1, 1, 1, '0', '1', '0', 2678, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1089, ' practical', 'noob_chair*5', 's', 1, 1, 1, '0', '1', '0', 2679, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1090, 'Power Globe', 'noob_chair*6', 's', 1, 1, 1, '0', '1', '0', 2680, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1091, 'Executive Plant', 'exe_plant', 's', 1, 1, 1, '0', '0', '0', 2674, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1092, 'Grey Share Bear', 'val_teddy*1', 's', 1, 1, 1, '0', '1', '0', 2699, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1093, 'Pink Share Bear', 'val_teddy*2', 's', 1, 1, 1, '0', '1', '0', 2700, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1094, 'Green Share Bear', 'val_teddy*3', 's', 1, 1, 1, '0', '1', '0', 2701, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1095, 'Brown Share Bear', 'val_teddy*4', 's', 1, 1, 1, '0', '1', '0', 2702, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1096, 'Yellow Share Bear', 'val_teddy*5', 's', 1, 1, 1, '0', '1', '0', 2703, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1097, 'Blue Share Bear', 'val_teddy*6', 's', 1, 1, 1, '0', '1', '0', 2704, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1098, 'Love Randomiser', 'val_randomizer', 's', 4, 1, 1.4, '0', '1', '0', 2696, '1', '1', '1', '1', '1', 'loveshuffler', 1, '0'),
(1099, 'Heart Shaped Chocs', 'val_choco', 's', 1, 1, 1, '0', '0', '0', 2697, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1100, 'Teleport Door', 'teleport_door', 's', 1, 1, 0.1, '1', '0', '1', 2693, '1', '1', '0', '1', '1', 'teleport', 2, '0'),
(1101, 'Latin Love 3', 'sound_set_61', 's', 1, 1, 0.2, '1', '0', '0', 2698, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1102, 'Latin Love 2', 'sound_set_60', 's', 1, 1, 0.2, '1', '0', '0', 2695, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1103, 'Crystal Ball', 'fortune', 's', 1, 1, 1, '0', '0', '0', 2694, '1', '1', '1', '1', '1', 'dice', 1, '0'),
(1104, 'Adventure Desk', 'sw_table', 's', 1, 2, 1, '0', '0', '0', 2713, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1105, 'Raven', 'sw_raven', 's', 1, 1, 1, '0', '0', '0', 2711, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1106, 'Ye Olde Chest', 'sw_chest', 's', 1, 2, 1, '0', '0', '0', 2709, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1107, 'Sand Castle Wall', 'sand_cstl_wall', 's', 2, 1, 1, '0', '0', '0', 2710, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1108, 'Sand Castle Tower', 'sand_cstl_twr', 's', 1, 1, 1, '0', '0', '0', 2705, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1109, 'Sand Castle Gate', 'sand_cstl_gate', 's', 2, 1, 0.001, '0', '0', '0', 2712, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1110, 'Candle Box', 'grunge_candle', 's', 1, 1, 1, '0', '0', '0', 2708, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1111, 'Bench', 'grunge_bench', 's', 3, 1, 1, '0', '0', '0', 2707, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1112, 'Flaming Barrel', 'grunge_barrel', 's', 1, 1, 1, '0', '0', '0', 2706, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1113, 'Moon Lamp', 'rclr_lamp', 's', 1, 1, 1, '0', '0', '0', 2733, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1115, 'Bubble trophy', 'a0 prizetrophy8_g', 's', 1, 1, 1, '0', '0', '0', 2426, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1116, 'nouvelle_trax', 'nouvelle_trax', 's', 1, 1, 1, '0', '0', '0', 2736, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1117, 'Bubble Juice Floor', 'md_rug', 's', 4, 4, 0, '1', '0', '1', 2727, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1118, 'Sushi Kohada', 'jp_tray6', 's', 1, 1, 1, '0', '0', '0', 2720, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1119, 'Sushi Tamago', 'jp_tray5', 's', 1, 1, 1, '0', '0', '0', 2717, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1120, 'Sushi Uni', 'jp_tray4', 's', 1, 1, 1, '0', '0', '0', 2725, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1121, 'Sushi Ikura', 'jp_tray3', 's', 1, 1, 1, '0', '0', '0', 2726, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1122, 'Sushi Ika', 'jp_tray2', 's', 1, 1, 1, '0', '0', '0', 2724, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1123, 'Sushi Maguro', 'jp_tray1', 's', 1, 1, 1, '0', '0', '0', 2715, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1124, 'Tea Maker', 'arabian_teamk', 's', 1, 1, 1, '0', '0', '0', 2716, '1', '1', '1', '1', '1', 'vendingmachine', 0, '1'),
(1125, 'Ornamental Urn', 'arabian_snake', 's', 1, 1, 1, '0', '0', '0', 2732, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1126, 'Berber Kilim Rug', 'arabian_rug', 's', 3, 5, 0, '0', '0', '1', 2719, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1127, 'Green Blossom Pillow', 'arabian_pllw', 's', 1, 1, 0.8, '0', '1', '0', 2722, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1128, 'Soft wooden screen', 'arabian_divdr', 's', 1, 2, 1, '0', '0', '0', 2730, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1129, 'Exotic', 'arabian_chair', 's', 1, 1, 1.2, '0', '1', '0', 2721, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1130, 'Amanjena Table', 'arabian_bigtb', 's', 3, 2, 0.8, '1', '0', '0', 2731, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1131, 'Hexagonal Tea Table', 'arabian_tetbl', 's', 1, 1, 1, '1', '0', '0', 2714, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1132, 'Mint Tea Tray', 'arabian_tray1', 's', 1, 1, 1, '0', '0', '0', 2734, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1133, 'Candle Tray', 'arabian_tray2', 's', 1, 1, 1, '0', '0', '0', 2735, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1134, 'Sweets Tray', 'arabian_tray3', 's', 1, 1, 1, '0', '0', '0', 2723, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1135, 'Sweet', 'arabian_tray4', 's', 1, 1, 1, '0', '0', '0', 2728, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1136, 'Alhambra Trax 3', 'sound_set_64', 's', 1, 1, 0.2, '1', '0', '0', 2738, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1137, 'Alhambra Trax 2', 'sound_set_63', 's', 1, 1, 0.2, '1', '0', '0', 2740, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1138, 'Alhambra Trax 1', 'sound_set_62', 's', 1, 1, 0.2, '1', '0', '0', 2741, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1139, 'Jukebox Pacha TV', 'jukebox_ptv*1', 's', 1, 1, 1, '0', '0', '0', 2739, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1140, 'Calippo icecream machine', 'calippo', 's', 1, 1, 1, '0', '0', '0', 2737, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(1141, 'traxsilver', 'traxsilver', 's', 1, 1, 1, '1', '0', '0', 2744, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1142, 'traxgold', 'traxgold', 's', 1, 1, 1, '1', '0', '0', 2742, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1143, 'traxbronze', 'traxbronze', 's', 1, 1, 1, '1', '0', '0', 2743, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1144, 'bench_puffet', 'bench_puffet', 's', 2, 1, 1, '0', '1', '0', 2745, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1145, 'Gold Bar (China)', 'CFC_500_goldbar', 's', 1, 1, 0.4, '1', '0', '0', 2764, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1146, 'Sack of Credits (China)', 'CFC_200_moneybag', 's', 1, 1, 1, '1', '0', '0', 2770, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1148, 'Gold Coin (China)', 'CFC_100_coin_gold', 's', 1, 1, 0.2, '1', '0', '0', 2796, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1149, 'Silver Coin (China)', 'CFC_50_coin_silver', 's', 1, 1, 0.2, '1', '0', '0', 2772, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1150, 'Chabu Dai', 'jp_table', 's', 2, 2, 1, '0', '0', '0', 2749, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1151, 'Shishi Odishi', 'jp_rare', 's', 2, 2, 1, '0', '0', '0', 2750, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1152, 'Katana Green', 'jp_katana3', 's', 1, 1, 1, '0', '0', '0', 2748, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1153, 'Katana Blue', 'jp_katana2', 's', 1, 1, 1, '0', '0', '0', 2747, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1154, 'HC Katana Red', 'jp_katana1', 's', 1, 1, 1, '0', '0', '0', 2751, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1156, 'Tiki Waterfall', 'tiki_waterfall', 's', 3, 2, 1, '0', '0', '0', 2757, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1157, 'Tiki Pig Tray', 'tiki_tray4', 's', 1, 1, 1, '0', '0', '0', 2765, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1158, 'Tiki Fish Tray', 'tiki_tray3', 's', 1, 1, 1, '0', '0', '0', 2753, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1159, 'Tiki Pineapple Plate', 'tiki_tray2', 's', 1, 1, 1, '0', '0', '0', 2768, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1160, 'Tiki Fruit Tray', 'tiki_tray1', 's', 1, 1, 1, '0', '0', '0', 2755, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1161, 'Empty Tray', 'tiki_tray0', 's', 1, 1, 1, '0', '0', '0', 2792, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1162, 'Toucan', 'tiki_toucan', 's', 1, 1, 1, '0', '0', '0', 2756, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1163, 'Beach Torch', 'tiki_torch', 's', 1, 1, 1, '0', '0', '0', 2773, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1164, 'Tribal Statue', 'tiki_statue', 's', 1, 1, 1, '0', '0', '0', 2782, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1165, 'Island Sand Patch', 'tiki_sand', 's', 2, 2, 0, '1', '0', '1', 2798, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1166, 'Tiki Parasol', 'tiki_parasol', 's', 1, 1, 1, '0', '0', '0', 2769, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1167, 'Jungle Patch', 'tiki_junglerug', 's', 2, 2, 0, '1', '0', '1', 2781, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1168, 'Tiki Bar Corner', 'tiki_corner', 's', 1, 1, 1, '1', '0', '0', 2794, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1169, 'Butterflies', 'tiki_bflies', 's', 1, 1, 1, '0', '0', '0', 2785, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1170, 'Tiki Bar Stool', 'tiki_bench', 's', 1, 1, 1.3, '0', '1', '0', 2784, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1171, 'Tiki Bar Desk', 'tiki_bardesk', 's', 1, 1, 1, '1', '0', '0', 2795, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1172, 'tampax_rug', 'tampax_rug', 's', 3, 4, 0, '1', '0', '1', 2754, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1173, 'Sound set 70', 'sound_set_70', 's', 1, 1, 0.2, '1', '0', '0', 2767, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1174, 'Sound set 69', 'sound_set_69', 's', 1, 1, 0.2, '1', '0', '0', 2799, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1175, 'Sound set 68', 'sound_set_68', 's', 1, 1, 0.2, '1', '0', '0', 2793, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1176, 'Sound set 67', 'sound_set_67', 's', 1, 1, 0.2, '1', '0', '0', 2771, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1177, 'Sound set 66', 'sound_set_66', 's', 1, 1, 0.2, '1', '0', '0', 2752, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1178, 'Sound set 65', 'sound_set_65', 's', 1, 1, 0.2, '1', '0', '0', 2766, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1185, 'Lucky Bamboo', 'noob_plant', 's', 1, 1, 1, '0', '0', '0', 2783, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1197, 'Japanese Teamaker', 'jp_teamaker', 's', 1, 1, 1, '0', '0', '0', 2774, '1', '1', '1', '1', '1', 'vendingmachine', 0, '28'),
(1198, 'September 2008', 'svnr_uk', 's', 1, 1, 1, '0', '0', '0', 2838, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1199, 'August 2008', 'svnr_nl', 's', 1, 2, 1, '0', '1', '0', 2825, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1200, 'July 2008', 'svnr_it', 's', 2, 1, 1, '0', '1', '0', 2813, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1201, 'October 2008', 'svnr_de', 's', 1, 1, 1, '0', '0', '0', 2801, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1202, 'November 2008', 'svnr_aus', 's', 1, 1, 1, '0', '0', '0', 2836, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1203, 'Accompaniments', 'diner_tray_7', 's', 1, 1, 1, '0', '0', '0', 2840, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1204, 'Vanilla', 'diner_tray_6', 's', 1, 1, 1, '0', '0', '0', 2826, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1205, 'Bacon and Eggs', 'diner_tray_5', 's', 1, 1, 1, '0', '0', '0', 2815, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1206, 'Pancakes', 'diner_tray_4', 's', 1, 1, 1, '0', '0', '0', 2800, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1207, 'Spaghetti Meatballs', 'diner_tray_3', 's', 1, 1, 1, '0', '0', '0', 2841, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1208, 'Steak and Mash', 'diner_tray_2', 's', 1, 1, 1, '0', '0', '0', 2802, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1209, 'Burger and Chips', 'diner_tray_1', 's', 1, 1, 1, '0', '0', '0', 2839, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1210, 'Had your fill', 'diner_tray_0', 's', 1, 1, 0.1, '1', '0', '0', 2837, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1211, 'Aqua Diner Sofa 2', 'diner_sofa_2*1', 's', 1, 1, 1, '0', '1', '0', 2804, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1212, 'Pink Diner Sofa 2', 'diner_sofa_2*2', 's', 1, 1, 1, '0', '1', '0', 2805, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1213, 'Black Diner Sofa 2', 'diner_sofa_2*3', 's', 1, 1, 1, '0', '1', '0', 2806, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1214, 'White Diner Sofa 2', 'diner_sofa_2*4', 's', 1, 1, 1, '0', '1', '0', 2807, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1215, 'Latte Diner Sofa 2', 'diner_sofa_2*5', 's', 1, 1, 1, '0', '1', '0', 2808, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1216, 'Blue Diner Sofa 2', 'diner_sofa_2*6', 's', 1, 1, 1, '0', '1', '0', 2809, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1217, 'Green Diner Sofa 2', 'diner_sofa_2*7', 's', 1, 1, 1, '0', '1', '0', 2810, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1218, 'Yellow Diner Sofa 2', 'diner_sofa_2*8', 's', 1, 1, 1, '0', '1', '0', 2811, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1219, 'Red Diner Sofa 2', 'diner_sofa_2*9', 's', 1, 1, 1, '0', '1', '0', 2812, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1220, 'Diner Shaker', 'diner_shaker', 's', 1, 1, 1, '0', '0', '0', 2814, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1221, 'Diner Floor', 'diner_rug', 's', 2, 2, 0, '1', '0', '1', 2803, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1222, 'Aqua Gumball Machine', 'diner_gumvendor*1', 's', 1, 1, 1, '0', '0', '0', 2827, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1223, 'Pink Gumball Machine', 'diner_gumvendor*2', 's', 1, 1, 1, '0', '0', '0', 2828, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1224, 'Black Gumball Machine', 'diner_gumvendor*3', 's', 1, 1, 1, '0', '0', '0', 2829, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1225, 'White Gumball Machine', 'diner_gumvendor*4', 's', 1, 1, 1, '0', '0', '0', 2830, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1226, 'Latte Gumball Machine', 'diner_gumvendor*5', 's', 1, 1, 1, '0', '0', '0', 2831, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1227, 'Blue Gumball Machine', 'diner_gumvendor*6', 's', 1, 1, 1, '0', '0', '0', 2832, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1228, 'Green Gumball Machine', 'diner_gumvendor*7', 's', 1, 1, 1, '0', '0', '0', 2833, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1229, 'Yellow Gumball Machine', 'diner_gumvendor*8', 's', 1, 1, 1, '0', '0', '0', 2834, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1230, 'Red Gumball Machine', 'diner_gumvendor*9', 's', 1, 1, 1, '0', '0', '0', 2835, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1231, 'Aqua Diner Till', 'diner_cashreg*1', 's', 1, 1, 1, '0', '0', '0', 2816, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1232, 'Pink Diner Till', 'diner_cashreg*2', 's', 1, 1, 1, '0', '0', '0', 2817, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1233, 'Black Diner Till', 'diner_cashreg*3', 's', 1, 1, 1, '0', '0', '0', 2818, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1234, 'White Diner Till', 'diner_cashreg*4', 's', 1, 1, 1, '0', '0', '0', 2819, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1235, 'Latte Diner Till', 'diner_cashreg*5', 's', 1, 1, 1, '0', '0', '0', 2820, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1236, 'Blue Diner Till', 'diner_cashreg*6', 's', 1, 1, 1, '0', '0', '0', 2821, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1237, 'Green Diner Till', 'diner_cashreg*7', 's', 1, 1, 1, '0', '0', '0', 2822, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1238, 'Yellow Diner Till', 'diner_cashreg*8', 's', 1, 1, 1, '0', '0', '0', 2823, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1239, 'Red Diner Till', 'diner_cashreg*9', 's', 1, 1, 1, '0', '0', '0', 2824, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1240, 'Aqua Diner Table', 'diner_table_2*1', 's', 3, 2, 1, '1', '0', '0', 2879, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1241, 'Pink Diner Table', 'diner_table_2*2', 's', 3, 2, 1, '1', '0', '0', 2880, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1242, 'Black Diner Table', 'diner_table_2*3', 's', 3, 2, 1, '1', '0', '0', 2881, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1243, 'White Diner Table', 'diner_table_2*4', 's', 3, 2, 1, '1', '0', '0', 2882, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1244, 'Latte Diner Table', 'diner_table_2*5', 's', 3, 2, 1, '1', '0', '0', 2883, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1245, 'Blue Diner Table', 'diner_table_2*6', 's', 3, 2, 1, '1', '0', '0', 2884, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1246, 'Green Diner Table', 'diner_table_2*7', 's', 3, 2, 1, '1', '0', '0', 2885, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1247, 'Yellow Diner Table', 'diner_table_2*8', 's', 3, 2, 1, '1', '0', '0', 2886, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1248, 'Red Diner Table', 'diner_table_2*9', 's', 3, 2, 1, '1', '0', '0', 2887, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1249, 'Aqua Diner Booth Table', 'diner_table_1*1', 's', 2, 2, 1, '1', '0', '0', 2897, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1250, 'Pink Diner Booth Table', 'diner_table_1*2', 's', 2, 2, 1, '1', '0', '0', 2898, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1251, 'Black Diner Booth Table', 'diner_table_1*3', 's', 2, 2, 1, '1', '0', '0', 2899, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1252, 'White Diner Booth Table', 'diner_table_1*4', 's', 2, 2, 1, '1', '0', '0', 2900, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1253, 'Latte Diner Booth Table', 'diner_table_1*5', 's', 2, 2, 1, '1', '0', '0', 2901, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1254, 'Blue Diner Booth Table', 'diner_table_1*6', 's', 2, 2, 1, '1', '0', '0', 2902, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1255, 'Green Diner Booth Table', 'diner_table_1*7', 's', 2, 2, 1, '1', '0', '0', 2903, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1256, 'Yellow Diner Booth Table', 'diner_table_1*8', 's', 2, 2, 1, '1', '0', '0', 2904, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1257, 'Red Diner Booth Table', 'diner_table_1*9', 's', 2, 2, 1, '1', '0', '0', 2905, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1258, 'Aqua Diner Sofa 1', 'diner_sofa_1*1', 's', 1, 1, 1, '0', '1', '0', 2888, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1259, 'Pink Diner Sofa 1', 'diner_sofa_1*2', 's', 1, 1, 1, '0', '1', '0', 2889, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1260, 'Black Diner Sofa 1', 'diner_sofa_1*3', 's', 1, 1, 1, '0', '1', '0', 2890, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1261, 'White Diner Sofa 1', 'diner_sofa_1*4', 's', 1, 1, 1, '0', '1', '0', 2891, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1262, 'Latte Diner Sofa 1', 'diner_sofa_1*5', 's', 1, 1, 1, '0', '1', '0', 2892, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1263, 'Blue Diner Sofa 1', 'diner_sofa_1*6', 's', 1, 1, 1, '0', '1', '0', 2893, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1264, 'Green Diner Sofa 1', 'diner_sofa_1*7', 's', 1, 1, 1, '0', '1', '0', 2894, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1265, 'Yellow Diner Sofa 1', 'diner_sofa_1*8', 's', 1, 1, 1, '0', '1', '0', 2895, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1266, 'Red Diner Sofa 1', 'diner_sofa_1*9', 's', 1, 1, 1, '0', '1', '0', 2896, '1', '1', '1', '1', '1', 'default', 1, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(1267, 'Aqua Diner Stool', 'diner_chair*1', 's', 1, 1, 1.4, '0', '1', '0', 2861, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1268, 'Pink Diner Stool', 'diner_chair*2', 's', 1, 1, 1.4, '0', '1', '0', 2862, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1269, 'Black Diner Stool', 'diner_chair*3', 's', 1, 1, 1.4, '0', '1', '0', 2863, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1270, 'White Diner Stool', 'diner_chair*4', 's', 1, 1, 1.4, '0', '1', '0', 2864, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1271, 'Latte Diner Stool', 'diner_chair*5', 's', 1, 1, 1.4, '0', '1', '0', 2865, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1272, 'Blue Diner Stool', 'diner_chair*6', 's', 1, 1, 1.4, '0', '1', '0', 2866, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1273, 'Green Diner Stool', 'diner_chair*7', 's', 1, 1, 1.4, '0', '1', '0', 2867, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1274, 'Yellow Diner Stool', 'diner_chair*8', 's', 1, 1, 1.4, '0', '1', '0', 2868, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1275, 'Red Diner Stool', 'diner_chair*9', 's', 1, 1, 1.4, '0', '1', '0', 2869, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1276, 'Aqua Diner Gate', 'diner_bardesk_gate*1', 's', 1, 1, 0.001, '0', '0', '0', 2842, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1277, 'Pink Diner Gate', 'diner_bardesk_gate*2', 's', 1, 1, 0.001, '0', '0', '0', 2843, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1278, 'Black Diner Gate', 'diner_bardesk_gate*3', 's', 1, 1, 0.001, '0', '0', '0', 2844, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1279, 'White Diner Gate', 'diner_bardesk_gate*4', 's', 1, 1, 0.001, '0', '0', '0', 2845, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1280, 'Latte Diner Gate', 'diner_bardesk_gate*5', 's', 1, 1, 0.001, '0', '0', '0', 2846, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1281, 'Blue Diner Gate', 'diner_bardesk_gate*6', 's', 1, 1, 0.001, '0', '0', '0', 2847, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1282, 'Green Diner Gate', 'diner_bardesk_gate*7', 's', 1, 1, 0.001, '0', '0', '0', 2848, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1283, 'Yellow Diner Gate', 'diner_bardesk_gate*8', 's', 1, 1, 0.001, '0', '0', '0', 2849, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1284, 'Red Diner Gate', 'diner_bardesk_gate*9', 's', 1, 1, 0.001, '0', '0', '0', 2850, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1285, 'Aqua Diner Corner', 'diner_bardesk_corner*1', 's', 1, 1, 1, '1', '0', '0', 2870, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1286, 'Pink Diner Corner', 'diner_bardesk_corner*2', 's', 1, 1, 1, '1', '0', '0', 2871, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1287, 'Black Diner Corner', 'diner_bardesk_corner*3', 's', 1, 1, 1, '1', '0', '0', 2872, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1288, 'Latte Diner Corner', 'diner_bardesk_corner*4', 's', 1, 1, 1, '1', '0', '0', 2873, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1289, 'Blue Diner Corner', 'diner_bardesk_corner*6', 's', 1, 1, 1, '1', '0', '0', 2875, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1290, 'Green Diner Corner', 'diner_bardesk_corner*7', 's', 1, 1, 1, '1', '0', '0', 2876, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1291, 'Yellow Diner Corner', 'diner_bardesk_corner*8', 's', 1, 1, 1, '1', '0', '0', 2877, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1292, 'Red Diner Corner', 'diner_bardesk_corner*9', 's', 1, 1, 1, '1', '0', '0', 2878, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1293, 'Aqua Diner Bar', 'diner_bardesk*1', 's', 1, 1, 1, '1', '0', '0', 2851, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1294, 'Pink Diner Bar', 'diner_bardesk*2', 's', 1, 1, 1, '1', '0', '0', 2852, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1295, 'Black Diner Bar', 'diner_bardesk*3', 's', 1, 1, 1, '1', '0', '0', 2853, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1296, 'White Diner Bar', 'diner_bardesk*4', 's', 1, 1, 1, '1', '0', '0', 2854, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1297, 'Latte Diner Bar', 'diner_bardesk*5', 's', 1, 1, 1, '1', '0', '0', 2855, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1298, 'Blue Diner Bar', 'diner_bardesk*6', 's', 1, 1, 1, '1', '0', '0', 2856, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1299, 'Green Diner Bar', 'diner_bardesk*7', 's', 1, 1, 1, '1', '0', '0', 2857, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1300, 'Yellow Diner Bar', 'diner_bardesk*8', 's', 1, 1, 1, '1', '0', '0', 2858, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1301, 'Red Diner Bar', 'diner_bardesk*9', 's', 1, 1, 1, '1', '0', '0', 2859, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1302, 'ads_dave_cns', 'ads_dave_cns', 's', 1, 1, 1, '0', '0', '0', 2860, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1303, 'easy_carpet name', 'easy_carpet', 's', 4, 4, 0, '1', '0', '1', 2911, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1304, 'easy_bowl2', 'easy_bowl2', 's', 1, 1, 1, '1', '0', '0', 2907, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1305, 'Greek Corner', 'greek_corner', 's', 1, 1, 1, '0', '0', '0', 2910, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1306, 'Enter mortal', 'greek_gate', 's', 2, 1, 0.001, '0', '0', '0', 2908, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1307, 'Greek Pillars', 'greek_pillars', 's', 2, 1, 1, '0', '0', '0', 2909, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1308, 'Greek Seat', 'greek_seat', 's', 1, 1, 0.5, '0', '1', '0', 2906, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1309, 'Greek trophy', 'a0 greektrophy_g', 's', 1, 1, 1, '0', '0', '0', 2622, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1310, 'Greek trophy', 'a0 greektrophy_s', 's', 1, 1, 1, '0', '0', '0', 2623, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1311, 'Greek trophy', 'a0 greektrophy_b', 's', 1, 1, 1, '0', '0', '0', 2624, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1312, 'greek_block', 'greek_block', 's', 2, 1, 0.8, '0', '1', '0', 2915, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1313, 'Glass Table', 'hcc_table', 's', 1, 2, 1, '0', '0', '0', 2923, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1314, 'Bookshelf', 'hcc_shelf', 's', 1, 2, 1, '0', '0', '0', 2917, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1315, 'Low Back Sofa', 'hcc_sofa', 's', 2, 1, 1.2, '0', '1', '0', 2921, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1316, 'Cool look', 'hcc_minibar', 's', 1, 1, 1, '0', '0', '0', 2924, '1', '1', '1', '1', '1', 'vendingmachine', 0, '24'),
(1317, 'Trendy Stool', 'hcc_chair', 's', 1, 1, 1, '0', '1', '0', 2919, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1318, 'Crime scene', 'det_divider', 's', 2, 1, 1, '0', '0', '0', 2918, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1319, 'netari_carpet', 'netari_carpet', 's', 3, 5, 0, '1', '0', '1', 2916, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1320, 'Chalk Outline', 'det_body', 's', 2, 3, 0, '0', '0', '1', 2922, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1321, 'Antique Stool', 'hcc_stool', 's', 1, 1, 1.2, '0', '1', '0', 2920, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1322, 'Reclining Chair', 'hcc_sofachair', 's', 1, 1, 1.2, '0', '1', '0', 2925, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1323, 'Glass Corner', 'hcc_crnr', 's', 1, 1, 1, '0', '0', '0', 2926, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1324, 'Glass Divider', 'hcc_dvdr', 's', 2, 1, 1, '0', '0', '0', 2927, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1325, 'sob_carpet', 'sob_carpet', 's', 3, 5, 0, '1', '0', '1', 2928, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1326, 'My Hump', 'igor_seat', 's', 1, 1, 1, '0', '1', '0', 2929, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1327, 'The Brain', 'ads_igorbrain', 's', 1, 1, 1, '0', '0', '0', 2936, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1328, 'Igor Switch', 'ads_igorswitch', 's', 1, 1, 1, '0', '0', '0', 2934, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1329, 'ads_711', 'ads_711*1', 's', 1, 1, 1, '0', '0', '0', 2930, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1330, 'ads_711', 'ads_711*2', 's', 1, 1, 1, '0', '0', '0', 2931, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1331, 'ads_711', 'ads_711*3', 's', 1, 1, 1, '0', '0', '0', 2932, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1332, 'ads_711', 'ads_711*4', 's', 1, 1, 1, '0', '0', '0', 2933, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1333, 'Igor Ray Gun', 'ads_igorraygun', 's', 1, 2, 1, '0', '0', '0', 2935, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1334, 'Blood Sink', 'hween08_sink', 's', 1, 1, 1, '0', '0', '0', 2944, '1', '1', '1', '1', '1', 'vendingmachine', 0, '29'),
(1335, 'Hospital Curtain (blood)', 'hween08_curtain', 's', 3, 1, 1, '0', '0', '0', 2942, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1336, 'Blood Bath', 'hween08_bath', 's', 1, 2, 1, '0', '1', '0', 2948, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1337, 'Life Support (blood)', 'hween08_defibs', 's', 1, 1, 1, '0', '0', '0', 2938, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1338, 'Body Bag', 'hween08_bbag', 's', 1, 3, 1.3, '0', '0', '0', 2943, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(1339, 'Hospital Curtain (ooze)', 'hween08_curtain2', 's', 3, 1, 1, '0', '0', '0', 2949, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1340, 'Life Support (ooze)', 'hween08_defibs2', 's', 1, 1, 1, '0', '0', '0', 2939, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1341, 'Hospital Bed (blood)', 'hween08_bed', 's', 1, 3, 2, '0', '0', '0', 2945, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(1342, 'Ooze Sink', 'hween08_sink2', 's', 1, 1, 1, '0', '0', '0', 2940, '1', '1', '1', '1', '1', 'vendingmachine', 0, '30'),
(1343, 'Hospital Bed (ooze)', 'hween08_bed2', 's', 1, 3, 1, '0', '0', '0', 2937, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(1344, 'Ooze Bath', 'hween08_bath2', 's', 1, 2, 1, '0', '1', '0', 2947, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1345, 'Manhole', 'hween08_manhole', 's', 1, 1, 1, '0', '0', '0', 2946, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1346, ' poke', 'hween08_trll', 's', 1, 1, 1, '0', '0', '0', 2941, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1347, 'Glass High Bar Table', 'party_table', 's', 1, 1, 1, '1', '0', '0', 2956, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1348, 'Spotlight', 'party_discol', 's', 1, 1, 1, '0', '0', '0', 2963, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1349, 'Stage Block Large', 'party_block2', 's', 2, 2, 0.7, '1', '0', '1', 2950, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1350, 'Bar Corner', 'party_barcorn', 's', 1, 1, 1, '1', '0', '0', 2957, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1351, 'High Class Bar Stool', 'party_chair', 's', 1, 1, 1.3, '0', '1', '0', 2960, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1352, 'Small Stage', 'party_block', 's', 1, 1, 0.9, '1', '0', '1', 2959, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1353, 'Dance Floor Laser', 'party_ravel', 's', 1, 1, 1, '0', '0', '0', 2965, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1354, 'Despite being made a lava', 'party_tube_lava', 's', 1, 1, 1, '0', '0', '0', 2966, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1355, 'Club Tray', 'party_tray', 's', 1, 1, 1, '0', '0', '0', 2955, '1', '1', '1', '1', '1', 'vendingmachine', 0, '31'),
(1356, 'Scratch it', 'party_djtable', 's', 1, 2, 1, '0', '0', '0', 2954, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1357, 'Disco Floor', 'party_floor', 's', 2, 2, 0, '1', '0', '1', 2958, '1', '1', '1', '1', '1', 'default', 10, '0'),
(1358, 'Glitter Ball', 'party_ball', 's', 1, 1, 0, '0', '0', '1', 2964, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1359, 'Bubbles Machine', 'party_tube_bubble', 's', 1, 1, 1, '0', '0', '0', 2951, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1360, ' MC', 'party_mic', 's', 1, 1, 1, '0', '0', '0', 2953, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1361, 'Dance Floor Beamer', 'party_beamer', 's', 1, 1, 1, '0', '0', '0', 2961, '1', '1', '1', '1', '1', 'default', 7, '0'),
(1362, 'Bar Centre', 'party_bardesk', 's', 1, 1, 1, '1', '0', '0', 2962, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1363, 'Club seat', 'party_seat', 's', 1, 1, 1.1, '0', '1', '0', 2952, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1364, 'Snow Seat', 'xmas08_snowpl', 's', 1, 1, 1, '0', '1', '1', 3005, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1365, 'Emperor Penguin', 'penguin_basic', 's', 1, 1, 1, '0', '0', '0', 2977, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1366, 'Arctic Penguin Trophy', 'xmas08_trph1', 's', 1, 1, 1, '0', '0', '0', 2972, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1367, 'Musketeer Penguin', 'penguin_musketeer', 's', 1, 1, 1, '0', '0', '0', 2995, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1368, 'Icy table', 'xmas08_table', 's', 2, 2, 1, '1', '0', '0', 3009, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1369, 'Hot Tub', 'xmas08_hottub', 's', 2, 2, 1, '0', '1', '0', 2986, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1370, 'Luchador Penguin', 'penguin_wrestler', 's', 1, 1, 1, '0', '0', '0', 2990, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1371, 'Blow it up', 'fx_explosion', 's', 1, 1, 1, '0', '0', '0', 3011, '0', '0', '1', '0', '1', 'rentals', 2, '0'),
(1372, 'Robot Penguin', 'penguin_robot', 's', 1, 1, 1, '0', '0', '0', 2969, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1373, 'Icy Christmas Tree', 'xmas08_icetree', 's', 1, 1, 1, '0', '0', '0', 2967, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1374, 'Camp fire', 'campfire', 's', 1, 1, 1, '1', '0', '0', 2974, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1375, 'Ice', 'xmas08_icerug', 's', 2, 2, 0, '1', '0', '1', 3002, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1376, 'Executive Penguin', 'penguin_suit', 's', 1, 1, 1, '0', '0', '0', 3008, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1377, 'December 2008', 'svnr_fi', 's', 1, 1, 1, '0', '0', '0', 2991, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1378, 'Snow Storm', 'xmas_snow', 's', 1, 1, 0, '1', '0', '1', 2982, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1379, 'Hockey Penguin', 'penguin_icehockey', 's', 1, 1, 1, '0', '0', '0', 2988, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1380, 'Pilot Penguin', 'penguin_pilot', 's', 1, 1, 1, '0', '0', '0', 3007, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1381, 'Ballerina Penguin', 'penguin_ballet', 's', 1, 1, 1, '0', '0', '0', 2996, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1382, 'Arctic SFX', 'sound_set_71', 's', 1, 1, 0.2, '1', '0', '0', 3000, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1383, 'Boxer Penguin', 'penguin_boxer', 's', 1, 1, 1, '0', '0', '0', 2979, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1384, 'Fluorescent Penguin', 'penguin_glow', 's', 1, 1, 1, '0', '0', '0', 2993, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1385, 'Summer Penguin', 'penguin_swim', 's', 1, 1, 1, '0', '0', '0', 2984, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1386, 'Sumo Penguin', 'penguin_sumo', 's', 1, 1, 1, '0', '0', '0', 2994, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1387, 'Bubbles', 'xmas08_geysir', 's', 2, 2, 1, '0', '0', '0', 2985, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1388, 'Clown Penguin', 'penguin_clown', 's', 1, 1, 1, '0', '0', '0', 2989, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1389, 'Infected Penguin', 'penguin_infected', 's', 1, 1, 1, '0', '0', '0', 2983, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1390, 'Firestarter', 'fx_flare', 's', 1, 1, 1, '1', '0', '0', 3013, '0', '0', '1', '0', '1', 'rentals', 2, '0'),
(1391, 'Snowball Lantern Pile', 'xmas08_lantern', 's', 1, 1, 1, '0', '0', '0', 2968, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1392, 'Ice chair', 'xmas08_chair', 's', 1, 1, 1, '0', '1', '0', 3001, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1393, 'Superhero Penguin', 'penguin_super', 's', 1, 1, 1, '0', '0', '0', 2998, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1394, 'Icy Teleport', 'xmas08_telep', 's', 1, 1, 0.001, '0', '0', '0', 2978, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1395, 'Cube Tree', 'xmas08_cubetree', 's', 1, 1, 1, '0', '0', '0', 3006, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1396, 'Disco Penguin', 'penguin_rock', 's', 1, 1, 1, '0', '0', '0', 3010, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1397, 'Ice divider', 'xmas08_dvdr1', 's', 2, 1, 1, '0', '0', '0', 2992, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1398, 'Ice Fish Hole', 'xmas08_hole', 's', 1, 1, 1, '0', '0', '0', 2980, '1', '1', '1', '1', '1', 'vendingmachine', 0, '34'),
(1399, 'XC Penguin', 'penguin_ski', 's', 1, 1, 1, '0', '0', '0', 2981, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1400, 'Skater Penguin', 'penguin_skater', 's', 1, 1, 1, '0', '0', '0', 2973, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1401, 'Icy Divider Corner', 'xmas08_dvdr2', 's', 1, 1, 1, '0', '0', '0', 2970, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1402, 'Christmas Penguin', 'penguin_elf', 's', 1, 1, 1, '0', '0', '0', 2971, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1403, 'Bunny Penguin', 'penguin_bunny', 's', 1, 1, 1, '0', '0', '0', 2975, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1404, 'Ninja Penguin', 'penguin_ninja', 's', 1, 1, 1, '0', '0', '0', 2976, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1405, 'Magic Penguin', 'penguin_magician', 's', 1, 1, 1, '0', '0', '0', 2997, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1406, 'Beautiful Penguin', 'penguin_hunchback', 's', 1, 1, 1, '0', '0', '0', 3003, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1407, 'Cowboy Penguin', 'penguin_cowboy', 's', 1, 1, 1, '0', '0', '0', 2987, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1408, 'Punk Penguin', 'penguin_punk', 's', 1, 1, 1, '0', '0', '0', 3004, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1409, 'Pirate Penguin', 'penguin_pirate', 's', 1, 1, 1, '0', '0', '0', 2999, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1410, 'ads_ob_pillow name', 'ads_ob_pillow', 's', 1, 1, 1, '0', '1', '0', 3018, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1411, 'Leviathon', 'lostc_merdragon', 's', 1, 3, 1, '0', '0', '0', 3016, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1412, 'Idea Agency Desk', 'ads_cldesk', 's', 2, 2, 1, '0', '0', '0', 3017, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1413, 'Eco Friendly Penguin', 'xmas08_trph2', 's', 1, 1, 1, '0', '0', '0', 3015, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1414, 'Whatever your Idea', 'ads_cltele', 's', 1, 1, 0.001, '0', '0', '0', 3014, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1415, 'Childline Rug', 'ads_clfloor', 's', 3, 5, 0, '0', '0', '1', 3019, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1417, 'Mall tele-door', 'ads_mall_tele', 's', 1, 1, 0.001, '1', '0', '1', 3020, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1418, 'Moongate', 'china_moongt', 's', 1, 3, 0.001, '0', '0', '1', 3024, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1419, 'Lotus Pool', 'bolly_lotus_pool', 's', 2, 2, 0, '0', '0', '0', 3022, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1420, 'Ox Statue', 'china_ox', 's', 1, 1, 1, '0', '0', '0', 3025, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1422, 'Petal Flurry', 'bolly_petals', 's', 2, 2, 0, '1', '0', '1', 3026, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1423, 'Palm Tree', 'bolly_tree', 's', 1, 1, 1, '0', '0', '0', 3042, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1424, 'Swing low', 'bolly_swing', 's', 2, 1, 1.5, '0', '1', '0', 3037, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1425, 'Star Pillow', 'bolly_pillow', 's', 1, 1, 0.8, '0', '1', '0', 3030, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1426, 'Bollywood Corner', 'bolly_corner', 's', 1, 1, 1, '1', '0', '0', 3031, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1427, 'Elephant MiniBar', 'bolly_phant', 's', 1, 1, 1, '0', '0', '0', 3033, '1', '1', '1', '1', '1', 'vendingmachine', 0, '35'),
(1428, 'Monkey Lamp', 'bolly_monkey_lamp', 's', 1, 1, 1, '0', '0', '0', 3036, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1429, 'Green Curtain', 'bolly_drapeb', 's', 3, 1, 0.001, '0', '0', '0', 3040, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1430, 'Planet of Love', 'planet_of_love', 's', 1, 1, 1, '1', '0', '0', 3044, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1431, 'Chandelier', 'bolly_lamp', 's', 1, 1, 1, '0', '0', '0', 3041, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1432, 'Bollywood Desk', 'bolly_desk', 's', 2, 1, 1, '1', '0', '0', 3034, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1433, 'Vase of Flowers', 'bolly_vase', 's', 1, 1, 1, '0', '0', '0', 3043, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1434, 'Standard Tile', 'bolly_tile2', 's', 2, 2, 0, '1', '0', '1', 3027, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1435, 'Large Ornamental Table', 'bolly_table', 's', 2, 2, 1, '1', '0', '0', 3035, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1436, 'Yellow Curtain', 'bolly_drapec', 's', 3, 1, 0.001, '0', '0', '0', 3032, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1437, 'Extravagant Fountain', 'bolly_fountain', 's', 2, 2, 1, '0', '0', '0', 3029, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1439, 'Ornamental Tile', 'bolly_tile1', 's', 2, 2, 0, '1', '0', '1', 3028, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1440, 'Pink Curtain', 'bolly_drapea', 's', 3, 1, 0.001, '0', '0', '0', 3038, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1441, 'ads_idol_floor1 name', 'ads_idol_floor1', 's', 2, 2, 0, '0', '0', '1', 3045, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1442, 'Inventor''s Desk', 'ads_igor_dsk', 's', 2, 1, 1, '0', '0', '0', 3049, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1443, 'ads_idol_desk', 'ads_idol_desk', 's', 1, 4, 1, '0', '0', '0', 3050, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1444, 'ads_idol_ch', 'ads_idol_ch', 's', 1, 1, 1.2, '0', '1', '0', 3051, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1445, 'Glass Flask', 'ads_igor_flask', 's', 1, 1, 1, '0', '0', '0', 3046, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1446, 'ads_idol_drape name', 'ads_idol_drape', 's', 3, 1, 0.001, '0', '0', '0', 3048, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1447, 'ads_idol_floor2 name', 'ads_idol_floor2', 's', 2, 2, 0, '0', '0', '1', 3047, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1448, 'Kraken', 'lostc_octopus', 's', 1, 2, 1, '0', '0', '0', 3052, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1449, 'Marble Floor Tile', 'lc_tile1', 's', 2, 2, 0, '1', '0', '1', 3076, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1450, 'Small Jellyfish Lamp', 'lc_medusa2', 's', 1, 1, 1, '0', '0', '0', 3073, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1451, 'Sally Lightfoot', 'lc_crab2', 's', 1, 1, 1, '0', '0', '0', 3068, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1452, 'March Collectable 2009', 'lostc_teleport', 's', 1, 1, 0.001, '0', '0', '1', 3071, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1453, 'ads_idol_piano name', 'ads_idol_piano', 's', 2, 2, 1, '0', '0', '0', 3058, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1454, 'Large Coral Divider', 'lc_coral_divider_hi', 's', 2, 1, 1, '0', '0', '0', 3078, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1455, 'ads_711shelf name', 'ads_711shelf', 's', 1, 2, 1, '0', '0', '0', 3066, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1456, 'Water Tube Corner', 'lc_tubes_corners', 's', 1, 1, 1, '0', '0', '0', 3072, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1457, 'Captain''s Table', 'lc_table', 's', 2, 2, 1, '1', '0', '0', 3067, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1458, 'Cobbled Stones', 'lc_tile2', 's', 2, 2, 0, '1', '0', '1', 3069, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1459, 'Anemone', 'lc_anemone', 's', 1, 1, 1, '0', '0', '0', 3074, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1460, 'Small Coral Divider', 'lc_coral_divider_low', 's', 2, 1, 1, '0', '0', '0', 3077, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1461, 'Ocean Window Rug', 'lc_glass_floor', 's', 2, 3, 0, '0', '0', '1', 3060, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1462, 'Large Jellyfish Lamp', 'lc_medusa1', 's', 1, 1, 1, '0', '0', '0', 3064, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1463, 'Crab Patch', 'lc_crab1', 's', 2, 2, 1, '0', '0', '0', 3062, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1464, 'ads_idol_jukebox name', 'ads_idol_jukebox*1', 's', 1, 1, 1, '0', '0', '0', 3059, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1465, 'ads_idol_pchair name', 'ads_idol_pchair', 's', 1, 1, 1, '0', '1', '0', 3056, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1466, 'Water Tube Straight', 'lc_tubes_straight', 's', 1, 1, 1, '0', '0', '0', 3065, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1467, 'ads_idol_audChr name', 'ads_idol_audChr', 's', 1, 1, 1, '0', '1', '0', 3057, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1468, 'ads_idol_trax name', 'ads_idol_trax', 's', 1, 1, 1, '0', '0', '0', 3055, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1469, 'ads_idol_tele', 'ads_idol_tele', 's', 1, 1, 0.001, '0', '0', '1', 3053, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1470, 'Wooden Corner', 'lc_corner', 's', 1, 1, 1, '1', '0', '0', 3075, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1471, 'Wooden Stool', 'lc_stool', 's', 1, 1, 1, '0', '1', '0', 3063, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1472, 'No rusty nails', 'lc_chair', 's', 1, 1, 1, '0', '1', '0', 3061, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1473, 'Wooden Bar Desk', 'lc_desk', 's', 2, 1, 1, '1', '0', '0', 3070, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1474, 'ads_idol_mic name', 'ads_idol_mic', 's', 1, 1, 1, '0', '0', '0', 3054, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1475, 'ads_idol_hotspot name', 'ads_idol_hotspot', 's', 1, 1, 0.2, '0', '0', '1', 3080, '1', '1', '1', '1', '1', 'default', 103, '0'),
(1476, 'ads_idol_clRack name', 'ads_idol_clRack', 's', 3, 1, 1, '0', '0', '0', 3079, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1477, 'ads_idol_voting_ch name', 'ads_idol_voting_ch', 's', 1, 1, 1.2, '0', '1', '0', 3081, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1478, 'Ecotron prize', 'ecotron_box', 's', 1, 1, 1, '1', '0', '0', 3095, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1479, 'Eco Light 2', 'eco_light2', 's', 1, 1, 1, '1', '0', '0', 3082, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1480, 'Eco Stool 3', 'eco_chair3', 's', 1, 1, 1, '0', '1', '0', 3094, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1481, 'Eco Coffee Table 3', 'eco_table3', 's', 2, 2, 1, '1', '0', '0', 3086, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1482, 'Eco Lamp 2', 'eco_lamp2', 's', 1, 1, 1, '1', '0', '0', 3092, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1483, 'Eco Armchair 3', 'eco_sofa3', 's', 1, 1, 1, '0', '1', '0', 3088, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1484, 'Eco Coffee Table 2', 'eco_table2', 's', 2, 2, 1, '1', '0', '0', 3089, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1485, 'Fruit Bowl 2', 'eco_fruits2', 's', 1, 1, 1, '1', '0', '0', 3102, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1486, 'Eco Armchair 1', 'eco_sofa1', 's', 1, 1, 1, '0', '1', '0', 3096, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1487, 'Fruit Bowl 3', 'eco_fruits3', 's', 1, 1, 1, '1', '0', '0', 3104, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1488, 'Eco Light 1', 'eco_light1', 's', 1, 1, 1, '1', '0', '0', 3098, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1489, 'Actually', 'eco_tree1', 's', 1, 1, 1, '0', '0', '0', 3093, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1490, 'Potted Cactus 2', 'eco_cactus2', 's', 1, 1, 1, '1', '0', '0', 3105, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1491, 'Talk To FRANK Brain Lamp', 'ads_frankb', 's', 1, 1, 1, '0', '0', '0', 3111, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1492, 'Road Signs', 'bump_signs', 's', 1, 1, 1, '0', '0', '0', 3090, '1', '1', '1', '0', '1', 'default', 7, '0'),
(1493, 'Potted Cactus 1', 'eco_cactus1', 's', 1, 1, 1, '1', '0', '0', 3083, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1494, 'Eco Stool 2', 'eco_chair2', 's', 1, 1, 1, '0', '1', '0', 3106, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1495, 'Potted Cactus 3', 'eco_cactus3', 's', 1, 1, 1, '1', '0', '0', 3085, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1496, 'Bumper Tyres', 'bump_tires', 's', 1, 1, 0.8, '1', '0', '0', 3101, '1', '1', '1', '0', '1', 'default', 3, '0'),
(1497, 'Traffic Lights', 'bump_lights', 's', 1, 1, 1, '0', '0', '0', 3103, '1', '1', '1', '0', '1', 'default', 3, '0'),
(1498, 'Eco Lamp 3', 'eco_lamp3', 's', 1, 1, 1, '1', '0', '0', 3091, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1499, 'Eco Coffee Table 1', 'eco_table1', 's', 2, 2, 1, '1', '0', '0', 3099, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1500, 'Eco Stool 1', 'eco_chair1', 's', 1, 1, 1, '0', '1', '0', 3084, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1501, 'Eco Armchair 2', 'eco_sofa2', 's', 1, 1, 1, '0', '1', '0', 3100, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1502, 'Road', 'bump_road', 's', 2, 2, 0, '1', '0', '1', 3110, '1', '1', '1', '0', '1', 'default', 4, '0'),
(1503, 'Fruit Bowl 1', 'eco_fruits1', 's', 1, 1, 1, '1', '0', '0', 3107, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1504, 'Eco Lamp 1', 'eco_lamp1', 's', 1, 1, 1, '1', '0', '0', 3097, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1505, 'Eco Light 3', 'eco_light3', 's', 1, 1, 1, '1', '0', '0', 3108, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1506, 'Pear Tree', 'eco_tree2', 's', 1, 1, 1, '0', '0', '0', 3109, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1507, 'Totem Leg', 'totem_leg', 's', 1, 1, 1.2, '1', '0', '0', 3113, '1', '1', '1', '1', '1', 'default', 9, '0'),
(1508, 'ads_grefusa_cactus name', 'ads_grefusa_cactus', 's', 1, 1, 1, '0', '0', '0', 3112, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1509, 'ads_idol_tube name', 'ads_idol_tube', 's', 1, 1, 1, '0', '0', '0', 3126, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1510, 'Executive Light', 'exe_light', 's', 1, 1, 0, '1', '0', '1', 3122, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1511, 'ads_idol_cork name', 'ads_idol_cork', 's', 3, 1, 1, '0', '0', '0', 3120, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1512, 'Idea Agency Jukebox', 'ads_cl_jukeb', 's', 1, 1, 1, '0', '0', '0', 3127, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1513, 'Grass patch', 'env_grass', 's', 2, 2, 0, '1', '0', '1', 3129, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1514, 'Forest Trunk Seat', 'env_tree3', 's', 1, 1, 1, '0', '0', '0', 3125, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1515, 'Eco Hedgerow', 'env_bushes', 's', 1, 2, 1, '0', '0', '0', 3115, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1516, 'Eco Hedgerows Gate', 'env_bushes_gate', 's', 1, 2, 0.001, '0', '0', '0', 3128, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1517, 'Executive Gate', 'exe_gate', 's', 1, 1, 0.001, '0', '0', '0', 3119, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1518, 'ads_idol_newsDsk name', 'ads_idol_newsDsk', 's', 2, 2, 1, '0', '0', '0', 3116, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1519, 'Forest Tree Chair', 'env_tree1', 's', 1, 1, 1, '0', '1', '0', 3117, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1520, 'Forest Tree Americana', 'env_tree2', 's', 1, 1, 1, '0', '1', '0', 3123, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1521, 'Cubist Light', 'exe_cubelight', 's', 1, 1, 1, '0', '0', '0', 3121, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1522, 'The Four Seasons Tree', 'env_tree4', 's', 2, 2, 1, '0', '0', '0', 3118, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1523, 'Sphere Lamp', 'exe_artlamp', 's', 1, 1, 1, '0', '0', '0', 3114, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1524, 'ads_idol_ichair name', 'ads_idol_ichair', 's', 1, 1, 1.4, '0', '1', '0', 3124, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1525, 'Wedding Cake', 'tray_cake', 's', 1, 1, 1, '0', '0', '0', 3133, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1526, 'ads_reebok_block2', 'ads_reebok_block2', 's', 2, 2, 0.8, '1', '0', '1', 3132, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1527, 'ads_malaco_rug_name', 'ads_malaco_rug', 's', 3, 3, 0, '0', '0', '1', 3135, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1528, 'Champagne Bucket', 'tray_champagne', 's', 1, 1, 1, '0', '0', '0', 3134, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1529, 'Champagne Tower', 'tray_glasstower', 's', 1, 1, 1, '0', '0', '0', 3130, '1', '1', '1', '1', '1', 'vendingmachine', 0, '40'),
(1530, 'ads_malaco_gu', 'ads_malaco_gu', 's', 1, 1, 1, '0', '0', '0', 3131, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1531, 'Idea Agency Super Cake', 'ads_clcake', 's', 1, 1, 1, '0', '0', '0', 3139, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1532, 'Idea Agency Sofa', 'ads_cl_sofa', 's', 2, 1, 1, '0', '1', '0', 3137, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1533, 'Function Table', 'ads_idol_tblCloth', 's', 2, 2, 1, '1', '0', '0', 3136, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1534, 'ads_idol_carpet name', 'ads_idol_carpet', 's', 2, 7, 0, '0', '0', '1', 3140, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1535, 'Function Lamp', 'ads_idol_lamp', 's', 1, 1, 0, '1', '0', '1', 3138, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1536, 'Rain Shower', 'country_rain', 's', 1, 1, 0, '1', '0', '1', 3153, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1537, 'Scarecrow', 'country_scarecrow', 's', 1, 1, 1, '0', '0', '0', 3160, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1538, 'Porta-House', 'env_telep', 's', 1, 1, 0.001, '0', '0', '0', 3161, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1539, 'Crop Field', 'country_soil', 's', 2, 2, 0, '1', '0', '1', 3145, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1540, 'Field Grass', 'country_grass', 's', 2, 2, 0, '1', '0', '1', 3162, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1541, 'The Golden Tablet', 'ads_goldtabl', 's', 1, 1, 1, '0', '0', '0', 3151, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1542, 'Witch Mushroom', 'eco_mush1', 's', 1, 1, 1, '1', '0', '0', 3142, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1543, 'Tractor', 'country_trctr', 's', 2, 2, 1, '0', '0', '0', 3147, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1544, 'Stone Wall', 'country_fnc2', 's', 2, 1, 1, '0', '0', '0', 3141, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1545, 'Stick Fence', 'country_fnc1', 's', 2, 1, 1, '0', '0', '0', 3154, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1546, 'Wishing Well', 'country_well', 's', 1, 1, 1, '0', '0', '0', 3149, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1547, 'Fairy Mushroom', 'eco_mush2', 's', 1, 1, 1, '1', '0', '0', 3155, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1548, 'Rainbow', 'country_rbw', 's', 1, 1, 1, '0', '0', '0', 3143, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1549, 'Golden Wheat', 'country_wheat', 's', 2, 2, 1, '0', '0', '0', 3163, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1550, 'Farm Gate', 'country_gate', 's', 2, 1, 0.001, '0', '0', '0', 3150, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1551, 'Country Trax', 'sound_set_72', 's', 1, 1, 0.2, '1', '0', '0', 3144, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1552, 'Wooden Stage', 'country_stage', 's', 2, 2, 1, '1', '0', '1', 3148, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1553, 'ads_calip_cola_1 name', 'ads_calip_cola*1', 's', 1, 1, 1, '0', '0', '0', 3156, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1554, 'ads_calip_cola_2 name', 'ads_calip_cola*2', 's', 1, 1, 1, '0', '0', '0', 3157, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1555, 'ads_calip_cola_3 name', 'ads_calip_cola*3', 's', 1, 1, 1, '0', '0', '0', 3158, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1556, 'ads_calip_cola_4 name', 'ads_calip_cola*4', 's', 1, 1, 1, '0', '0', '0', 3159, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1557, 'Log Bench', 'country_log', 's', 2, 1, 1, '0', '1', '0', 3146, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1558, 'Stone Pile', 'country_fnc3', 's', 1, 1, 1, '0', '0', '0', 3152, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1559, 'Wooden Patio Tile', 'country_patio', 's', 1, 1, 1, '0', '0', '0', 3166, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1560, 'Country Ditch Corner', 'country_corner', 's', 1, 1, 1, '0', '0', '0', 3164, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1561, 'Country Ditch', 'country_ditch', 's', 1, 2, 0.001, '0', '0', '0', 3165, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1562, 'ads_calip_chair name', 'ads_calip_chair', 's', 1, 1, 1, '0', '1', '0', 3168, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1563, 'ads_idol_trophy name', 'ads_idol_trophy', 's', 1, 1, 1, '0', '0', '0', 3169, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1564, 'Totem Spirit Head', 'totem_head', 's', 1, 1, 1.7, '1', '0', '0', 3167, '1', '1', '1', '1', '1', 'default', 10, '0'),
(1565, 'ads_calip_pool name', 'ads_calip_pool', 's', 2, 2, 0, '0', '0', '1', 3182, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1566, 'laptopdesk name', 'laptopdesk', 's', 2, 2, 1, '0', '0', '0', 3173, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1567, 'Skull', 'LT_skull', 's', 1, 1, 1, '0', '0', '0', 3189, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1568, 'Large Tribal Block', 'lt_stage2', 's', 2, 2, 0.9, '1', '0', '1', 3175, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1569, 'Lava Corner', 'lt_lavac', 's', 1, 1, 1, '0', '0', '0', 3180, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1570, 'Tribal Gate', 'lt_gate', 's', 2, 1, 0.001, '0', '0', '0', 3172, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1571, 'Planet of Eternity', 'saturn', 's', 1, 1, 1, '1', '0', '0', 3181, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1572, 'ads_calip_tele name', 'ads_calip_tele', 's', 1, 1, 0.001, '0', '0', '0', 3190, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1573, 'Stone Statue', 'lt_statue', 's', 1, 1, 1, '0', '0', '0', 3185, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1574, 'Tarantula', 'lt_spider', 's', 1, 1, 1, '0', '0', '0', 3178, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1575, 'Tribal Stone Wall', 'lt_stone2', 's', 2, 1, 1.2, '1', '0', '0', 3177, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1576, 'Tribal Seat', 'LT_throne', 's', 1, 1, 1.5, '0', '1', '0', 3171, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1577, 'audChr name', 'audChr', 's', 1, 1, 1, '0', '1', '0', 3179, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1578, 'Moss Patch', 'lt_patch', 's', 2, 2, 0, '1', '0', '1', 3188, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1579, 'Lava Ditch', 'lt_lava', 's', 1, 2, 1, '0', '0', '0', 3176, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1580, 'Small Tribal Torch', 'LT_pillar2', 's', 1, 1, 1, '0', '0', '0', 3170, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1581, 'Ant Hill', 'lt_bughill', 's', 1, 1, 1, '0', '0', '0', 3174, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1582, 'noticeboard name', 'noticeboard', 's', 3, 1, 1, '0', '0', '0', 3186, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1583, 'clrack name', 'clrack', 's', 3, 1, 0, '1', '0', '0', 3184, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1584, 'Large Tribal Torch', 'LT_pillar', 's', 1, 1, 1, '0', '0', '0', 3187, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1585, 'Small Tribal Block', 'lt_stage1', 's', 1, 1, 0.9, '1', '0', '1', 3183, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1586, 'transparent_floor name', 'transparent_floor', 's', 2, 2, 0, '1', '0', '1', 3199, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1587, 'ads_calip_lava name', 'ads_calip_lava', 's', 1, 1, 1, '0', '0', '0', 3197, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1588, 'Tribal Stone Corner', 'lt_stone1', 's', 1, 1, 1.2, '1', '0', '0', 3196, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1589, 'ads_calip_fan', 'ads_calip_fan', 's', 1, 1, 1, '0', '0', '0', 3198, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1590, 'voting_ch name', 'voting_ch', 's', 1, 1, 1.3, '0', '1', '0', 3201, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1591, 'Quick Coffee Stop', 'ads_mall_coffeem', 's', 1, 1, 1, '0', '0', '0', 3202, '1', '1', '1', '1', '1', 'vendingmachine', 0, '41'),
(1592, 'Totem Planet', 'totem_planet', 's', 1, 1, 1, '0', '0', '0', 3200, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1593, 'Don''t worry', 'SF_reactor', 's', 1, 1, 1, '1', '0', '0', 3212, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1594, 'Pack all you want', 'SF_crate_2', 's', 2, 1, 1, '1', '0', '0', 3204, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1595, 'Space Crew Chair', 'SF_chair_blue', 's', 1, 1, 1.2, '0', '1', '0', 3207, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1596, 'Cryogenic Bed', 'sf_pod', 's', 1, 3, 1.36, '0', '0', '0', 3219, '1', '1', '1', '1', '1', 'bed', 2, '0'),
(1597, 'Command Console', 'SF_panel1', 's', 1, 1, 1, '0', '0', '0', 3217, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1598, 'Starship Table', 'SF_table', 's', 2, 2, 1, '1', '0', '0', 3220, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1599, 'Welcome aboard', 'SF_chair_green', 's', 1, 1, 1.2, '0', '1', '0', 3215, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1600, 'Small Crate', 'SF_crate_1', 's', 1, 1, 1, '1', '0', '0', 3205, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1601, 'Alien Lifeform', 'SF_alien', 's', 1, 1, 1, '0', '0', '0', 3210, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1602, 'Engineering Console', 'SF_panel2', 's', 2, 1, 1, '0', '0', '0', 3218, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1603, 'Display Gate', 'sf_gate', 's', 2, 1, 0.001, '0', '0', '0', 3221, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1604, 'Navigation Panel', 'SF_panel3', 's', 1, 1, 1, '0', '0', '0', 3208, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1605, 'Starship Floor 2', 'SF_floor_2', 's', 2, 2, 0, '1', '0', '1', 3211, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1606, 'Sci Fi Lamp', 'SF_lamp', 's', 1, 1, 1, '0', '0', '0', 3224, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1607, 'Captain''s Chair', 'SF_chair_red', 's', 1, 1, 1.2, '0', '1', '0', 3223, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1608, 'Transparent Floor', 'sf_floor', 's', 2, 4, 0, '1', '0', '1', 3213, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1609, 'Starship Roof', 'sf_roof', 's', 2, 4, 0, '1', '0', '1', 3203, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1610, 'Light Pole', 'sf_stick', 's', 1, 1, 1, '0', '0', '0', 3206, '1', '1', '1', '1', '1', 'default', 5, '0'),
(1611, 'Starship Floor 1', 'SF_floor_1', 's', 2, 2, 0, '1', '0', '1', 3222, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1612, ' sweets', 'ads_mall_kiosk', 's', 1, 2, 1, '0', '0', '0', 3216, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1613, 'Futuristic Teleport', 'sf_tele', 's', 1, 1, 0.001, '0', '0', '0', 3214, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1614, 'Sci Fi Roller', 'sf_roller', 's', 1, 1, 0.5, '1', '0', '1', 3209, '1', '1', '1', '1', '1', 'roller', 1, '0'),
(1615, 'Hot Trophy', 'prizetrophy_hot', 's', 1, 1, 1, '0', '0', '0', 3229, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1616, 'Pink Inflatable Raft', 'summer_raft1', 's', 1, 1, 1, '0', '1', '0', 3228, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1617, 'Cool Trophy', 'prizetrophy_cool', 's', 1, 1, 1, '0', '0', '0', 3225, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1618, 'Blue Inflatable Raft', 'summer_raft2', 's', 1, 1, 1, '0', '1', '0', 3227, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1619, 'ads_elisa_gnome name', 'ads_elisa_gnome', 's', 1, 1, 1, '0', '0', '0', 3226, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1620, 'Summer Cool Box', 'summer_icebox', 's', 1, 1, 1, '0', '0', '0', 3231, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1621, 'ads_oc_soda', 'ads_oc_soda', 's', 1, 1, 1, '0', '0', '0', 3230, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1622, 'Mars Patch', 'marsrug', 's', 2, 2, 0, '1', '0', '1', 3232, '1', '1', '1', '1', '1', 'default', 5, '0'),
(1623, 'White Candle', 'rela_candle1', 's', 1, 1, 1, '0', '0', '0', 3238, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1625, 'Red Candles', 'rela_candles2', 's', 1, 1, 1, '0', '0', '0', 3245, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1626, 'Stones', 'rela_stone', 's', 1, 1, 0.5, '0', '0', '1', 3233, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1627, 'Wicker Chair', 'rela_hchair', 's', 1, 1, 1.3, '0', '1', '0', 3247, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1628, 'Red Candle', 'rela_candle2', 's', 1, 1, 1, '0', '0', '0', 3244, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1629, 'ads_711', 'ads_711*5', 's', 1, 1, 1, '0', '0', '0', 3241, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1630, 'ads_711', 'ads_711*6', 's', 1, 1, 1, '0', '0', '0', 3242, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1631, 'ads_711', 'ads_711*7', 's', 1, 1, 1, '0', '0', '0', 3243, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1632, 'Purple Candle', 'rela_candle3', 's', 1, 1, 1, '0', '0', '0', 3235, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1633, 'Asteroid', 'pix_asteroid', 's', 1, 1, 1, '1', '0', '0', 3237, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1634, 'Bushy Houseplant', 'rela_plant', 's', 1, 1, 1, '0', '0', '0', 3246, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1635, 'White Candles', 'rela_candles1', 's', 1, 1, 1, '0', '0', '0', 3234, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1636, 'Purple Candles', 'rela_candles3', 's', 1, 1, 1, '0', '0', '0', 3236, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1637, 'Orchid', 'rela_orchid', 's', 1, 1, 1, '0', '0', '0', 3239, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1638, 'Rocks', 'rela_rock', 's', 1, 1, 0.8, '0', '1', '0', 3248, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1639, 'ktchn_stove name', 'ktchn_stove', 's', 2, 1, 1, '0', '0', '0', 3256, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1640, 'ktchn_light name', 'ktchn_light', 's', 2, 1, 0, '1', '0', '1', 3258, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1641, 'ktchn_plates name', 'ktchn_plates', 's', 1, 1, 1, '0', '0', '0', 3263, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1642, 'ktchn_countr_1 name', 'ktchn_countr_1', 's', 1, 1, 1, '1', '0', '0', 3261, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1643, 'ktchn_pots name', 'ktchn_pots', 's', 2, 1, 0, '1', '0', '1', 3252, '1', '1', '1', '1', '1', 'default', 10, '0'),
(1644, 'ktchn_cornr name', 'ktchn_cornr', 's', 1, 1, 1, '0', '0', '0', 3257, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1645, 'ktchn_desk name', 'ktchn_desk', 's', 2, 1, 1, '1', '0', '0', 3260, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1646, 'ktchn_trash name', 'ktchn_trash', 's', 1, 1, 1, '0', '0', '0', 3264, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1647, 'ktchn_countr_2 name', 'ktchn_countr_2', 's', 2, 1, 1, '1', '0', '0', 3253, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1648, 'ktchn_bBlock name', 'ktchn_bBlock', 's', 1, 1, 1, '0', '0', '0', 3255, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1649, 'ktchn_dvdr name', 'ktchn_dvdr', 's', 2, 1, 1, '0', '0', '0', 3259, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1650, 'ktchn_inspctr name', 'ktchn_inspctr', 's', 1, 1, 1, '1', '0', '0', 3250, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1651, 'ktchn_fridge name', 'ktchn_fridge', 's', 1, 1, 1, '1', '0', '0', 3249, '1', '1', '1', '1', '1', 'vendingmachine', 0, '3,36,37,38'),
(1652, 'ads_1800tele', 'ads_1800tele', 's', 1, 1, 0.001, '0', '0', '0', 3251, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1653, 'ktchn_sink name', 'ktchn_sink', 's', 2, 1, 1, '0', '0', '0', 3262, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1654, 'ktchn_gate name', 'ktchn_gate', 's', 2, 1, 0.001, '0', '0', '0', 3254, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1655, 'Pad of stickies', 'post.it', 'i', 0, 0, 1, '0', '0', '0', 1, '0', '0', '1', '0', '1', 'postit', 1, '0'),
(1656, 'Heart Stickies', 'post.it.vd', 'i', 0, 0, 1, '0', '0', '0', 2, '0', '0', '1', '0', '1', 'postit', 1, '0'),
(1665, 'Gothic Ectoplasm Fountain', 'gothicfountain', 'i', 0, 0, 1, '0', '0', '0', 4002, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1666, 'Retro Wall Lamp', 'hc_wall_lamp', 'i', 0, 0, 1, '0', '0', '0', 4003, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1667, 'Industrial Turbine', 'industrialfan', 'i', 0, 0, 1, '0', '0', '0', 4004, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1668, 'Gothic Torch', 'torch', 'i', 0, 0, 1, '0', '0', '0', 4005, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1669, 'Heart Light', 'val_heart', 'i', 0, 0, 1, '0', '0', '0', 4006, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1670, 'Mirror', 'wallmirror', 'i', 0, 0, 1, '0', '0', '0', 4007, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1671, 'Ninja Stars', 'jp_ninjastars', 'i', 0, 0, 1, '0', '0', '0', 4008, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1672, 'Habbowood Mirror', 'habw_mirror', 'i', 0, 0, 1, '0', '0', '0', 4009, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1673, 'So you gotta ask yourself', 'habbowheel', 'i', 0, 0, 1, '0', '0', '0', 4010, '1', '1', '1', '1', '1', 'habbowheel', 1, '0'),
(1674, 'Skull Guitar', 'guitar_skull', 'i', 0, 0, 1, '0', '0', '0', 4011, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1675, 'V Guitar', 'guitar_v', 'i', 0, 0, 1, '0', '0', '0', 4012, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1676, 'Christmas Lights', 'xmas_light', 'i', 0, 0, 1, '0', '0', '0', 4015, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1677, 'Anchor', 'hrella_poster_3', 'i', 0, 0, 1, '0', '0', '0', 4016, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1678, 'Life Buoy', 'hrella_poster_2', 'i', 0, 0, 1, '0', '0', '0', 4013, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1679, 'Porthole', 'hrella_poster_1', 'i', 0, 0, 1, '0', '0', '0', 4014, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1680, 'Swords', 'sw_swords', 'i', 0, 0, 1, '0', '0', '0', 4017, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1681, 'Mysterious Necklace', 'sw_stone', 'i', 0, 0, 1, '0', '0', '0', 4018, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1682, 'Ventilation Duct', 'sw_hole', 'i', 0, 0, 1, '0', '0', '0', 4019, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1683, 'Mood Light', 'roomdimmer', 'i', 0, 0, 1, '0', '0', '0', 4027, '1', '1', '1', '1', '1', 'dimmer', 1, '0'),
(1684, 'Bubble Juice Can', 'md_logo_wall', 'i', 0, 0, 1, '0', '0', '0', 4023, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1685, 'Kakejiku Hokusai', 'jp_sheet3', 'i', 0, 0, 1, '0', '0', '0', 4021, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1686, 'Kakejiku Ninjya', 'jp_sheet2', 'i', 0, 0, 1, '0', '0', '0', 4026, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1687, 'Kakejiku Ziritsu', 'jp_sheet1', 'i', 0, 0, 1, '0', '0', '0', 4024, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1688, 'Ancestral Scimitars', 'arabian_swords', 'i', 0, 0, 1, '0', '0', '0', 4020, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1689, 'Arabian Window Frame', 'arabian_wndw', 'i', 0, 0, 1, '0', '0', '0', 4022, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1690, 'Jungle Wallplant', 'tiki_wallplnt', 'i', 0, 0, 1, '0', '0', '0', 4030, '0', '0', '1', '1', '1', 'default', 1, '0'),
(1691, 'Surfboard', 'tiki_surfboard', 'i', 0, 0, 1, '0', '0', '0', 4028, '1', '1', '1', '1', '1', 'default', 9, '0'),
(1692, 'tampax_wall', 'tampax_wall', 'i', 0, 0, 1, '0', '0', '0', 4029, '1', '1', '1', '1', '1', 'default', 1, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(1693, 'Single Window', 'window_single_default', 'i', 0, 0, 1, '0', '0', '0', 4031, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1694, 'Double Window', 'window_double_default', 'i', 0, 0, 1, '0', '0', '0', 4032, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1695, 'Window', 'noob_window_double', 'i', 0, 0, 1, '0', '0', '0', 4033, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1696, 'Bay Window', 'window_triple', 'i', 0, 0, 1, '0', '0', '0', 4045, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1697, 'Glass Square Window', 'window_square', 'i', 0, 0, 1, '0', '0', '0', 4036, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1698, 'Large Romantic Window', 'window_romantic_wide', 'i', 0, 0, 1, '0', '0', '0', 4041, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1699, 'Small Romantic Window', 'window_romantic_narrow', 'i', 0, 0, 1, '0', '0', '0', 4037, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1700, 'Grunge Window', 'window_grunge', 'i', 0, 0, 1, '0', '0', '0', 4044, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1701, 'Golden Window', 'window_golden', 'i', 0, 0, 1, '0', '0', '0', 4035, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1702, 'Large Oriental Window', 'window_chinese_wide', 'i', 0, 0, 1, '0', '0', '0', 4034, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1703, 'Small Oriental Window', 'window_chinese_narrow', 'i', 0, 0, 1, '0', '0', '0', 4038, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1704, 'Basic Window', 'window_basic', 'i', 0, 0, 1, '0', '0', '0', 4042, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1705, 'Large 70s Window', 'window_70s_wide', 'i', 0, 0, 1, '0', '0', '0', 4039, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1706, 'Small 70s Window', 'window_70s_narrow', 'i', 0, 0, 1, '0', '0', '0', 4040, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1707, 'Sunny Delight', 'ads_sunnyd', 'i', 0, 0, 1, '0', '0', '0', 4043, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1708, 'Good grub', 'window_diner2', 'i', 0, 0, 1, '0', '0', '0', 4046, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1709, 'Large Diner Window', 'window_diner', 'i', 0, 0, 1, '0', '0', '0', 4049, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1710, 'Diner Side Table', 'diner_walltable', 'i', 0, 0, 1, '0', '0', '0', 4048, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1711, 'ads_dave_wall', 'ads_dave_wall', 'i', 0, 0, 1, '0', '0', '0', 4047, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1712, 'Window', 'window_hole', 'i', 0, 0, 1, '0', '0', '0', 4052, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1713, 'easy_poster', 'easy_poster', 'i', 0, 0, 1, '0', '0', '0', 4051, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1714, 'ads_nokia_logo name', 'ads_nokia_logo', 'i', 0, 0, 1, '0', '0', '0', 4050, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1715, 'ads_nokia_phone name', 'ads_nokia_phone', 'i', 0, 0, 1, '0', '0', '0', 4053, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1717, 'Skyscraper Window', 'window_skyscraper', 'i', 0, 0, 1, '0', '0', '0', 4054, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1718, 'netari_poster', 'netari_poster', 'i', 0, 0, 1, '0', '0', '0', 4057, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1719, 'Bullet Hole', 'det_bhole', 'i', 0, 0, 1, '0', '0', '0', 4056, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1720, 'Red V Guitar', 'ads_campguitar', 'i', 0, 0, 1, '0', '0', '0', 4058, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1721, 'Nuclear Radiation Sign', 'hween08_rad', 'i', 0, 0, 1, '0', '0', '0', 4059, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1722, 'Broken Window (small)', 'hween08_wndwb', 'i', 0, 0, 1, '0', '0', '0', 4061, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1723, 'Broken Window (large)', 'hween08_wndw', 'i', 0, 0, 1, '0', '0', '0', 4062, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1724, 'Biohazard Sign', 'hween08_bio', 'i', 0, 0, 1, '0', '0', '0', 4063, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1725, 'X-Ray Light Box', 'hw_08_xray', 'i', 0, 0, 1, '0', '0', '0', 4060, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1726, 'Red Gothic Fountain', 'gothicfountain2', 'i', 0, 0, 1, '0', '0', '0', 4065, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1728, 'TBD Central Musical TV', 'ads_cmusic', 'i', 0, 0, 1, '0', '0', '0', 4067, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1729, 'Stand up or sitting down', 'party_wc_boy', 'i', 0, 0, 1, '0', '0', '0', 4070, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1730, 'Big Wall Lights', 'party_led', 'i', 0, 0, 1, '0', '0', '0', 4066, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1731, 'Neon Heart Light', 'party_neon5', 'i', 0, 0, 1, '0', '0', '0', 4074, '1', '1', '1', '1', '1', 'default', 5, '0'),
(1732, 'Neon Right Arrows', 'party_neon1', 'i', 0, 0, 1, '0', '0', '0', 4069, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1733, 'Neon Left Arrows', 'party_neon2', 'i', 0, 0, 1, '0', '0', '0', 4073, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1734, 'Girls Toilets', 'party_wc_girl', 'i', 0, 0, 1, '0', '0', '0', 4068, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1735, 'Neon Pink Flamingo', 'party_neon3', 'i', 0, 0, 1, '0', '0', '0', 4075, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1736, 'Bar Shelf', 'party_shelf', 'i', 0, 0, 1, '0', '0', '0', 4071, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1737, 'Neon Skull Light', 'party_neon4', 'i', 0, 0, 1, '0', '0', '0', 4072, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1738, 'Snowy Posters', 'xmas08_wallpaper', 'i', 0, 0, 1, '0', '0', '0', 4077, '0', '0', '1', '1', '1', 'roomeffect', 1, '0'),
(1739, 'Icy Wall', 'xmas08_icewall', 'i', 0, 0, 1, '0', '0', '0', 4076, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1741, 'Idea Agency Plasma 1', 'ads_clwall1', 'i', 0, 0, 1, '0', '0', '0', 4082, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1742, 'Idea Agency Plasma 2', 'ads_clwall2', 'i', 0, 0, 1, '0', '0', '0', 4078, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1743, 'Idea Agency Plasma 3', 'ads_clwall3', 'i', 0, 0, 1, '0', '0', '0', 4079, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1744, 'ads_ob_wall', 'ads_ob_wall', 'i', 0, 0, 1, '0', '0', '0', 4081, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1745, 'Mall Window', 'ads_mall_window', 'i', 0, 0, 1, '0', '0', '0', 4083, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1746, 'Dragon Poster', 'china_pstr2', 'i', 0, 0, 1, '0', '0', '0', 4085, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1747, 'Chinese Wall Lamp', 'china_light', 'i', 0, 0, 1, '0', '0', '0', 4086, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1748, 'Ox Poster', 'china_pstr1', 'i', 0, 0, 1, '0', '0', '0', 4084, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1749, 'Bolly Window', 'bolly_wdw_wd', 'i', 0, 0, 1, '0', '0', '0', 4087, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1750, 'Monster Plan Poster', 'ads_igor_wall', 'i', 0, 0, 1, '0', '0', '0', 4090, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1751, 'Evil Bone', 'ads_igorevilb', 'i', 0, 0, 1, '0', '0', '0', 4089, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1752, 'ads_idol_wall name', 'ads_idol_wall', 'i', 0, 0, 1, '0', '0', '0', 4088, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1753, 'Mall Furni Showroom', 'ads_mall_winfur', 'i', 0, 0, 1, '0', '0', '0', 4092, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1754, 'Mall Pet Shop Window', 'ads_mall_winpet', 'i', 0, 0, 1, '0', '0', '0', 4091, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1755, 'Rock Wall', 'lc_wall1', 'i', 0, 0, 1, '0', '0', '0', 4095, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1756, 'Aquarium Window', 'lc_window2', 'i', 0, 0, 1, '0', '0', '0', 4096, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1757, 'Wooden Window', 'lc_window1', 'i', 0, 0, 1, '0', '0', '0', 4094, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1758, 'American Idol TV', 'ads_idol_tv', 'i', 0, 0, 1, '0', '0', '0', 4093, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1759, 'Coral Wall', 'lc_wall2', 'i', 0, 0, 1, '0', '0', '0', 4097, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1760, 'ads_idol_mirror name', 'ads_idol_mirror', 'i', 0, 0, 1, '0', '0', '0', 4099, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1761, 'Mall Cinema Window', 'ads_mall_wincin', 'i', 0, 0, 1, '0', '0', '0', 4098, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1762, 'Strum', 'ads_mall_winmus', 'i', 0, 0, 1, '0', '0', '0', 4101, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1763, 'Mall Beauty Salon', 'ads_mall_winbea', 'i', 0, 0, 1, '0', '0', '0', 4100, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1764, 'Eco Curtain 1', 'eco_curtains1', 'i', 0, 0, 1, '0', '0', '0', 4105, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1765, 'Mall Idea Agency Window', 'ads_mall_winchi', 'i', 0, 0, 1, '0', '0', '0', 4103, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1766, 'Eco Curtain 3', 'eco_curtains3', 'i', 0, 0, 1, '0', '0', '0', 4104, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1767, 'Eco Curtain 2', 'eco_curtains2', 'i', 0, 0, 1, '0', '0', '0', 4102, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1768, 'Mall Ice Cream Parlour Window', 'ads_mall_winice', 'i', 0, 0, 1, '0', '0', '0', 4109, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1769, 'Whatever your sporting dibble', 'ads_mall_winspo', 'i', 0, 0, 1, '0', '0', '0', 4106, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1770, 'ads_idol_logo name', 'ads_idol_logo', 'i', 0, 0, 1, '0', '0', '0', 4108, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1771, 'World Map', 'exe_map', 'i', 0, 0, 1, '0', '0', '0', 4110, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1772, 'Wall Fall', 'exe_wfall', 'i', 0, 0, 1, '0', '0', '0', 4107, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1773, 'ads_lin_wh_c name', 'ads_lin_wh_c', 'i', 0, 0, 1, '0', '0', '0', 4115, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1774, 'ads_malaco_tv name', 'ads_malaco_tv', 'i', 0, 0, 1, '0', '0', '0', 4113, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1775, 'ads_puffet_tv name', 'ads_puffet_tv', 'i', 0, 0, 1, '0', '0', '0', 4111, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1776, 'ads_reebok_tv name', 'ads_reebok_tv', 'i', 0, 0, 1, '0', '0', '0', 4112, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1777, 'Forest Wall Poster', 'country_forestwall', 'i', 0, 0, 1, '0', '0', '0', 4114, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1778, 'Marble Fireplace', 'country_fp', 'i', 0, 0, 1, '0', '0', '0', 4117, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1779, 'Farmhouse Wall', 'country_wall', 'i', 0, 0, 1, '0', '0', '0', 4118, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1780, 'Ye Olde Lantern', 'country_lantern', 'i', 0, 0, 1, '0', '0', '0', 4116, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1781, 'Norwegian Flag', 'flag_norway', 'i', 0, 0, 1, '0', '0', '0', 4119, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1782, 'Diner Poster', 'diner_poster', 'i', 0, 0, 1, '0', '0', '0', 4120, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1783, '', 'lt_jngl_wall', 'i', 0, 0, 1, '0', '0', '0', 4121, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1784, 'ads_mirror name', 'ads_mirror', 'i', 0, 0, 1, '0', '0', '0', 4122, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1785, 'lt_wall', 'lt_wall', 'i', 0, 0, 1, '0', '0', '0', 4123, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1787, 'Starship Window', 'sf_window', 'i', 0, 0, 1, '0', '0', '0', 4224, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1788, 'Starship Wall', 'sf_wall2', 'i', 0, 0, 1, '0', '0', '0', 4228, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1789, 'ads_wwe_poster name', 'ads_wwe_poster', 'i', 0, 0, 1, '0', '0', '0', 4226, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1790, 'Fly me to the moon', 'ads_mall_wintra', 'i', 0, 0, 1, '0', '0', '0', 4225, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1791, 'Starship Corner', 'sf_wall3', 'i', 0, 0, 1, '0', '0', '0', 4223, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1793, 'ads_veet name', 'ads_veet', 'i', 0, 0, 1, '0', '0', '0', 4222, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1794, 'Wall Tiles', 'rela_wall', 'i', 0, 0, 1, '0', '0', '0', 4232, '1', '1', '1', '1', '1', 'default', 6, '0'),
(1795, 'flag_belgium', 'flag_belgium', 'i', 0, 0, 1, '0', '0', '0', 4229, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1796, 'flag_portugal', 'flag_portugal', 'i', 0, 0, 1, '0', '0', '0', 4231, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1797, 'ads_mall_wingar', 'ads_mall_wingar', 'i', 0, 0, 1, '0', '0', '0', 4230, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1798, 'ktchn_wall name', 'ktchn_wall', 'i', 0, 0, 1, '0', '0', '0', 4235, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1799, 'ads_mall_winclo', 'ads_mall_winclo', 'i', 0, 0, 1, '0', '0', '0', 4236, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1800, 'ktchn_oven name', 'ktchn_oven', 'i', 0, 0, 1, '0', '0', '0', 4234, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1801, 'ktchn_knives name', 'ktchn_knives', 'i', 0, 0, 1, '0', '0', '0', 4233, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1802, 'Mood Controller (Large)', 'dimmer_fuse6', 'i', 0, 0, 1, '0', '0', '0', 4240, '1', '1', '1', '1', '1', 'dimmer', 1, '0'),
(1803, 'Mood Switch (Large)', 'dimmer_swtch', 'i', 0, 0, 1, '0', '0', '0', 4237, '1', '1', '1', '1', '1', 'dimmer', 1, '0'),
(1804, 'Mood Controller (Small)', 'dimmer_fuse2', 'i', 0, 0, 1, '0', '0', '0', 4239, '1', '1', '1', '1', '1', 'dimmer', 1, '0'),
(1805, 'Mood Switch (Small)', 'dimmer_buttn', 'i', 0, 0, 1, '0', '0', '0', 4238, '1', '1', '1', '1', '1', 'dimmer', 1, '0'),
(3530, 'bw_water_1', 'bw_water_1', 's', 2, 2, 0.1, '1', '0', '1', 3530, '1', '1', '1', '1', '1', '', 1, '0'),
(10278, 'hosptl_bbag name', 'hosptl_bbag', 's', 1, 3, 1, '0', '0', '0', 3591, '1', '1', '1', '1', '1', 'bed', 2, '0'),
(10279, 'hosptl_bed', 'hosptl_bed', 's', 1, 3, 2, '0', '0', '0', 3590, '1', '1', '1', '1', '1', 'bed', 2, '0'),
(10280, 'hosptl_cab1', 'hosptl_cab1', 's', 1, 1, 1, '0', '0', '0', 3586, '1', '1', '1', '1', '1', 'vendingmachine', 2, '35'),
(10281, 'hosptl_cab2', 'hosptl_cab2', 's', 2, 1, 1, '0', '0', '0', 3608, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10282, 'hosptl_curtain', 'hosptl_curtain', 's', 3, 1, 1, '0', '0', '0', 3588, '1', '1', '1', '1', '1', 'default', 1, '0'),
(10283, 'hosptl_defibs', 'hosptl_defibs', 's', 1, 1, 1, '0', '0', '0', 3606, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10284, 'hosptl_light', 'hosptl_light', 's', 1, 1, 1, '0', '0', '0', 3610, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10285, 'hosptl_seat', 'hosptl_seat', 's', 2, 1, 2, '0', '1', '0', 3611, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10286, 'hosptl_skele', 'hosptl_skele', 's', 1, 1, 1, '0', '0', '0', 3604, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10287, 'hosptl_xray', 'hosptl_xray', 'i', 0, 0, 0, '0', '0', '0', 4339, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10289, 'easel_0', 'easel_0', 's', 1, 1, 1, '0', '0', '0', 3582, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10290, 'easel_1', 'easel_1', 's', 1, 1, 1, '0', '0', '0', 3594, '1', '1', '1', '1', '1', 'default', 3, '0'),
(10291, 'easel_2', 'easel_2', 's', 1, 1, 1, '0', '0', '0', 3603, '1', '1', '1', '1', '1', 'default', 3, '0'),
(10292, 'easel_3', 'easel_3', 's', 1, 1, 1, '1', '0', '0', 3596, '1', '1', '1', '1', '1', 'default', 6, '0'),
(10293, 'easel_4', 'easel_4', 's', 1, 1, 1, '0', '0', '0', 3600, '1', '1', '1', '1', '1', 'default', 5, '0'),
(10294, 'easel_2', 'easel_2', 's', 1, 1, 1, '0', '0', '0', 3603, '1', '1', '1', '1', '1', 'default', 6, '0'),
(10350, 'african_bones', 'african_bones', 's', 1, 1, 1, '0', '0', '0', 3609, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10351, 'african_fence', 'african_fence', 's', 1, 2, 1, '0', '0', '0', 3579, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10352, 'african_patch', 'african_patch', 's', 2, 2, 1, '0', '0', '1', 3602, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10353, 'african_stage', 'african_stage', 's', 2, 2, 1, '1', '0', '1', 3607, '1', '1', '1', '1', '1', 'default', 3, '0'),
(10354, 'african_tree1', 'african_tree1', 's', 1, 1, 1, '0', '0', '0', 3584, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10355, 'african_tree2', 'african_tree2', 's', 1, 1, 1, '0', '0', '0', 3605, '1', '1', '1', '1', '1', 'default', 3, '0'),
(19877, '', 'avatar_effect9', 'e', 1, 1, 1, '0', '0', '0', 9, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19878, '', 'avatar_effect6', 'e', 1, 1, 1, '0', '0', '0', 6, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19879, '', 'avatar_effect16', 'e', 1, 1, 1, '0', '0', '0', 16, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19880, '', 'avatar_effect2', 'e', 1, 1, 1, '0', '0', '0', 2, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19881, '', 'avatar_effect14', 'e', 1, 1, 1, '0', '0', '0', 14, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19882, '', 'avatar_effect15', 'e', 1, 1, 1, '0', '0', '0', 15, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19883, '', 'avatar_effect3', 'e', 1, 1, 1, '0', '0', '0', 3, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19884, '', 'avatar_effect17', 'e', 1, 1, 1, '0', '0', '0', 17, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19885, '', 'avatar_effect18', 'e', 1, 1, 1, '0', '0', '0', 18, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19886, '', 'avatar_effect1', 'e', 1, 1, 1, '0', '0', '0', 1, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19887, '', 'avatar_effect4', 'e', 1, 1, 1, '0', '0', '0', 4, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19888, '', 'avatar_effect5', 'e', 1, 1, 1, '0', '0', '0', 5, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19889, '', 'avatar_effect7', 'e', 1, 1, 1, '0', '0', '0', 7, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19890, '', 'avatar_effect8', 'e', 1, 1, 1, '0', '0', '0', 8, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19891, '', 'avatar_effect10', 'e', 1, 1, 1, '0', '0', '0', 10, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19892, '', 'avatar_effect12', 'e', 1, 1, 1, '0', '0', '0', 12, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19893, '', 'avatar_effect13', 'e', 1, 1, 1, '0', '0', '0', 13, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19894, '', 'a2 l', 'i', 1, 1, 1, '0', '0', '0', 3002, '0', '0', '1', '1', '0', 'roomeffect', 1, '0'),
(19895, '', 'a2 t', 'i', 1, 1, 1, '0', '0', '0', 3001, '0', '0', '1', '1', '0', 'roomeffect', 1, '0'),
(19896, '', 'wallpaper 1', 'i', 1, 1, 1, '0', '0', '0', 3001, '0', '0', '1', '1', '0', 'roomeffect', 1, '0'),
(19926, '', 'landscape 10', 'i', 1, 1, 1, '0', '0', '0', 4055, '0', '0', '1', '1', '0', 'roomeffect', 1, '0'),
(19938, '', 'hween09_floor', 's', 2, 2, 0, '1', '0', '1', 3288, '0', '0', '1', '1', '1', 'default', 1, '0'),
(19939, '', 'hween09_jar', 's', 1, 1, 1, '0', '0', '0', 3287, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19940, 'City Bench (Clean)', 'urban_bench_plain', 's', 2, 1, 1, '0', '1', '0', 3284, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19941, '', 'hween09_organ', 's', 2, 1, 1, '0', '0', '0', 3282, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19942, '', 'byesw_hand', 's', 1, 1, 1.35, '0', '1', '0', 3291, '0', '1', '1', '1', '1', 'default', 1, '0'),
(19943, '', 'byesw_hotel', 's', 1, 1, 1, '0', '0', '0', 3289, '0', '1', '1', '1', '1', 'default', 6, '0'),
(19944, '', 'hween09_table', 's', 1, 3, 1, '0', '0', '0', 3286, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19945, '', 'hween09_chair', 's', 1, 1, 1, '0', '1', '0', 3295, '0', '0', '1', '1', '1', 'default', 1, '0'),
(19946, '', 'hween09_mirror', 's', 1, 1, 1, '0', '1', '0', 3293, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19947, 'Trap Door', 'hween09_hatch', 's', 2, 2, 0.001, '0', '0', '1', 3285, '0', '0', '1', '1', '1', 'gate', 2, '0'),
(19948, '', 'hween09_ghost', 's', 1, 1, 1, '0', '0', '0', 3290, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19949, '', 'hween09_tv', 's', 2, 1, 1, '0', '0', '0', 3292, '0', '0', '1', '1', '1', 'default', 3, '0'),
(19950, '', 'hween09_chandelier', 's', 1, 1, 1, '0', '0', '1', 3294, '0', '0', '1', '1', '1', 'default', 3, '0'),
(19951, '', 'hween09_crnr1', 'i', 0, 0, 1, '0', '0', '0', 4247, '0', '0', '1', '1', '1', 'default', 4, '0'),
(19952, '', 'hween09_paint', 'i', 0, 0, 1, '0', '0', '0', 4263, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19953, '', 'hween09_treewall', 'i', 0, 0, 1, '0', '0', '0', 4269, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19954, '', 'hween09_wall1', 'i', 0, 0, 1, '0', '0', '0', 4257, '0', '0', '1', '1', '1', 'default', 4, '0'),
(19955, '', 'hween09_stonewall', 'i', 0, 0, 1, '0', '0', '0', 4259, '0', '0', '1', '1', '1', 'default', 5, '0'),
(19956, '', 'hween09_win', 'i', 0, 0, 1, '0', '0', '0', 4271, '0', '0', '1', '1', '1', 'default', 10, '0'),
(19957, '', 'avatar_effect22', 'e', 1, 1, 1, '0', '0', '0', 22, '0', '0', '1', '0', '1', 'default', 1, '0'),
(19958, '', 'avatar_effect19', 'e', 1, 1, 1, '0', '0', '0', 19, '0', '0', '1', '0', '1', 'default', 1, '0'),
(19959, '', 'avatar_effect20', 'e', 1, 1, 1, '0', '0', '0', 20, '0', '0', '1', '0', '1', 'default', 1, '0'),
(19960, '', 'avatar_effect21', 'e', 1, 1, 1, '0', '0', '0', 21, '0', '0', '1', '0', '1', 'default', 1, '0'),
(19971, 'Snowman Middle', 'xm09_man_b', 's', 1, 1, 0.8, '1', '0', '0', 3328, '1', '1', '1', '1', '1', 'default', 9, '0'),
(19972, 'Snowman Head', 'xm09_man_c', 's', 1, 1, 1, '0', '0', '0', 3329, '1', '1', '1', '1', '1', 'default', 8, '0'),
(19973, 'Christmas Table', 'xm09_table', 's', 2, 6, 1, '1', '0', '0', 3335, '1', '1', '1', '1', '1', 'default', 2, '0'),
(19974, '6-Seater Bench', 'xm09_bench', 's', 6, 1, 1, '0', '1', '0', 3340, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19976, 'Snowy Fir Trees', 'xm09_firwall', 'i', 0, 0, 1, '0', '0', '0', 4307, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19977, 'Snowy Forest', 'xm09_forestwall', 'i', 0, 0, 1, '0', '0', '0', 4308, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19978, 'Lodge Wall', 'xm09_lodgewall', 'i', 0, 0, 1, '1', '0', '0', 4311, '0', '1', '1', '1', '1', 'default', 8, '0'),
(19979, 'Gold Heart Bauble', 'xm09_bauble_25', 'i', 0, 0, 1, '1', '0', '0', 4286, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19980, 'Silver Heart Bauble', 'xm09_bauble_26', 'i', 0, 0, 1, '1', '0', '0', 4306, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19981, 'Pink Heart Bauble', 'xm09_bauble_27', 'i', 0, 0, 1, '1', '0', '0', 4279, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19982, 'Pink Heart Bauble', 'xm09_bauble_27', 'i', 0, 0, 1, '1', '0', '0', 4313, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19983, 'Blue Heart Bauble', 'xm09_bauble_23', 'i', 0, 0, 1, '1', '0', '0', 4292, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19984, 'Green Heart Bauble', 'xm09_bauble_24', 'i', 0, 0, 1, '1', '0', '0', 4278, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19985, 'Candy Cane', 'xm09_candyCane', 's', 1, 1, 1, '0', '0', '0', 3314, '1', '1', '1', '1', '1', 'default', 4, '0'),
(19986, 'Big Stocking', 'xm09_stocking', 'i', 0, 0, 1, '1', '0', '0', 4280, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19989, 'Snowman Base', 'xm09_man_a', 's', 1, 1, 1, '1', '0', '0', 3330, '1', '1', '1', '1', '1', 'default', 5, '0'),
(19994, 'Fountain', 'ads_twi_fountn', 's', 2, 2, 1, '0', '0', '0', 3301, '1', '1', '1', '1', '1', 'default', 2, '0'),
(19995, 'Clock Tower wall', 'ads_twi_dvdr2', 's', 2, 1, 1, '0', '0', '0', 3302, '1', '1', '1', '1', '1', 'default', 2, '0'),
(19996, 'Standing Rose Bouquet', 'ads_twi_roses', 's', 1, 1, 1, '0', '0', '0', 3304, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19997, 'Cake on Table with Presents', 'ads_twi_table', 's', 2, 2, 1, '0', '0', '0', 3297, '1', '1', '1', '1', '1', 'default', 2, '0'),
(19998, 'Volturi Royal Chair', 'ads_twi_chair', 's', 1, 1, 1, '0', '1', '0', 3300, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19999, 'Half wall', 'ads_twi_dvdr1', 's', 2, 1, 1, '0', '0', '0', 3303, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20000, 'Broken Piano', 'ads_twi_piano', 's', 2, 2, 1, '0', '0', '0', 3299, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20001, 'ads_twi_tower name', 'ads_twi_tower', 's', 1, 1, 1, '0', '0', '0', 3298, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20002, 'Toolbox', 'ads_twi_toolbx', 's', 1, 1, 1, '0', '0', '0', 3296, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20003, 'Mist', 'ads_twi_mist', 's', 1, 1, 0, '1', '0', '1', 3308, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20006, 'Mesh Corner', 'urban_fence_corner', 's', 1, 1, 1, '1', '0', '0', 3275, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20007, 'Taxi Sofa', 'urban_carsofa', 's', 2, 1, 1, '0', '1', '0', 3268, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20008, 'City Bench (Dirty)', 'urban_bench', 's', 2, 1, 1, '0', '1', '0', 3269, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20010, 'Pavement Slab', 'urban_sidewalk', 's', 2, 2, 0.2, '1', '0', '1', 3274, '1', '1', '1', '1', '1', 'default', 4, '0'),
(20011, 'Water Hydrant', 'urban_wpost', 's', 1, 1, 1, '0', '0', '0', 3272, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20012, 'Mesh Fencing', 'urban_fence', 's', 1, 2, 1, '0', '0', '0', 3267, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20013, 'Garbage Bin', 'urban_bin', 's', 1, 1, 1, '0', '0', '0', 3266, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20014, 'Concrete Block', 'urban_blocker', 's', 1, 1, 1, '0', '0', '0', 3270, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20015, 'Basketball Pole', 'urban_bsktbll', 's', 1, 1, 1, '0', '0', '0', 3271, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20016, 'Street Lamp', 'urban_lamp', 's', 1, 1, 1, '1', '0', '0', 3265, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20018, 'Street Wall', 'urban_wall', 'i', 0, 0, 1, '1', '0', '0', 4244, '1', '1', '1', '1', '1', 'default', 5, '0'),
(20021, 'Giant Heart', 'heart', 's', 1, 1, 1, '0', '0', '0', 227, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20022, 'Champion trophy', 'a0 prizetrophy6_b', 's', 1, 1, 1, '0', '0', '0', 1510, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(20024, 'Square Dining Table', 'table_plasto_square*9', 's', 1, 1, 1, '1', '0', '0', 118, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20025, 'Terracotta Pillar', 'pillar*6', 's', 1, 1, 1, '0', '0', '0', 1609, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20026, 'Urban Iced Bookcase', 'shelves_norja*4', 's', 1, 1, 1, '0', '0', '0', 1795, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20027, 'Black Mode Double Bed', 'bed_polyfon*2', 's', 2, 3, 1.8, '0', '0', '0', 1895, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(20028, 'Blue Iced Angle', 'divider_nor5*6', 's', 1, 1, 1, '0', '0', '0', 1995, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20029, 'Valentine''s Cauldron', 'val_cauldron', 's', 1, 1, 1, '0', '0', '0', 2103, '1', '1', '1', '1', '1', 'vendingmachine', 0, '25'),
(20030, 'Aqua Pura Module 5', 'pura_mdl5*1', 's', 1, 1, 1, '0', '1', '0', 2509, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20031, 'Aqua One Way Gate', 'one_way_door*1', 's', 1, 1, 0.001, '0', '0', '0', 2597, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(20032, 'Power Globe', 'exe_globe', 's', 1, 1, 1, '0', '0', '0', 2672, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20034, 'Latte Diner Corner', 'diner_bardesk_corner*5', 's', 1, 1, 1, '1', '0', '0', 2874, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20035, 'Bubbles', 'fx_bubble', 's', 1, 1, 1, '1', '0', '0', 3012, '0', '0', '1', '0', '1', 'rentals', 2, '0'),
(20036, 'Safety Cone', 'bump_tottero', 's', 1, 1, 1, '0', '0', '0', 3087, '1', '1', '1', '0', '1', 'default', 1, '0'),
(20037, 'ads_calip_parasol name', 'ads_calip_parasol', 's', 1, 1, 1, '0', '0', '0', 3195, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20041, '2010 Poster', 'year2010', 'i', 0, 0, 1, '1', '0', '0', 4313, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20042, 'Party Lantern', 'party_lantern', 's', 1, 1, 0, '1', '0', '1', 3327, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20043, 'Party Lights', 'party_lights', 'i', 0, 0, 1, '0', '0', '0', 4310, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20045, 'arabian_tile', 'arabian_tile', 's', 2, 2, 0, '1', '0', '1', 3312, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20046, 'Executive Teleport', 'exe_elevator', 's', 1, 1, 0.001, '0', '0', '0', 3305, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(20047, 'Soothing Stick', 'rela_stick', 's', 1, 1, 1, '0', '0', '0', 3240, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20048, 'Mall Lift', 'ads_mall_elevator', 's', 1, 1, 0.001, '0', '0', '0', 3306, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(20050, 'Flatscreen TV', 'xm09_infotv', 'i', 0, 0, 1, '1', '0', '0', 4309, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20051, 'Twilight Trophy', 'ads_twi_trophy', 's', 1, 1, 1, '1', '0', '0', 3311, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(20052, 'Volturi Crest', 'ads_twi_crest', 'i', 0, 0, 1, '1', '0', '0', 4275, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20053, 'Painting', 'ads_twi_paint', 'i', 0, 0, 1, '1', '0', '0', 4272, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20054, 'Window with Candles', 'ads_twi_windw', 'i', 0, 0, 1, '1', '0', '0', 4277, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20055, 'Truck and Motorcycles', 'ads_twi_bwall2', 'i', 0, 0, 1, '1', '0', '0', 4276, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20056, 'Dream Catcher', 'ads_twi_dreamc', 'i', 0, 0, 1, '1', '0', '0', 4273, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20057, 'Barn Wall', 'ads_twi_bwall1', 'i', 0, 0, 1, '1', '0', '0', 4274, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20059, 'Arabian Wall', 'arabian_wall', 'i', 0, 0, 1, '1', '0', '0', 4287, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20060, 'DEAL_HC_1', 'DEAL_HC_1', 'h', 0, 0, 0, '0', '0', '0', 0, '0', '0', '1', '0', '0', 'default', 0, '0'),
(20063, 'Hot Choc Machine', 'xm09_cocoa', 's', 1, 1, 1, '1', '0', '0', 3337, '1', '1', '1', '1', '1', 'vendingmachine', 0, '10'),
(20064, 'Astro-Bar', 'sf_mbar', 's', 1, 1, 1, '1', '0', '0', 3273, '1', '1', '1', '1', '1', 'vendingmachine', 0, '44'),
(20066, 'Dead Tree', 'tree2', 's', 1, 1, 1, '0', '0', '0', 2104, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20067, 'Green Hatch', 'divider_poly3*7', 's', 1, 1, 0.001, '0', '0', '0', 1930, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(20068, 'Idea Agency Lava Lamp', 'ads_cllava2', 's', 1, 1, 1, '0', '0', '0', 3021, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20071, 'ads_gsArcade_2 name', 'ads_gsArcade_2', 's', 1, 1, 1, '1', '0', '0', 3278, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20072, 'ads_gsArcade_1 name', 'ads_gsArcade_1', 's', 1, 1, 1, '1', '0', '0', 3277, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20073, 'ads_idol_l_carpet name', 'ads_idol_l_carpet', 's', 2, 7, 0, '1', '0', '0', 3276, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20074, 'Silver MTV EMA Trophy', 'ads_mtvtrophy_silver', 's', 1, 1, 1, '0', '0', '0', 3281, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20075, 'ads_spang_sleep', 'ads_spang_sleep', 's', 1, 3, 0.8, '1', '0', '0', 3280, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(20076, 'Gold MTV EMA Trophy', 'ads_mtvtrophy_gold', 's', 1, 1, 1, '0', '0', '0', 3279, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20077, 'ktchn_hlthNut name', 'ktchn_hlthNut', 's', 1, 1, 1, '1', '0', '0', 3307, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20078, 'Chicken', 'petfood8', 's', 1, 1, 1, '1', '0', '0', 3325, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20079, 'nest_plow_reg', 'nest_plow_reg', 's', 1, 1, 1, '1', '0', '0', 3318, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20080, 'Yellow Pet Snuggle', 'nest_snug_yel', 's', 1, 1, 1, '1', '0', '0', 3319, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20081, 'Salmon', 'petfood9', 's', 1, 1, 1, '1', '0', '0', 3322, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20082, 'Leveling Cake', 'petfood10', 's', 1, 1, 1, '1', '0', '0', 3326, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20083, 'Ice Apples', 'petfood7', 's', 1, 1, 1, '1', '0', '0', 3321, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20084, 'Red Apples', 'petfood6', 's', 1, 1, 1, '1', '0', '0', 3323, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20085, 'Green Pet Snuggle', 'nest_snug_grn', 's', 1, 1, 1, '1', '0', '0', 3310, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20086, 'nest_snug_red', 'nest_snug_red', 's', 1, 1, 1, '1', '0', '0', 3317, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20087, 'Green Pet Snuggle', 'nest_snug_grn', 's', 1, 1, 1, '1', '0', '0', 3023, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20088, 'nest_plow_bro', 'nest_plow_bro', 's', 1, 1, 1, '1', '0', '0', 3309, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20089, 'Red Pet Pillow', 'nest_plow_red', 's', 1, 1, 1, '1', '0', '0', 3320, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20090, 'nest_snug_blu', 'nest_snug_blu', 's', 1, 1, 1, '1', '0', '0', 3315, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20091, 'Green Apples', 'petfood5', 's', 1, 1, 1, '1', '0', '0', 3324, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20092, 'Blue Pet Pillow', 'nest_plow_blu', 's', 1, 1, 1, '1', '0', '0', 3316, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20093, 'Giant Bauble', 'xm09_lrgBauble', 's', 1, 1, 1, '1', '0', '0', 3313, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20094, 'nest_dirt', 'nest_dirt', 's', 1, 1, 1, '1', '0', '0', 3331, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20095, 'nest_snug_prp', 'nest_snug_prp', 's', 1, 1, 1, '1', '0', '0', 3332, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20096, 'nest_nest', 'nest_nest', 's', 1, 1, 1, '1', '0', '0', 3334, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20097, 'nest_nails', 'nest_nails', 's', 1, 1, 1, '1', '0', '0', 3336, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20098, 'nest_basket', 'nest_basket', 's', 1, 1, 1, '1', '0', '0', 3333, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20099, 'Polar Bear Nest', 'nest_ice', 's', 1, 1, 1, '1', '0', '0', 3339, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20100, 'nest_plow_skl', 'nest_plow_skl', 's', 1, 1, 1, '1', '0', '0', 3341, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20101, 'nest_snug_bla', 'nest_snug_bla', 's', 1, 1, 1, '1', '0', '0', 3338, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20102, 'The Moodi Machine', 'ads_cl_moodi', 's', 1, 1, 1, '1', '0', '0', 3342, '1', '1', '1', '1', '1', 'vendingmachine', 1, '46,47,45'),
(20103, 'org_chairpnk', 'org_chairpnk', 's', 1, 1, 1.2, '0', '1', '0', 3354, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20104, 'org_tblpnk', 'org_tblpnk', 's', 1, 1, 1, '1', '0', '0', 3352, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20105, 'org_lampblk', 'org_lampblk', 's', 1, 1, 1.2, '0', '0', '0', 3353, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20106, 'org_lamppnk', 'org_lamppnk', 's', 1, 1, 1.2, '0', '0', '0', 3348, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20107, 'org_table', 'org_table', 's', 2, 2, 1, '1', '0', '0', 3356, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20108, 'china_tiger', 'china_tiger', 's', 1, 1, 1, '1', '0', '0', 3344, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20109, 'xm09_trophy name', 'xm09_trophy', 's', 1, 1, 1, '1', '0', '0', 3351, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20110, 'china_plmTree name', 'china_plmTree', 's', 1, 1, 1, '1', '0', '0', 3355, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20111, 'org_chairblk', 'org_chairblk', 's', 1, 1, 1.2, '0', '1', '0', 3349, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20112, 'org_tblblk', 'org_tblblk', 's', 1, 1, 1, '1', '0', '0', 3347, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20113, 'org_chrblk', 'org_chrblk', 's', 1, 1, 1.2, '0', '1', '0', 3345, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20114, 'china_tigrSeat name', 'china_tigrSeat', 's', 1, 2, 1, '1', '0', '0', 3346, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20115, 'org_chrpnk', 'org_chrpnk', 's', 1, 1, 1.2, '0', '1', '0', 3350, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20116, 'ads_chups name', 'ads_chups', 's', 1, 1, 1, '1', '0', '0', 3367, '1', '1', '1', '1', '1', 'vendingmachine', 1, '48'),
(20117, 'bling_fridge', 'bling_fridge', 's', 1, 1, 1, '0', '0', '0', 3366, '1', '1', '1', '1', '1', 'vendingmachine', 0, '50'),
(20118, 'petfood12 name', 'petfood12', 's', 1, 1, 1, '1', '0', '0', 3370, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20119, 'ads_droetker_paula name', 'ads_droetker_paula', 's', 1, 1, 1, '1', '0', '0', 3365, '1', '1', '1', '1', '1', 'vendingmachine', 1, '49'),
(20120, 'petfood11 name', 'petfood11', 's', 1, 1, 1, '1', '0', '0', 3358, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20121, 'bling_chair_a', 'bling_chair_a', 's', 1, 1, 1, '0', '1', '0', 3368, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20122, 'petfood13 name', 'petfood13', 's', 1, 1, 1, '1', '0', '0', 3359, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20123, 'bling_pool', 'bling_pool', 's', 3, 1, 0.01, '0', '1', '0', 3369, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20124, 'bling_toilet', 'bling_toilet', 's', 1, 1, 1.2, '0', '1', '0', 3362, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20125, 'val09_floor', 'val09_floor', 's', 2, 2, 0, '1', '0', '1', 3363, '1', '1', '1', '1', '1', 'default', 6, '0'),
(20126, 'bling_chair_c', 'bling_chair_c', 's', 1, 1, 1, '0', '1', '0', 3361, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20127, 'bling_chair_b', 'bling_chair_b', 's', 1, 1, 1, '0', '1', '0', 3360, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20128, 'bling_shwr name', 'bling_shwr', 's', 1, 1, 0, '1', '0', '1', 3396, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20129, 'bling_bed name', 'bling_bed', 's', 2, 3, 1.6, '0', '1', '0', 3364, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20130, 'bling_sofa', 'bling_sofa', 's', 2, 1, 1.5, '0', '1', '0', 3371, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20131, 'val09_floor2', 'val09_floor2', 's', 2, 2, 0, '1', '0', '1', 3357, '1', '1', '1', '1', '1', 'default', 6, '0'),
(20132, 'teddy_basic', 'teddy_basic', 's', 1, 1, 1, '1', '0', '0', 3393, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20133, 'teddy_pendergrass', 'teddy_pendergrass', 's', 1, 1, 1, '1', '0', '0', 3384, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20134, 'val_hSeat_1 name', 'val_hSeat*1', 's', 1, 1, 1, '0', '1', '0', 3386, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20135, 'val_hSeat_2 name', 'val_hSeat*2', 's', 1, 1, 1, '0', '1', '0', 3387, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20136, 'val_hSeat_3 name', 'val_hSeat*3', 's', 1, 1, 1, '0', '1', '0', 3388, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20137, 'val_hSeat_4 name', 'val_hSeat*4', 's', 1, 1, 1, '0', '1', '0', 3389, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20138, 'val_hSeat_5 name', 'val_hSeat*5', 's', 1, 1, 1, '0', '1', '0', 3390, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20139, 'val_hSeat_6 name', 'val_hSeat*6', 's', 1, 1, 1, '0', '1', '0', 3391, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20140, 'val_hSeat_7 name', 'val_hSeat*7', 's', 1, 1, 1, '0', '1', '0', 3392, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20141, 'Valentines gift basket', 'val_basket', 's', 1, 1, 1, '1', '0', '0', 3382, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20142, 'teddy_bear', 'teddy_bear', 's', 1, 1, 1, '1', '0', '0', 3385, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20143, 'teddy_pink', 'teddy_pink', 's', 1, 1, 1, '1', '0', '0', 3383, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20144, 'bling_fridge_restricted name', 'bling_fridge_restricted', 's', 1, 1, 1, '0', '0', '0', 3394, '1', '1', '1', '1', '1', 'vendingmachine', 0, '50'),
(20145, 'ads_percyrock name', 'ads_percyrock', 's', 2, 2, 1, '1', '0', '0', 3395, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20146, 'Bubble Juice Can', 'md_can', 'i', 0, 0, 1, '1', '0', '0', 4025, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20147, 'ads_idol_l_logo name', 'ads_idol_l_logo', 'i', 0, 0, 1, '1', '0', '0', 4243, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20148, 'Latin American Idol TV', 'ads_idol_l_tv', 'i', 0, 0, 1, '1', '0', '0', 4245, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20149, 'Big MTV', 'ads_mtv_bigtv', 'i', 0, 0, 1, '1', '0', '0', 4241, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20150, 'Small MTV', 'ads_mtv_tv', 'i', 0, 0, 1, '1', '0', '0', 4242, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20151, 'flag_singapore', 'flag_singapore', 'i', 0, 0, 1, '1', '0', '0', 4249, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20152, 'Old Curtain', 'hween09_curt', 'i', 0, 0, 1, '1', '0', '0', 4266, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20153, 'flag_columbia', 'flag_columbia', 'i', 0, 0, 1, '1', '0', '0', 4258, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20154, 'flag_chile', 'flag_chile', 'i', 0, 0, 1, '1', '0', '0', 4256, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20155, 'flag_ecuador', 'flag_ecuador', 'i', 0, 0, 1, '1', '0', '0', 4268, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20156, 'flag_dominicanrepublic', 'flag_dominicanrepublic', 'i', 0, 0, 1, '1', '0', '0', 4265, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20157, 'flag_newzealand', 'flag_newzealand', 'i', 0, 0, 1, '1', '0', '0', 4260, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20158, 'flag_malaysia', 'flag_malaysia', 'i', 0, 0, 1, '1', '0', '0', 4252, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20159, 'Loading Poster', 'byesw_loadscreen', 'i', 0, 0, 1, '1', '0', '0', 4267, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20160, 'flag_venezl', 'flag_venezl', 'i', 0, 0, 1, '1', '0', '0', 4254, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20161, 'flag_algeria', 'flag_algeria', 'i', 0, 0, 1, '1', '0', '0', 4270, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20162, 'flag_tunisia', 'flag_tunisia', 'i', 0, 0, 1, '1', '0', '0', 4248, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20163, 'flag_panama', 'flag_panama', 'i', 0, 0, 1, '1', '0', '0', 4262, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20164, 'flag_mexico', 'flag_mexico', 'i', 0, 0, 1, '1', '0', '0', 4250, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20165, 'flag_argentina', 'flag_argentina', 'i', 0, 0, 1, '1', '0', '0', 4261, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20166, 'flag_philippines', 'flag_philippines', 'i', 0, 0, 1, '1', '0', '0', 4251, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20167, 'flag_greece', 'flag_greece', 'i', 0, 0, 1, '1', '0', '0', 4253, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20168, 'flag_peru', 'flag_peru', 'i', 0, 0, 1, '1', '0', '0', 4246, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20169, 'flag_morocco', 'flag_morocco', 'i', 0, 0, 1, '1', '0', '0', 4264, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20170, 'flag_turkey', 'flag_turkey', 'i', 0, 0, 1, '1', '0', '0', 4255, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20171, 'Blue Long Bauble', 'xm09_bauble_12', 'i', 0, 0, 1, '1', '0', '0', 4304, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20172, 'Purple Long Bauble', 'xm09_bauble_16', 'i', 0, 0, 1, '1', '0', '0', 4303, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20173, 'Red Long Bauble', 'xm09_bauble_17', 'i', 0, 0, 1, '1', '0', '0', 4281, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20174, 'Silver Long Bauble', 'xm09_bauble_15', 'i', 0, 0, 1, '1', '0', '0', 4301, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20175, 'Silver Round Bauble', 'xm09_bauble_10', 'i', 0, 0, 1, '1', '0', '0', 4293, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20176, 'Gold Round Bauble', 'xm09_bauble_9', 'i', 0, 0, 1, '1', '0', '0', 4294, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20177, 'Green Long Bauble', 'xm09_bauble_18', 'i', 0, 0, 1, '1', '0', '0', 4298, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20178, 'Green Long Bauble', 'xm09_bauble_13', 'i', 0, 0, 1, '1', '0', '0', 4299, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20179, 'Blue Round Bauble', 'xm09_bauble_2', 'i', 0, 0, 1, '1', '0', '0', 4297, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20180, 'Red Round Bauble', 'xm09_bauble_1', 'i', 0, 0, 1, '1', '0', '0', 4300, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20181, 'Red Heart Bauble', 'xm09_bauble_22', 'i', 0, 0, 1, '1', '0', '0', 4302, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20182, 'Green Round Bauble', 'xm09_bauble_3', 'i', 0, 0, 1, '1', '0', '0', 4285, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20183, 'Silver Long Bauble', 'xm09_bauble_21', 'i', 0, 0, 1, '1', '0', '0', 4305, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20184, 'Green Round Bauble', 'xm09_bauble_8', 'i', 0, 0, 1, '1', '0', '0', 4295, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20185, 'Gold Round Bauble', 'xm09_bauble_4', 'i', 0, 0, 1, '1', '0', '0', 4282, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20186, 'Silver Round Bauble', 'xm09_bauble_5', 'i', 0, 0, 1, '1', '0', '0', 4288, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20187, 'Red Long Bauble', 'xm09_bauble_11', 'i', 0, 0, 1, '1', '0', '0', 4289, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20188, 'Gold Long Bauble', 'xm09_bauble_20', 'i', 0, 0, 1, '1', '0', '0', 4296, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20190, 'val_table1 name', 'val_table1', 's', 1, 1, 1, '0', '0', '0', 3397, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20191, 'Gold Long Bauble', 'xm09_bauble_14', 'i', 0, 0, 1, '1', '0', '0', 4290, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20192, 'Blue Round Bauble', 'xm09_bauble_7', 'i', 0, 0, 1, '1', '0', '0', 4291, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20193, 'Red Round Bauble', 'xm09_bauble_6', 'i', 0, 0, 1, '1', '0', '0', 4284, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20194, 'Blue Long Bauble', 'xm09_bauble_19', 'i', 0, 0, 1, '1', '0', '0', 4283, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20195, 'china_pstr3 name', 'china_pstr3', 'i', 0, 0, 1, '1', '0', '0', 4314, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20196, 'ads_tv_jaapuisto name', 'ads_tv_jaapuisto', 'i', 0, 0, 1, '1', '0', '0', 4315, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20197, 'Empire State Building Clock', 'ads_percyw', 'i', 0, 0, 1, '1', '0', '0', 4322, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20198, 'val09_wdrobe_b', 'val09_wdrobe_b', 'i', 0, 0, 1, '1', '0', '0', 4320, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20199, 'val09_wall2', 'val09_wall2', 'i', 0, 0, 1, '1', '0', '0', 4316, '1', '1', '1', '1', '1', 'default', 5, '0'),
(20200, 'bling_sink', 'bling_sink', 'i', 0, 0, 1, '1', '0', '0', 4319, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20201, 'val09_wall1', 'val09_wall1', 'i', 0, 0, 1, '1', '0', '0', 4318, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20202, 'bling_cabinet', 'bling_cabinet', 'i', 0, 0, 1, '1', '0', '0', 4321, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20204, 'val09_wdrobe_g', 'val09_wdrobe_g', 'i', 0, 0, 1, '1', '0', '0', 4317, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20207, 'rare_ironmaiden name', 'rare_ironmaiden', 's', 1, 1, 0.001, '0', '0', '0', 3399, '1', '1', '0', '1', '1', 'teleport', 2, '0'),
(20208, 'rare_trex name', 'rare_trex', 's', 3, 7, 1, '0', '0', '0', 3398, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20209, 'beanstalk', 'beanstalk', 's', 1, 1, 1, '1', '0', '0', 3401, '1', '1', '1', '1', '1', 'default', 6, '0'),
(20210, 'rare_vdoll name', 'rare_vdoll', 's', 1, 1, 1, '0', '0', '0', 3403, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20211, 'Sofa Mamut', 'Sofa Mamut', 's', 2, 1, 1, '0', '1', '0', 3402, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20212, 'crystal_patch', 'crystal_patch', 's', 3, 3, 0, '0', '0', '1', 3400, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20213, 'ads_boost_surfb name', 'ads_boost_surfb', 'i', 0, 0, 1, '1', '0', '0', 4323, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20214, 'ads_tlc_wheel name', 'ads_tlc_wheel', 'i', 0, 0, 1, '1', '0', '0', 4324, '1', '1', '1', '1', '1', 'habbowheel', 1, '0'),
(20220, 'Pigs', 'a0 pet5', 's', 1, 1, 1, '1', '0', '0', 1532, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20221, 'White moon lupine', 'garden_lupin4', 's', 1, 1, 0.000000001, '0', '0', '0', 3419, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20222, 'Gold rush', 'garden_mursu3', 's', 1, 1, 1, '0', '0', '0', 3408, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20223, 'Purple Lupine', 'garden_lupin5', 's', 1, 1, 1, '0', '0', '0', 3411, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20224, 'Violet Blossom', 'garden_seed', 's', 1, 1, 1, '0', '0', '0', 3406, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20225, 'Snapping teleporter', 'garden_flytrap', 's', 1, 1, 0.001, '0', '0', '0', 3420, '1', '1', '1', '1', '1', 'teleport', 1, '0'),
(20226, 'Pink pandemic', 'garden_flo3', 's', 1, 1, 1, '1', '0', '1', 3426, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20227, 'Belching pod', 'garden_volcano', 's', 2, 2, 1, '0', '0', '0', 3424, '1', '1', '1', '1', '1', 'alert', 2, '0'),
(20228, 'Wonder lamp', 'garden_flolamp', 's', 1, 1, 1, '0', '0', '0', 3415, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20229, 'Red rush', 'garden_mursu2', 's', 1, 1, 1, '0', '0', '0', 3412, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20230, 'Star flower', 'garden_jyrki', 's', 1, 1, 1, '0', '0', '0', 3405, '1', '1', '1', '1', '1', 'default', 8, '0'),
(20231, 'White rush', 'garden_mursu4', 's', 1, 1, 1, '0', '0', '0', 3414, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20232, 'Garden leaves', 'garden_leaves', 's', 1, 1, 1, '0', '0', '0', 3425, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20233, 'Sky blue lupine', 'garden_lupin2', 's', 1, 1, 1, '0', '0', '0', 3416, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20234, 'Red lupine', 'garden_lupin3', 's', 1, 1, 1, '0', '0', '0', 3407, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20235, 'Pink rush', 'garden_mursu', 's', 1, 1, 1, '0', '0', '0', 3404, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20237, 'Yellow happiness', 'garden_flo2', 's', 1, 1, 0, '1', '0', '1', 3409, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20238, 'Bauhinia orchid tree', 'garden_orchtree', 's', 1, 1, 1, '0', '0', '0', 3413, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20239, 'Orange lupine', 'garden_lupin1', 's', 1, 1, 1, '0', '0', '0', 3421, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20240, 'Weird staring bush', 'garden_staringbush', 's', 1, 3, 1, '0', '0', '0', 3417, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20241, 'ads_grefusa_yum name', 'ads_grefusa_yum', 's', 1, 1, 1, '1', '0', '0', 3423, '1', '1', '1', '1', '1', 'vendingmachine', 1, '51, 52'),
(20242, 'Blue passion', 'garden_flo1', 's', 1, 1, 1, '1', '0', '1', 3418, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20243, 'Duck grass', 'garden_jungle', 's', 1, 1, 0, '1', '0', '0', 3422, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20244, 'merger_chest name', 'merger_chest', 's', 2, 1, 1, '0', '0', '0', 3455, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20245, 'Suave Fireplace', 'hc2_frplc', 's', 1, 2, 1, '0', '0', '0', 3458, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20246, 'Leather Bar Stool', 'hc2_barchair', 's', 1, 1, 1.7, '0', '1', '0', 3439, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20247, 'runway_display name', 'runway_display', 's', 1, 1, 1, '0', '0', '0', 3457, '1', '1', '1', '1', '1', 'default', 1, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(20248, 'runway_bigchr_5 name', 'runway_bigchr_5', 's', 1, 1, 0.8, '1', '1', '0', 3463, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20249, 'runway_bigchr_4 name', 'runway_bigchr_4', 's', 1, 1, 0.8, '1', '1', '0', 3435, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20250, 'VIP Duvan', 'hc3_dc', 's', 1, 3, 1, '0', '0', '0', 3461, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(20252, 'Glass Table', 'hc2_sofatbl', 's', 2, 2, 0.5, '1', '0', '0', 3434, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20253, 'runway_stool name', 'runway_stool', 's', 1, 1, 1.2, '0', '1', '0', 3442, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20254, 'runway_dvdr name', 'runway_dvdr', 's', 2, 1, 1, '0', '0', '0', 3456, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20255, 'runway_block_2 name', 'runway_block_2', 's', 2, 2, 0.8, '1', '0', '1', 3443, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20256, 'runway_bigchr_1 name', 'runway_bigchr_1', 's', 1, 1, 0.8, '0', '1', '0', 3462, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20257, 'Black Lamp', 'hc2_biglamp', 's', 1, 1, 1, '0', '0', '0', 3446, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20258, 'Leather Sofa', 'hc2_sofa', 's', 2, 1, 1, '0', '1', '0', 3452, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20259, 'Trendy Rug', 'hc2_carpet', 's', 3, 5, 0, '1', '0', '1', 3440, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20260, 'runway_block_1 name', 'runway_block_1', 's', 2, 2, 0.8, '1', '0', '1', 3433, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20261, 'runway_bench name', 'runway_bench', 's', 2, 1, 1.4, '0', '1', '0', 3464, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20262, 'runway_chair_2 name', 'runway_chair_2', 's', 1, 1, 1.4, '0', '1', '0', 3429, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20263, 'ads_cheetos name', 'ads_cheetos', 's', 1, 1, 1, '0', '0', '0', 3453, '1', '1', '1', '1', '1', 'vendingmachine', 1, '51, 52'),
(20264, 'VIP Coffee Table', 'hc3_table', 's', 2, 2, 0.5, '1', '0', '0', 3466, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20265, 'runway_bigchr_3 name', 'runway_bigchr_3', 's', 1, 1, 0.8, '1', '1', '0', 3454, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20266, 'VIP Stool', 'hc3_stool', 's', 1, 1, 1.7, '0', '1', '0', 3448, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20267, 'VIP Sofa', 'hc3_sofa', 's', 2, 1, 1, '0', '1', '0', 3441, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20268, 'runway_bigchr_2 name', 'runway_bigchr_2', 's', 1, 1, 0.8, '1', '1', '0', 3427, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20269, 'Leather Armchair', 'hc2_armchair', 's', 1, 1, 1, '1', '1', '0', 3436, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20270, 'runway_table_2 name', 'runway_table_2', 's', 2, 1, 1, '0', '0', '0', 3444, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20271, 'runway_table_1 name', 'runway_table_1', 's', 3, 2, 1, '1', '0', '0', 3460, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20272, 'runway_manqn_1 name', 'runway_manqn_1', 's', 1, 1, 1, '0', '0', '0', 3437, '1', '1', '1', '1', '1', 'default', 5, '0'),
(20273, 'Leather Duvan', 'hc2_dvn', 's', 1, 3, 1, '0', '0', '0', 3459, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(20274, 'VIP Light', 'hc3_light', 's', 2, 1, 0, '1', '0', '1', 3465, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20275, 'VIP Shelves', 'hc3_shelf', 's', 3, 1, 1.75, '1', '0', '0', 3438, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20276, 'runway_head name', 'runway_head', 's', 1, 1, 1, '1', '0', '0', 3432, '1', '1', '1', '1', '1', 'default', 7, '0'),
(20277, 'runway_manqn_2 name', 'runway_manqn_2', 's', 1, 1, 1, '0', '0', '0', 3467, '1', '1', '1', '1', '1', 'default', 5, '0'),
(20278, 'Black Divider', 'hc2_divider', 's', 1, 3, 1, '0', '0', '0', 3449, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20279, 'Espresso Machine', 'hc2_coffee', 's', 1, 1, 1, '0', '0', '0', 3450, '1', '1', '1', '1', '1', 'vendingmachine', 0, '9,8,14,15,6,10,11,12,17,13'),
(20280, 'Service Trolley', 'hc2_cart', 's', 1, 1, 1, '0', '0', '0', 3430, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20281, 'VIP Bar Desk', 'hc3_bard', 's', 2, 1, 1.05, '1', '0', '0', 3445, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20282, 'VIP Lamp', 'hc3_hugelamp', 's', 1, 1, 0, '1', '0', '1', 3447, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20283, 'VIP Divider', 'hc3_divider', 's', 1, 3, 1, '0', '0', '0', 3431, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20284, 'Black Vase', 'hc2_vase', 's', 1, 1, 1, '0', '0', '0', 3428, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20285, 'runway_chair_1 name', 'runway_chair_1', 's', 1, 1, 1.4, '0', '1', '0', 3451, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20286, 'Green been vines', 'garden_wall', 'i', 0, 0, 1, '1', '0', '0', 4325, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20287, 'ads_tv_yle name', 'ads_tv_yle', 'i', 0, 0, 1, '1', '0', '0', 4326, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20288, 'VIP Wall Art', 'hc3_walldeco', 'i', 0, 0, 1, '1', '0', '0', 4329, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20289, 'runway_shelf name', 'runway_shelf', 'i', 0, 0, 1, '1', '0', '0', 4327, '1', '1', '1', '1', '1', 'default', 4, '0'),
(20290, 'ads_nokia_x6 name', 'ads_nokia_x6', 'i', 0, 0, 1, '1', '0', '0', 4330, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20291, 'ads_target_wall name', 'ads_target_wall', 'i', 0, 0, 1, '1', '0', '0', 4332, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20292, 'runway_fabric name', 'runway_fabric', 'i', 0, 0, 1, '1', '0', '0', 4331, '1', '1', '1', '1', '1', 'default', 8, '0'),
(20293, 'ads_latrobe_flag name', 'ads_latrobe_flag', 'i', 0, 0, 1, '1', '0', '0', 4328, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20295, 'Camera', 'camera', 's', 1, 1, 1, '0', '0', '0', 263, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20296, 'Holly', 'holly', 'i', 0, 0, 0, '1', '0', '0', 4001, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20297, 'Wedding Arch', 'wed_arch', 's', 3, 1, 0.001, '1', '0', '1', 3483, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20298, 'Wedding Plant', 'wed_plant', 's', 1, 1, 1, '0', '0', '0', 3482, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20299, 'Wetting Ice Sculpture', 'wed_icesculp', 's', 1, 1, 3, '0', '0', '0', 3488, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20300, 'Wedding Car', 'wed_carsofa', 's', 2, 1, 1.25, '0', '1', '0', 3493, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20301, 'Terrier', 'a0 pet3', 's', 1, 1, 1, '1', '0', '0', 4026, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20303, 'Bear', 'a0 pet4', 's', 1, 1, 1, '1', '0', '0', 4027, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20304, 'Cat', 'a0 pet1', 's', 1, 1, 1, '1', '0', '0', 453, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20305, 'Dog', 'a0 pet0', 's', 1, 1, 1, '1', '0', '0', 452, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20306, 'Crocodile', 'a0 pet2', 's', 1, 1, 1, '1', '0', '0', 1290, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20313, 'cmp_fish_bk name', 'cmp_fish_bk', 's', 1, 2, 1, '0', '0', '0', 3469, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20314, 'cmp_fish_g name', 'cmp_fish_g', 's', 1, 2, 1, '0', '0', '0', 3475, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20315, 'cmp_fish_gr name', 'cmp_fish_gr', 's', 1, 2, 1, '0', '0', '0', 3474, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20316, 'cmp_fish_r name', 'cmp_fish_r', 's', 1, 2, 1, '0', '0', '0', 3477, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20317, 'cmp_fish_s name', 'cmp_fish_s', 's', 1, 2, 1, '0', '0', '0', 3468, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20323, 'fball_trophy name', 'fball_trophy', 's', 1, 1, 1, '0', '0', '0', 3505, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(20324, 'fball_audbench name', 'fball_audbench', 's', 4, 1, 1, '0', '1', '0', 3500, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20325, 'fball_ball name', 'fball_ball', 's', 1, 1, 0, '0', '0', '1', 3508, '1', '1', '1', '1', '1', 'ball', 2, '0'),
(20326, 'fball_ball2 name', 'fball_ball2', 's', 1, 1, 0, '0', '0', '1', 3510, '1', '1', '1', '1', '1', 'ball', 2, '0'),
(20327, 'fball_ball3 name', 'fball_ball3', 's', 1, 1, 0, '0', '0', '1', 3497, '1', '1', '1', '1', '1', 'ball', 2, '0'),
(20328, 'fball_ball4 name', 'fball_ball4', 's', 1, 1, 0, '0', '0', '1', 3521, '1', '1', '1', '1', '1', 'ball', 2, '0'),
(20329, 'fball_ball5 name', 'fball_ball5', 's', 1, 1, 0, '0', '0', '1', 3518, '1', '1', '1', '1', '1', 'ball', 2, '0'),
(20330, 'fball_bench name', 'fball_bench', 's', 3, 1, 1, '0', '1', '0', 3494, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20331, 'fball_cote name', 'fball_cote', 's', 3, 1, 0, '0', '0', '0', 3507, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20332, 'fball_crnr name', 'fball_crnr', 's', 1, 1, 1, '0', '0', '0', 3503, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20333, 'fball_fnc1 name', 'fball_fnc1', 's', 1, 1, 1, '0', '0', '0', 3501, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20334, 'fball_fnc3 name', 'fball_fnc3', 's', 1, 3, 1, '0', '0', '0', 3495, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20335, 'fball_goal_b name', 'fball_goal_b', 's', 3, 1, 0, '1', '0', '1', 3515, '1', '1', '1', '1', '1', '', 1, '0'),
(20336, 'fball_goal_g', 'fball_goal_g', 's', 3, 1, 0, '1', '0', '1', 3519, '1', '1', '1', '1', '1', '', 1, '0'),
(20337, 'fball_goal_r name', 'fball_goal_r', 's', 3, 1, 0, '1', '0', '1', 3514, '1', '1', '1', '1', '1', '', 1, '0'),
(20338, 'fball_goal_y name', 'fball_goal_y', 's', 3, 1, 0, '1', '0', '1', 3523, '1', '1', '1', '1', '1', '', 1, '0'),
(20339, 'fball_light name', 'fball_light', 's', 1, 1, 1, '0', '0', '0', 3499, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20340, 'fball_gate name', 'fball_gate', 's', 1, 1, 0, '0', '0', '1', 3516, '1', '1', '1', '1', '1', '', 1, '0'),
(20341, 'fball_counter name', 'fball_counter', 's', 2, 1, 1, '0', '0', '0', 3525, '1', '1', '1', '1', '1', '', 2, '0'),
(20342, 'fball_ptch0', 'fball_ptch0', 's', 3, 3, 0, '1', '0', '0', 3520, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20343, 'fball_ptch1', 'fball_ptch1', 's', 3, 3, 0, '1', '0', '0', 3524, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20344, 'fball_ptch2 name', 'fball_ptch2', 's', 3, 3, 0, '1', '0', '0', 3511, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20345, 'fball_ptch3 name', 'fball_ptch3', 's', 3, 3, 0, '1', '0', '0', 3513, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20346, 'fball_ptch4 name', 'fball_ptch4', 's', 3, 3, 0, '1', '0', '0', 3504, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20347, 'fball_ptch5 name', 'fball_ptch5', 's', 3, 3, 0, '1', '0', '0', 3498, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20348, 'fball_ptch6 name', 'fball_ptch6', 's', 3, 3, 0, '1', '0', '0', 3517, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20349, 'fball_ptch7 name', 'fball_ptch7', 's', 3, 3, 0, '1', '0', '0', 3509, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20350, 'fball_ptch8 name', 'fball_ptch8', 's', 3, 3, 0, '1', '0', '0', 3502, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20351, 'fball_score_b', 'fball_score_b', 's', 1, 1, 1, '0', '0', '0', 3496, '1', '1', '1', '1', '1', '', 1, '0'),
(20352, 'fball_score_g', 'fball_score_g', 's', 1, 1, 1, '0', '0', '0', 3512, '1', '1', '1', '1', '1', '', 1, '0'),
(20353, 'fball_score_r', 'fball_score_r', 's', 1, 1, 1, '0', '0', '0', 3522, '1', '1', '1', '1', '1', '', 1, '0'),
(20354, 'fball_score_y', 'fball_score_y', 's', 1, 1, 1, '0', '0', '0', 3506, '1', '1', '1', '1', '1', '', 1, '0'),
(20392, 'Cereal', 'ads_chocapic', 's', 2, 1, 1, '0', '0', '0', 3486, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20393, 'TV Chocapic', 'ads_tv_chocapic_01', 'i', 0, 0, 0, '0', '0', '0', 4335, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20394, 'Poster Super Pop', 'ads_super_pop', 'i', 0, 0, 0, '0', '0', '0', 4333, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20395, 'Caja Fiesta', 'party_crate1_1', 's', 0, 1, 1, '0', '0', '0', 3487, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20396, 'Caja Fiesta', 'party_crate1_2', 's', 0, 1, 1, '0', '0', '0', 3489, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20397, 'Caja Fiesta', 'party_crate1_3', 's', 0, 1, 1, '0', '0', '0', 3481, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20398, 'Caja Fiesta', 'party_crate1_4', 's', 0, 1, 1, '0', '0', '0', 3485, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20399, 'Caja Fiesta', 'party_crate2_1', 's', 0, 1, 1, '0', '0', '0', 3480, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20400, 'Caja Fiesta', 'party_crate2_2', 's', 0, 1, 1, '0', '0', '0', 3490, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20401, 'Caja Fiesta', 'party_crate2_3', 's', 0, 1, 1, '0', '0', '0', 3491, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20402, 'Caja Fiesta', 'party_crate2_4', 's', 0, 1, 1, '0', '0', '0', 3492, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20403, 'Stereo Fiesta', 'party_djset', 's', 1, 3, 3, '0', '0', '0', 3484, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20404, 'Efecto Lido', 'avatar_effect29', 'e', 1, 1, 1, '0', '0', '0', 29, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20415, 'Vikingo', 'avatar_effect27', 'e', 1, 1, 1, '0', '0', '0', 27, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20425, 'Silla CapriSun', 'ads_capri_chair', 's', 0, 1, 1, '0', '1', '0', 3535, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20426, 'Tubo De Lava Capri', 'ads_capri_lava', 's', 0, 1, 1, '0', '0', '0', 3536, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20427, 'Arbolito Sun', 'ads_capri_tree', 's', 2, 1, 1, '0', '0', '0', 3546, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20428, 'Pac-Sun', 'ads_capri_arcade', 's', 2, 1, 1, '0', '0', '0', 3553, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20450, 'Trofeo Pulgar', 'prizetrophy_thumb', 's', 1, 1, 1, '0', '0', '0', 3410, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(20600, 'Spiders', 'a0 pet8', 's', 1, 1, 1, '1', '0', '0', 3817, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20601, 'Frogs', 'a0 pet11', 's', 1, 1, 1, '1', '0', '0', 1532, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20602, 'Chicks', 'a0 pet10', 's', 1, 1, 1, '1', '0', '0', 1532, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20917, 'cmp_fish_s name', 'cmp_fish_s', 's', 1, 2, 1, '0', '0', '0', 3468, '1', '1', '1', '1', '1', 'default', 2, '0'),
(21001, 'Bast??n de mando', 'avatar_effect26', 'e', 1, 1, 1, '0', '0', '0', 26, '0', '0', '1', '0', '0', 'default', 1, '0'),
(21002, 'Llamaradas', 'avatar_effect25', 'e', 1, 1, 1, '0', '0', '0', 25, '0', '0', '1', '0', '0', 'default', 1, '0'),
(21003, 'Bajo Lluvia', 'avatar_effect24', 'e', 1, 1, 1, '0', '0', '0', 24, '0', '0', '1', '0', '0', 'default', 1, '0'),
(21004, 'Levitaci??n', 'avatar_effect23', 'e', 1, 1, 1, '0', '0', '0', 23, '0', '0', '1', '0', '0', 'default', 1, '0'),
(21213, 'cmp_fish_bk name', 'cmp_fish_bk', 's', 1, 2, 1, '0', '0', '0', 3469, '1', '1', '1', '1', '1', 'default', 2, '0'),
(21214, 'cmp_fish_g name', 'cmp_fish_g', 's', 1, 2, 1, '0', '0', '0', 3475, '1', '1', '1', '1', '1', 'default', 2, '0'),
(21215, 'cmp_fish_gr name', 'cmp_fish_gr', 's', 1, 2, 1, '0', '0', '0', 3474, '1', '1', '1', '1', '1', 'default', 2, '0'),
(21216, 'cmp_fish_r name', 'cmp_fish_r', 's', 1, 2, 1, '0', '0', '0', 3477, '1', '1', '1', '1', '1', 'default', 2, '0'),
(21217, 'cmp_fish_s name', 'cmp_fish_s', 's', 1, 2, 1, '0', '0', '0', 3468, '1', '1', '1', '1', '1', 'default', 2, '0'),
(21298, 'cmp_fish_b name', 'cmp_fish_b', 's', 1, 2, 1, '0', '0', '0', 3472, '1', '1', '1', '1', '1', 'default', 2, '0'),
(25354, 'bw_boat', 'bw_boat', 's', 2, 2, 1, '1', '1', '0', 3527, '1', '1', '1', '1', '1', 'default', 2, '0'),
(25355, 'bw_lgchair', 'bw_lgchair', 's', 1, 1, 3, '0', '1', '0', 3529, '1', '1', '1', '1', '1', 'default', 1, '0'),
(25357, 'bw_sofa', 'bw_sofa', 's', 2, 1, 1, '1', '1', '0', 3533, '1', '1', '1', '1', '1', 'default', 4, '0'),
(25359, 'bw_fin', 'bw_fin', 's', 1, 1, 1, '1', '0', '0', 3538, '1', '1', '1', '1', '1', 'default', 2, '0'),
(25360, 'bw_ccnuts', 'bw_ccnuts', 's', 1, 1, 1, '0', '0', '0', 3539, '1', '1', '1', '1', '1', 'default', 1, '0'),
(25361, 'bw_shower', 'bw_shower', 's', 1, 1, 2, '1', '0', '0', 3540, '1', '1', '1', '1', '1', 'default', 2, '0'),
(25362, 'bw_water_2', 'bw_water_2', 's', 2, 2, 0.1, '1', '0', '1', 3541, '1', '1', '1', '1', '1', '', 1, '0'),
(25363, 'bw_croc', 'bw_croc', 's', 1, 3, 1, '1', '1', '0', 3542, '1', '1', '1', '1', '1', 'default', 2, '0'),
(25364, 'bw_sboard', 'bw_sboard', 's', 2, 1, 0, '0', '0', '0', 3543, '1', '1', '1', '1', '1', 'default', 1, '0'),
(25365, 'bw_chair', 'bw_chair', 's', 1, 1, 0.8, '1', '1', '0', 3544, '1', '1', '1', '1', '1', 'default', 4, '0'),
(25366, 'bw_table', 'bw_table', 's', 2, 2, 1, '1', '0', '0', 3545, '1', '1', '1', '1', '1', 'default', 2, '0'),
(25367, 'bw_ball', 'bw_ball', 's', 1, 1, 1, '0', '0', '1', 3547, '1', '1', '1', '1', '1', 'ball', 2, '0'),
(25368, 'bw_mttrss', 'bw_mttrss', 's', 1, 3, 0.8, '1', '1', '0', 3548, '1', '1', '1', '1', '1', 'default', 2, '0'),
(25369, 'bw_van', 'bw_van', 's', 2, 2, 1, '0', '1', '0', 3549, '1', '1', '1', '1', '1', 'default', 1, '0'),
(25371, 'bw_fnc_crnr', 'bw_fnc crnr', 's', 1, 2, 1, '1', '0', '0', 3551, '1', '1', '1', '1', '1', 'default', 2, '0'),
(25372, 'bw_fnc', 'bw_fnc', 's', 2, 1, 1, '1', '0', '0', 3552, '1', '1', '1', '1', '1', 'default', 2, '0'),
(29281, 'wf_act_move_rotate', 'wf_act_move_rotate', 's', 1, 1, 0.5, '1', '0', '0', 3663, '1', '1', '1', '1', '1', '', 1, '0'),
(29282, 'wf_wire2', 'wf_wire2', 's', 1, 1, 0, '0', '0', '0', 3664, '1', '1', '1', '1', '1', 'default', 1, '0'),
(29283, 'wf_cnd_time_more_than', 'wf_cnd_time_more_than', 's', 1, 1, 0.5, '1', '0', '0', 3665, '1', '1', '1', '1', '1', '', 1, '0'),
(29284, 'wf_colortile', 'wf_colortile', 's', 1, 1, 0.1, '0', '0', '1', 3666, '1', '1', '1', '1', '1', '', 1, '0'),
(29285, 'wf_floor_switch2', 'wf_floor_switch2', 's', 1, 1, 1, '0', '0', '0', 3667, '1', '1', '1', '1', '1', 'default', 4, '0'),
(29286, 'wf_trg_state_changed', 'wf_trg_state_changed', 's', 1, 1, 0.5, '1', '0', '0', 3668, '1', '1', '1', '1', '1', '', 1, '0'),
(29287, 'wf_xtra_random', 'wf_xtra_random', 's', 1, 1, 0.5, '1', '0', '0', 3669, '1', '1', '1', '1', '1', '', 1, '0'),
(29288, 'wf_xtra_unseen', 'wf_xtra_unseen', 's', 1, 1, 0.5, '1', '0', '0', 3670, '1', '1', '1', '1', '1', '', 1, '0'),
(29289, 'wf_trg_periodically', 'wf_trg_periodically', 's', 1, 1, 0.5, '1', '0', '0', 3671, '1', '1', '1', '1', '1', '', 1, '0'),
(29290, 'wf_pyramid', 'wf_pyramid', 's', 1, 1, 0.1, '0', '0', '0', 3672, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(29291, 'wf_trg_score_achieved', 'wf_trg_score_achieved', 's', 1, 1, 0.5, '1', '0', '0', 3673, '1', '1', '1', '1', '1', '', 1, '0'),
(29292, 'wf_act_teleport_to', 'wf_act_teleport_to', 's', 1, 1, 0.5, '1', '0', '0', 3674, '1', '1', '1', '1', '1', '', 1, '0'),
(29293, 'wf_trg_says_something', 'wf_trg_says_something', 's', 1, 1, 0.5, '1', '0', '0', 3675, '1', '1', '1', '1', '1', '', 1, '0'),
(29294, 'wf_colorwheel', 'wf_colorwheel', 's', 1, 1, 1, '0', '0', '0', 3676, '1', '1', '1', '1', '1', 'dice', 1, '0'),
(29295, 'wf_wire4', 'wf_wire4', 's', 1, 1, 0, '0', '0', '0', 3677, '1', '1', '1', '1', '1', 'default', 1, '0'),
(29296, 'wf_trg_walks_off_furni', 'wf_trg_walks_off_furni', 's', 1, 1, 0.5, '1', '0', '0', 3678, '1', '1', '1', '1', '1', '', 1, '0'),
(29297, 'wf_trg_at_given_time', 'wf_trg_at_given_time', 's', 1, 1, 0.5, '1', '0', '0', 3679, '1', '1', '1', '1', '1', '', 1, '0'),
(29298, 'wf_trg_game_ends', 'wf_trg_game_ends', 's', 1, 1, 0.5, '1', '0', '0', 3680, '1', '1', '1', '1', '1', '', 1, '0'),
(29299, 'wf_act_show_message', 'wf_act_show_message', 's', 1, 1, 0.5, '1', '0', '0', 3681, '1', '1', '1', '1', '1', '', 1, '0'),
(29300, 'wf_cnd_time_less_than', 'wf_cnd_time_less_than', 's', 1, 1, 0.5, '1', '0', '0', 3682, '1', '1', '1', '1', '1', '', 1, '0'),
(29301, 'wf_trg_enter_room', 'wf_trg_enter_room', 's', 1, 1, 0.5, '1', '0', '0', 3683, '1', '1', '1', '1', '1', '', 1, '0'),
(29303, 'wf_act_toggle_state', 'wf_act_toggle_state', 's', 1, 1, 0.5, '1', '0', '0', 3685, '1', '1', '1', '1', '1', '', 1, '0'),
(29304, 'wf_firegate', 'wf_firegate', 's', 1, 1, 0.1, '0', '0', '0', 3686, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(29305, 'wf_ringplate', 'wf_ringplate', 's', 1, 1, 0.1, '0', '0', '1', 3687, '1', '1', '1', '1', '1', '', 1, '0'),
(29306, 'wf_pressureplate', 'wf_pressureplate', 's', 1, 1, 0.1, '0', '0', '1', 3688, '1', '1', '1', '1', '1', '', 1, '0'),
(29307, 'wf_glowball', 'wf_glowball', 's', 1, 1, 1, '0', '0', '0', 3689, '1', '1', '1', '1', '1', 'default', 2, '0'),
(29309, 'wf_act_reset_timers', 'wf_act_reset_timers', 's', 1, 1, 0.5, '1', '0', '0', 3691, '1', '1', '1', '1', '1', '', 1, '0'),
(29310, 'wf_cnd_furnis_hv_avtrs', 'wf_cnd_furnis_hv_avtrs', 's', 1, 1, 0.5, '1', '0', '0', 3692, '1', '1', '1', '1', '1', '', 1, '0'),
(29311, 'wf_arrowplate', 'wf_arrowplate', 's', 1, 1, 0.1, '0', '0', '1', 3693, '1', '1', '1', '1', '1', '', 1, '0'),
(29312, 'wf_cnd_trggrer_on_frn', 'wf_cnd_trggrer_on_frn', 's', 1, 1, 0.5, '1', '0', '0', 3694, '1', '1', '1', '1', '1', '', 1, '0'),
(29313, 'wf_cnd_match_snapshot', 'wf_cnd_match_snapshot', 's', 1, 1, 0.5, '1', '0', '0', 3695, '1', '1', '1', '1', '1', '', 1, '0'),
(29314, 'wf_wire1', 'wf_wire1', 's', 1, 1, 0, '0', '0', '0', 3696, '1', '1', '1', '1', '1', 'default', 1, '0'),
(29315, 'wf_act_give_score', 'wf_act_give_score', 's', 1, 1, 0.5, '1', '0', '0', 3697, '1', '1', '1', '1', '1', '', 1, '0'),
(29316, 'wf_wire3', 'wf_wire3', 's', 1, 1, 0, '0', '0', '0', 3698, '1', '1', '1', '1', '1', 'default', 1, '0'),
(29317, 'wf_glassdoor', 'wf_glassdoor', 's', 1, 1, 0.1, '0', '0', '0', 3699, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(29318, 'wf_act_match_to_sshot', 'wf_act_match_to_sshot', 's', 1, 1, 0.5, '1', '0', '0', 3700, '1', '1', '1', '1', '1', '', 1, '0'),
(29319, 'wf_floor_switch1', 'wf_floor_switch1', 's', 1, 1, 1, '0', '0', '0', 3701, '1', '1', '1', '1', '1', 'default', 2, '0'),
(29320, 'wf_trg_game_starts', 'wf_trg_game_starts', 's', 1, 1, 0.5, '1', '0', '0', 3702, '1', '1', '1', '1', '1', '', 1, '0'),
(29321, 'wf_trg_walks_on_furni', 'wf_trg_walks_on_furni', 's', 1, 1, 0.5, '1', '0', '0', 3703, '1', '1', '1', '1', '1', '', 1, '0'),
(30150, 'ads_sunnyvend', 'ads_sunnyvend', 's', 1, 1, 2, '1', '0', '0', 3815, '1', '1', '1', '1', '1', 'vendingmachine', 2, '61'),
(30151, 'ads_leaf_teleport', 'ads_leaf_teleport', 's', 1, 1, 0.001, '0', '0', '0', 3814, '1', '1', '1', '1', '1', 'teleport', 1, '0'),
(30250, 'limo_w_back', 'limo_w_back', 's', 2, 1, 1, '0', '1', '0', 3822, '1', '1', '1', '1', '1', 'default', 2, '0'),
(30251, 'limo_w_front', 'limo_w_front', 's', 2, 1, 1, '0', '0', '0', 3823, '1', '1', '1', '1', '1', 'default', 2, '0'),
(30252, 'limo_w_mid', 'limo_w_mid', 's', 1, 2, 1, '0', '1', '0', 3819, '1', '1', '1', '1', '1', 'default', 2, '0'),
(30253, 'limo_w_mid2', 'limo_w_mid2', 's', 2, 1, 0.4, '0', '', '0', 3820, '1', '1', '1', '1', '1', 'default', 2, '0'),
(39911, 'prison_dvdr2', 'prison_dvdr2', 's', 2, 1, 3.5, '1', '0', '0', 3532, '1', '1', '1', '1', '1', 'default', 4, '0'),
(39912, 'prison_gate', 'prison_gate', 's', 1, 1, 0.1, '0', '0', '0', 3526, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(39913, 'prison_dvdr1', 'prison_dvdr1', 's', 1, 1, 3.5, '1', '0', '0', 3534, '1', '1', '1', '1', '1', 'default', 1, '0'),
(39914, 'prison_stone', 'prison_stone', 's', 1, 1, 1, '0', '0', '0', 3537, '1', '1', '1', '1', '1', 'default', 1, '0'),
(39915, 'prison_tower', 'prison_tower', 's', 1, 1, 3, '1', '0', '1', 3531, '1', '1', '1', '1', '1', 'default', 2, '0'),
(39916, 'prison_crnr', 'prison_crnr', 's', 1, 1, 3.5, '1', '0', '0', 3528, '1', '1', '1', '1', '1', 'default', 1, '0'),
(39917, 'hc3_stereo', 'hc3_stereo', 's', 3, 1, 1, '1', '0', '0', 3470, '1', '1', '1', '1', '1', 'default', 1, '0'),
(39918, 'Jarr?n VIP', 'hc3_vase', 's', 0, 1, 1, '0', '0', '0', 3185, '1', '1', '1', '1', '1', 'default', 1, '0'),
(40000, 'limo_b_front', 'limo_b_front', 's', 2, 1, 1, '0', '0', '0', 3837, '1', '1', '1', '1', '1', 'default', 2, '0'),
(40001, 'limo_b_mid', 'limo_b_mid', 's', 2, 1, 1, '0', '1', '0', 3838, '1', '1', '1', '1', '1', 'default', 2, '0'),
(40002, 'limo_b_mid2', 'limo_b_mid2', 's', 2, 1, 0.4, '0', '0', '1', 3836, '1', '1', '1', '1', '1', 'default', 2, '0'),
(40003, 'limo_b_mid3', 'limo_b_mid3', 's', 2, 1, 1, '0', '0', '0', 3835, '1', '1', '1', '1', '1', 'vendingmachine', 1, '24'),
(40004, 'limo_b_back', 'limo_b_back', 's', 2, 1, 1, '0', '1', '0', 3840, '1', '1', '1', '1', '1', 'default', 2, '0'),
(40005, 'cine_star', 'cine_star', 's', 1, 1, 1, '1', '0', '0', 3839, '1', '1', '1', '1', '1', 'default', 1, '0'),
(40006, 'prizetrophy_cine', 'prizetrophy_cine', 's', 1, 1, 1, '1', '0', '0', 3833, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(40007, 'cine_vipsing', 'cine_vipsing', 's', 3, 1, 1, '1', '0', '0', 3834, '1', '1', '1', '1', '1', 'default', 2, '0'),
(40008, 'cine_screen', 'cine_screen', 's', 1, 8, 1, '0', '0', '0', 3842, '1', '1', '1', '1', '1', 'default', 7, '0'),
(40009, 'cine_curtain', 'cine_curtain', 's', 1, 8, 0.01, '0', '0', '1', 3841, '1', '1', '1', '1', '1', 'default', 2, '0'),
(40010, 'theatre_seat_g', 'theatre_seat_g', 's', 1, 1, 1, '0', '1', '0', 3843, '1', '1', '1', '1', '1', 'default', 5, '0'),
(40011, 'theatre_seat_b', 'theatre_seat_b', 's', 1, 1, 1, '0', '1', '0', 3846, '1', '1', '1', '1', '1', 'default', 5, '0'),
(40012, 'wf_box', 'wf_box', 's', 1, 1, 1, '1', '0', '0', 3853, '1', '1', '1', '1', '1', '', 2, '0'),
(40013, 'cine_tile', 'cine_tile', 's', 1, 1, 0.01, '0', '0', '1', 3844, '1', '1', '1', '1', '1', 'default', 2, '0'),
(40014, 'cine_projector', 'cine_projector', 's', 1, 1, 1, '0', '0', '0', 3852, '1', '1', '1', '1', '1', 'default', 2, '0'),
(40015, 'cine_ticket_booth', 'cine_ticket_booth', 's', 0, 1, 0.01, '0', '0', '1', 3851, '1', '1', '1', '1', '1', 'default', 1, '0'),
(40016, 'cine_bench', 'cine_bench', 's', 3, 1, 1, '0', '1', '0', 3849, '1', '1', '1', '1', '1', 'default', 1, '0'),
(40017, 'cine_bench_g', 'cine_bench_g', 's', 3, 1, 1, '0', '1', '0', 3850, '1', '1', '1', '1', '1', 'default', 1, '0'),
(40018, 'cine_bench_b', 'cine_bench_b', 's', 3, 1, 1, '0', '1', '0', 3845, '1', '1', '1', '1', '1', 'default', 1, '0'),
(40019, 'cine_popcorn', 'cine_popcorn', 's', 1, 1, 2, '0', '0', '0', 3848, '1', '1', '1', '1', '1', 'vendingmachine', 1, '73'),
(40020, 'cine_roof', 'cine_roof', 's', 3, 3, 0.01, '0', '0', '1', 3847, '1', '1', '1', '1', '1', 'default', 5, '0'),
(40021, 'cine_light1', 'cine_light1', 'i', 1, 1, 1, '0', '0', '0', 4382, '1', '1', '1', '1', '1', 'default', 2, '0'),
(40022, 'cine_light2', 'cine_light2', 'i', 1, 1, 1, '0', '0', '0', 4383, '1', '1', '1', '1', '1', 'default', 2, '0'),
(59918, 'Vase vip', 'hc3_vase', 's', 1, 1, 1, '1', '0', '0', 3479, '1', '1', '1', '1', '1', 'default', 1, '0'),
(59919, 'Mandibula', 'bw_jaws', 'i', 0, 0, 0, '0', '0', '0', 3602, '1', '1', '1', '1', '1', 'default', 1, '0'),
(59939, 'Mandibula', 'bw_jaws', 'i', 0, 0, 0, '0', '0', '0', 3602, '1', '1', '1', '1', '1', 'default', 1, '0'),
(64245, 'fireworks_05', 'fireworks_05', 's', 1, 1, 1, '0', '0', '0', 7543, '1', '1', '1', '1', '1', 'default', 3, '0'),
(67546, 'fireworks_06', 'fireworks_06', 's', 1, 1, 1, '0', '0', '0', 7868, '1', '1', '1', '1', '1', 'default', 3, '0'),
(77701, 'bling11_block', 'bling11_block', 's', 1, 1, 2, '1', '0', '0', 3801, '1', '1', '1', '1', '1', 'default', 1, '0'),
(77702, 'bling11_dvd', 'bling11_dvd', 's', 1, 2, 1.6, '1', '0', '0', 3793, '1', '1', '1', '1', '1', 'default', 1, '0'),
(77703, 'bling11_dvn', 'bling11_dnv', 's', 1, 3, 1.2, '0', '0', '0', 3798, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(77704, 'bling11_floor', 'bling11_floor', 's', 1, 1, 0.1, '1', '0', '0', 3794, '1', '1', '1', '1', '1', 'default', 9, '0'),
(77705, 'bling11_pillar', 'bling11_pillar', 's', 1, 1, 3.3, '1', '0', '0', 3802, '1', '1', '1', '1', '1', 'default', 2, '0'),
(77706, 'bling11_plant', 'bling11_plant', 's', 1, 1, 1, '0', '0', '0', 3795, '1', '1', '1', '1', '1', 'default', 2, '0'),
(77707, 'bling11_rug1', 'bling11_rug1', 's', 2, 2, 0.1, '1', '0', '1', 3788, '1', '1', '1', '1', '1', 'default', 2, '0'),
(77708, 'bling11_rug2', 'bling11_rug2', 's', 3, 3, 0.2, '1', '0', '1', 3797, '1', '1', '1', '1', '1', 'default', 1, '0'),
(77709, 'bling11_seat1', 'bling11_seat1', 's', 1, 1, 1, '0', '1', '0', 3800, '1', '1', '1', '1', '1', 'default', 1, '0'),
(77710, 'bling11_seat2', 'bling11_seat2', 's', 1, 1, 1.2, '0', '1', '0', 3799, '1', '1', '1', '1', '1', 'default', 5, '0'),
(77711, 'bling11_slot', 'bling11_slot', 's', 1, 1, 1, '0', '0', '0', 3786, '1', '1', '1', '1', '1', 'default', 2, '0'),
(77712, 'bling11_sofa', 'bling11_sofa', 's', 3, 1, 0.4, '0', '1', '0', 3790, '1', '1', '1', '1', '1', 'default', 1, '0'),
(77713, 'bling11_statue1', 'bling11_statue1', 's', 1, 1, 1, '0', '0', '0', 3791, '1', '1', '1', '1', '1', 'default', 1, '0'),
(77714, 'bling11_statue2', 'bling11_statue2', 's', 2, 2, 1, '0', '0', '0', 3785, '1', '1', '1', '1', '1', 'default', 2, '0'),
(77715, 'bling11_tele', 'bling11_tele', 's', 1, 1, 0.1, '0', '0', '0', 3789, '1', '1', '1', '1', '1', 'teleport', 1, '0'),
(77716, 'bling11_towels', 'bling11_towels', 's', 1, 1, 1, '0', '0', '0', 3787, '1', '1', '1', '1', '1', 'default', 2, '0'),
(77717, 'val11_floor', 'val11_floor', 's', 2, 2, 0.1, '1', '0', '1', 3792, '1', '1', '1', '1', '1', '', 1, '0'),
(77801, 'china_rabbit', 'china_rabbit', 's', 1, 1, 1, '0', '0', '0', 3796, '1', '1', '1', '1', '1', 'default', 1, '0'),
(81000, 'waasa_rug1', 'waasa_rug1', 's', 1, 1, 1, '1', '0', '0', 3899, '1', '1', '1', '1', '1', 'default', 5, '0'),
(81001, 'waasa_rug3', 'waasa_rug3', 's', 1, 1, 1, '1', '0', '0', 3900, '1', '1', '1', '1', '1', 'default', 5, '0'),
(81002, 'waasa_rug2', 'waasa_rug2', 's', 1, 1, 1, '1', '0', '0', 3901, '1', '1', '1', '1', '1', 'default', 1, '0'),
(81003, 'waasa_rug4', 'waasa_rug4', 's', 1, 1, 1, '1', '0', '0', 3902, '1', '1', '1', '1', '1', 'default', 1, '0'),
(81004, 'waasa_rug5', 'waasa_rug5', 's', 1, 1, 1, '1', '0', '0', 3903, '1', '1', '1', '1', '1', 'default', 1, '0'),
(81005, 'waasa_aquarium', 'waasa_aquarium', 's', 2, 2, 1, '1', '0', '0', 3904, '1', '1', '1', '1', '1', 'default', 1, '0'),
(83545, 'Rhino', 'a0 pet7', 's', 1, 1, 1, '1', '0', '0', 5354, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(84586, 'Lion', 'a0 pet6', 's', 1, 1, 1, '1', '0', '0', 7457, '1', '1', '1', '1', '1', 'pet', 0, '0'),
(89907, 'Ventana Gótica', 'gothic_st_glass', 'i', 0, 0, 1, '0', '0', '0', 4380, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89908, 'Velas Góticas', 'gothic_candles', 's', 1, 1, 1, '0', '0', '0', 3825, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89909, 'Cama Gótica', 'gothic_bed', 's', 2, 3, 1.2, '0', '1', '0', 3824, '1', '1', '1', '1', '1', 'bed', 2, '0'),
(89910, 'Fuente Gótica', 'gothic_bowl', 's', 1, 1, 1, '0', '0', '0', 3828, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89911, 'Escritorio Gótico', 'gothic_desk', 's', 1, 2, 1, '0', '0', '0', 3826, '1', '1', '1', '1', '1', 'default', 5, '0'),
(89912, 'Trofeo Grefusa', 'ads_grefu_trophy', 's', 1, 1, 1, '0', '0', '0', 3827, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(89945, 'cubie_rug_b', 'cubie_rug_b', 's', 2, 3, 0.1, '1', '0', '1', 9369, '1', '1', '1', '1', '1', 'default', 3, '0'),
(89946, 'cubie_lamp_p', 'cubie_lamp_p', 's', 1, 1, 1, '1', '0', '0', 9370, '1', '1', '1', '1', '1', 'default', 4, '0'),
(89947, 'cubie_shelf_3_p', 'cubie_shelf_3_p', 's', 2, 1, 1, '1', '0', '0', 9371, '1', '1', '1', '1', '1', 'default', 9, '0'),
(89948, 'cubie_shelf_4_b', 'cubie_shelf_4_b', 's', 3, 1, 1, '1', '0', '0', 9372, '1', '1', '1', '1', '1', 'default', 6, '0'),
(89949, 'cubie_shelf_1_b', 'cubie_shelf_1_b', 's', 1, 1, 1, '1', '0', '0', 9373, '1', '1', '1', '1', '1', 'default', 14, '0'),
(89950, 'cubie_shelf_1_p', 'cubie_shelf_1_p', 's', 1, 1, 1, '1', '0', '0', 9374, '1', '1', '1', '1', '1', 'default', 14, '0'),
(89951, 'cubie_chair_p', 'cubie_chair_p', 's', 1, 1, 1.2, '1', '1', '0', 9375, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89952, 'cubie_shelf_4_p', 'cubie_shelf_4_p', 's', 3, 1, 1, '1', '0', '0', 9376, '1', '1', '1', '1', '1', 'default', 6, '0'),
(89953, 'cubie_bigtable_p', 'cubie_bigtable_p', 's', 2, 2, 0.5, '1', '0', '1', 9377, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89954, 'cubie_shelf_0_p', 'cubie_shelf_0_p', 's', 1, 1, 0.5, '1', '0', '0', 9378, '1', '1', '1', '1', '1', 'default', 3, '0'),
(89955, 'cubie_beanbag_b', 'cubie_beanbag_b', 's', 1, 1, 1, '1', '1', '0', 9379, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89956, 'cubie_chair_b', 'cubie_chair_b', 's', 1, 1, 1.2, '1', '1', '0', 9380, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89957, 'cubie_bed_b', 'cubie_bed_b', 's', 1, 3, 1.8, '1', '0', '0', 9381, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(89958, 'cubie_bigtable_b', 'cubie_bigtable_b', 's', 2, 2, 0.5, '1', '0', '1', 9382, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89959, 'cubie_stool_b', 'cubie_stool_b', 's', 1, 1, 1.2, '1', '1', '0', 9383, '1', '1', '1', '1', '1', 'default', 3, '0'),
(89960, 'cubie_beanbag_p', 'cubie_beanbag_p', 's', 1, 1, 1, '1', '1', '0', 9384, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89961, 'cubie_shelf_0_b', 'cubie_shelf_0_b', 's', 1, 1, 0.5, '1', '0', '0', 9385, '1', '1', '1', '1', '1', 'default', 3, '0'),
(89962, 'cubie_shelf_2_p', 'cubie_shelf_2_p', 's', 2, 1, 1, '1', '0', '0', 9386, '1', '1', '1', '1', '1', 'default', 17, '0'),
(89963, 'cubie_rug_p', 'cubie_rug_p', 's', 2, 3, 0.1, '1', '0', '1', 9387, '1', '1', '1', '1', '1', 'default', 3, '0'),
(89964, 'cubie_sofaseat_b', 'cubie_sofaseat_b', 's', 1, 1, 1, '1', '1', '0', 9388, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89965, 'cubie_table', 'cubie_table', 's', 1, 2, 1, '1', '0', '0', 9389, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89966, 'cubie_sofaseat_p', 'cubie_sofaseat_p', 's', 1, 1, 1, '1', '1', '0', 9390, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89967, 'cubie_bed_p', 'cubie_bed_p', 's', 1, 3, 1.8, '1', '0', '0', 9391, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(89968, 'cubie_shelf_3_b', 'cubie_shelf_3_b', 's', 2, 1, 1, '1', '0', '0', 9392, '1', '1', '1', '1', '1', 'default', 9, '0'),
(89969, 'cubie_shelf_2_b', 'cubie_shelf_2_b', 's', 2, 1, 1, '1', '0', '0', 9393, '1', '1', '1', '1', '1', 'default', 14, '0'),
(89970, 'cubie_lamp_b', 'cubie_lamp_b', 's', 1, 1, 1, '1', '0', '0', 9394, '1', '1', '1', '1', '1', 'default', 4, '0'),
(89971, 'cubie_stool_p', 'cubie_stool_p', 's', 1, 1, 1.2, '1', '1', '0', 9395, '1', '1', '1', '1', '1', 'default', 3, '0'),
(89972, 'cubie_wallshelf_b', 'cubie_wallshelf_b', 'i', 1, 1, 1, '1', '0', '0', 43831, '1', '1', '1', '1', '1', 'default', 7, '0'),
(89973, 'cubie_decklight_p', 'cubie_decklight_p', 'i', 1, 1, 1, '1', '0', '0', 4384, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89974, 'cubie_wallshelf_p', 'cubie_wallshelf_p', 'i', 1, 1, 1, '1', '0', '0', 4385, '1', '1', '1', '1', '1', 'default', 7, '0'),
(89975, 'cubie_decal_0', 'cubie_decal_0', 'i', 1, 1, 1, '1', '0', '0', 4386, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89976, 'cubie_decal_3', 'cubie_decal_3', 'i', 1, 1, 1, '1', '0', '0', 4387, '1', '1', '1', '1', '1', 'default', 3, '0'),
(89977, 'cubie_decal_1_p', 'cubie_decal_1_p', 'i', 1, 1, 1, '1', '0', '0', 4388, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89978, 'cubie_decklight_b', 'cubie_decklight_b', 'i', 1, 1, 1, '1', '0', '0', 4389, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89979, 'cubie_decal_1_b', 'cubie_decal_1_b', 'i', 1, 1, 1, '1', '0', '0', 4390, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89980, 'cubie_decal_2_b', 'cubie_decal_2_b', 'i', 1, 1, 1, '1', '0', '0', 4391, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89981, 'cubie_decal_3_p', 'cubie_decal_3_p', 'i', 1, 1, 1, '1', '0', '0', 4392, '1', '1', '1', '1', '1', 'default', 3, '0'),
(89982, 'cubie_decal_2_p', 'cubie_decal_2_p', 'i', 1, 1, 1, '1', '0', '0', 4393, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89983, 'cubie_decal_3_b', 'cubie_decal_3_b', 'i', 1, 1, 1, '1', '0', '0', 4394, '1', '1', '1', '1', '1', 'default', 3, '0'),
(89984, 'newbie_present', 'newbie_present', 's', 1, 1, 1, '1', '0', '0', 3885, '1', '1', '1', '1', '1', 'default', 5, '0'),
(89985, 'tv_flat', 'tv_flat', 's', 2, 1, 1, '0', '0', '0', 3886, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89986, 'waasa_table2', 'waasa_table2', 's', 2, 1, 1, '1', '0', '0', 3887, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89987, 'computer_flatscreen', 'computer_flatscreen', 's', 1, 1, 1, '0', '0', '0', 3888, '1', '1', '1', '1', '1', 'default', 3, '0'),
(89988, 'waasa_chair', 'waasa_chair', 's', 1, 1, 1.2, '0', '1', '0', 3889, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89989, 'waasa_ship2', 'waasa_ship2', 's', 2, 1, 1, '0', '0', '0', 3890, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89990, 'waasa_ship1', 'waasa_ship1', 's', 1, 1, 1, '0', '0', '0', 3891, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89991, 'waasa_bunk_bed', 'waasa_bunk_bed', 's', 3, 1, 1, '1', '0', '0', 3892, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89992, 'computer_laptop', 'computer_laptop', 's', 1, 1, 1, '0', '0', '0', 3893, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89993, 'computer_old', 'computer_old', 's', 1, 1, 1, '0', '0', '0', 3894, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89994, 'waasa_table1', 'waasa_table1', 's', 1, 1, 1, '1', '0', '0', 3895, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89995, 'waasa_desk', 'waasa_desk', 's', 2, 1, 1, '1', '0', '0', 3896, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89996, 'waasa_wall_shelf2', 'waasa_wall_shelf2', 'i', 1, 1, 1, '1', '0', '0', 4396, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89997, 'waasa_wall_shelf1', 'waasa_wall_shelf1', 'i', 1, 1, 1, '1', '0', '0', 4397, '1', '1', '1', '1', '1', 'default', 2, '0'),
(89998, 'waasa_chair_wood', 'waasa_chair_wood', 's', 1, 1, 1.2, '0', '1', '0', 3903, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90002, 'easter11_basket', 'easter11_basket', 's', 1, 1, 1, '1', '0', '0', 3908, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90003, 'easter11_grasspatch', 'easter11_grasspatch', 's', 2, 2, 0.001, '1', '0', '1', 3909, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90008, 'easter11_tag', 'easter11_tag', 's', 1, 1, 1, '0', '0', '0', 3914, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90010, 'ads_suun', 'ads_suun', 's', 1, 1, 1, '0', '0', '0', 3927, '1', '1', '1', '1', '1', 'vendingmachine', 5, '1'),
(90011, 'easter11_tuip_g', 'easter11_tuip_g', 's', 1, 1, 1, '0', '0', '0', 3915, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90012, 'easter11_tuip_y', 'easter11_tuip_y', 's', 1, 1, 1, '0', '0', '0', 3916, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90013, 'easter11_mushroom4', 'easter11_mushroom4', 's', 1, 1, 1, '0', '0', '0', 3917, '1', '1', '1', '1', '1', 'default', 3, '0'),
(90014, 'easter11_mushroom1', 'easter11_mushroom1', 's', 1, 1, 1, '0', '0', '0', 3918, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90015, 'kuurna_sofa', 'kuurna_sofa', 's', 2, 1, 1.3, '0', '1', '0', 3919, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90016, 'easter11_mushroom3', 'easter11_mushroom3', 's', 1, 1, 1, '0', '0', '0', 3920, '1', '1', '1', '1', '1', 'default', 3, '0'),
(90017, 'easter11_mushroom2', 'easter11_mushroom2', 's', 1, 1, 1, '0', '0', '0', 3921, '1', '1', '1', '1', '1', 'default', 3, '0'),
(90018, 'kuurna_lamp', 'kuurna_lamp', 's', 1, 1, 1, '0', '0', '0', 3922, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90019, 'kuurna_chair', 'kuurna_chair', 's', 1, 1, 1.3, '0', '1', '0', 3923, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90020, 'kuurna_mat', 'kuurna_mat', 's', 3, 2, 0.001, '1', '0', '1', 3924, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90021, 'kuurna_table1', 'kuurna_table1', 's', 1, 1, 1.3, '1', '0', '0', 3925, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90022, 'kuurna_table', 'kuurna_table', 's', 2, 2, 1.3, '1', '0', '0', 3926, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90023, 'kuurna_chair1', 'kuurna_chair1', 's', 1, 1, 1, '0', '1', '0', 3928, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90024, 'easter11_tuip_p', 'easter11_tuip_p', 's', 1, 1, 1, '0', '0', '0', 3929, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90025, 'easter11_wall', 'easter11_wall', 'i', 1, 1, 1, '0', '0', '0', 4398, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90026, 'ads_suunvuorow', 'ads_suunvuorow', 'i', 1, 1, 1, '0', '0', '0', 4399, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90027, 'ads_volkswagen_poster', 'ads_volkswagen_poster', 'i', 1, 1, 1, '0', '1', '0', 4417, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90028, 'anna_divider*1', 'anna_divider*1', 's', 1, 1, 1, '1', '0', '0', 3930, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90029, 'anna_divider*2', 'anna_divider*2', 's', 1, 1, 1, '1', '0', '0', 3931, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90030, 'anna_divider*3', 'anna_divider*3', 's', 1, 1, 1, '1', '0', '0', 3932, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90031, 'anna_divider*4', 'anna_divider*4', 's', 1, 1, 1, '1', '0', '0', 3933, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90032, 'anna_divider*5', 'anna_divider*5', 's', 1, 1, 1, '1', '0', '0', 3934, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90033, 'anna_div_gate*1', 'anna_div_gate*1', 's', 1, 1, 0.01, '0', '0', '0', 3935, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(90034, 'anna_div_gate*2', 'anna_div_gate*2', 's', 1, 1, 0.01, '0', '0', '0', 3936, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(90035, 'anna_div_gate*3', 'anna_div_gate*3', 's', 1, 1, 0.01, '0', '0', '0', 3937, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(90036, 'anna_div_gate*4', 'anna_div_gate*4', 's', 1, 1, 0.01, '0', '0', '0', 3938, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(90037, 'anna_div_gate*5', 'anna_div_gate*5', 's', 1, 1, 0.01, '0', '0', '0', 3939, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(90038, 'anna_chair*1', 'anna_chair*1', 's', 1, 1, 1.2, '0', '1', '0', 3940, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90039, 'anna_chair*2', 'anna_chair*2', 's', 1, 1, 1.2, '0', '1', '0', 3941, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90040, 'anna_chair*3', 'anna_chair*3', 's', 1, 1, 1.2, '0', '1', '0', 3942, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90041, 'anna_chair*4', 'anna_chair*4', 's', 1, 1, 1.2, '0', '1', '0', 3943, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90042, 'anna_chair*5', 'anna_chair*5', 's', 1, 1, 1.2, '0', '1', '0', 3944, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90043, 'anna_stool*1', 'anna_stool*1', 's', 1, 1, 1.2, '0', '1', '0', 3945, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90044, 'anna_stool*2', 'anna_stool*2', 's', 1, 1, 1.2, '0', '1', '0', 3946, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90045, 'anna_stool*3', 'anna_stool*3', 's', 1, 1, 1.2, '0', '1', '0', 3947, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90046, 'anna_stool*4', 'anna_stool*4', 's', 1, 1, 1.2, '0', '1', '0', 3948, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90047, 'anna_stool*5', 'anna_stool*5', 's', 1, 1, 1.2, '0', '1', '0', 3949, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90048, 'anna_table*1', 'anna_table*1', 's', 2, 2, 1, '1', '0', '0', 3950, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90049, 'anna_table*2', 'anna_table*2', 's', 2, 2, 1, '1', '0', '0', 3951, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90050, 'anna_table*3', 'anna_table*3', 's', 2, 2, 1, '1', '0', '0', 3952, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90051, 'anna_table*4', 'anna_table*4', 's', 2, 2, 1, '1', '0', '0', 3953, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90052, 'anna_table*5', 'anna_table*5', 's', 2, 2, 1, '1', '0', '0', 3954, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90053, 'anna_rug*1', 'anna_rug*1', 's', 2, 2, 0.01, '1', '0', '1', 3955, '1', '1', '1', '1', '1', 'default', 4, '0'),
(90054, 'anna_rug*2', 'anna_rug*2', 's', 2, 2, 0.01, '1', '0', '1', 3956, '1', '1', '1', '1', '1', 'default', 4, '0'),
(90055, 'anna_rug*3', 'anna_rug*3', 's', 2, 2, 0.01, '1', '0', '1', 3957, '1', '1', '1', '1', '1', 'default', 4, '0'),
(90056, 'anna_rug*4', 'anna_rug*4', 's', 2, 2, 0.01, '1', '0', '1', 3958, '1', '1', '1', '1', '1', 'default', 4, '0'),
(90057, 'anna_rug*5', 'anna_rug*5', 's', 2, 2, 0.01, '1', '0', '1', 3959, '1', '1', '1', '1', '1', 'default', 4, '0'),
(90058, 'anna_sofa*1', 'anna_sofa*1', 's', 2, 1, 1.2, '0', '1', '0', 3960, '1', '1', '1', '1', '1', 'default', 3, '0'),
(90059, 'anna_sofa*2', 'anna_sofa*2', 's', 2, 1, 1.2, '0', '1', '0', 3961, '1', '1', '1', '1', '1', 'default', 3, '0'),
(90060, 'anna_sofa*3', 'anna_sofa*3', 's', 2, 1, 1.2, '0', '1', '0', 3962, '1', '1', '1', '1', '1', 'default', 3, '0'),
(90061, 'anna_sofa*4', 'anna_sofa*4', 's', 2, 1, 1.2, '0', '1', '0', 3963, '1', '1', '1', '1', '1', 'default', 3, '0'),
(90062, 'anna_sofa*5', 'anna_sofa*5', 's', 2, 1, 1.2, '0', '1', '0', 3964, '1', '1', '1', '1', '1', 'default', 3, '0'),
(90063, 'anna_pill*1', 'anna_pill*1', 's', 1, 1, 0.5, '1', '0', '0', 3965, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90064, 'anna_pill*2', 'anna_pill*2', 's', 1, 1, 0.5, '1', '0', '0', 3966, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90065, 'anna_pill*3', 'anna_pill*3', 's', 1, 1, 0.5, '1', '0', '0', 3967, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90066, 'anna_pill*4', 'anna_pill*4', 's', 1, 1, 0.5, '1', '0', '0', 3968, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90067, 'anna_pill*5', 'anna_pill*5', 's', 1, 1, 0.5, '1', '0', '0', 3969, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90068, 'anna_lamp*1', 'anna_lamp*1', 's', 1, 1, 1, '0', '0', '0', 3970, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90069, 'anna_lamp*2', 'anna_lamp*2', 's', 1, 1, 1, '0', '0', '0', 3971, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90070, 'anna_lamp*3', 'anna_lamp*3', 's', 1, 1, 1, '0', '0', '0', 3972, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90071, 'anna_lamp*4', 'anna_lamp*4', 's', 1, 1, 1, '0', '0', '0', 3973, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90072, 'anna_lamp*5', 'anna_lamp*5', 's', 1, 1, 1, '0', '0', '0', 3974, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90073, 'anna_div_crnr*1', 'anna_div_crnr*1', 's', 1, 1, 1, '1', '0', '0', 3975, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90074, 'anna_div_crnr*2', 'anna_div_crnr*2', 's', 1, 1, 1, '1', '0', '0', 3976, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90075, 'anna_div_crnr*3', 'anna_div_crnr*3', 's', 1, 1, 1, '1', '0', '0', 3977, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90076, 'anna_div_crnr*4', 'anna_div_crnr*4', 's', 1, 1, 1, '1', '0', '0', 3978, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90077, 'anna_div_crnr*5', 'anna_div_crnr*5', 's', 1, 1, 1, '1', '0', '0', 3979, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90078, 'picnic_pillow_yel', 'picnic_pillow_yel', 's', 1, 1, 0.8, '0', '1', '0', 3981, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90079, 'picnic_food1', 'picnic_food1', 's', 1, 1, 1, '1', '0', '0', 3982, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90080, 'note_tag', 'note_tag', 's', 1, 1, 1, '0', '0', '0', 3983, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90081, 'picnic_wfall', 'picnic_wfall', 's', 2, 2, 1, '0', '0', '0', 3984, '1', '1', '1', '1', '1', 'default', 2, '0'),
(90082, 'picnic_blanket_blu', 'picnic_blanket_blu', 's', 3, 3, 0.01, '1', '0', '1', 3985, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90083, 'picnic_food3', 'picnic_food3', 's', 1, 1, 1, '0', '0', '0', 3986, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90084, 'picnic_blanket', 'picnic_blanket', 's', 3, 3, 0.01, '1', '0', '1', 3987, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90085, 'picnic_pillow_blu', 'picnic_pillow_blu', 's', 1, 1, 0.8, '0', '1', '0', 3988, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90086, 'picnic_food2', 'picnic_food2', 's', 1, 1, 1, '0', '0', '0', 3989, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90087, 'picnic_tele', 'picnic_tele', 's', 1, 1, 0.001, '0', '0', '0', 3990, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(90088, 'picnic_basket', 'picnic_basket', 's', 1, 1, 1, '0', '0', '0', 3991, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90089, 'picnic_pillow', 'picnic_pillow', 's', 1, 1, 0.8, '0', '1', '0', 3992, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90090, 'picnic_chair', 'picnic_chair', 's', 1, 1, 1, '0', '1', '0', 3993, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90091, 'picnic_3brds', 'picnic_3brds', 's', 1, 1, 1, '0', '0', '0', 3994, '1', '1', '1', '1', '1', 'default', 1, '0'),
(95371, 'Lava', 'Lava', 's', 0, 0, 0, '0', '0', '0', 3021, '1', '1', '1', '1', '1', 'default', 1, '0'),
(95374, 'ads_grefusa_surfb', 'ads_grefusa_surfb', 'i', 0, 0, 0, '0', '0', '0', 3600, '1', '1', '1', '1', '1', 'default', 1, '0'),
(95375, 'ads_pepsi0', 'ads_pepsi0', 's', 1, 1, 3, '0', '0', '0', 3554, '1', '1', '1', '1', '1', 'vendingmachine', 1, '55'),
(95376, 'bw_fnc_p', 'bw_fnc_p', 's', 2, 1, 1, '1', '0', '0', 3569, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95377, 'bw_fnc_crnr_g', 'bw_fnc_crnr_g', 's', 1, 2, 1, '1', '0', '0', 3563, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95378, 'bw_sofa_p', 'bw_sofa_p', 's', 2, 1, 1, '1', '1', '1', 3567, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95379, 'bw_boat_g', 'bw_boat_g', 's', 2, 2, 0.8, '1', '1', '0', 3568, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95380, 'bw_mttrss_g', 'bw_mttrss_g', 's', 1, 3, 0.8, '1', '0', '0', 3558, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95381, 'bw_pool_b2', 'bw_pool_b2', 's', 2, 1, 1, '1', '0', '0', 3565, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95382, 'bw_pool_a2', 'bw_pool_a2', 's', 2, 1, 1, '1', '0', '0', 3564, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95383, 'bw_pool_a3', 'bw_pool_a3', 's', 1, 1, 0, '1', '0', '0', 3556, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95384, 'bw_pool_a1', 'bw_pool_a1', 's', 1, 1, 1, '1', '1', '0', 3577, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95385, 'bw_pool_b1', 'bw_pool_b1', 's', 1, 1, 1, '1', '0', '0', 3560, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95386, 'bw_fnc_crnr_p', 'bw_fnc_crnr_p', 's', 1, 2, 1, '0', '0', '0', 3576, '1', '1', '1', '1', '1', 'default', 1, '0'),
(95387, 'bw_sboard_g', 'bw_sboard_g', 's', 2, 1, 0, '0', '0', '0', 3562, '1', '1', '1', '1', '1', 'default', 1, '0'),
(95388, 'bw_sboard_p', 'bw_sboard_p', 's', 2, 1, 0, '0', '0', '0', 3571, '1', '1', '1', '1', '1', 'default', 1, '0'),
(95389, 'bw_table_g', 'bw_table_g', 's', 2, 2, 1, '1', '0', '0', 3566, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95390, 'bw_table_p', 'bw_table_p', 's', 2, 1, 0, '1', '0', '0', 3578, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95391, 'bw_van_p', 'bw_van_p', 's', 2, 2, 1, '0', '1', '0', 3570, '1', '1', '1', '1', '1', 'default', 1, '0'),
(95392, 'bw_van_g', 'bw_van_g', 's', 2, 2, 1, '0', '1', '0', 3574, '1', '1', '1', '1', '1', 'default', 1, '0'),
(95393, 'bw_sofa_g', 'bw_sofa_g', 's', 2, 1, 1, '1', '1', '0', 3575, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95394, 'bw_sofa_p', 'bw_sofa_p', 's', 2, 1, 1, '1', '1', '0', 3561, '1', '1', '1', '1', '1', 'default', 2, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(95395, 'bw_fnc_g name', 'bw_fnc_g', 's', 2, 1, 1, '1', '0', '0', 3557, '1', '1', '1', '1', '1', 'default', 2, '0'),
(95397, 'bw_tele', 'bw_tele', 's', 1, 1, 3, '0', '0', '0', 3550, '1', '1', '1', '1', '1', 'teleport', 1, '0'),
(96398, 'Nobox Rojo', 'cmp_nobox', 's', 1, 1, 1, '0', '0', '0', 3476, '1', '1', '1', '1', '1', 'default', 2, '0'),
(96399, 'Nobox Azul', 'cmp_nobox_2', 's', 1, 1, 1, '0', '0', '0', 3471, '1', '1', '1', '1', '1', 'default', 2, '0'),
(96400, 'Nobox Amarillo', 'cmp_nobox_3', 's', 1, 1, 1, '0', '0', '0', 3473, '1', '1', '1', '1', '1', 'default', 2, '0'),
(96401, 'Submarino', 'cmp_sub', 's', 7, 1, 3, '0', '0', '0', 3478, '1', '1', '1', '1', '1', 'default', 2, '0'),
(96402, '', 'newitem', 's', 1, 1, 1, '1', '0', '0', 1, '1', '1', '1', '1', '1', 'default', 1, '0'),
(97111, 'Cheetos', 'Cheester Rules!', 'e', 1, 1, 1, '0', '0', '0', 31, '0', '0', '1', '0', '0', 'default', 1, '0'),
(97222, 'Battle Ball P??rpura', '??A saltar se ha dicho!', 'e', 1, 1, 1, '0', '0', '0', 33, '0', '0', '1', '0', '0', 'default', 1, '0'),
(97333, 'Battle Ball Az??l', '??A saltar se ha dicho!', 'e', 1, 1, 1, '0', '0', '0', 34, '0', '0', '1', '0', '0', 'default', 1, '0'),
(97419, 'ktchn10_block', 'ktchn10_block', 's', 1, 1, 1, '1', '0', '0', 3589, '1', '1', '1', '1', '1', 'default', 3, '0'),
(97420, 'ktchn10_cabnt', 'ktchn10_cabnt', 'i', 1, 1, 1, '1', '0', '0', 4338, '1', '1', '1', '1', '1', 'default', 1, '0'),
(97421, 'ktchn10_pot', 'ktchn10_pot', 's', 1, 1, 1, '1', '0', '0', 3580, '1', '1', '1', '1', '1', 'default', 2, '0'),
(97422, 'ktchn10_sink', 'ktchn10_sink', 's', 2, 1, 1, '1', '0', '0', 3612, '1', '1', '1', '1', '1', 'default', 3, '0'),
(97423, 'ktchn10_stove', 'ktchn10_stove', 's', 2, 1, 1.2, '1', '0', '0', 3581, '1', '1', '1', '1', '1', 'default', 2, '0'),
(97424, 'ktchn10_tea', 'ktchn10_tea', 's', 1, 1, 1, '1', '0', '0', 3592, '1', '1', '1', '1', '1', 'default', 2, '0'),
(97444, 'Battle Ball Verde', '??A saltar se ha dicho!', 'e', 1, 1, 1, '0', '0', '0', 35, '0', '0', '1', '0', '0', 'default', 1, '0'),
(97555, 'Battle Ball Amarilla', '??A saltar se ha dicho!', 'e', 1, 1, 1, '0', '0', '0', 36, '0', '0', '1', '0', '0', 'default', 1, '0'),
(98345, 'fireworks_01', 'fireworks_01', 's', 1, 1, 1, '0', '0', '0', 6965, '1', '1', '1', '1', '1', 'default', 3, '0'),
(99000, 'qt_xm10_nest', 'qt_xm10_nest', 's', 1, 1, 1, '0', '0', '0', 3742, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99001, 'qt_xm10_icedragon', 'qt_xm10_icedragon', 's', 1, 1, 1, '0', '0', '0', 3746, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99002, 'qt_xm10_stone', 'qt_xm10_stone', 's', 2, 1, 1, '0', '0', '0', 3747, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99003, 'qt_xm10_icetiger', 'qt_xm10_icetiger', 's', 1, 1, 1, '0', '0', '0', 3728, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99004, 'qt_xm10_trex', 'qt_xm10_trex', 's', 3, 7, 1, '0', '0', '0', 3722, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99005, 'qt_xm10_palm_tree', 'qt_xm10_palm_tree', 's', 1, 1, 3, '0', '0', '0', 3720, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99006, 'qt_xm10_bench', 'qt_xm10_bench', 's', 2, 1, 1, '0', '0', '0', 3750, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99007, 'qt_xm10_icelupin', 'qt_xm10_icelupin', 's', 1, 1, 1, '0', '0', '0', 3732, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99008, 'qt_xm10_xmduck', 'qt_xm10_xmduck', 's', 1, 1, 1, '0', '0', '0', 3719, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99009, 'qt_xm10_iceduck', 'qt_xm10_iceduck', 's', 1, 1, 1, '0', '0', '0', 3727, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99010, 'qt_xm10_bauble1', 'qt_xm10_bauble1', 'i', 1, 1, 1, '0', '0', '0', 4365, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99011, 'qt_xm10_bauble2', 'qt_xm10_bauble2', 'i', 1, 1, 1, '0', '0', '0', 4361, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99012, 'qt_xm10_bauble3', 'qt_xm10_bauble3', 'i', 1, 1, 1, '0', '0', '0', 4368, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99013, 'qt_xm10_iceplasto', 'qt_xm10_iceplasto', 's', 1, 1, 1, '0', '1', '0', 3730, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99014, 'qt_xm10_ice_fish', 'qt_xm10_ice_fish', 's', 1, 2, 3, '0', '0', '0', 3748, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99015, 'qt_xm10_gnome', 'qt_xm10_gnome', 's', 1, 2, 1, '0', '0', '0', 3726, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99016, 'qt_xm10_icesilotable', 'qt_xm10_icesilotable', 's', 1, 1, 1, '0', '0', '0', 3743, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99017, 'qt_xm10_iceteddy', 'qt_xm10_iceteddy', 's', 1, 1, 1, '0', '0', '0', 3734, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99018, 'qt_xm10_elephant', 'qt_xm10_elephant', 's', 1, 1, 1, '0', '0', '0', 3724, '1', '1', '1', '1', '1', 'vendingmachine', 2, '0'),
(99019, 'qt_xm10_iceclubsofa', 'qt_xm10_iceclubsofa', 's', 2, 1, 1, '0', '1', '0', 3718, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99020, 'es_skating_ice', 'es_skating_ice', 's', 2, 2, 0.01, '1', '0', '1', 3736, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99021, 'es_sidewalk', 'es_sidewalk', 's', 2, 2, 0.2, '0', '0', '1', 3716, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99022, 'es_wpost', 'es_wpost', 's', 1, 1, 1, '0', '0', '0', 3725, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99023, 'es_tagging', 'es_tagging', 's', 1, 1, 3, '0', '0', '0', 3741, '1', '1', '1', '1', '1', '', 2, '0'),
(99024, 'es_santa', 'es_santa', 's', 1, 1, 1, '0', '0', '0', 3740, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99025, 'es_window', 'es_window', 'i', 1, 1, 1, '0', '0', '0', 4367, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99026, 'es_bench', 'es_bench', 's', 2, 1, 1, '0', '1', '0', 3712, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99027, 'es_fnc_1', 'es_fnc_1', 's', 1, 1, 1, '0', '0', '0', 3729, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99028, 'es_fnc_2', 'es_fnc_2', 's', 1, 1, 1, '0', '0', '0', 3714, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99029, 'es_fnc_crnr', 'es_fnc_crnr', 's', 1, 1, 1, '0', '0', '0', 3721, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99030, 'es_epictree', 'es_epictree', 's', 2, 2, 4, '0', '0', '0', 3723, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99031, 'es_icestar_g', 'es_icestar_g', 's', 1, 1, 6, '0', '0', '0', 3731, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99032, 'es_icestar_r', 'es_icestar_r', 's', 1, 1, 6, '0', '0', '0', 3745, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99033, 'es_icestar_y', 'es_icestar_y', 's', 1, 1, 6, '0', '0', '0', 3749, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99034, 'es_icestar', 'es_icestar', 's', 1, 1, 6, '0', '0', '0', 3713, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99035, 'es_puck', 'es_puck', 's', 1, 1, 0, '0', '0', '1', 3739, '1', '1', '1', '1', '1', 'ball', 2, '0'),
(99036, 'es_roaster', 'es_roaster', 's', 1, 1, 2, '0', '0', '0', 3738, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99037, 'es_lmppst', 'es_lmppst', 's', 1, 1, 4, '0', '0', '0', 3735, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99038, 'es_statue', 'es_statue', 's', 1, 1, 1, '0', '0', '0', 3717, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99904, 'year2011_waver_b', 'year2011_waver_b', 's', 1, 1, 1, '1', '0', '0', 3781, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99905, 'year2011_waver_g', 'year2011_waver_g', 's', 1, 1, 1, '1', '0', '0', 3780, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99906, 'year2011_waver_r', 'year2011_waver_r', 's', 1, 1, 1, '1', '0', '0', 3777, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99907, 'year2011_waver_y', 'year2011_waver_y', 's', 1, 1, 1, '1', '0', '0', 3768, '1', '1', '1', '1', '1', 'default', 2, '0'),
(99908, 'prizetrophy_2011_y', 'prizetrophy_2011_y', 's', 1, 1, 1, '1', '0', '0', 3771, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(99909, 'prizetrophy_2011_b', 'prizetrophy_2011_b', 's', 1, 1, 1, '1', '0', '0', 3773, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(99910, 'prizetrophy_2011_r', 'prizetrophy_2011_r', 's', 1, 1, 1, '1', '0', '0', 3770, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(99911, 'prizetrophy_2011_p', 'prizetrophy_2011_p', 's', 1, 1, 1, '1', '0', '0', 3775, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(99912, 'prizetrophy_2011_g', 'prizetrophy_2011_g', 's', 1, 1, 1, '1', '0', '0', 3781, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(99913, 'prizetrophy_2011_w', 'prizetrophy_2011_w', 's', 1, 1, 1, '1', '0', '0', 3778, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(99914, 'year2011', 'year2011', 'i', 1, 1, 1, '1', '0', '0', 4373, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200000, 'bling11_block', 'bling11_block', 's', 1, 1, 2, '1', '0', '0', 3801, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200001, 'bling11_dvd', 'bling11_dvd', 's', 1, 2, 2, '1', '0', '0', 3793, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200002, 'bling11_dvn', 'bling11_dvn', 's', 1, 3, 1.3, '1', '0', '0', 3798, '1', '1', '1', '1', '1', 'bed', 2, '0'),
(200003, 'bling11_floor', 'bling11_floor', 's', 2, 2, 0.05, '0', '0', '1', 3794, '1', '1', '1', '1', '1', 'default', 9, '0'),
(200004, 'bling11_pillar', 'bling11_pillar', 's', 1, 1, 3.1, '1', '0', '0', 3802, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200005, 'bling11_plant', 'bling11_plant', 's', 1, 1, 1, '0', '0', '0', 3795, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200006, 'bling11_rug1', 'bling11_rug1', 's', 2, 2, 0.05, '0', '0', '1', 3788, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200007, 'bling11_rug2', 'bling11_rug2', 's', 3, 3, 0.05, '0', '0', '1', 3797, '1', '1', '1', '1', '1', 'default', 1, '0'),
(200008, 'bling11_seat1', 'bling11_seat1', 's', 1, 1, 1, '0', '1', '0', 3800, '1', '1', '1', '1', '1', 'default', 1, '0'),
(200009, 'bling11_seat1', 'bling11_seat2', 's', 1, 1, 1, '0', '1', '0', 3799, '1', '1', '1', '1', '1', 'default', 4, '0'),
(200010, 'bling11_slot', 'bling11_slot', 's', 1, 1, 2, '0', '0', '0', 3786, '1', '0', '0', '0', '1', 'default', 2, '0'),
(200011, 'bling11_sofa', 'bling11_sofa', 's', 1, 1, 1.4, '0', '1', '0', 3799, '1', '1', '1', '1', '1', 'default', 1, '0'),
(200012, 'bling11_statue1', 'bling11_statue1', 's', 1, 1, 1, '0', '0', '0', 3791, '1', '1', '1', '1', '1', 'default', 1, '0'),
(200013, 'bling11_statue2', 'bling11_statue2', 's', 2, 2, 1, '0', '0', '0', 3785, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200014, 'bling11_tele', 'bling11_tele', 's', 1, 1, 0.001, '1', '0', '0', 3789, '1', '1', '1', '1', '1', 'teleport', 1, '0'),
(200015, 'bling11_towels', 'bling11_towels', 's', 1, 1, 1, '0', '0', '0', 3787, '1', '1', '1', '1', '1', 'default', 4, '0'),
(200016, 'bling11_wall1', 'bling11_wall1', 'i', 1, 1, 1, '1', '0', '0', 4374, '1', '1', '1', '1', '1', 'default', 3, '0'),
(200017, 'bling11_wall2', 'bling11_wall2', 'i', 1, 1, 1, '1', '0', '0', 4376, '1', '1', '1', '1', '1', 'default', 3, '0'),
(200018, 'bling11_wall3', 'bling11_wall3', 'i', 1, 1, 1, '1', '0', '0', 4377, '1', '1', '1', '1', '1', 'default', 3, '0'),
(200019, 'bling11_wall4', 'bling11_wall4', 'i', 1, 1, 1, '1', '0', '0', 4375, '1', '1', '1', '1', '1', 'default', 3, '0'),
(200020, 'bling11_big1', 'bling11_big1', 'i', 1, 1, 1, '1', '0', '0', 4379, '1', '1', '1', '1', '1', 'default', 3, '0'),
(200021, 'val11_floor', 'val11_floor', 's', 2, 2, 1, '0', '0', '1', 3792, '1', '1', '1', '1', '1', 'default', 1, '0'),
(200022, 'val11_rail', 'val11_rail', 's', 1, 2, 1, '0', '0', '0', 3812, '1', '1', '1', '1', '1', 'default', 1, '0'),
(200023, 'val11_playa', 'val11_playa', 's', 1, 1, 1, '0', '0', '0', 3804, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200024, 'val11_chair', 'val11_chair', 's', 1, 1, 1, '0', '0', '1', 3806, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200025, 'qt_val11_nest', 'qt_val11_nest', 's', 1, 1, 1, '0', '1', '0', 3807, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200026, 'qt_val11_jellychair', 'qt_val11_jellychair', 's', 1, 1, 0.8, '0', '1', '0', 3810, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200027, 'qt_val11_jellyheart', 'qt_val11_jellyheart', 's', 1, 1, 1, '0', '0', '0', 3811, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200028, 'qt_val11_holoduck', 'qt_val11_holoduck', 's', 1, 1, 1, '0', '0', '0', 3803, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200029, 'qt_val11_holoheart', 'qt_val11_holoheart', 's', 1, 1, 1, '0', '0', '0', 3813, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200030, 'qt_val11_heartlights', 'qt_val11_heartlights', 'i', 1, 1, 1, '0', '0', '0', 4378, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200031, 'qt_val11_duckformer', 'qt_val11_duckformer', 's', 1, 1, 1, '0', '0', '0', 3809, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200032, 'qt_val11_discoball', 'qt_val11_discoball', 's', 1, 1, 1, '0', '0', '0', 3805, '1', '1', '1', '1', '1', 'default', 2, '0'),
(200033, 'news_terrarium', 'nest_terrarium', 's', 1, 1, 1, '0', '0', '0', 3808, '1', '1', '1', '1', '1', 'default', 2, '0'),
(292308, 'ads_hh_safe', 'ads_hh_safe', 's', 1, 1, 0, '0', '0', '0', 3684, '1', '1', '1', '1', '1', 'default', 1, '0'),
(678766, 'fireworks_04', 'fireworks_04', 's', 1, 1, 1, '0', '0', '0', 7655, '1', '1', '1', '1', '1', 'default', 3, '0'),
(758335, 'fireworks_02', 'fireworks_02', 's', 1, 1, 1, '0', '0', '0', 7755, '1', '1', '1', '1', '1', 'default', 3, '0'),
(765321, 'fireworks_03', 'fireworks_03', 's', 1, 1, 1, '0', '0', '0', 6854, '1', '1', '1', '1', '1', 'default', 3, '0'),
(766666, 'fireworks_07', 'fireworks_07', 's', 1, 1, 1, '0', '0', '0', 6563, '1', '1', '1', '1', '1', 'default', 3, '0'),
(972592, 'Efecto Escalofriante', '??Que miedo!', 'e', 1, 1, 1, '0', '0', '0', 37, '0', '0', '1', '0', '0', 'default', 1, '0'),
(2785077, 'bb_crnr', 'bb_crnr', 's', 1, 1, 1, '0', '0', '0', 3614, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785078, 'bb_score_b', 'bb_score_b', 's', 1, 1, 1, '0', '0', '0', 3615, '1', '1', '1', '1', '1', '', 2, '0'),
(2785079, 'bb_robo', 'bb_robo', 's', 2, 2, 2, '0', '0', '0', 3616, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785080, 'bb_dragon', 'bb_dragon', 's', 3, 1, 2.5, '0', '0', '0', 3617, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785081, 'bb_ducklight', 'bb_ducklight', 's', 1, 1, 3, '0', '0', '0', 3618, '1', '1', '1', '1', '1', 'default', 8, '0'),
(2785082, 'bb_caterhead', 'bb_caterhead', 's', 1, 1, 1, '0', '0', '0', 3619, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785083, 'bb_cargobox', 'bb_cargobox', 's', 2, 1, 1, '0', '0', '0', 3620, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785084, 'bb_gate_g', 'bb_gate_g', 's', 1, 1, 0, '0', '0', '1', 3621, '1', '1', '1', '1', '1', '', 2, '0'),
(2785085, 'bb_crchair3', 'bb_crchair3', 's', 1, 1, 1, '0', '1', '0', 3622, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785086, 'bb_score_g', 'bb_score_g', 's', 1, 1, 1, '0', '0', '0', 3623, '1', '1', '1', '1', '1', '', 1, '0'),
(2785087, 'bb_crchair', 'bb_crchair', 's', 1, 1, 1, '0', '1', '0', 3624, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785088, 'bb_crchair2', 'bb_crchair2', 's', 1, 1, 1, '0', '1', '0', 3625, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785089, 'bb_score_y', 'bb_score_y', 's', 1, 1, 1, '0', '0', '0', 3626, '1', '1', '1', '1', '1', '', 2, '0'),
(2785090, 'bb_knj1', 'bb_knj1', 's', 2, 1, 1, '0', '0', '0', 3627, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785091, 'bb_gate_r', 'bb_gate_r', 's', 1, 1, 0, '0', '0', '1', 3628, '1', '1', '1', '1', '1', '', 2, '0'),
(2785092, 'bb_tddhnd', 'bb_tddhnd', 's', 1, 1, 1, '1', '0', '0', 3629, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785093, 'bb_lightdiv', 'bb_lightdiv', 's', 1, 1, 1, '1', '0', '0', 3630, '1', '1', '1', '1', '1', 'default', 8, '0'),
(2785094, 'bb_tddhead', 'bb_tddhead', 's', 2, 2, 2, '0', '0', '0', 3631, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785095, 'bb_pyramid', 'bb_pyramid', 's', 1, 1, 0, '0', '0', '0', 3632, '1', '1', '1', '1', '1', 'gate', 3, '0'),
(2785096, 'bb_patch1', 'bb_patch1', 's', 1, 1, 0.1, '1', '0', '1', 3633, '1', '1', '1', '1', '1', '', 1, '0'),
(2785097, 'bb_fnc3', 'bb_fnc3', 's', 1, 3, 1, '0', '0', '0', 3634, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785098, 'bb_gate_y', 'bb_gate_y', 's', 1, 1, 0, '0', '0', '1', 3635, '1', '1', '1', '1', '1', '', 1, '0'),
(2785099, 'bb_apparatus', 'bb_apparatus', 's', 2, 2, 0, '1', '0', '1', 3637, '1', '1', '1', '1', '1', 'default', 8, '0'),
(2785100, 'bb_caterbody', 'bb_caterbody', 's', 1, 1, 1.7, '1', '1', '0', 3638, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785101, 'bb_knj2', 'bb_knj2', 's', 1, 1, 2, '1', '0', '0', 3639, '1', '1', '1', '1', '1', 'default', 4, '0'),
(2785102, 'bb_fnc1', 'bb_fnc1', 's', 1, 1, 1, '0', '0', '0', 3640, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785103, 'bb_puck', 'bb_puck', 's', 1, 1, 0.6, '1', '0', '1', 3641, '1', '1', '1', '1', '1', 'ball', 3, '0'),
(2785104, 'bb_rnd_tele', 'bb_rnd_tele', 's', 1, 1, 0.3, '0', '0', '1', 3642, '1', '1', '1', '1', '1', '', 8000, '0'),
(2785105, 'bb_gate_b', 'bb_gate_b', 's', 1, 1, 0, '0', '0', '1', 3643, '1', '1', '1', '1', '1', '', 1, '0'),
(2785106, 'bb_score_r', 'bb_score_r', 's', 1, 1, 1, '0', '0', '0', 3644, '1', '1', '1', '1', '1', '', 2, '0'),
(2785107, 'bb_painimies1', 'bb_painimies1', 'i', 1, 1, 1, '0', '0', '1', 4341, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785108, 'bb_painimies2', 'bb_painimies2', 'i', 1, 1, 1, '0', '0', '1', 4342, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785109, 'bb_counter', 'bb_counter', 's', 1, 4, 0.1, '0', '0', '0', 3645, '1', '1', '1', '1', '1', 'scoreboard', 1, '0'),
(2785115, 'hween10_zombie', 'hween10_zombie', 's', 1, 1, 3, '0', '0', '0', 3636, '1', '1', '1', '1', '1', 'vendingmachine', 2, '58'),
(2785116, 'hween10_fogwall', 'hween10_fogwall', 'i', 1, 1, 1, '0', '0', '1', 4340, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785117, 'hween10_bat', 'hween10_bat', 's', 1, 1, 1, '0', '0', '0', 3662, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785118, 'hween10_card_1', 'hween10_card_1', 'i', 1, 1, 1, '1', '0', '0', 4346, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785119, 'hween10_card_2', 'hween10_card_2', 'i', 1, 1, 1, '1', '0', '0', 4350, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785120, 'hween10_card_3', 'hween10_card_3', 'i', 1, 1, 1, '1', '0', '0', 4345, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785121, 'hween10_card_4', 'hween10_card_4', 'i', 1, 1, 1, '1', '0', '0', 4347, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785122, 'hween10_card_5', 'hween10_card_5', 'i', 1, 1, 1, '1', '0', '0', 4351, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785123, 'hween10_card_6', 'hween10_card_6', 'i', 1, 1, 1, '1', '0', '0', 4348, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785124, 'hween10_chicken', 'hween10_chicken', 's', 2, 1, 3, '0', '0', '0', 3658, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785125, 'hween10_ffly', 'hween10_ffly', 's', 1, 1, 0, '0', '0', '1', 3657, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785126, 'hween10_fog', 'hween10_fog', 's', 2, 2, 0.0001, '1', '0', '1', 3652, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785127, 'hween10_jar', 'hween10_jar', 's', 1, 1, 3, '0', '0', '0', 3651, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785128, 'hween10_logs', 'hween10_logs', 's', 1, 1, 0.05, '1', '0', '1', 3656, '1', '1', '1', '1', '1', '', 1, '0'),
(2785129, 'hween10_pond', 'hween10_pond', 's', 2, 2, 0.1, '1', '0', '1', 3650, '1', '1', '1', '1', '1', '', 1, '0'),
(2785130, 'hween10_portch', 'hween10_potch', 's', 1, 1, 1, '0', '0', '1', 3661, '1', '1', '1', '1', '1', 'default', 7, '0'),
(2785131, 'hween10_skullpost', 'hween10_skullpost', 's', 1, 1, 3, '0', '0', '0', 3654, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785132, 'hween10_swamp', 'hween10_swamp', 's', 2, 2, 0.01, '0', '0', '1', 3649, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785133, 'hween10_tarot', 'hween10_tarot', 's', 1, 1, 1, '1', '0', '0', 3646, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785134, 'hween10_tele', 'hween10_tele', 's', 1, 1, 0.001, '0', '0', '0', 3659, '1', '1', '1', '1', '1', 'teleport', 2, '0'),
(2785135, 'hween10_throne', 'hween10_throne', 's', 1, 1, 1.1, '0', '1', '0', 3660, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785136, 'hween10_tree', 'hween10_tree', 's', 1, 1, 5, '1', '0', '0', 3648, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785137, 'hween10_voodoo1', 'hween10_voodoo1', 's', 1, 1, 3, '1', '0', '0', 3647, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785138, 'hween10_voodoo2', 'hween10_voodoo2', 's', 1, 1, 3, '1', '0', '0', 3653, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785139, 'hween10_voodoo3', 'hween10_voodoo3', 's', 1, 1, 3, '1', '0', '0', 3655, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785140, 'hween10_wallskull', 'hween10_wallskull', 'i', 1, 1, 4, '1', '0', '0', 4349, '1', '1', '1', '1', '1', 'default', 2, '0'),
(3568275, 'despicableme_desc', 'despicableme_desc', 'e', 1, 1, 1, '0', '0', '0', 32, '0', '0', '0', '0', '0', 'default', 1, '0'),
(3568276, 'nest_lion', 'nest_lion', 's', 1, 1, 1, '1', '0', '1', 3601, '1', '1', '1', '1', '1', 'default', 2, '0'),
(3568277, 'nest_lion2', 'nest_lion2', 's', 1, 1, 0.5, '1', '0', '1', 3587, '1', '1', '1', '1', '1', 'default', 2, '0'),
(3568278, 'nest_rhino', 'nest_rhino', 's', 1, 1, 0.2, '1', '0', '1', 3597, '1', '1', '1', '1', '1', 'default', 2, '0'),
(3568279, 'petfood14', 'petfood14', 's', 1, 1, 0, '0', '0', '1', 3599, '1', '1', '1', '1', '1', 'default', 4, '0'),
(3568280, 'petfood15', 'petfood15', 's', 1, 1, 0.1, '1', '0', '1', 3583, '1', '1', '1', '1', '1', 'default', 4, '0'),
(3568281, 'ads_mtv_tv2', 'ads_mtv_tv2', 'i', 0, 0, 0, '1', '0', '0', 4344, '1', '1', '1', '1', '1', 'default', 4, '0'),
(3568282, 'ads_mtv_bigtv2', 'ads_mtv_bigtv2', 'i', 0, 0, 0, '1', '0', '0', 4343, '1', '1', '1', '1', '1', 'default', 4, '0'),
(3568296, '', 'poster1', 'i', 0, 0, 0, '0', '0', '0', 5135, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568297, '', 'poster2', 'i', 0, 0, 0, '0', '0', '0', 5136, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568298, '', 'poster3', 'i', 0, 0, 0, '0', '0', '0', 5137, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568300, '', 'poster5', 'i', 0, 0, 0, '0', '0', '0', 5139, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568301, '', 'poster6', 'i', 0, 0, 0, '0', '0', '0', 5140, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568302, '', 'poster7', 'i', 0, 0, 0, '0', '0', '0', 5141, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568303, '', 'poster8', 'i', 0, 0, 0, '0', '0', '0', 5142, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568304, '', 'poster9', 'i', 0, 0, 0, '0', '0', '0', 5143, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568305, '', 'poster10', 'i', 0, 0, 0, '0', '0', '0', 5144, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568306, '', 'poster11', 'i', 0, 0, 0, '0', '0', '0', 5145, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568307, '', 'poster12', 'i', 0, 0, 0, '0', '0', '0', 5146, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568308, '', 'poster13', 'i', 0, 0, 0, '0', '0', '0', 5147, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568309, '', 'poster14', 'i', 0, 0, 0, '0', '0', '0', 5148, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568310, '', 'poster15', 'i', 0, 0, 0, '0', '0', '0', 5149, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568311, '', 'poster16', 'i', 0, 0, 0, '0', '0', '0', 5150, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568312, '', 'poster17', 'i', 0, 0, 0, '0', '0', '0', 5151, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568313, '', 'poster18', 'i', 0, 0, 0, '0', '0', '0', 5152, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568314, '', 'poster19', 'i', 0, 0, 0, '0', '0', '0', 5153, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568315, '', 'poster20', 'i', 0, 0, 0, '0', '0', '0', 5154, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568316, '', 'poster21', 'i', 0, 0, 0, '0', '0', '0', 5155, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568317, '', 'poster22', 'i', 0, 0, 0, '0', '0', '0', 5156, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568318, '', 'poster23', 'i', 0, 0, 0, '0', '0', '0', 5157, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568319, '', 'poster24', 'i', 0, 0, 0, '0', '0', '0', 5158, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568320, '', 'poster25', 'i', 0, 0, 0, '0', '0', '0', 5159, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568321, '', 'poster26', 'i', 0, 0, 0, '0', '0', '0', 5160, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568322, '', 'poster27', 'i', 0, 0, 0, '0', '0', '0', 5161, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568323, '', 'poster28', 'i', 0, 0, 0, '0', '0', '0', 5162, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568324, '', 'poster29', 'i', 0, 0, 0, '0', '0', '0', 5163, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568325, '', 'poster30', 'i', 0, 0, 0, '0', '0', '0', 5164, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568326, '', 'poster31', 'i', 0, 0, 0, '0', '0', '0', 5165, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568327, '', 'poster32', 'i', 0, 0, 0, '0', '0', '0', 5166, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568328, '', 'poster33', 'i', 0, 0, 0, '0', '0', '0', 5167, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568329, '', 'poster34', 'i', 0, 0, 0, '0', '0', '0', 5168, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568330, '', 'poster35', 'i', 0, 0, 0, '0', '0', '0', 5169, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568331, '', 'poster36', 'i', 0, 0, 0, '0', '0', '0', 5170, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568332, '', 'poster37', 'i', 0, 0, 0, '0', '0', '0', 5171, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568333, '', 'poster38', 'i', 0, 0, 0, '0', '0', '0', 5172, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568334, '', 'poster39', 'i', 0, 0, 0, '0', '0', '0', 5173, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568335, '', 'poster40', 'i', 0, 0, 0, '0', '0', '0', 5174, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568336, '', 'poster41', 'i', 0, 0, 0, '0', '0', '0', 5175, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568337, '', 'poster42', 'i', 0, 0, 0, '0', '0', '0', 5176, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568338, '', 'poster43', 'i', 0, 0, 0, '0', '0', '0', 5177, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568339, '', 'poster44', 'i', 0, 0, 0, '0', '0', '0', 5178, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568340, '', 'poster45', 'i', 0, 0, 0, '0', '0', '0', 5179, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568341, '', 'poster46', 'i', 0, 0, 0, '0', '0', '0', 5180, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568342, '', 'poster47', 'i', 0, 0, 0, '0', '0', '0', 5181, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568343, '', 'poster48', 'i', 0, 0, 0, '0', '0', '0', 5182, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568344, '', 'poster49', 'i', 0, 0, 0, '0', '0', '0', 5183, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568345, '', 'poster50', 'i', 0, 0, 0, '0', '0', '0', 5184, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568346, '', 'poster51', 'i', 0, 0, 0, '0', '0', '0', 5185, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568347, '', 'poster52', 'i', 0, 0, 0, '0', '0', '0', 5186, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568348, '', 'poster53', 'i', 0, 0, 0, '0', '0', '0', 5187, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568349, '', 'poster54', 'i', 0, 0, 0, '0', '0', '0', 5188, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568350, '', 'poster55', 'i', 0, 0, 0, '0', '0', '0', 5189, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568351, '', 'poster56', 'i', 0, 0, 0, '0', '0', '0', 5190, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568352, '', 'poster57', 'i', 0, 0, 0, '0', '0', '0', 5191, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568353, '', 'poster58', 'i', 0, 0, 0, '0', '0', '0', 5192, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568354, '', 'poster2005', 'i', 0, 0, 0, '0', '0', '0', 5193, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568399, '', 'poster4', 'i', 0, 0, 0, '0', '0', '0', 5138, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3568401, 'exe_copier', 'exe_copier', 's', 1, 1, 1, '0', '0', '0', 9215, '1', '1', '1', '1', '1', 'default', 2, '0'),
(3568402, 'exe_glassdvdr', 'exe_glassdvdr', 's', 2, 1, 1, '0', '0', '0', 9216, '1', '1', '1', '1', '1', 'default', 2, '0'),
(3568403, 'exe_wrkdesk', 'exe_wrkdesk', 's', 2, 1, 1, '0', '0', '0', 9217, '1', '1', '1', '1', '1', 'default', 2, '0'),
(3568404, 'exe_seccam', 'exe_seccam', 's', 1, 1, 0, '0', '0', '1', 9218, '1', '1', '1', '1', '1', 'default', 2, '0'),
(3568405, 'exe_sensor', 'exe_sensor', 'i', 1, 1, 1, '0', '0', '0', 4355, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2345678, 'picnic_blanket_yel', 'picnic_blanket_yel', 's', 3, 3, 0.01, '1', '0', '1', 3980, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345679, 'picnic_pillow_yel', 'picnic_pillow_yel', 's', 1, 1, 0.8, '0', '1', '0', 3981, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345610, 'picnic_food1', 'picnic_food1', 's', 1, 1, 1, '1', '0', '0', 3982, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345611, 'note_tag', 'note_tag', 's', 1, 1, 1, '0', '0', '0', 3983, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345612, 'picnic_wfall', 'picnic_wfall', 's', 2, 2, 1, '0', '0', '0', 3984, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2345613, 'picnic_blanket_blu', 'picnic_blanket_blu', 's', 3, 3, 0.01, '1', '0', '1', 3985, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345614, 'picnic_food3', 'picnic_food3', 's', 1, 1, 1, '0', '0', '0', 3986, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345615, 'picnic_blanket', 'picnic_blanket', 's', 3, 3, 0.01, '1', '0', '1', 3987, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345616, 'picnic_pillow_blu', 'picnic_pillow_blu', 's', 1, 1, 0.8, '0', '1', '0', 3988, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345617, 'picnic_food2', 'picnic_food2', 's', 1, 1, 1, '0', '0', '0', 3989, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345618, 'picnic_tele', 'picnic_tele', 's', 1, 1, 0.001, '0', '0', '0', 3990, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(2345619, 'picnic_basket', 'picnic_basket', 's', 1, 1, 1, '0', '0', '0', 3991, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345620, 'picnic_pillow', 'picnic_pillow', 's', 1, 1, 0.8, '0', '1', '0', 3992, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345621, 'picnic_chair', 'picnic_chair', 's', 1, 1, 1, '0', '1', '0', 3993, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2345622, 'picnic_3brds', 'picnic_3brds', 's', 1, 1, 1, '0', '0', '0', 3994, '1', '1', '1', '1', '1', 'default', 1, '0'),
(9465, 'Dragon', 'a0 pet12', 's', 1, 1, 1, '1', '0', '0', 9465, '1', '1', '1', '1', '1', 'pet', 0, '0'),
(8973465, 'dng_throne', 'dng_throne', 's', 1, 1, 1.5, '0', '1', '1', 4012, '1', '1', '1', '1', '1', 'default', 2, '0'),
(8973466, 'dng_pillar', 'dng_pillar', 's', 1, 1, 1, '0', '0', '0', 4007, '1', '1', '1', '1', '1', 'default', 1, '0'),
(8973467, 'dng_stairs', 'dng_stairs', 's', 1, 1, 1, '1', '0', '1', 4010, '1', '1', '1', '1', '1', 'default', 1, '0'),
(8973468, 'dng_block', 'dng_block', 's', 1, 1, 0.8, '1', '0', '1', 4013, '1', '1', '1', '1', '1', 'default', 1, '0'),
(8973469, 'dng_floor', 'dng_floor', 's', 2, 2, 0, '1', '0', '1', 4009, '1', '1', '1', '1', '1', 'default', 1, '0'),
(8973470, 'dng_wall', 'dng_wall', 'i', 0, 0, 0, '0', '0', '0', 4404, '1', '1', '1', '1', '1', 'default', 1, '0'),
(8973471, 'dng_treasure', 'dng_treasure', 's', 2, 2, 0, '1', '0', '1', 4011, '1', '1', '1', '1', '1', 'default', 2, '0'),
(8973472, 'dng_treasure2', 'dng_treasure2', 's', 1, 1, 0, '1', '0', '1', 4008, '1', '1', '1', '1', '1', 'default', 4, '0'),
(9037532, 'dng_ground', 'dng_ground', 's', 2, 2, 0, '0', '0', '1', 4006, '1', '1', '1', '1', '1', 'default', 4, '0'),
(9037533, 'dng_cube', 'dng_cube', 's', 1, 1, 1, '1', '0', '0', 4005, '1', '1', '1', '1', '1', 'default', 2, '0'),
(199868, 'qt_sum11_ictrolley', 'qt_sum11_ictrolley', 's', 1, 1, 1, '0', '0', '0', 4018, '1', '1', '1', '1', '1', 'default', 2, '0'),
(199869, 'qt_sum11_platfrm', 'qt_sum11_platfrm', 's', 2, 2, 1, '1', '0', '0', 4022, '1', '1', '1', '1', '1', 'default', 2, '0'),
(199870, 'qt_sum11_shell3', 'qt_sum11_shell3', 's', 1, 1, 1, '0', '0', '0', 4021, '1', '1', '1', '1', '1', 'default', 2, '0'),
(199871, 'qt_sum11_shell2', 'qt_sum11_shell2', 's', 1, 1, 1, '0', '0', '0', 4023, '1', '1', '1', '1', '1', 'default', 2, '0'),
(199872, 'qt_sum11_chair', 'qt_sum11_chair', 's', 1, 1, 1, '0', '1', '0', 4025, '1', '1', '1', '1', '1', 'default', 4, '0'),
(199873, 'qt_sum11_shell4', 'qt_sum11_shell4', 's', 1, 1, 1, '1', '0', '0', 4020, '1', '1', '1', '1', '1', 'default', 1, '0'),
(199874, 'qt_sum11_shell1', 'qt_sum11_shell1', 's', 1, 1, 1, '0', '0', '0', 4017, '1', '1', '1', '1', '1', 'default', 1, '0'),
(199875, 'qt_sum11_shell5', 'qt_sum11_shell5', 's', 1, 1, 1, '0', '0', '0', 4024, '1', '1', '1', '1', '1', 'default', 1, '0'),
(199876, 'qt_sum11_petfood', 'qt_sum11_petfood', 's', 1, 1, 1, '0', '0', '0', 4019, '1', '1', '1', '1', '1', 'default', 1, '0'),
(55901, 'prizetrophy_skate*1', 'prizetrophy_skate*1', 's', 1, 1, 1, '0', '0', '0', 4027, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(55902, 'prizetrophy_skate*2', 'prizetrophy_skate*2', 's', 1, 1, 1, '0', '0', '0', 4028, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(55903, 'prizetrophy_skate*3', 'prizetrophy_skate*3', 's', 1, 1, 1, '0', '0', '0', 4029, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(55904, 'sb_rail', 'sb_rail', 's', 1, 1, 1, '0', '0', '0', 4030, '1', '1', '1', '1', '1', 'default', 1, '0'),
(55905, 'sb_ramp', 'sb_ramp', 's', 2, 2, 1, '0', '0', '0', 4031, '1', '1', '1', '1', '1', 'default', 1, '0'),
(55906, 'sb_block', 'sb_block', 's', 2, 2, 0.7, '1', '0', '1', 4032, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3267, 'mm_lamp', 'mm_lamp', 's', 1, 1, 1, '1', '0', '0', 4015, '1', '1', '1', '1', '1', 'default', 2, '0'),
(3268, 'mm_lemon_drink', 'mm_lemon_drink', 's', 1, 1, 1, '1', '0', '0', 4016, '1', '1', '1', '1', '1', 'vendingmachine', 1, '68'),
(3269, 'mm_tub', 'mm_tub', 's', 2, 1, 1, '1', '1', '0', 4026, '1', '1', '1', '1', '1', 'default', 2, '0'),
(9681, 'race_trophy', 'race_trophy', 's', 3, 3, 0.01, '1', '0', '1', 3998, '1', '1', '1', '1', '1', 'default', 1, '0'),
(9683, 'ads_kfp2statue', 'ads_kfp2statue', 's', 3, 3, 0.01, '1', '0', '1', 3999, '1', '1', '1', '1', '1', 'default', 1, '0'),
(9686, 'ads_kelloggs_statue', 'ads_kelloggs_statue', 's', 3, 3, 0.01, '1', '0', '1', 3997, '1', '1', '1', '1', '1', 'default', 1, '0'),
(9682, 'ads_kfp2_wall', 'ads_kfp2_wall', 'i', 1, 1, 1, '1', '0', '0', 4403, '1', '1', '1', '1', '1', 'default', 1, '0'),
(9684, 'ads_kfp2_tv', 'ads_kfp2_tv', 'i', 1, 1, 1, '1', '0', '0', 4402, '1', '1', '1', '1', '1', 'default', 1, '0'),
(9685, 'picture_car', 'picture_car', 'i', 1, 1, 1, '1', '0', '0', 4401, '1', '1', '1', '1', '1', 'default', 1, '0'),
(254874, 'Black Hole', 'hole', 's', 2, 2, 1, '1', '0', '0', 4071, '0', '0', '0', '0', '1', 'default', 1, '0'),
(10934, 'turtle', 'a0 pet9', 's', 1, 1, 1, '1', '0', '0', 10934, '1', '1', '1', '1', '1', 'pet', 0, '0'),
(30000, 'Monkey', 'a0 pet14', 's', 1, 1, 1, '0', '0', '0', 14, '0', '0', '0', '0', '1', 'pet', 1, '0'),
(91061, 'ads_durex_carpet', 'ads_durex_carpet', 's', 2, 3, 0.1, '1', '0', '1', 4075, '1', '1', '1', '1', '1', 'default', 2, '0'),
(91062, 'ads_durex_screen', 'ads_durex_screen', 'i', 1, 1, 1, '0', '0', '0', 4410, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91063, 'ads_durex_vend', 'ads_durex_vend', 's', 1, 1, 3, '0', '0', '0', 4074, '1', '1', '1', '1', '1', 'vendingmachine', 1, '49'),
(91066, 'ads_mtv_floor', 'ads_mtv_floor', 's', 1, 1, 0.1, '1', '0', '1', 4079, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91067, 'ads_mtv_wall', 'ads_mtv_wall', 'i', 1, 1, 1, '0', '0', '0', 4411, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91068, 'studio_amp1', 'studio_amp1', 's', 2, 1, 2, '1', '0', '0', 4086, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91069, 'studio_amp2', 'studio_amp2', 's', 2, 1, 1, '0', '0', '0', 4084, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91070, 'studio_camera', 'studio_camera', 's', 1, 1, 1, '0', '0', '0', 4089, '1', '1', '1', '1', '1', 'default', 2, '0'),
(91071, 'studio_chair', 'studio_chair', 's', 1, 1, 1, '0', '1', '0', 4095, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91072, 'studio_drums', 'studio_drums', 's', 3, 1, 1, '0', '0', '0', 4093, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91073, 'studio_fence', 'studio_fence', 's', 1, 2, 1, '0', '0', '0', 4085, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91074, 'studio_fencecr', 'studio_fencecr', 's', 1, 1, 1, '0', '0', '0', 4082, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91075, 'studio_floorlight', 'studio_floorlight', 's', 1, 1, 0.1, '1', '0', '1', 4087, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91076, 'studio_guitar', 'studio_guitar', 's', 1, 1, 1, '0', '0', '0', 4083, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91077, 'studio_lights1', 'studio_lights1', 's', 1, 1, 1, '0', '0', '1', 4094, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91078, 'studio_lights2', 'studio_lights2', 's', 1, 1, 1, '0', '0', '1', 4092, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91079, 'studio_lights3', 'studio_lights3', 's', 1, 1, 1, '0', '0', '1', 4091, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91080, 'studio_mixingdesk', 'studio_mixingdesk', 's', 5, 1, 1, '0', '0', '0', 4088, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91081, 'studio_monitor', 'studio_monitor', 's', 1, 1, 1, '0', '0', '0', 4080, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91082, 'studio_stool', 'studio_stool', 's', 1, 1, 1, '0', '1', '0', 4081, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91083, 'studio_tv', 'studio_tv', 's', 1, 1, 0.1, '0', '0', '1', 4090, '1', '1', '1', '1', '1', 'default', 2, '0'),
(86003, 'lm_jackbox', 'lm_jackbox', 's', 1, 1, 1, '0', '0', '0', 4073, '1', '1', '1', '1', '1', 'default', 2, '0'),
(85000, 'coco_chair', 'coco_chair', 's', 1, 1, 1.3, '0', '1', '0', 4042, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85001, 'coco_chair_c2', 'coco_chair_c2', 's', 1, 1, 1.3, '0', '1', '0', 4053, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85002, 'coco_chair_c3', 'coco_chair_c3', 's', 1, 1, 1.3, '0', '1', '0', 4059, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85003, 'coco_chair_c4', 'coco_chair_c4', 's', 1, 1, 1.3, '0', '1', '0', 4058, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85004, 'coco_divan', 'coco_divan', 's', 2, 1, 1.5, '0', '1', '0', 4060, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85005, 'coco_divan_c2', 'coco_divan_c2', 's', 2, 1, 1.5, '0', '1', '0', 4046, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85006, 'coco_divan_c3', 'coco_divan_c3', 's', 2, 1, 1.5, '0', '1', '0', 4061, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85007, 'coco_divan_c4', 'coco_divan_c4', 's', 2, 1, 1.5, '0', '1', '0', 4040, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85008, 'coco_sofa', 'coco_sofa', 's', 3, 1, 1.1, '0', '1', '0', 4066, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85009, 'coco_sofa_c2', 'coco_sofa_c2', 's', 3, 1, 1.1, '0', '1', '0', 4057, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85010, 'coco_sofa_c3', 'coco_sofa_c3', 's', 3, 1, 1.1, '0', '1', '0', 4050, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85011, 'coco_sofa_c4', 'coco_sofa_c4', 's', 3, 1, 1.1, '0', '1', '0', 4063, '0', '1', '0', '1', '1', 'default', 1, '0'),
(85012, 'coco_sofatable', 'coco_sofatable', 's', 1, 1, 1.4, '1', '0', '0', 4062, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85013, 'coco_sofatable_c2', 'coco_sofatable_c2', 's', 1, 1, 1.4, '1', '0', '0', 4064, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85014, 'coco_sofatable_c3', 'coco_sofatable_c3', 's', 1, 1, 1.4, '1', '0', '0', 4047, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85015, 'coco_sofatable_c4', 'coco_sofatable_c4', 's', 1, 1, 1.4, '1', '0', '0', 4049, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85016, 'coco_stool', 'coco_stool', 's', 1, 1, 1, '0', '1', '0', 4052, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85017, 'coco_stool_c2', 'coco_stool_c2', 's', 1, 1, 1, '0', '1', '0', 4039, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85018, 'coco_stool_c3', 'coco_stool_c3', 's', 1, 1, 1, '0', '1', '0', 4048, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85019, 'coco_stool_c4', 'coco_stool_c4', 's', 1, 1, 1, '0', '1', '0', 4044, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85020, 'coco_throne', 'coco_throne', 's', 1, 1, 1, '0', '1', '0', 4055, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85021, 'coco_throne__c2', 'coco_throne__c2', 's', 1, 1, 1, '0', '1', '0', 4043, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85022, 'coco_throne_c3', 'coco_throne_c3', 's', 1, 1, 1, '0', '1', '0', 4041, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85023, 'coco_throne_c4', 'coco_throne_c4', 's', 1, 1, 1, '0', '1', '0', 4065, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85024, 'coco_patch', 'coco_patch', 's', 2, 3, 0.1, '1', '0', '1', 4045, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85025, 'coco_stick', 'coco_stick', 's', 1, 1, 2, '0', '0', '0', 4054, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85026, 'coco_table', 'coco_table', 's', 2, 3, 0.5, '1', '0', '0', 4051, '0', '1', '0', '1', '1', 'default', 2, '0'),
(85027, 'coco_table2', 'coco_table2', 's', 2, 3, 0.8, '1', '0', '0', 4056, '0', '1', '0', '1', '1', 'default', 2, '0'),
(28603, 'Monkey', 'a0 pet12', 's', 1, 1, 1, '1', '0', '', 0, '0', '0', '0', '0', '', '', 0, '0'),
(29603, 'Turttle', 'a0 pet12', 's', 1, 1, 1, '1', '0', '', 0, '0', '0', '0', '0', '', '', 0, '0');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `fuserights`
--

CREATE TABLE IF NOT EXISTS `fuserights` (
  `rank` int(11) unsigned NOT NULL,
  `fuse` varchar(50) NOT NULL,
  KEY `rank` (`rank`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `fuserights`
--

INSERT INTO `fuserights` (`rank`, `fuse`) VALUES
(1, 'fuse_room_queue_default'),
(1, 'fuse_buy_credits'),
(1, 'fuse_login'),
(1, 'default'),
(1, 'fuse_trade'),
(3, 'fuse_mod'),
(6, 'fuse_admin'),
(7, 'fuse_sysadmin'),
(3, 'fuse_enter_any_room'),
(1, 'fuse_club_dances'),
(3, 'fuse_housekeeping_login'),
(4, 'fuse_chatlogs'),
(3, 'fuse_alert'),
(3, 'fuse_kick'),
(4, 'fuse_ban'),
(6, 'fuse_housekeeping_catalog'),
(4, 'fuse_housekeeping_moderation'),
(6, 'fuse_housekeeping_sitemanagement'),
(4, 'fuse_any_room_rights'),
(6, 'fuse_ignore_maintenance'),
(4, 'fuse_mute'),
(3, 'fuse_roomkick'),
(3, 'fuse_roomalert'),
(4, 'fuse_enter_full_rooms');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `fuserights_subs`
--

CREATE TABLE IF NOT EXISTS `fuserights_subs` (
  `sub` varchar(120) NOT NULL,
  `fuse` text NOT NULL,
  KEY `sub` (`sub`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `fuserights_subs`
--

INSERT INTO `fuserights_subs` (`sub`, `fuse`) VALUES
('habbo_club', 'fuse_use_club_dance'),
('habbo_club', 'fuse_extended_buddylist'),
('habbo_club', 'fuse_furni_chooser'),
('habbo_club', 'fuse_priority_access'),
('habbo_club', 'fuse_use_club_catalog'),
('habbo_club', 'fuse_habbo_chooser'),
('habbo_club', 'fuse_use_club_outfits'),
('habbo_club', 'fuse_room_queue_club'),
('habbo_club', 'fuse_use_special_room_layouts'),
('habbo_club', 'fuse_use_club_badge'),
('habbo_club', 'fuse_use_wardrobe'),
('habbo_club', 'fuse_use_vip_outfits'),
('habbo_club', 'fuse_use_vip_room_layouts');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `help_subjects`
--

CREATE TABLE IF NOT EXISTS `help_subjects` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `caption` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;

--
-- Gegevens worden uitgevoerd voor tabel `help_subjects`
--

INSERT INTO `help_subjects` (`id`, `caption`) VALUES
(1, 'Uber - General'),
(2, 'Credits, Pixels and Achievements'),
(3, 'Catalogue and Furniture'),
(4, 'Rooms'),
(5, 'Infobus');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `help_topics`
--

CREATE TABLE IF NOT EXISTS `help_topics` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `subject` int(11) unsigned NOT NULL DEFAULT '1',
  `title` varchar(50) NOT NULL,
  `body` text NOT NULL,
  `known_issue` enum('0','1','2') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ;

--
-- Gegevens worden uitgevoerd voor tabel `help_topics`
--

INSERT INTO `help_topics` (`id`, `subject`, `title`, `body`, `known_issue`) VALUES
(1, 1, 'What is uberHotel?', 'uberHotel is a test platform for the new Habbo Hotel Emulator, UberEmulator. We are using this hotel to test and verify the stability, performance, and functionality of the server. This means the hotel will only be available temporarily, and certain features may be missing or broken.', '2'),
(2, 1, 'Missing/broken features', 'This article will be updated to reflect an overview of features that are missing or broken.', '2'),
(3, 2, 'How do I get Credits?', 'You can receive credits in a multitude of ways:\r\n\r\n* By signing up to Uber you receive some credits to get you started.\r\n* You will recieve credit updates at preset intervals.\r\n* You can play games and take part in events and competitions for prizes and credits.\r\n* You can trade other users for credits.', '1'),
(4, 2, 'How do I get Pixels?', 'You automatically receive pixels every now and then. You can exchange these for effects, special pixel offers, and credits. You also receive pixels by completing achievements.', '1'),
(5, 2, 'What are achievements and how do I get them?', 'Achievements are special tasks you can complete in the hotel which will give you a certain amount of pixels and a cool badge as reward.', '1'),
(6, 2, 'Are all achievements available on Uber?', 'We have not yet added all achievements. The ones that are available can be seen under the ''Achievements'' tab in your inventory.', '0'),
(7, 1, 'Staff on Uber', 'Uber is being maintained and moderated by a relatively small staff team. They are here to make sure everything works correctly and to help our players and keep them safe.\r\n\r\nIn general we do not have any staff openings; if we are looking for staff it will be announced on the homepage, or we will approach players we deem capable.', '2'),
(8, 3, 'I have a suggestion for new furniture!', 'We do NOT accept any requests for custom furniture or anything along those lines, we only use furniture that is available on the official hotels. If you have suggestions for new furniture, try contacting Habbo. They might like your idea!', '0'),
(9, 3, 'Why is this piece of furniture missing?', 'We may have not added all furniture yet or we may have purposely decided not to put it up for sale. Please do not contact us about this - we are constantly adding new furniture.', '1'),
(10, 5, 'Where is the Infobus?', 'The infobus is currently available in the navigator, although bugged.', '1'),
(11, 3, 'Stacking-related issues', 'The stacking system is a sensitive and complicated mechanism that still requires some work. There is generally no need to report any problems regarding stacking to us, as we are aware of problems relating to it.\r\n\r\nIf there are problems with stacking relating to a specific piece of furniture, then please submit a suggestion or bug report on our UserVoice forum.', '1'),
(12, 1, 'Support Tickets & User Reports', 'We would just like to urge that the ticket system you will find in this help tool and when reporting users is only intended for SERIOUS requests. Yes, it works, and there is no need to test it. Any requests that are offensive, spam, or in anyway inappropriate may result in a ban.\r\n\r\nAlso, when submitting a help request, please keep in mind that it must be in English.', '2'),
(13, 1, 'IMPORTANT: This is an English hotel!', 'Although allowed, we do discourage the use of foreign languages in this hotel so all users and staff can understand each other. Localised rooms and groups may be created but we ask ALL e-mails, support tickets and other communications to staff are in CLEAR, FLUENT ENGLISH. If we find this allowance abused by people swearing etc in their own langugage they will be banned IMMEDIATELY and this allowance discontinued.', '2');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `homes`
--

CREATE TABLE IF NOT EXISTS `homes` (
  `home_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `link_type` enum('user','group') NOT NULL DEFAULT 'user',
  `link_id` int(10) unsigned NOT NULL,
  `allow_display` enum('0','1') NOT NULL DEFAULT '1',
  `bgimage` varchar(120) NOT NULL DEFAULT 'b_bg_colour_01',
  PRIMARY KEY (`home_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `homes_catalog`
--

CREATE TABLE IF NOT EXISTS `homes_catalog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` text NOT NULL,
  `type` varchar(1) NOT NULL,
  `data` text NOT NULL,
  `price` int(11) NOT NULL,
  `amount` int(11) NOT NULL DEFAULT '1',
  `category` int(11) NOT NULL,
  `sorted` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1294 ;

--
-- Gegevens worden uitgevoerd voor tabel `homes_catalog`
--

INSERT INTO `homes_catalog` (`id`, `name`, `type`, `data`, `price`, `amount`, `category`, `sorted`) VALUES
(1, 'sticker_arrow_down', '1', 'sticker_arrow_down', 3, 1, 37, '1'),
(2, 'sticker_arrow_left', '1', 'sticker_arrow_left', 3, 1, 37, '1'),
(3, 'sticker_arrow_up', '1', 'sticker_arrow_up', 3, 1, 37, '1'),
(4, 'sticker_arrow_right', '1', 'sticker_arrow_right', 3, 1, 37, '1'),
(5, 'finger_push', '1', 'finger_push', 3, 1, 37, '1'),
(6, 'sticker_pointing_hand_1', '1', 'sticker_pointing_hand_1', 3, 1, 37, '1'),
(7, 'sticker_pointing_hand_2', '1', 'sticker_pointing_hand_2', 3, 1, 37, '1'),
(8, 'sticker_pointing_hand_3', '1', 'sticker_pointing_hand_3', 3, 1, 37, '1'),
(9, 'sticker_pointing_hand_4', '1', 'sticker_pointing_hand_4', 3, 1, 37, '1'),
(10, 'gorillahand1', '1', 'gorillahand1', 3, 1, 32, '1'),
(11, 'gorillahand2', '1', 'gorillahand2', 3, 1, 32, '1'),
(12, 'lightbulb', '1', 'lightbulb', 3, 1, 32, '1'),
(13, 'redlamp', '1', 'redlamp', 3, 1, 32, '1'),
(14, 'blingblingstars', '1', 'blingblingstars', 3, 1, 25, '1'),
(15, 'blinghearts', '1', 'blinghearts', 3, 1, 25, '1'),
(16, 'sticker_heartbeat', '1', 'sticker_heartbeat', 3, 1, 29, '1'),
(17, 'sticker_bobbaskull', '1', 'sticker_bobbaskull', 3, 1, 32, '1'),
(18, 'chain_vertical', '1', 'chain_vertical', 3, 1, 22, '1'),
(19, 'chain_horizontal', '1', 'chain_horizontal', 3, 1, 22, '1'),
(20, 'nail2', '1', 'nail2', 3, 1, 32, '1'),
(21, 'nail3', '1', 'nail3', 3, 1, 32, '1'),
(22, 'i_love_bobba', '1', 'i_love_bobba', 3, 1, 32, '1'),
(23, 'chewed_bubblegum', '1', 'chewed_bubblegum', 3, 1, 32, '1'),
(24, 'bullet1', '1', 'bullet1', 3, 1, 32, '1'),
(25, 'spill1', '1', 'spill1', 3, 1, 32, '1'),
(26, 'spill2', '1', 'spill2', 3, 1, 32, '1'),
(27, 'spill3', '1', 'spill3', 3, 1, 32, '1'),
(28, 'sticker_coffee_stain', '1', 'sticker_coffee_stain', 3, 1, 32, '1'),
(29, 'sticker_hole', '1', 'sticker_hole', 3, 1, 32, '1'),
(30, 'sticker_flames', '1', 'sticker_flames', 3, 1, 25, '1'),
(31, 'paper_clip_1', '1', 'paper_clip_1', 3, 1, 32, '1'),
(32, 'paper_clip_2', '1', 'paper_clip_2', 3, 1, 32, '1'),
(33, 'paper_clip_3', '1', 'paper_clip_3', 3, 1, 32, '1'),
(34, 'needle_1', '1', 'needle_1', 3, 1, 32, '1'),
(35, 'needle_2', '1', 'needle_2', 3, 1, 32, '1'),
(36, 'needle_3', '1', 'needle_3', 3, 1, 32, '1'),
(37, 'needle_4', '1', 'needle_4', 3, 1, 32, '1'),
(38, 'needle_5', '1', 'needle_5', 3, 1, 32, '1'),
(39, 'highlighter_1', '1', 'highlighter_1', 3, 1, 32, '1'),
(40, 'highlighter_mark5', '1', 'highlighter_mark5', 3, 1, 32, '1'),
(41, 'highlighter_mark6', '1', 'highlighter_mark6', 3, 1, 32, '1'),
(42, 'highlighter_mark4b', '1', 'highlighter_mark4b', 3, 1, 32, '1'),
(43, 'highlighter_2', '1', 'highlighter_2', 3, 1, 32, '1'),
(44, 'highlighter_mark1', '1', 'highlighter_mark1', 3, 1, 32, '1'),
(45, 'highlighter_mark2', '1', 'highlighter_mark2', 3, 1, 32, '1'),
(46, 'highlighter_mark3', '1', 'highlighter_mark3', 3, 1, 32, '1'),
(47, 'ruler_horizontal', '1', 'ruler_horizontal', 3, 1, 22, '1'),
(48, 'ruler_vertical', '1', 'ruler_vertical', 3, 1, 22, '1'),
(49, 'plaster', '1', 'plaster', 3, 1, 32, '1'),
(50, 'plaster2', '1', 'plaster2', 3, 1, 32, '1'),
(51, 'sticker_cactus_anim', '1', 'sticker_cactus_anim', 3, 1, 32, '1'),
(52, 'sticker_spaceduck', '1', 'sticker_spaceduck', 3, 1, 24, '1'),
(53, 'sticker_moonpig', '1', 'sticker_moonpig', 3, 1, 32, '1'),
(54, 'sticker_catinabox', '1', 'sticker_catinabox', 3, 1, 32, '1'),
(55, 'sticker_croco', '1', 'sticker_croco', 3, 1, 24, '1'),
(56, 'bear', '1', 'bear', 3, 1, 32, '1'),
(57, 'swimming_fish', '1', 'swimming_fish', 3, 1, 32, '1'),
(58, 'fish', '1', 'fish', 3, 1, 32, '1'),
(59, 'parrot', '1', 'parrot', 3, 1, 32, '1'),
(60, 'battle1', '1', 'battle1', 3, 1, 30, '1'),
(61, 'battle3', '1', 'battle3', 3, 1, 32, '1'),
(62, 'sticker_sleeping_habbo', '1', 'sticker_sleeping_habbo', 3, 1, 32, '1'),
(63, 'sticker_clown_anim', '1', 'sticker_clown_anim', 3, 1, 24, '1'),
(64, 'sticker_boxer', '1', 'sticker_boxer', 3, 1, 24, '1'),
(65, 'scubacapsule_anim', '1', 'scubacapsule_anim', 3, 1, 35, '1'),
(66, 'sticker_gurubeard_gray', '1', 'sticker_gurubeard_gray', 3, 1, 35, '1'),
(67, 'sticker_gurubeard_brown', '1', 'sticker_gurubeard_brown', 3, 1, 35, '1'),
(68, 'sticker_glasses_supernerd', '1', 'sticker_glasses_supernerd', 3, 1, 35, '1'),
(69, 'sticker_glasses_elton', '1', 'sticker_glasses_elton', 3, 1, 35, '1'),
(70, 'sticker_eyes_blue', '1', 'sticker_eyes_blue', 3, 1, 35, '1'),
(71, 'sticker_eye_anim', '1', 'sticker_eye_anim', 3, 1, 35, '1'),
(72, 'sticker_eye_evil_anim', '1', 'sticker_eye_evil_anim', 3, 1, 35, '1'),
(73, 'burger', '1', 'burger', 3, 1, 32, '1'),
(74, 'juice', '1', 'juice', 3, 1, 32, '1'),
(75, 'i_love_coffee', '1', 'i_love_coffee', 3, 1, 32, '1'),
(76, 'sticker_coffee_steam_blue', '1', 'sticker_coffee_steam_blue', 3, 1, 32, '1'),
(77, 'sticker_coffee_steam_grey', '1', 'sticker_coffee_steam_grey', 3, 1, 32, '1'),
(78, 'cassette1', '1', 'cassette1', 3, 1, 23, '1'),
(79, 'cassette2', '1', 'cassette2', 3, 1, 23, '1'),
(80, 'cassette3', '1', 'cassette3', 3, 1, 23, '1'),
(81, 'cassette4', '1', 'cassette4', 3, 1, 23, '1'),
(82, 'sticker_effect_bam', '1', 'sticker_effect_bam', 3, 1, 25, '1'),
(83, 'sticker_effect_burp', '1', 'sticker_effect_burp', 3, 1, 25, '1'),
(84, 'sticker_effect_woosh', '1', 'sticker_effect_woosh', 3, 1, 25, '1'),
(85, 'sticker_effect_zap', '1', 'sticker_effect_zap', 3, 1, 25, '1'),
(86, 'sticker_effect_whoosh2', '1', 'sticker_effect_whoosh2', 3, 1, 25, '1'),
(87, 'sticker_flower1', '1', 'sticker_flower1', 3, 1, 34, '1'),
(88, 'sticker_flower_big_yellow', '1', 'sticker_flower_big_yellow', 3, 1, 32, '1'),
(89, 'sticker_flower_pink', '1', 'sticker_flower_pink', 3, 1, 32, '1'),
(90, 'vine', '1', 'vine', 3, 1, 22, '1'),
(91, 'vine2', '1', 'vine2', 3, 1, 22, '1'),
(92, 'leafs1', '1', 'leafs1', 3, 1, 22, '1'),
(93, 'leafs2', '1', 'leafs2', 3, 1, 22, '1'),
(94, 'wunderfrank', '1', 'wunderfrank', 3, 1, 30, '1'),
(95, 'sticker_submarine', '1', 'sticker_submarine', 3, 1, 32, '1'),
(96, 'football', '1', 'football', 3, 1, 32, '1'),
(97, 'sticker_zipper_h_bobba_lock', '1', 'sticker_zipper_h_bobba_lock', 3, 1, 22, '1'),
(98, 'sticker_zipper_h_end', '1', 'sticker_zipper_h_end', 3, 1, 22, '1'),
(99, 'sticker_zipper_h_normal_lock', '1', 'sticker_zipper_h_normal_lock', 3, 1, 22, '1'),
(100, 'sticker_zipper_h_tile', '1', 'sticker_zipper_h_tile', 3, 1, 22, '1'),
(101, 'sticker_zipper_v_tile', '1', 'sticker_zipper_v_tile', 3, 1, 22, '1'),
(102, 'sticker_zipper_v_bobba_lock', '1', 'sticker_zipper_v_bobba_lock', 3, 1, 22, '1'),
(103, 'sticker_zipper_v_end', '1', 'sticker_zipper_v_end', 3, 1, 22, '1'),
(104, 'sticker_zipper_v_normal_lock', '1', 'sticker_zipper_v_normal_lock', 3, 1, 22, '1'),
(105, 'bling_a', '1', 'bling_a', 3, 1, 7, '1'),
(106, 'bling_b', '1', 'bling_b', 3, 1, 7, '1'),
(107, 'bling_c', '1', 'bling_c', 3, 1, 7, '1'),
(108, 'bling_d', '1', 'bling_d', 3, 1, 7, '1'),
(109, 'bling_e', '1', 'bling_e', 3, 1, 7, '1'),
(110, 'bling_f', '1', 'bling_f', 3, 1, 7, '1'),
(111, 'bling_g', '1', 'bling_g', 3, 1, 7, '1'),
(112, 'bling_h', '1', 'bling_h', 3, 1, 7, '1'),
(113, 'bling_i', '1', 'bling_i', 3, 1, 7, '1'),
(114, 'bling_j', '1', 'bling_j', 3, 1, 7, '1'),
(115, 'bling_k', '1', 'bling_k', 3, 1, 7, '1'),
(116, 'bling_l', '1', 'bling_l', 3, 1, 7, '1'),
(117, 'bling_m', '1', 'bling_m', 3, 1, 7, '1'),
(118, 'bling_n', '1', 'bling_n', 3, 1, 7, '1'),
(119, 'bling_o', '1', 'bling_o', 3, 1, 7, '1'),
(120, 'bling_p', '1', 'bling_p', 3, 1, 7, '1'),
(121, 'bling_q', '1', 'bling_q', 3, 1, 7, '1'),
(122, 'bling_r', '1', 'bling_r', 3, 1, 7, '1'),
(123, 'bling_s', '1', 'bling_s', 3, 1, 7, '1'),
(124, 'bling_t', '1', 'bling_t', 3, 1, 7, '1'),
(125, 'bling_u', '1', 'bling_u', 3, 1, 7, '1'),
(126, 'bling_v', '1', 'bling_v', 3, 1, 7, '1'),
(127, 'bling_w', '1', 'bling_w', 3, 1, 7, '1'),
(128, 'bling_x', '1', 'bling_x', 3, 1, 7, '1'),
(129, 'bling_y', '1', 'bling_y', 3, 1, 7, '1'),
(130, 'bling_z', '1', 'bling_z', 3, 1, 7, '1'),
(131, 'bling_underscore', '1', 'bling_underscore', 3, 1, 7, '1'),
(132, 'bling_line', '1', 'bling_line', 3, 1, 7, '1'),
(133, 'bling_exclamation', '1', 'bling_exclamation', 3, 1, 7, '1'),
(134, 'bling_question', '1', 'bling_question', 3, 1, 7, '1'),
(135, 'bling_star', '1', 'bling_star', 3, 1, 7, '1'),
(136, 'bling_dot', '1', 'bling_dot', 3, 1, 7, '1'),
(137, 'bling_comma', '1', 'bling_comma', 3, 1, 7, '1'),
(139, 'angelwings_anim', '1', 'angelwings_anim', 3, 1, 35, '1'),
(140, 'xmas_box_green', '1', 'xmas_box_green', 3, 1, 29, '1'),
(141, 'xmas_box_lime', '1', 'xmas_box_lime', 3, 1, 29, '1'),
(142, 'xmas_box_orange', '1', 'xmas_box_orange', 3, 1, 29, '1'),
(143, 'xmas_box_red', '1', 'xmas_box_red', 3, 1, 29, '1'),
(144, 'xmas_box_suit_blue', '1', 'xmas_box_suit_blue', 3, 1, 37, '1'),
(145, 'xmas_box_suit_orange', '1', 'xmas_box_suit_orange', 3, 1, 35, '1'),
(146, 'xmas_box_suit_pink', '1', 'xmas_box_suit_pink', 3, 1, 35, '1'),
(147, 'xmas_box_violet', '1', 'xmas_box_violet', 3, 1, 29, '1'),
(148, 'xmas_boxs', '1', 'xmas_boxs', 3, 1, 29, '1'),
(149, 'xmas_cat_animated', '1', 'xmas_cat_animated', 3, 1, 29, '1'),
(150, 'xmas_dogi_animated', '1', 'xmas_dogi_animated', 3, 1, 29, '1'),
(151, 'xmas_gift_strap_corner_l', '1', 'xmas_gift_strap_corner_l', 3, 1, 29, '1'),
(152, 'xmas_gift_strap_corner_l_bundle', '1', 'xmas_gift_strap_corner_l_bundle', 3, 1, 29, '1'),
(153, 'xmas_gift_strap_corner_r', '1', 'xmas_gift_strap_corner_r', 3, 1, 29, '1'),
(154, 'xmas_gift_strap_h', '1', 'xmas_gift_strap_h', 3, 1, 29, '1'),
(155, 'xmas_gift_strap_v', '1', 'xmas_gift_strap_v', 3, 1, 29, '1'),
(156, 'xmas_gift_afro', '1', 'xmas_gift_afro', 3, 1, 35, '1'),
(157, 'xmas_icicles', '1', 'xmas_icicles', 3, 1, 22, '1'),
(158, 'xmas_snowlantern_anim', '1', 'xmas_snowlantern_anim', 3, 1, 29, '1'),
(159, 'xmas_tree_costume', '1', 'xmas_tree_costume', 3, 1, 29, '1'),
(160, 'xmas_xtree_sticker', '1', 'xmas_xtree_sticker', 3, 1, 29, '1'),
(161, 'xmaslights_anim', '1', 'xmaslights_anim', 3, 1, 29, '1'),
(162, 'xmas_dograindeer_sticker', '1', 'xmas_dograindeer_sticker', 3, 1, 29, '1'),
(163, 'xmas_hc_ribbon', '1', 'xmas_hc_ribbon', 3, 1, 29, '1'),
(164, 'hc_hat', '1', 'hc_hat', 3, 1, 35, '1'),
(165, 'xmas_rastasanta', '1', 'xmas_rastasanta', 3, 1, 24, '1'),
(167, 'xmas_box_suit_mint3', '1', 'xmas_box_suit_mint3', 3, 1, 35, '1'),
(168, 'xmas_box_suit_mint', '1', 'xmas_box_suit_mint', 3, 1, 35, '1'),
(169, 'xmas_box_darkred4', '1', 'xmas_box_darkred4', 3, 1, 29, '1'),
(170, 'xmas_tree01_animated', '1', 'xmas_tree01_animated', 3, 1, 29, '1'),
(171, 'newyear_2007_anim', '1', 'newyear_2007_anim', 3, 1, 29, '1'),
(172, 'cny_dragon_body_l', '1', 'cny_dragon_body_l', 3, 1, 29, '1'),
(173, 'cny_dragon_body_r', '1', 'cny_dragon_body_r', 3, 1, 29, '1'),
(174, 'cny_dragon_head_l', '1', 'cny_dragon_head_l', 3, 1, 29, '1'),
(175, 'cny_dragon_head_r', '1', 'cny_dragon_head_r', 3, 1, 29, '1'),
(176, 'cny_hypnodragon_anim', '1', 'cny_hypnodragon_anim', 3, 1, 24, '1'),
(177, 'cny_kungfu_dude', '1', 'cny_kungfu_dude', 3, 1, 24, '1'),
(178, 'cny_kungfu_girl', '1', 'cny_kungfu_girl', 3, 1, 24, '1'),
(179, 'sticker_dreamer', '1', 'sticker_dreamer', 3, 1, 30, '1'),
(180, 'sticker_lonewolf', '1', 'sticker_lonewolf', 3, 1, 30, '1'),
(181, 'sticker_mamasboy', '1', 'sticker_mamasboy', 3, 1, 30, '1'),
(182, 'sticker_prankster', '1', 'sticker_prankster', 3, 1, 30, '1'),
(183, 'sticker_romantic', '1', 'sticker_romantic', 3, 1, 30, '1'),
(184, 'val_cupido_anim', '1', 'val_cupido_anim', 3, 1, 29, '1'),
(185, 'val_lovedice', '1', 'val_lovedice', 3, 1, 29, '1'),
(186, 'val_sticker_barbwire_horis', '1', 'val_sticker_barbwire_horis', 3, 1, 22, '1'),
(187, 'val_sticker_barbwire_vert', '1', 'val_sticker_barbwire_vert', 3, 1, 22, '1'),
(188, 'val_sticker_croco', '1', 'val_sticker_croco', 3, 1, 29, '1'),
(189, 'val_sticker_cupid_arrow', '1', 'val_sticker_cupid_arrow', 3, 1, 29, '1'),
(190, 'val_sticker_love_costume', '1', 'val_sticker_love_costume', 3, 1, 29, '1'),
(191, 'val_sticker_rosewire_corner', '1', 'val_sticker_rosewire_corner', 3, 1, 22, '1'),
(192, 'val_sticker_rosewire_horis', '1', 'val_sticker_rosewire_horis', 3, 1, 22, '1'),
(193, 'val_sticker_rosewire_vert', '1', 'val_sticker_rosewire_vert', 3, 1, 22, '1'),
(194, 'val_sticker_skull360', '1', 'val_sticker_skull360', 3, 1, 32, '1'),
(195, 'val_sticker_skull360_circle', '1', 'val_sticker_skull360_circle', 3, 1, 32, '1'),
(196, 'val_sticker_storm_costume', '1', 'val_sticker_storm_costume', 3, 1, 32, '1'),
(197, 'val_sticker_voodoo_suit', '1', 'val_sticker_voodoo_suit', 3, 1, 35, '1'),
(198, 'val_lovecostume3', '1', 'val_lovecostume3', 3, 1, 29, '1'),
(199, 'easter_bird', '1', 'easter_bird', 3, 1, 29, '1'),
(200, 'easter_birdsuit', '1', 'easter_birdsuit', 3, 1, 35, '1'),
(201, 'easter_broomstick_001', '1', 'easter_broomstick_001', 3, 1, 32, '1'),
(202, 'easter_bunnymoped', '1', 'easter_bunnymoped', 3, 1, 35, '1'),
(203, 'easter_carrot_rocket', '1', 'easter_carrot_rocket', 3, 1, 32, '1'),
(204, 'easter_eggs_horizontal', '1', 'easter_eggs_horizontal', 3, 1, 29, '1'),
(205, 'easter_eggs_vertical_001', '1', 'easter_eggs_vertical_001', 3, 1, 29, '1'),
(206, 'easter_pointyhat', '1', 'easter_pointyhat', 3, 1, 35, '1'),
(207, 'easter_rabbit_in_hole', '1', 'easter_rabbit_in_hole', 3, 1, 32, '1'),
(208, 'easteregg_costume', '1', 'easteregg_costume', 3, 1, 29, '1'),
(209, 'grass', '1', 'grass', 3, 1, 34, '1'),
(210, 'ukonly_disarno_homes', '1', 'ukonly_disarno_homes', 3, 1, 30, '1'),
(213, 'uk_childline_sticker', '1', 'uk_childline_sticker', 3, 1, 28, '1'),
(214, 'uk_pixel_maze_sticker', '1', 'uk_pixel_maze_sticker', 3, 1, 30, '1'),
(215, 'sticker_chauves_souris', '1', 'sticker_chauves_souris', 3, 1, 29, '1'),
(216, 'trax_8_bit', '1', 'trax_8_bit', 3, 1, 23, '1'),
(217, 'trax_disco', '1', 'trax_disco', 3, 1, 23, '1'),
(225, 'trax_sfx', '1', 'trax_sfx', 3, 1, 23, '1'),
(226, 'trax_rock', '1', 'trax_rock', 3, 1, 23, '1'),
(227, 'trax_electro', '1', 'trax_electro', 3, 1, 23, '1'),
(228, 'trax_ambient', '1', 'trax_ambient', 3, 1, 23, '1'),
(229, 'trax_heavy', '1', 'trax_heavy', 3, 1, 23, '1'),
(230, 'trax_latin', '1', 'trax_latin', 3, 1, 23, '1'),
(231, 'trax_bling2', '1', 'trax_bling2', 3, 1, 23, '1'),
(233, 'evil_giant_bunny', '1', 'evil_giant_bunny', 3, 1, 32, '1'),
(250, 'xmas_snowcone_costume', '1', 'xmas_snowcone_costume', 3, 1, 29, '1'),
(251, 'a', '1', 'a', 3, 1, 7, '1'),
(252, 'a_with_circle', '1', 'a_with_circle', 3, 1, 7, '1'),
(253, 'a_with_dots', '1', 'a_with_dots', 3, 1, 7, '1'),
(254, 'acsent1', '1', 'acsent1', 3, 1, 7, '1'),
(255, 'acsent2', '1', 'acsent2', 3, 1, 7, '1'),
(256, 'b', '1', 'b', 3, 1, 7, '1'),
(258, 'b_2', '1', 'b_2', 3, 1, 7, '1'),
(259, 'bootsitjalapaset_red', '1', 'bootsitjalapaset_red', 3, 1, 35, '1'),
(260, 'c', '1', 'c', 3, 1, 7, '1'),
(261, 'd', '1', 'd', 3, 1, 7, '1'),
(262, 'dot', '1', 'dot', 3, 1, 7, '1'),
(263, 'e', '1', 'e', 3, 1, 7, '1'),
(264, 'extra_ss_duck_left', '1', 'extra_ss_duck_left', 3, 1, 32, '1'),
(265, 'extra_ss_duck_right', '1', 'extra_ss_duck_right', 3, 1, 32, '1'),
(266, 'extra_ss_snowball', '1', 'extra_ss_snowball', 3, 1, 32, '1'),
(267, 'eyeleft', '1', 'eyeleft', 3, 1, 32, '1'),
(268, 'eyeright', '1', 'eyeright', 3, 1, 32, '1'),
(269, 'f', '1', 'f', 3, 1, 7, '1'),
(272, 'fi_golden_snake', '1', 'fi_golden_snake', 3, 1, 32, '1'),
(273, 'fi_mino', '1', 'fi_mino', 3, 1, 24, '1'),
(274, 'g', '1', 'g', 3, 1, 7, '1'),
(275, 'gothic_draculacape', '1', 'gothic_draculacape', 3, 1, 35, '1'),
(276, 'h', '1', 'h', 3, 1, 7, '1'),
(277, 'i', '1', 'i', 3, 1, 7, '1'),
(278, 'icecube_big', '1', 'icecube_big', 3, 1, 29, '1'),
(279, 'icecube_small', '1', 'icecube_small', 3, 1, 29, '1'),
(280, 'j', '1', 'j', 3, 1, 7, '1'),
(281, 'k', '1', 'k', 3, 1, 7, '1'),
(282, 'l', '1', 'l', 3, 1, 7, '1'),
(285, 'lapanen_blue', '1', 'lapanen_blue', 3, 1, 29, '1'),
(287, 'lapanen_purple', '1', 'lapanen_purple', 3, 1, 29, '1'),
(288, 'lapanen_red', '1', 'lapanen_red', 3, 1, 29, '1'),
(290, 'lapanen_yellow', '1', 'lapanen_yellow', 3, 1, 29, '1'),
(291, 'm', '1', 'm', 3, 1, 7, '1'),
(292, 'n', '1', 'n', 3, 1, 7, '1'),
(293, 'nl_coinguy_animated', '1', 'nl_coinguy_animated', 3, 1, 32, '1'),
(294, 'nl_cupido', '1', 'nl_cupido', 3, 1, 29, '1'),
(295, 'nl_downtown_costume', '1', 'nl_downtown_costume', 3, 1, 35, '1'),
(296, 'nl_firecracker', '1', 'nl_firecracker', 3, 1, 29, '1'),
(297, 'nl_football_guest', '1', 'nl_football_guest', 3, 1, 24, '1'),
(298, 'nl_limo', '1', 'nl_limo', 3, 1, 32, '1'),
(299, 'nl_wanted_costume', '1', 'nl_wanted_costume', 3, 1, 35, '1'),
(300, 'o', '1', 'o', 3, 1, 7, '1'),
(301, 'o_with_dots', '1', 'o_with_dots', 3, 1, 7, '1'),
(302, 'p', '1', 'p', 3, 1, 7, '1'),
(303, 'q', '1', 'q', 3, 1, 7, '1'),
(304, 'r', '1', 'r', 3, 1, 7, '1'),
(305, 's', '1', 's', 3, 1, 7, '1'),
(306, 'skeletor_001', '1', 'skeletor_001', 3, 1, 24, '1'),
(307, 'skull', '1', 'skull', 3, 1, 32, '1'),
(308, 'skull2', '1', 'skull2', 3, 1, 32, '1'),
(309, 'snowball_bumpy', '1', 'snowball_bumpy', 3, 1, 32, '1'),
(310, 'snowball_smooth', '1', 'snowball_smooth', 3, 1, 32, '1'),
(311, 'ss_bootsitjalapaset_blue', '1', 'ss_bootsitjalapaset_blue', 3, 1, 35, '1'),
(312, 'ss_bootsitjalapaset_red', '1', 'ss_bootsitjalapaset_red', 3, 1, 35, '1'),
(313, 'ss_costume_blue', '1', 'ss_costume_blue', 3, 1, 35, '1'),
(314, 'ss_costume_red', '1', 'ss_costume_red', 3, 1, 35, '1'),
(315, 'ss_hits_by_snowball', '1', 'ss_hits_by_snowball', 3, 1, 35, '1'),
(316, 'ss_snowballmachine', '1', 'ss_snowballmachine', 3, 1, 32, '1'),
(317, 'ss_snowflake1_001', '1', 'ss_snowflake1_001', 3, 1, 29, '1'),
(319, 'ss_snowflake2', '1', 'ss_snowflake2', 3, 1, 29, '1'),
(320, 'ss_snowman', '1', 'ss_snowman', 3, 1, 35, '1'),
(321, 'ss_snowqueen', '1', 'ss_snowqueen', 3, 1, 35, '1'),
(322, 'ss_snowtree', '1', 'ss_snowtree', 3, 1, 32, '1'),
(323, 'star', '1', 'star', 3, 1, 7, '1'),
(324, 'sticker_eraser', '1', 'sticker_eraser', 3, 1, 32, '1'),
(325, 'sticker_gentleman', '1', 'sticker_gentleman', 3, 1, 24, '1'),
(326, 'sticker_mineur', '1', 'sticker_mineur', 3, 1, 24, '1'),
(327, 'sticker_pencil', '1', 'sticker_pencil', 3, 1, 32, '1'),
(328, 'sticker_pencil_2', '1', 'sticker_pencil_2', 3, 1, 32, '1'),
(329, 't', '1', 't', 3, 1, 7, '1'),
(330, 'trax_bling', '1', 'trax_bling', 3, 1, 23, '1'),
(331, 'trax_reggae', '1', 'trax_reggae', 3, 1, 23, '1'),
(332, 'u', '1', 'u', 3, 1, 7, '1'),
(333, 'underscore', '1', 'underscore', 3, 1, 7, '1'),
(334, 'v', '1', 'v', 3, 1, 7, '1'),
(335, 'val_cupido_anim2', '1', 'val_cupido_anim2', 3, 1, 29, '1'),
(336, 'w', '1', 'w', 3, 1, 7, '1'),
(337, 'wormhand', '1', 'wormhand', 3, 1, 32, '1'),
(338, 'x', '1', 'x', 3, 1, 7, '1'),
(340, 'xmas_skater_costume', '1', 'xmas_skater_costume', 3, 1, 35, '1'),
(341, 'xmas_strap_horiz_gold', '1', 'xmas_strap_horiz_gold', 3, 1, 29, '1'),
(342, 'xmas_strap_horiz_silve', '1', 'xmas_strap_horiz_silve', 3, 1, 29, '1'),
(343, 'xmas_strap_vertical_gold', '1', 'xmas_strap_vertical_gold', 3, 1, 22, '1'),
(344, 'xmas_strap_vertical_silver', '1', 'xmas_strap_vertical_silver', 3, 1, 26, '1'),
(345, 'y', '1', 'y', 3, 1, 7, '1'),
(346, 'z', '1', 'z', 3, 1, 7, '1'),
(348, 'zombiepupu', '1', 'zombiepupu', 3, 1, 32, '1'),
(349, 'diamond_reward', '1', 'diamond_reward', 3, 1, 32, '1'),
(350, 'nz_tiki', '1', 'nz_tiki', 3, 1, 30, '1'),
(351, 'jp_godzilla', '1', 'jp_godzilla', 3, 1, 32, '1'),
(352, 'jp_sushi', '1', 'jp_sushi', 3, 1, 30, '1'),
(354, 'spotlight_sticker_2', '1', 'spotlight_sticker_2', 3, 1, 30, '1'),
(355, 'spotlight_sticker', '1', 'spotlight_sticker', 3, 1, 30, '1'),
(356, 'anim_king', '1', 'anim_king', 3, 1, 24, '1'),
(357, 'filmstrip_corner_botleft', '1', 'filmstrip_corner_botleft', 3, 1, 30, '1'),
(358, 'filmstrip_corner_botright', '1', 'filmstrip_corner_botright', 3, 1, 30, '1'),
(359, 'filmstrip_corner_topleft', '1', 'filmstrip_corner_topleft', 3, 1, 30, '1'),
(360, 'filmstrip_corner_topright', '1', 'filmstrip_corner_topright', 3, 1, 30, '1'),
(361, 'filmstrip_horiz', '1', 'filmstrip_horiz', 3, 1, 30, '1'),
(362, 'filmstrip_vert', '1', 'filmstrip_vert', 3, 1, 30, '1'),
(363, 'hw_3d_glasses', '1', 'hw_3d_glasses', 3, 1, 35, '1'),
(364, 'hw_actionstar', '1', 'hw_actionstar', 3, 1, 24, '1'),
(365, 'hw_bigcamera', '1', 'hw_bigcamera', 3, 1, 30, '1'),
(366, 'hw_bouncers', '1', 'hw_bouncers', 3, 1, 24, '1'),
(367, 'hw_camera_l', '1', 'hw_camera_l', 3, 1, 30, '1'),
(368, 'hw_camera_r', '1', 'hw_camera_r', 3, 1, 30, '1'),
(369, 'hw_carpet_corner_down', '1', 'hw_carpet_corner_down', 3, 1, 29, '1'),
(370, 'hw_carpet_corner_up', '1', 'hw_carpet_corner_up', 3, 1, 30, '1'),
(371, 'hw_carpet_end_ldown', '1', 'hw_carpet_end_ldown', 3, 1, 30, '1'),
(372, 'hw_carpet_end_lup', '1', 'hw_carpet_end_lup', 3, 1, 30, '1'),
(373, 'hw_carpet_end_rdown', '1', 'hw_carpet_end_rdown', 3, 1, 30, '1'),
(374, 'hw_carpet_end_rup', '1', 'hw_carpet_end_rup', 3, 1, 30, '1'),
(375, 'hw_carpet_l', '1', 'hw_carpet_l', 3, 1, 30, '1'),
(376, 'hw_carpet_r', '1', 'hw_carpet_r', 3, 1, 30, '1'),
(377, 'hw_hairspray', '1', 'hw_hairspray', 3, 1, 24, '1'),
(378, 'hw_hippie', '1', 'hw_hippie', 3, 1, 24, '1'),
(379, 'hw_hitcher', '1', 'hw_hitcher', 3, 1, 24, '1'),
(380, 'hw_inmate', '1', 'hw_inmate', 3, 1, 24, '1'),
(381, 'hw_kenny_burger', '1', 'hw_kenny_burger', 3, 1, 24, '1'),
(382, 'hw_kenny_fight', '1', 'hw_kenny_fight', 3, 1, 23, '1'),
(383, 'hw_kenny_shock', '1', 'hw_kenny_shock', 3, 1, 24, '1'),
(384, 'hw_logoanim', '1', 'hw_logoanim', 3, 1, 30, '1'),
(385, 'hw_mega_afro', '1', 'hw_mega_afro', 3, 1, 35, '1'),
(386, 'hw_shades', '1', 'hw_shades', 3, 1, 35, '1'),
(387, 'hw_speedobunny', '1', 'hw_speedobunny', 3, 1, 24, '1'),
(388, 'limo_back', '1', 'limo_back', 3, 1, 30, '1'),
(389, 'limo_doorpiece', '1', 'limo_doorpiece', 3, 1, 30, '1'),
(390, 'limo_front', '1', 'limo_front', 3, 1, 30, '1'),
(391, 'limo_windowpiece', '1', 'limo_windowpiece', 3, 1, 30, '1'),
(392, 'money_o', '1', 'money_o', 3, 1, 32, '1'),
(393, 'money_stash', '1', 'money_stash', 3, 1, 32, '1'),
(394, 'money_v', '1', 'money_v', 3, 1, 32, '1'),
(395, 'spotlight_sticker2_001', '1', 'spotlight_sticker2_001', 3, 1, 30, '1'),
(396, 'spotlight_sticker_002', '1', 'spotlight_sticker_002', 3, 1, 30, '1'),
(397, 'grunge_polaroid_1', '1', 'grunge_polaroid_1', 3, 1, 30, '1'),
(398, 'grunge_polaroid_2', '1', 'grunge_polaroid_2', 3, 1, 30, '1'),
(399, 'grunge_polaroid_3', '1', 'grunge_polaroid_3', 3, 1, 30, '1'),
(400, 'grunge_polaroid_4', '1', 'grunge_polaroid_4', 3, 1, 30, '1'),
(401, 'grunge_polaroid_5', '1', 'grunge_polaroid_5', 3, 1, 30, '1'),
(402, 'fantasticfourlogo', '1', 'fantasticfourlogo', 3, 1, 28, '1'),
(403, 'bullybuster', '1', 'bullybuster', 3, 1, 32, '1'),
(404, 'lovebed', '1', 'lovebed', 3, 1, 29, '1'),
(406, 'banksbobby', '1', 'banksbobby', 3, 1, 30, '1'),
(407, 'bankscan', '1', 'bankscan', 3, 1, 30, '1'),
(408, 'banksdoor', '1', 'banksdoor', 3, 1, 30, '1'),
(409, 'banksheater', '1', 'banksheater', 3, 1, 30, '1'),
(410, 'horizontalink', '1', 'horizontalink', 3, 1, 28, '1'),
(411, 'verticalink', '1', 'verticalink', 3, 1, 32, '1'),
(412, 'britishlegion', '1', 'britishlegion', 3, 1, 29, '1'),
(413, 'teensbear', '1', 'teensbear', 3, 1, 29, '1'),
(414, 'teensberg', '1', 'teensberg', 3, 1, 32, '1'),
(417, 'kir_stamp1', '1', 'kir_stamp1', 3, 1, 30, '1'),
(418, 'kir_stamp2', '1', 'kir_stamp2', 3, 1, 30, '1'),
(419, 'kir_stamp3', '1', 'kir_stamp3', 3, 1, 30, '1'),
(420, 'kir_stamp4', '1', 'kir_stamp4', 3, 1, 30, '1'),
(421, 'kir_stamp5', '1', 'kir_stamp5', 3, 1, 30, '1'),
(422, 'kir_sticker', '1', 'kir_sticker', 3, 1, 30, '1'),
(423, 'hw_amp_big', '1', 'hw_amp_big', 3, 1, 23, '1'),
(424, 'hw_amp_small', '1', 'hw_amp_small', 3, 1, 23, '1'),
(425, 'hw_drummer_boy', '1', 'hw_drummer_boy', 3, 1, 35, '1'),
(426, 'hw_keyboards', '1', 'hw_keyboards', 3, 1, 23, '1'),
(427, 'hw_guitarplayer_white', '1', 'hw_guitarplayer_white', 3, 1, 23, '1'),
(429, 'edito_logo', '1', 'edito_logo', 3, 1, 30, '1'),
(430, 'xmas_smilla_snowboard', '1', 'xmas_smilla_snowboard', 3, 1, 29, '1'),
(431, 'kir_stamp6_003', '1', 'kir_stamp6_003', 3, 1, 30, '1'),
(432, 'xmassticker_anim_3000', '1', 'xmassticker_anim_3000', 3, 1, 29, '1'),
(433, 'orca_ideal_home', '1', 'orca_ideal_home', 3, 1, 30, '1'),
(434, 'xmas_jeff_donkey_reindeer_sticker', '1', 'xmas_jeff_donkey_reindeer_sticker', 3, 1, 24, '1'),
(435, 'bartender_costume', '1', 'bartender_costume', 3, 1, 35, '1'),
(436, 'crew_male_costume', '1', 'crew_male_costume', 3, 1, 35, '1'),
(437, 'femalecaptain_costume', '1', 'femalecaptain_costume', 3, 1, 35, '1'),
(438, 'malecaptain_costume', '1', 'malecaptain_costume', 3, 1, 35, '1'),
(439, 'stewardess_costume', '1', 'stewardess_costume', 3, 1, 35, '1'),
(440, 'valcaptain', '1', 'valcaptain', 3, 1, 24, '1'),
(441, 'valstewardess', '1', 'valstewardess', 3, 1, 24, '1'),
(442, 'valsteward', '1', 'valsteward', 3, 1, 24, '1'),
(443, 'valentertainer', '1', 'valentertainer', 3, 1, 24, '1'),
(444, 'rasta', '1', 'rasta', 3, 1, 24, '1'),
(445, 'missj', '1', 'missj', 3, 1, 24, '1'),
(446, 'valentine_welcome_sticker', '1', 'valentine_welcome_sticker', 3, 1, 29, '1'),
(447, 'habborella_logo', '1', 'habborella_logo', 3, 1, 30, '1'),
(448, 'tall_ship', '1', 'tall_ship', 3, 1, 32, '1'),
(449, 'leapday', '1', 'leapday', 3, 1, 29, '1'),
(450, 'patsday_kissme', '1', 'patsday_kissme', 3, 1, 29, '1'),
(451, 'patsday_potogold', '1', 'patsday_potogold', 3, 1, 29, '1'),
(452, 'patsday_shamrock', '1', 'patsday_shamrock', 3, 1, 29, '1'),
(453, 'patsday_shamborderv', '1', 'patsday_shamborderv', 3, 1, 22, '1'),
(454, 'patsday_shamborderh', '1', 'patsday_shamborderh', 3, 1, 22, '1'),
(455, 'patsday_claddagh', '1', 'patsday_claddagh', 3, 1, 29, '1'),
(456, 'sticker_themepark_003', '1', 'sticker_themepark_003', 3, 1, 30, '1'),
(457, 'sticker_themepark_002', '1', 'sticker_themepark_002', 3, 1, 30, '1'),
(458, '27224_sticker_themepark_001', '1', '27224_sticker_themepark_001', 3, 1, 30, '1'),
(459, 'cheese_badgesticker', '1', 'cheese_badgesticker', 3, 1, 32, '1'),
(460, 'geniefirehead', '1', 'geniefirehead', 3, 1, 35, '1'),
(461, 'bg_groupinfo', '1', 'bg_groupinfo', 3, 1, 32, '1'),
(462, 'bg_stickie', '1', 'bg_stickie', 3, 1, 32, '1'),
(463, 'wood_a', '1', 'wood_a', 3, 1, 7, '1'),
(464, 'wood_acircle', '1', 'wood_acircle', 3, 1, 7, '1'),
(465, 'wood_acsent', '1', 'wood_acsent', 3, 1, 7, '1'),
(466, 'wood_acsent2', '1', 'wood_acsent2', 3, 1, 7, '1'),
(467, 'wood_adots', '1', 'wood_adots', 3, 1, 7, '1'),
(468, 'wood_b', '1', 'wood_b', 3, 1, 7, '1'),
(469, 'wood_c', '1', 'wood_c', 3, 1, 7, '1'),
(470, 'wood_comma', '1', 'wood_comma', 3, 1, 7, '1'),
(471, 'wood_d', '1', 'wood_d', 3, 1, 7, '1'),
(472, 'wood_dot', '1', 'wood_dot', 3, 1, 7, '1'),
(473, 'wood_e', '1', 'wood_e', 3, 1, 7, '1'),
(474, 'wood_exclamation', '1', 'wood_exclamation', 3, 1, 7, '1'),
(475, 'wood_f', '1', 'wood_f', 3, 1, 7, '1'),
(476, 'wood_g', '1', 'wood_g', 3, 1, 7, '1'),
(477, 'wood_h', '1', 'wood_h', 3, 1, 7, '1'),
(478, 'wood_i', '1', 'wood_i', 3, 1, 7, '1'),
(479, 'wood_j', '1', 'wood_j', 3, 1, 7, '1'),
(480, 'wood_k', '1', 'wood_k', 3, 1, 7, '1'),
(481, 'wood_l', '1', 'wood_l', 3, 1, 7, '1'),
(482, 'wood_m', '1', 'wood_m', 3, 1, 7, '1'),
(483, 'wood_n', '1', 'wood_n', 3, 1, 7, '1'),
(484, 'wood_o', '1', 'wood_o', 3, 1, 7, '1'),
(485, 'wood_odots', '1', 'wood_odots', 3, 1, 7, '1'),
(486, 'wood_p', '1', 'wood_p', 3, 1, 7, '1'),
(487, 'wood_q', '1', 'wood_q', 3, 1, 7, '1'),
(488, 'wood_question', '1', 'wood_question', 3, 1, 7, '1'),
(489, 'wood_r', '1', 'wood_r', 3, 1, 7, '1'),
(490, 'wood_s', '1', 'wood_s', 3, 1, 7, '1'),
(491, 'wood_t', '1', 'wood_t', 3, 1, 7, '1'),
(492, 'wood_u', '1', 'wood_u', 3, 1, 7, '1'),
(493, 'wood_undermark', '1', 'wood_undermark', 3, 1, 7, '1'),
(494, 'wood_v', '1', 'wood_v', 3, 1, 7, '1'),
(495, 'wood_w', '1', 'wood_w', 3, 1, 7, '1'),
(496, 'wood_x', '1', 'wood_x', 3, 1, 7, '1'),
(497, 'wood_y', '1', 'wood_y', 3, 1, 7, '1'),
(498, 'wood_z', '1', 'wood_z', 3, 1, 7, '1'),
(499, 'uk_habbo_x_sticker', '1', 'uk_habbo_x_sticker', 3, 1, 30, '1'),
(500, 'habbo_x_home_sticker', '1', 'habbo_x_home_sticker', 3, 1, 30, '1'),
(501, 'habbolympics_teamsticker', '1', 'habbolympics_teamsticker', 3, 1, 30, '1'),
(502, 'orca_ideal_home_001', '1', 'orca_ideal_home_001', 3, 1, 32, '1'),
(503, 'warchild', '1', 'warchild', 3, 1, 28, '1'),
(504, 'pirates_captain', '1', 'pirates_captain', 3, 1, 24, '1'),
(505, 'pirates_dude02', '1', 'pirates_dude02', 3, 1, 24, '1'),
(506, 'hockeyref', '1', 'hockeyref', 3, 1, 24, '1'),
(507, 'hbb_sticker_01', '1', 'hbb_sticker_01', 3, 1, 28, '1'),
(508, 'hbb_sticker_02', '1', 'hbb_sticker_02', 3, 1, 28, '1'),
(509, 'hbb_sticker_03', '1', 'hbb_sticker_03', 3, 1, 28, '1'),
(510, 'sticker_olym_carson', '1', 'sticker_olym_carson', 3, 1, 24, '1'),
(511, 'sticker_olym_cresthawk', '1', 'sticker_olym_cresthawk', 3, 1, 24, '1'),
(512, 'sticker_olym_inari', '1', 'sticker_olym_inari', 3, 1, 24, '1'),
(513, 'sticker_olym_jandelee', '1', 'sticker_olym_jandelee', 3, 1, 24, '1'),
(514, 'sticker_olym_loderse', '1', 'sticker_olym_loderse', 3, 1, 24, '1'),
(515, 'sticker_olym_moiraine', '1', 'sticker_olym_moiraine', 3, 1, 24, '1'),
(516, 'sticker_olym_nme', '1', 'sticker_olym_nme', 3, 1, 24, '1'),
(517, 'sticker_olym_smoothcriminal', '1', 'sticker_olym_smoothcriminal', 3, 1, 24, '1'),
(518, 'sticker_olym_squib', '1', 'sticker_olym_squib', 3, 1, 24, '1'),
(519, 'flameskull', '1', 'flameskull', 3, 1, 32, '1'),
(520, 'cn_teleskull', '1', 'cn_teleskull', 3, 1, 30, '1'),
(521, 'anim_brasero', '1', 'anim_brasero', 3, 1, 32, '1'),
(522, 'sticker_fireworkboom1', '1', 'sticker_fireworkboom1', 3, 1, 25, '1'),
(523, 'sticker_fireworkboom2', '1', 'sticker_fireworkboom2', 3, 1, 25, '1'),
(524, 'sticker_fireworkboom3', '1', 'sticker_fireworkboom3', 3, 1, 25, '1'),
(525, 'sticker_fireworkboom4', '1', 'sticker_fireworkboom4', 3, 1, 25, '1'),
(526, 'atw_week_1_england', '1', 'atw_week_1_england', 3, 1, 31, '1'),
(527, 'atw_week_1_wales', '1', 'atw_week_1_wales', 3, 1, 31, '1'),
(528, 'atw_week_1_rep_ireland', '1', 'atw_week_1_rep_ireland', 3, 1, 31, '1'),
(529, 'atw_week_1_n_ireland', '1', 'atw_week_1_n_ireland', 3, 1, 31, '1'),
(530, 'atw_week_1_scotland', '1', 'atw_week_1_scotland', 3, 1, 31, '1'),
(531, 'atw_week_1_netherlands', '1', 'atw_week_1_netherlands', 3, 1, 31, '1'),
(532, 'atw_week_1_belgium', '1', 'atw_week_1_belgium', 3, 1, 31, '1'),
(533, 'atw_week_1_denmark', '1', 'atw_week_1_denmark', 3, 1, 31, '1'),
(534, 'atw_week_1_kazakhstan', '1', 'atw_week_1_kazakhstan', 3, 1, 31, '1'),
(535, 'atw_week_1_india', '1', 'atw_week_1_india', 3, 1, 31, '1'),
(536, 'atw_week_1_thailand', '1', 'atw_week_1_thailand', 3, 1, 31, '1'),
(537, 'atw_week_1_mongolia', '1', 'atw_week_1_mongolia', 3, 1, 31, '1'),
(538, 'atw_week_1_usa', '1', 'atw_week_1_usa', 3, 1, 31, '1'),
(539, 'atw_week_1_mexico', '1', 'atw_week_1_mexico', 3, 1, 31, '1'),
(540, 'atw_week_1_greenland', '1', 'atw_week_1_greenland', 3, 1, 31, '1'),
(541, 'atw_week_1_morocco', '1', 'atw_week_1_morocco', 3, 1, 31, '1'),
(542, 'atw_week_1_algeria', '1', 'atw_week_1_algeria', 3, 1, 31, '1'),
(543, 'atw_week_1_israel', '1', 'atw_week_1_israel', 3, 1, 31, '1'),
(544, 'atw_week_1_egypt', '1', 'atw_week_1_egypt', 3, 1, 31, '1'),
(545, 'atw_week_1_france', '1', 'atw_week_1_france', 3, 1, 31, '1'),
(546, 'atw_week_2_norway', '1', 'atw_week_2_norway', 3, 1, 31, '1'),
(547, 'atw_week_2_italy', '1', 'atw_week_2_italy', 3, 1, 31, '1'),
(548, 'atw_week_2_portugal', '1', 'atw_week_2_portugal', 3, 1, 31, '1'),
(549, 'atw_week_2_germany', '1', 'atw_week_2_germany', 3, 1, 31, '1'),
(550, 'atw_week_2_vietnam', '1', 'atw_week_2_vietnam', 3, 1, 31, '1'),
(551, 'atw_week_2_cambodia', '1', 'atw_week_2_cambodia', 3, 1, 31, '1'),
(552, 'atw_week_2_china', '1', 'atw_week_2_china', 3, 1, 31, '1'),
(553, 'atw_week_2_south_korea', '1', 'atw_week_2_south_korea', 3, 1, 31, '1'),
(554, 'atw_week_2_canada', '1', 'atw_week_2_canada', 3, 1, 31, '1'),
(555, 'atw_week_2_belize', '1', 'atw_week_2_belize', 3, 1, 31, '1'),
(556, 'atw_week_2_cuba', '1', 'atw_week_2_cuba', 3, 1, 31, '1'),
(557, 'atw_week_2_jamaica', '1', 'atw_week_2_jamaica', 3, 1, 31, '1'),
(558, 'atw_week_2_cameroon', '1', 'atw_week_2_cameroon', 3, 1, 31, '1'),
(559, 'atw_week_2_nigeria', '1', 'atw_week_2_nigeria', 3, 1, 31, '1'),
(560, 'atw_week_2_saudi_arabia', '1', 'atw_week_2_saudi_arabia', 3, 1, 31, '1'),
(561, 'atw_week_2_iraq', '1', 'atw_week_2_iraq', 3, 1, 31, '1'),
(562, 'atw_week_3_sweden', '1', 'atw_week_3_sweden', 3, 1, 31, '1'),
(563, 'atw_week_3_finland', '1', 'atw_week_3_finland', 3, 1, 30, '1'),
(564, 'atw_week_3_spain', '1', 'atw_week_3_spain', 3, 1, 31, '1'),
(565, 'atw_week_3_czech_republic', '1', 'atw_week_3_czech_republic', 3, 1, 31, '1'),
(566, 'atw_week_3_taiwan', '1', 'atw_week_3_taiwan', 3, 1, 31, '1'),
(567, 'atw_week_3_malaysia', '1', 'atw_week_3_malaysia', 3, 1, 31, '1'),
(568, 'atw_week_3_japan', '1', 'atw_week_3_japan', 3, 1, 31, '1'),
(569, 'atw_week_3_honduras', '1', 'atw_week_3_honduras', 3, 1, 31, '1'),
(570, 'atw_week_3_costa_rica', '1', 'atw_week_3_costa_rica', 3, 1, 31, '1'),
(571, 'atw_week_3_panama', '1', 'atw_week_3_panama', 3, 1, 31, '1'),
(572, 'atw_week_3_bahamas', '1', 'atw_week_3_bahamas', 3, 1, 31, '1'),
(573, 'atw_week_3_congo', '1', 'atw_week_3_congo', 3, 1, 31, '1'),
(574, 'atw_week_3_uae', '1', 'atw_week_3_uae', 3, 1, 31, '1'),
(575, 'atw_week_3_ethiopia', '1', 'atw_week_3_ethiopia', 3, 1, 31, '1'),
(576, 'atw_week_3_kuwait', '1', 'atw_week_3_kuwait', 3, 1, 31, '1'),
(577, 'atw_week_4_switzerland', '1', 'atw_week_4_switzerland', 3, 1, 31, '1'),
(578, 'atw_week_4_estonia', '1', 'atw_week_4_estonia', 3, 1, 31, '1'),
(579, 'atw_week_4_poland', '1', 'atw_week_4_poland', 3, 1, 31, '1'),
(580, 'atw_week_4_greece', '1', 'atw_week_4_greece', 3, 1, 31, '1'),
(581, 'atw_week_4_indonesia', '1', 'atw_week_4_indonesia', 3, 1, 31, '1'),
(582, 'atw_week_4_philippines', '1', 'atw_week_4_philippines', 3, 1, 31, '1'),
(583, 'atw_week_4_papua_new_guinea', '1', 'atw_week_4_papua_new_guinea', 3, 1, 31, '1'),
(584, 'colombia', '1', 'colombia', 3, 1, 31, '1'),
(585, 'atw_week_4_venezuela', '1', 'atw_week_4_venezuela', 3, 1, 31, '1'),
(586, 'atw_week_4_ecuador', '1', 'atw_week_4_ecuador', 3, 1, 31, '1'),
(587, 'atw_week_4_peru', '1', 'atw_week_4_peru', 3, 1, 31, '1'),
(588, 'atw_week_4_kenya', '1', 'atw_week_4_kenya', 3, 1, 31, '1'),
(589, 'atw_week_4_angola', '1', 'atw_week_4_angola', 3, 1, 31, '1'),
(590, 'atw_week_4_turkmenistan', '1', 'atw_week_4_turkmenistan', 3, 1, 31, '1'),
(591, 'atw_week_4_iran', '1', 'atw_week_4_iran', 3, 1, 31, '1'),
(592, 'atw_week_5_slovakia', '1', 'atw_week_5_slovakia', 3, 1, 31, '1'),
(593, 'atw_week_5_belarus', '1', 'atw_week_5_belarus', 3, 1, 31, '1'),
(594, 'atw_week_5_ukraine', '1', 'atw_week_5_ukraine', 3, 1, 31, '1'),
(595, 'atw_week_5_turkey', '1', 'atw_week_5_turkey', 3, 1, 31, '1'),
(596, 'atw_week_5_australia', '1', 'atw_week_5_australia', 3, 1, 31, '1'),
(597, 'atw_week_5_samoa', '1', 'atw_week_5_samoa', 3, 1, 31, '1'),
(598, 'atw_week_5_paraguay', '1', 'atw_week_5_paraguay', 3, 1, 31, '1'),
(599, 'atw_week_5_bolivia', '1', 'atw_week_5_bolivia', 3, 1, 31, '1'),
(600, 'atw_week_5_brazil', '1', 'atw_week_5_brazil', 3, 1, 31, '1'),
(601, 'atw_week_5_afghanistan', '1', 'atw_week_5_afghanistan', 3, 1, 31, '1'),
(602, 'atw_week_5_pakistan', '1', 'atw_week_5_pakistan', 3, 1, 31, '1'),
(603, 'atw_week_5_tanzania', '1', 'atw_week_5_tanzania', 3, 1, 31, '1'),
(604, 'green_neon_0', '1', 'green_neon_0', 3, 1, 7, '1'),
(605, 'green_neon_1', '1', 'green_neon_1', 3, 1, 7, '1'),
(606, 'green_neon_2', '1', 'green_neon_2', 3, 1, 7, '1'),
(607, 'green_neon_3', '1', 'green_neon_3', 3, 1, 7, '1'),
(608, 'green_neon_4', '1', 'green_neon_4', 3, 1, 7, '1'),
(609, 'green_neon_5', '1', 'green_neon_5', 3, 1, 7, '1'),
(610, 'green_neon_6', '1', 'green_neon_6', 3, 1, 7, '1'),
(611, 'green_neon_7', '1', 'green_neon_7', 3, 1, 7, '1'),
(612, 'green_neon_8', '1', 'green_neon_8', 3, 1, 7, '1'),
(613, 'green_neon_9', '1', 'green_neon_9', 3, 1, 7, '1'),
(614, 'green_neon_a', '1', 'green_neon_a', 3, 1, 7, '1'),
(615, 'green_neon_b', '1', 'green_neon_b', 3, 1, 7, '1'),
(616, 'green_neon_c', '1', 'green_neon_c', 3, 1, 7, '1'),
(617, 'green_neon_d', '1', 'green_neon_d', 3, 1, 7, '1'),
(618, 'green_neon_e', '1', 'green_neon_e', 3, 1, 7, '1'),
(619, 'green_neon_f', '1', 'green_neon_f', 3, 1, 7, '1'),
(620, 'green_neon_g', '1', 'green_neon_g', 3, 1, 7, '1'),
(621, 'green_neon_h', '1', 'green_neon_h', 3, 1, 7, '1'),
(622, 'green_neon_i', '1', 'green_neon_i', 3, 1, 7, '1'),
(623, 'green_neon_j', '1', 'green_neon_j', 3, 1, 7, '1'),
(624, 'green_neon_k', '1', 'green_neon_k', 3, 1, 7, '1'),
(625, 'green_neon_l', '1', 'green_neon_l', 3, 1, 7, '1'),
(626, 'green_neon_m', '1', 'green_neon_m', 3, 1, 7, '1'),
(627, 'green_neon_n', '1', 'green_neon_n', 3, 1, 7, '1'),
(628, 'green_neon_o', '1', 'green_neon_o', 3, 1, 7, '1'),
(629, 'green_neon_p', '1', 'green_neon_p', 3, 1, 7, '1'),
(630, 'green_neon_q', '1', 'green_neon_q', 3, 1, 7, '1'),
(631, 'green_neon_r', '1', 'green_neon_r', 3, 1, 7, '1'),
(632, 'green_neon_s', '1', 'green_neon_s', 3, 1, 7, '1'),
(633, 'green_neon_t', '1', 'green_neon_t', 3, 1, 7, '1'),
(634, 'green_neon_u', '1', 'green_neon_u', 3, 1, 7, '1'),
(635, 'green_neon_v', '1', 'green_neon_v', 3, 1, 7, '1'),
(636, 'green_neon_w', '1', 'green_neon_w', 3, 1, 7, '1'),
(637, 'green_neon_x', '1', 'green_neon_x', 3, 1, 7, '1'),
(638, 'green_neon_y', '1', 'green_neon_y', 3, 1, 7, '1'),
(639, 'green_neon_z', '1', 'green_neon_z', 3, 1, 7, '1'),
(640, 'neon_blue_0', '1', 'neon_blue_0', 3, 1, 7, '1'),
(641, 'neon_blue_1', '1', 'neon_blue_1', 3, 1, 7, '1'),
(642, 'neon_blue_2', '1', 'neon_blue_2', 3, 1, 7, '1'),
(643, 'neon_blue_3', '1', 'neon_blue_3', 3, 1, 7, '1'),
(644, 'neon_blue_4', '1', 'neon_blue_4', 3, 1, 7, '1'),
(645, 'neon_blue_5', '1', 'neon_blue_5', 3, 1, 7, '1'),
(646, 'neon_blue_6', '1', 'neon_blue_6', 3, 1, 7, '1'),
(647, 'neon_blue_7', '1', 'neon_blue_7', 3, 1, 7, '1'),
(648, 'neon_blue_8', '1', 'neon_blue_8', 3, 1, 7, '1'),
(649, 'neon_blue_9', '1', 'neon_blue_9', 3, 1, 7, '1'),
(650, 'neon_blue_a', '1', 'neon_blue_a', 3, 1, 7, '1'),
(651, 'neon_blue_b', '1', 'neon_blue_b', 3, 1, 7, '1'),
(652, 'neon_blue_c', '1', 'neon_blue_c', 3, 1, 7, '1'),
(653, 'neon_blue_d', '1', 'neon_blue_d', 3, 1, 7, '1'),
(654, 'neon_blue_e', '1', 'neon_blue_e', 3, 1, 7, '1'),
(655, 'neon_blue_f', '1', 'neon_blue_f', 3, 1, 7, '1'),
(656, 'neon_blue_g', '1', 'neon_blue_g', 3, 1, 7, '1'),
(657, 'neon_blue_h', '1', 'neon_blue_h', 3, 1, 7, '1'),
(658, 'neon_blue_i', '1', 'neon_blue_i', 3, 1, 7, '1'),
(659, 'neon_blue_j', '1', 'neon_blue_j', 3, 1, 7, '1'),
(660, 'neon_blue_k', '1', 'neon_blue_k', 3, 1, 7, '1'),
(661, 'neon_blue_l', '1', 'neon_blue_l', 3, 1, 7, '1'),
(662, 'neon_blue_m', '1', 'neon_blue_m', 3, 1, 7, '1'),
(663, 'neon_blue_n', '1', 'neon_blue_n', 3, 1, 7, '1'),
(664, 'neon_blue_o', '1', 'neon_blue_o', 3, 1, 7, '1'),
(665, 'neon_blue_p', '1', 'neon_blue_p', 3, 1, 7, '1'),
(666, 'neon_blue_q', '1', 'neon_blue_q', 3, 1, 7, '1'),
(667, 'neon_blue_r', '1', 'neon_blue_r', 3, 1, 7, '1'),
(668, 'neon_blue_s', '1', 'neon_blue_s', 3, 1, 7, '1'),
(669, 'neon_blue_t', '1', 'neon_blue_t', 3, 1, 7, '1'),
(670, 'neon_blue_u', '1', 'neon_blue_u', 3, 1, 7, '1'),
(671, 'neon_blue_v', '1', 'neon_blue_v', 3, 1, 7, '1'),
(672, 'neon_blue_w', '1', 'neon_blue_w', 3, 1, 7, '1'),
(673, 'neon_blue_x', '1', 'neon_blue_x', 3, 1, 7, '1'),
(674, 'neon_blue_y', '1', 'neon_blue_y', 3, 1, 7, '1'),
(675, 'neon_blue_z', '1', 'neon_blue_z', 3, 1, 7, '1'),
(676, 'neon_pink_0', '1', 'neon_pink_0', 3, 1, 7, '1'),
(677, 'neon_pink_1', '1', 'neon_pink_1', 3, 1, 7, '1'),
(678, 'neon_pink_2', '1', 'neon_pink_2', 3, 1, 7, '1'),
(679, 'neon_pink_3', '1', 'neon_pink_3', 3, 1, 7, '1'),
(680, 'neon_pink_4', '1', 'neon_pink_4', 3, 1, 7, '1'),
(681, 'neon_pink_5', '1', 'neon_pink_5', 3, 1, 7, '1'),
(682, 'neon_pink_6', '1', 'neon_pink_6', 3, 1, 7, '1'),
(683, 'neon_pink_7', '1', 'neon_pink_7', 3, 1, 7, '1'),
(684, 'neon_pink_8', '1', 'neon_pink_8', 3, 1, 7, '1'),
(685, 'neon_pink_9', '1', 'neon_pink_9', 3, 1, 7, '1'),
(686, 'neon_pink_a', '1', 'neon_pink_a', 3, 1, 7, '1'),
(687, 'neon_pink_b', '1', 'neon_pink_b', 3, 1, 7, '1'),
(688, 'neon_pink_c', '1', 'neon_pink_c', 3, 1, 7, '1'),
(689, 'neon_pink_d', '1', 'neon_pink_d', 3, 1, 7, '1'),
(690, 'neon_pink_e', '1', 'neon_pink_e', 3, 1, 7, '1'),
(691, 'neon_pink_f', '1', 'neon_pink_f', 3, 1, 7, '1'),
(692, 'neon_pink_g', '1', 'neon_pink_g', 3, 1, 7, '1'),
(693, 'neon_pink_h', '1', 'neon_pink_h', 3, 1, 7, '1'),
(694, 'neon_pink_i', '1', 'neon_pink_i', 3, 1, 7, '1'),
(695, 'neon_pink_j', '1', 'neon_pink_j', 3, 1, 7, '1'),
(696, 'neon_pink_k', '1', 'neon_pink_k', 3, 1, 7, '1'),
(697, 'neon_pink_l', '1', 'neon_pink_l', 3, 1, 7, '1'),
(698, 'neon_pink_m', '1', 'neon_pink_m', 3, 1, 7, '1'),
(699, 'neon_pink_n', '1', 'neon_pink_n', 3, 1, 7, '1'),
(700, 'neon_pink_o', '1', 'neon_pink_o', 3, 1, 7, '1'),
(701, 'neon_pink_p', '1', 'neon_pink_p', 3, 1, 7, '1'),
(702, 'neon_pink_q', '1', 'neon_pink_q', 3, 1, 7, '1'),
(703, 'neon_pink_r', '1', 'neon_pink_r', 3, 1, 7, '1'),
(704, 'neon_pink_s', '1', 'neon_pink_s', 3, 1, 7, '1'),
(705, 'neon_pink_t', '1', 'neon_pink_t', 3, 1, 7, '1'),
(706, 'neon_pink_u', '1', 'neon_pink_u', 3, 1, 7, '1'),
(707, 'neon_pink_v', '1', 'neon_pink_v', 3, 1, 7, '1'),
(708, 'neon_pink_w', '1', 'neon_pink_w', 3, 1, 7, '1'),
(709, 'neon_pink_x', '1', 'neon_pink_x', 3, 1, 7, '1'),
(710, 'neon_pink_y', '1', 'neon_pink_y', 3, 1, 7, '1'),
(711, 'neon_pink_z', '1', 'neon_pink_z', 3, 1, 7, '1'),
(712, 'locoroco_sticker_125x100', '1', 'locoroco_sticker_125x100', 3, 1, 28, '1'),
(713, 'atw_week_5_namibia', '1', 'atw_week_5_namibia', 3, 1, 31, '1'),
(714, 'atw_week_5_solomon-islands', '1', 'atw_week_5_solomon-islands', 3, 1, 31, '1'),
(715, 'atw_week_5_solomon_islands', '1', 'atw_week_5_solomon_islands', 3, 1, 31, '1'),
(716, 'atw_week_6_russia', '1', 'atw_week_6_russia', 3, 1, 31, '1'),
(717, 'atw_week_6_uruguay', '1', 'atw_week_6_uruguay', 3, 1, 31, '1'),
(718, 'atw_week_6_chile', '1', 'atw_week_6_chile', 3, 1, 31, '1'),
(719, 'atw_week_6_argentina', '1', 'atw_week_6_argentina', 3, 1, 31, '1'),
(720, 'atw_week_6_latvia', '1', 'atw_week_6_latvia', 3, 1, 31, '1'),
(721, 'atw_week_6_bulgaria', '1', 'atw_week_6_bulgaria', 3, 1, 31, '1'),
(722, 'atw_week_6_romania', '1', 'atw_week_6_romania', 3, 1, 31, '1'),
(723, 'atw_week_6_hungary', '1', 'atw_week_6_hungary', 3, 1, 31, '1'),
(724, 'atw_week_6_fiji', '1', 'atw_week_6_fiji', 3, 1, 31, '1'),
(725, 'atw_week_6_tonga', '1', 'atw_week_6_tonga', 3, 1, 31, '1'),
(726, 'atw_week_6_new_zealand', '1', 'atw_week_6_new_zealand', 3, 1, 31, '1'),
(727, 'atw_week_6_south_africa', '1', 'atw_week_6_south_africa', 3, 1, 31, '1'),
(728, 'atw_week_6_madagascar', '1', 'atw_week_6_madagascar', 3, 1, 31, '1'),
(729, 'atw_week_6_botswana', '1', 'atw_week_6_botswana', 3, 1, 31, '1'),
(730, 'atw_week_6_oman', '1', 'atw_week_6_oman', 3, 1, 31, '1'),
(731, 'knifescrime_sticker_01', '1', 'knifescrime_sticker_01', 3, 1, 24, '1'),
(732, 'childline_habbo_stickers_generic_gold', '1', 'childline_habbo_stickers_generic_gold', 3, 1, 28, '1'),
(733, 'childline_habbo_stickers_generic_green', '1', 'childline_habbo_stickers_generic_green', 3, 1, 28, '1'),
(734, 'st_day1', '1', 'st_day1', 3, 1, 30, '1'),
(735, 'st_day2', '1', 'st_day2', 3, 1, 30, '1'),
(736, 'st_day3', '1', 'st_day3', 3, 1, 30, '1'),
(737, 'st_day4', '1', 'st_day4', 3, 1, 30, '1'),
(738, 'st_day5', '1', 'st_day5', 3, 1, 36, '1'),
(739, '8th_birthday_sticker_01', '1', '8th_birthday_sticker_01', 3, 1, 30, '1'),
(740, '8th_birthday_sticker_02', '1', '8th_birthday_sticker_02', 3, 1, 30, '1'),
(741, '8th_birthday_sticker_03', '1', '8th_birthday_sticker_03', 3, 1, 30, '1'),
(742, '8th_birthday_sticker_04', '1', '8th_birthday_sticker_04', 3, 1, 30, '1'),
(743, '8th_birthday_sticker_05', '1', '8th_birthday_sticker_05', 3, 1, 30, '1'),
(744, 'childline_habbo_stickers_production_gold', '1', 'childline_habbo_stickers_production_gold', 3, 1, 28, '1'),
(745, 'childline_habbo_stickers_production_green', '1', 'childline_habbo_stickers_production_green', 3, 1, 28, '1'),
(746, 'h4d_sticker_02', '1', 'h4d_sticker_02', 3, 1, 28, '1'),
(747, 'h4d_sticker_04', '1', 'h4d_sticker_04', 3, 1, 28, '1'),
(748, 'h4d_sticker_01', '1', 'h4d_sticker_01', 3, 1, 28, '1'),
(749, 'habwrecked_sticker_01_190x180', '1', 'habwrecked_sticker_01_190x180', 3, 1, 30, '1'),
(750, 'habwrecked_sticker_02_190x180', '1', 'habwrecked_sticker_02_190x180', 3, 1, 30, '1'),
(751, 'knifescrime_sticker_02', '1', 'knifescrime_sticker_02', 3, 1, 28, '1'),
(752, 'bluestarfish', '1', 'bluestarfish', 3, 1, 32, '1'),
(753, 'redstarfish', '1', 'redstarfish', 3, 1, 32, '1'),
(754, 'yellowstarfish', '1', 'yellowstarfish', 3, 1, 32, '1'),
(755, 'seagull_01', '1', 'seagull_01', 3, 1, 32, '1'),
(756, 'seagull_02', '1', 'seagull_02', 3, 1, 32, '1'),
(757, 'island', '1', 'island', 3, 1, 30, '1'),
(758, 'edito_fisherman_bait', '1', 'edito_fisherman_bait', 3, 1, 35, '1'),
(759, 'shell', '1', 'shell', 3, 1, 32, '1'),
(760, 'au_lifesaver', '1', 'au_lifesaver', 3, 1, 24, '1'),
(761, 'sunflower', '1', 'sunflower', 3, 1, 32, '1'),
(762, 'clothesline', '1', 'clothesline', 3, 1, 32, '1'),
(763, 'summer_rowingboat', '1', 'summer_rowingboat', 3, 1, 35, '1'),
(764, 'summer_cloud2', '1', 'summer_cloud2', 3, 1, 32, '1'),
(765, 'summer_cloud3', '1', 'summer_cloud3', 3, 1, 32, '1'),
(766, 'summer_cloud1', '1', 'summer_cloud1', 3, 1, 32, '1'),
(767, 'summer_swim_trunk', '1', 'summer_swim_trunk', 3, 1, 35, '1'),
(768, 'sticker_woodboard', '1', 'sticker_woodboard', 3, 1, 32, '1'),
(769, 'sticker_volcano', '1', 'sticker_volcano', 3, 1, 32, '1'),
(770, 'circus_sticker_tragafuegos', '1', 'circus_sticker_tragafuegos', 3, 1, 24, '1'),
(771, 'habwrecked_sticker_04_150x180', '1', 'habwrecked_sticker_04_150x180', 3, 1, 30, '1'),
(772, 'habwrecked_sticker_07_70x95', '1', 'habwrecked_sticker_07_70x95', 3, 1, 32, '1'),
(773, 'habwrecked_sticker_05_180x125', '1', 'habwrecked_sticker_05_180x125', 3, 1, 30, '1'),
(774, 'habwrecked_sticker_06_90x70', '1', 'habwrecked_sticker_06_90x70', 3, 1, 32, '1'),
(775, 'habwrecked_sticker_09_45x90', '1', 'habwrecked_sticker_09_45x90', 3, 1, 35, '1'),
(776, 'habwrecked_sticker_12_60x92', '1', 'habwrecked_sticker_12_60x92', 3, 1, 24, '1'),
(777, 'habwrecked_sticker_10_45x90', '1', 'habwrecked_sticker_10_45x90', 3, 1, 35, '1'),
(778, 'habwrecked_sticker_11_45x90', '1', 'habwrecked_sticker_11_45x90', 3, 1, 35, '1'),
(779, 'habwrecked_sticker_08_45x90', '1', 'habwrecked_sticker_08_45x90', 3, 1, 35, '1'),
(780, 'streaker', '1', 'streaker', 3, 1, 24, '1'),
(781, 'childline_habbo_stickers_accman_gold', '1', 'childline_habbo_stickers_accman_gold', 3, 1, 28, '1'),
(782, 'childline_habbo_stickers_accman_green', '1', 'childline_habbo_stickers_accman_green', 3, 1, 28, '1'),
(783, 'stick_stickukmyspace1', '1', 'stick_stickukmyspace1', 3, 1, 28, '1'),
(784, 'bionicle_sticker_01', '1', 'bionicle_sticker_01', 3, 1, 28, '1'),
(785, 'bionicle_sticker_02', '1', 'bionicle_sticker_02', 3, 1, 24, '1'),
(786, 'bionicle_sticker_03', '1', 'bionicle_sticker_03', 3, 1, 28, '1'),
(787, 'pixie_habbo_sticker_04', '1', 'pixie_habbo_sticker_04', 3, 1, 28, '1'),
(788, 'pixie_habbo_sticker_02', '1', 'pixie_habbo_sticker_02', 3, 1, 28, '1'),
(789, 'pixie_habbo_sticker_01', '1', 'pixie_habbo_sticker_01', 3, 1, 28, '1'),
(790, 'pixie_habbo_sticker_03', '1', 'pixie_habbo_sticker_03', 3, 1, 28, '1'),
(791, 'habprentice_sticker_01', '1', 'habprentice_sticker_01', 3, 1, 30, '1'),
(792, 'habprentice_sticker_02', '1', 'habprentice_sticker_02', 3, 1, 24, '1'),
(793, 'habprentice_sticker_03', '1', 'habprentice_sticker_03', 3, 1, 30, '1'),
(794, 'sticker_earth_hour', '1', 'sticker_earth_hour', 3, 1, 28, '1'),
(795, 'childline_habbo_stickers_creative_gold', '1', 'childline_habbo_stickers_creative_gold', 3, 1, 28, '1'),
(796, 'childline_habbo_stickers_creative_blue', '1', 'childline_habbo_stickers_creative_blue', 3, 1, 28, '1'),
(797, 'stick_easter_char2', '1', 'stick_easter_char2', 3, 1, 24, '1'),
(798, 'stick_easter_char1', '1', 'stick_easter_char1', 3, 1, 24, '1'),
(799, 'stick_easter_tree4', '1', 'stick_easter_tree4', 3, 1, 34, '1'),
(800, 'stick_easter_tree3', '1', 'stick_easter_tree3', 3, 1, 34, '1'),
(801, 'stick_easter_tree2', '1', 'stick_easter_tree2', 3, 1, 34, '1'),
(802, 'stick_easter_tree1', '1', 'stick_easter_tree1', 3, 1, 34, '1'),
(803, 'stick_easter_char8', '1', 'stick_easter_char8', 3, 1, 24, '1'),
(804, 'stick_easter_char7', '1', 'stick_easter_char7', 3, 1, 24, '1'),
(805, 'stick_easter_char6', '1', 'stick_easter_char6', 3, 1, 24, '1'),
(807, 'stick_easter_char4', '1', 'stick_easter_char4', 3, 1, 24, '1'),
(808, 'iovetree', '1', 'iovetree', 3, 1, 34, '1'),
(809, 'easter_tree_1', '1', 'easter_tree_1', 3, 1, 34, '1'),
(810, 'easter_tree_2', '1', 'easter_tree_2', 3, 1, 34, '1'),
(811, 'easter_tree_3', '1', 'easter_tree_3', 3, 1, 34, '1'),
(812, 'easter_tree_4', '1', 'easter_tree_4', 3, 1, 34, '1'),
(813, 'green_leaf_lower_left', '1', 'green_leaf_lower_left', 3, 1, 32, '1'),
(814, 'green_leaf_lower_right', '1', 'green_leaf_lower_right', 3, 1, 32, '1'),
(815, 'green_leaf_top_left', '1', 'green_leaf_top_left', 3, 1, 32, '1'),
(817, 'light_green_leaf_lower_left', '1', 'light_green_leaf_lower_left', 3, 1, 32, '1'),
(818, 'light_green_leaf_lower_right', '1', 'light_green_leaf_lower_right', 3, 1, 32, '1'),
(819, 'light_green_leaf_top_left', '1', 'light_green_leaf_top_left', 3, 1, 32, '1'),
(820, 'light_green_leaf_top_right', '1', 'light_green_leaf_top_right', 3, 1, 32, '1'),
(821, 'love_the_earth_avatar_tree', '1', 'love_the_earth_avatar_tree', 3, 1, 34, '1'),
(822, 'stick_easter_char3', '1', 'stick_easter_char3', 3, 1, 24, '1'),
(823, 'childline_habbo_stickers_proman_green_002', '1', 'childline_habbo_stickers_proman_green_002', 3, 1, 28, '1'),
(824, 'childline_habbo_stickers_proman_gold', '1', 'childline_habbo_stickers_proman_gold', 3, 1, 28, '1'),
(825, 'sticker_skidsr', '1', 'sticker_skidsr', 3, 1, 32, '1'),
(826, 'sticker_checkeredflagl', '1', 'sticker_checkeredflagl', 3, 1, 32, '1'),
(827, 'sticker_rcdriverf', '1', 'sticker_rcdriverf', 3, 1, 35, '1'),
(828, 'sticker_skidsl', '1', 'sticker_skidsl', 3, 1, 32, '1'),
(829, 'sticker_checkeredflagr', '1', 'sticker_checkeredflagr', 3, 1, 32, '1'),
(830, 'sticker_rcdriverm1', '1', 'sticker_rcdriverm1', 3, 1, 35, '1'),
(831, 'blue_diner_a', '1', 'blue_diner_a', 3, 1, 7, '1'),
(832, 'blue_diner_a_umlaut', '1', 'blue_diner_a_umlaut', 3, 1, 7, '1'),
(833, 'blue_diner_ae', '1', 'blue_diner_ae', 3, 1, 7, '1'),
(834, 'blue_diner_b', '1', 'blue_diner_b', 3, 1, 7, '1'),
(835, 'blue_diner_c', '1', 'blue_diner_c', 3, 1, 7, '1'),
(836, 'blue_diner_c_cedilla', '1', 'blue_diner_c_cedilla', 3, 1, 7, '1'),
(837, 'blue_diner_d', '1', 'blue_diner_d', 3, 1, 7, '1'),
(838, 'blue_diner_e', '1', 'blue_diner_e', 3, 1, 7, '1'),
(839, 'blue_diner_e_acc', '1', 'blue_diner_e_acc', 3, 1, 7, '1'),
(840, 'blue_diner_e_acc_grave', '1', 'blue_diner_e_acc_grave', 3, 1, 7, '1'),
(841, 'blue_diner_eight', '1', 'blue_diner_eight', 3, 1, 7, '1'),
(842, 'blue_diner_exclamation', '1', 'blue_diner_exclamation', 3, 1, 7, '1'),
(843, 'blue_diner_f', '1', 'blue_diner_f', 3, 1, 7, '1'),
(844, 'blue_diner_five', '1', 'blue_diner_five', 3, 1, 7, '1'),
(845, 'blue_diner_four', '1', 'blue_diner_four', 3, 1, 7, '1'),
(846, 'blue_diner_g', '1', 'blue_diner_g', 3, 1, 7, '1'),
(847, 'blue_diner_h', '1', 'blue_diner_h', 3, 1, 7, '1'),
(848, 'blue_diner_i', '1', 'blue_diner_i', 3, 1, 7, '1'),
(849, 'blue_diner_j', '1', 'blue_diner_j', 3, 1, 7, '1'),
(850, 'blue_diner_k', '1', 'blue_diner_k', 3, 1, 7, '1'),
(851, 'blue_diner_l', '1', 'blue_diner_l', 3, 1, 7, '1'),
(852, 'blue_diner_m', '1', 'blue_diner_m', 3, 1, 7, '1'),
(853, 'blue_diner_n', '1', 'blue_diner_n', 3, 1, 7, '1'),
(854, 'blue_diner_nine', '1', 'blue_diner_nine', 3, 1, 7, '1');
INSERT INTO `homes_catalog` (`id`, `name`, `type`, `data`, `price`, `amount`, `category`, `sorted`) VALUES
(855, 'blue_diner_o', '1', 'blue_diner_o', 3, 1, 7, '1'),
(856, 'blue_diner_o_accute', '1', 'blue_diner_o_accute', 3, 1, 7, '1'),
(857, 'blue_diner_o_cc_grave', '1', 'blue_diner_o_cc_grave', 3, 1, 7, '1'),
(858, 'blue_diner_o_umlaut', '1', 'blue_diner_o_umlaut', 3, 1, 7, '1'),
(859, 'blue_diner_one', '1', 'blue_diner_one', 3, 1, 7, '1'),
(860, 'blue_diner_p', '1', 'blue_diner_p', 3, 1, 7, '1'),
(861, 'blue_diner_q', '1', 'blue_diner_q', 3, 1, 7, '1'),
(862, 'blue_diner_question', '1', 'blue_diner_question', 3, 1, 7, '1'),
(863, 'blue_diner_r', '1', 'blue_diner_r', 3, 1, 7, '1'),
(864, 'blue_diner_s', '1', 'blue_diner_s', 3, 1, 7, '1'),
(865, 'blue_diner_seven', '1', 'blue_diner_seven', 3, 1, 7, '1'),
(866, 'blue_diner_six', '1', 'blue_diner_six', 3, 1, 7, '1'),
(867, 'blue_diner_t', '1', 'blue_diner_t', 3, 1, 7, '1'),
(868, 'blue_diner_three', '1', 'blue_diner_three', 3, 1, 7, '1'),
(869, 'blue_diner_two', '1', 'blue_diner_two', 3, 1, 7, '1'),
(870, 'blue_diner_u', '1', 'blue_diner_u', 3, 1, 7, '1'),
(871, 'blue_diner_u_acc', '1', 'blue_diner_u_acc', 3, 1, 7, '1'),
(872, 'blue_diner_u_acc_grave', '1', 'blue_diner_u_acc_grave', 3, 1, 7, '1'),
(873, 'blue_diner_u_umlaut', '1', 'blue_diner_u_umlaut', 3, 1, 7, '1'),
(874, 'blue_diner_upsidedown', '1', 'blue_diner_upsidedown', 3, 1, 7, '1'),
(875, 'blue_diner_v', '1', 'blue_diner_v', 3, 1, 7, '1'),
(876, 'blue_diner_w', '1', 'blue_diner_w', 3, 1, 7, '1'),
(877, 'blue_diner_x', '1', 'blue_diner_x', 3, 1, 7, '1'),
(878, 'blue_diner_y', '1', 'blue_diner_y', 3, 1, 7, '1'),
(879, 'blue_diner_z', '1', 'blue_diner_z', 3, 1, 7, '1'),
(880, 'blue_diner_zero', '1', 'blue_diner_zero', 3, 1, 7, '1'),
(881, 'groupofhabbos', '1', 'groupofhabbos', 3, 1, 30, '1'),
(883, 'cint_logo', '1', 'cint_logo', 3, 1, 28, '1'),
(884, 'sticker_mall_3', '1', 'sticker_mall_3', 3, 1, 30, '1'),
(885, 'sticker_mall_4', '1', 'sticker_mall_4', 3, 1, 30, '1'),
(886, 'sticker_newcow', '1', 'sticker_newcow', 3, 1, 24, '1'),
(887, 'sticker_country_donkey', '1', 'sticker_country_donkey', 3, 1, 24, '1'),
(888, 'stick_country_sheep1', '1', 'stick_country_sheep1', 3, 1, 32, '1'),
(889, 'stick_country_sheep2', '1', 'stick_country_sheep2', 3, 1, 32, '1'),
(890, 'stick_country_horse', '1', 'stick_country_horse', 3, 1, 24, '1'),
(891, 'stick_country_pig', '1', 'stick_country_pig', 3, 1, 32, '1'),
(892, 'stick_country_cow', '1', 'stick_country_cow', 3, 1, 24, '1'),
(893, 'stick_country_cow2', '1', 'stick_country_cow2', 3, 1, 24, '1'),
(894, 'childline_habbo_stickers_planner_gold', '1', 'childline_habbo_stickers_planner_gold', 3, 1, 28, '1'),
(895, 'childline_habbo_stickers_planner_blue', '1', 'childline_habbo_stickers_planner_blue', 3, 1, 28, '1'),
(896, 'ukbigbrothersticker', '1', 'ukbigbrothersticker', 3, 1, 30, '1'),
(897, 'drsticker', '1', 'drsticker', 3, 1, 28, '1'),
(898, 'arm_sticker_1_001', '1', 'arm_sticker_1_001', 3, 1, 28, '1'),
(899, 'arm_sticker_2_001', '1', 'arm_sticker_2_001', 3, 1, 28, '1'),
(900, 'stick_uk_starshine', '1', 'stick_uk_starshine', 3, 1, 25, '1'),
(901, 'stick_hween09_keyboardhands', '1', 'stick_hween09_keyboardhands', 3, 1, 32, '1'),
(902, 'stick_hween09_exclamation', '1', 'stick_hween09_exclamation', 3, 1, 32, '1'),
(903, 'stick_hween09_alien', '1', 'stick_hween09_alien', 3, 1, 32, '1'),
(904, 'stick_hween09_cctv', '1', 'stick_hween09_cctv', 3, 1, 32, '1'),
(905, 'stick_hween09_infobox', '1', 'stick_hween09_infobox', 3, 1, 30, '1'),
(906, 'stick_hween09_videocam2', '1', 'stick_hween09_videocam2', 3, 1, 30, '1'),
(908, 'stick_hween09_newsofhabbo', '1', 'stick_hween09_newsofhabbo', 3, 1, 28, '1'),
(909, 'stick_howufeelin_face', '1', 'stick_howufeelin_face', 3, 1, 28, '1'),
(910, 'childline_01', '1', 'childline_01', 3, 1, 28, '1'),
(911, 'childline_02', '1', 'childline_02', 3, 1, 28, '1'),
(912, 'moodi_01', '1', 'moodi_01', 3, 1, 28, '1'),
(913, 'moodi_02', '1', 'moodi_02', 3, 1, 28, '1'),
(914, 'moodi_03', '1', 'moodi_03', 3, 1, 28, '1'),
(915, 'moodi_04', '1', 'moodi_04', 3, 1, 28, '1'),
(916, 'moodi_05', '1', 'moodi_05', 3, 1, 28, '1'),
(917, 'moodi_06', '1', 'moodi_06', 3, 1, 28, '1'),
(918, 'moodi_07', '1', 'moodi_07', 3, 1, 28, '1'),
(919, 'moodi_08', '1', 'moodi_08', 3, 1, 28, '1'),
(920, 'moodi_09', '1', 'moodi_09', 3, 1, 28, '1'),
(921, 'moodi_10', '1', 'moodi_10', 3, 1, 28, '1'),
(922, 'moodi_11', '1', 'moodi_11', 3, 1, 28, '1'),
(923, 'moodi_12', '1', 'moodi_12', 3, 1, 28, '1'),
(924, 'moodi_13', '1', 'moodi_13', 3, 1, 28, '1'),
(925, 'moodi_14', '1', 'moodi_14', 3, 1, 28, '1'),
(926, 'moodi_15', '1', 'moodi_15', 3, 1, 28, '1'),
(927, 'uk_maze_09_champion_sticker', '1', 'uk_maze_09_champion_sticker', 3, 1, 30, '1'),
(928, 'uk_bullyproof_sticker_01', '1', 'uk_bullyproof_sticker_01', 3, 1, 28, '1'),
(929, 'xmas2009_bauble', '1', 'xmas2009_bauble', 3, 1, 29, '1'),
(930, 'xmas2009_bubbledrink', '1', 'xmas2009_bubbledrink', 3, 1, 32, '1'),
(931, 'xmas2009_cakes', '1', 'xmas2009_cakes', 3, 1, 29, '1'),
(932, 'xmas2009_elfbadge', '1', 'xmas2009_elfbadge', 3, 1, 32, '1'),
(933, 'xmas2009_reindeerpin', '1', 'xmas2009_reindeerpin', 3, 1, 29, '1'),
(934, 'xmas2009_snowshake', '1', 'xmas2009_snowshake', 3, 1, 29, '1'),
(935, 'stick_pj_ares', '1', 'stick_pj_ares', 3, 1, 28, '1'),
(936, 'stick_pj_cyclops', '1', 'stick_pj_cyclops', 3, 1, 28, '1'),
(937, 'stick_pj_hephaestus', '1', 'stick_pj_hephaestus', 3, 1, 28, '1'),
(938, 'stick_pj_hermes', '1', 'stick_pj_hermes', 3, 1, 24, '1'),
(939, 'stick_pj_poseidon', '1', 'stick_pj_poseidon', 3, 1, 28, '1'),
(940, 'stick_pj_zeus', '1', 'stick_pj_zeus', 3, 1, 28, '1'),
(941, 'sticker_yir', '1', 'sticker_yir', 3, 1, 28, '1'),
(942, 'circus_sticker_payaso', '1', 'circus_sticker_payaso', 3, 1, 24, '1'),
(943, 'sticker_tlc', '1', 'sticker_tlc', 3, 1, 28, '1'),
(944, 'sticker_fire', '1', 'sticker_fire', 3, 1, 24, '1'),
(945, 'stick_habbolympics_gold', '1', 'stick_habbolympics_gold', 3, 1, 30, '1'),
(946, 'stick_habbolympics_silver', '1', 'stick_habbolympics_silver', 3, 1, 30, '1'),
(947, 'stick_habbolympics_bronze', '1', 'stick_habbolympics_bronze', 3, 1, 30, '1'),
(948, 'sticker_loudmouth', '1', 'sticker_loudmouth', 3, 1, 28, '1'),
(949, 'sticker_cryboy', '1', 'sticker_cryboy', 3, 1, 28, '1'),
(950, 'sticker_clown', '1', 'sticker_clown', 3, 1, 28, '1'),
(951, 'uk_fairytales_bookcase', '1', 'uk_fairytales_bookcase', 3, 1, 32, '1'),
(952, 'uk_fairytales_book_01', '1', 'uk_fairytales_book_01', 3, 1, 30, '1'),
(953, 'uk_fairytales_sticker_01', '1', 'uk_fairytales_sticker_01', 3, 1, 30, '1'),
(954, 'hw_uk_fairytales_sticker_02', '1', 'hw_uk_fairytales_sticker_02', 3, 1, 30, '1'),
(955, 'hw_uk_fairytales_sticker_03', '1', 'hw_uk_fairytales_sticker_03', 3, 1, 32, '1'),
(956, 'uk_fairytales_book_02', '1', 'uk_fairytales_book_02', 3, 1, 30, '1'),
(957, 'uk_fairytales_book_03', '1', 'uk_fairytales_book_03', 3, 1, 30, '1'),
(958, 'hw_stpat2010_kiss1', '1', 'hw_stpat2010_kiss1', 3, 1, 29, '1'),
(959, 'hw_stpat2010_kiss2', '1', 'hw_stpat2010_kiss2', 3, 1, 29, '1'),
(960, 'hw_stpat2010_stpatdrink', '1', 'hw_stpat2010_stpatdrink', 3, 1, 29, '1'),
(961, 'hw_stpat2010_pantsf', '1', 'hw_stpat2010_pantsf', 3, 1, 35, '1'),
(962, 'hw_stpat2010_pantsm', '1', 'hw_stpat2010_pantsm', 3, 1, 29, '1'),
(963, 'hw_stpat2010_tshirtf', '1', 'hw_stpat2010_tshirtf', 3, 1, 29, '1'),
(964, 'hw_stpat2010_tshirtm', '1', 'hw_stpat2010_tshirtm', 3, 1, 29, '1'),
(965, 'hw_stpat2010_hat', '1', 'hw_stpat2010_hat', 3, 1, 29, '1'),
(966, 'hw_stpat2010_bighat', '1', 'hw_stpat2010_bighat', 3, 1, 29, '1'),
(967, 'hw_stpat2010_lepricornoutfit', '1', 'hw_stpat2010_lepricornoutfit', 3, 1, 29, '1'),
(968, 'hw_stpat2010_femalelepricorn', '1', 'hw_stpat2010_femalelepricorn', 3, 1, 35, '1'),
(969, 'hw_stpat2010_cider', '1', 'hw_stpat2010_cider', 3, 1, 32, '1'),
(970, 'hw_stpat2010_border1', '1', 'hw_stpat2010_border1', 3, 1, 22, '1'),
(971, 'hw_stpat2010_border2', '1', 'hw_stpat2010_border2', 3, 1, 22, '1'),
(972, 'hw_stpat2010_potofgold', '1', 'hw_stpat2010_potofgold', 3, 1, 29, '1'),
(973, 'hw_stpat2010_shamrock', '1', 'hw_stpat2010_shamrock', 3, 1, 29, '1'),
(974, 'uk_fairytales_book_04', '1', 'uk_fairytales_book_04', 3, 1, 30, '1'),
(975, 'uk_fairytales_book_05', '1', 'uk_fairytales_book_05', 3, 1, 30, '1'),
(976, 'uk_fairytales_book_06', '1', 'uk_fairytales_book_06', 3, 1, 30, '1'),
(977, 'uk_fairytales_book_07', '1', 'uk_fairytales_book_07', 3, 1, 30, '1'),
(978, 'uk_fairytales_book_08', '1', 'uk_fairytales_book_08', 3, 1, 30, '1'),
(979, 'uk_fairytales_book_09', '1', 'uk_fairytales_book_09', 3, 1, 30, '1'),
(980, 'uk_fairytales_book_10', '1', 'uk_fairytales_book_10', 3, 1, 30, '1'),
(981, 'uk_fairytales_sticker_04', '1', 'uk_fairytales_sticker_04', 3, 1, 29, '1'),
(982, 'uk_fairytales_sticker_05', '1', 'uk_fairytales_sticker_05', 3, 1, 30, '1'),
(983, 'uk_fairytales_sticker_06', '1', 'uk_fairytales_sticker_06', 3, 1, 30, '1'),
(984, 'uk_fairytales_sticker_07', '1', 'uk_fairytales_sticker_07', 3, 1, 30, '1'),
(985, 'uk_fairytales_sticker_08', '1', 'uk_fairytales_sticker_08', 3, 1, 30, '1'),
(986, 'uk_fairytales_sticker_09', '1', 'uk_fairytales_sticker_09', 3, 1, 30, '1'),
(987, 'uk_fairytales_sticker_10', '1', 'uk_fairytales_sticker_10', 3, 1, 30, '1'),
(988, 'hw_uk_marchon_sticker_01', '1', 'hw_uk_marchon_sticker_01', 3, 1, 28, '1'),
(989, 'hw_uk_marchon_sticker_02', '1', 'hw_uk_marchon_sticker_02', 3, 1, 30, '1'),
(991, 'bg_colour_01', '4', 'bg_colour_01', 3, 1, 5, '1'),
(992, 'bg_colour_08', '4', 'bg_colour_08', 3, 1, 5, '1'),
(993, 'bg_colour_12', '4', 'bg_colour_12', 3, 1, 5, '1'),
(994, 'bg_colour_16', '4', 'bg_colour_16', 3, 1, 5, '1'),
(995, 'bg_denim', '4', 'bg_denim', 3, 1, 33, '1'),
(996, 'bg_lace', '4', 'bg_lace', 3, 1, 33, '1'),
(997, 'bg_stitched', '4', 'bg_stitched', 3, 1, 33, '1'),
(998, 'bg_wood', '4', 'bg_wood', 3, 1, 33, '1'),
(999, 'bg_cork', '4', 'bg_cork', 3, 1, 33, '1'),
(1000, 'bg_stone', '4', 'bg_stone', 3, 1, 33, '1'),
(1001, 'bg_pattern_bricks', '4', 'bg_pattern_bricks', 3, 1, 33, '1'),
(1002, 'bg_ruled_paper', '4', 'bg_ruled_paper', 3, 1, 33, '1'),
(1003, 'bg_grass', '4', 'bg_grass', 3, 1, 5, '1'),
(1004, 'bg_hotel', '4', 'bg_hotel', 3, 1, 36, '1'),
(1005, 'bg_bubble', '4', 'bg_bubble', 3, 1, 33, '1'),
(1006, 'bg_pattern_bobbaskulls1', '4', 'bg_pattern_bobbaskulls1', 3, 1, 33, '1'),
(1007, 'bg_pattern_space', '4', 'bg_pattern_space', 3, 1, 33, '1'),
(1008, 'bg_image_submarine', '4', 'bg_image_submarine', 3, 1, 33, '1'),
(1009, 'bg_metal2', '4', 'bg_metal2', 3, 1, 33, '1'),
(1010, 'bg_broken_glass', '4', 'bg_broken_glass', 3, 1, 33, '1'),
(1011, 'bg_pattern_clouds', '4', 'bg_pattern_clouds', 3, 1, 33, '1'),
(1012, 'bg_comic2', '4', 'bg_comic2', 3, 1, 33, '1'),
(1013, 'bg_pattern_floral_01', '4', 'bg_pattern_floral_01', 3, 1, 33, '1'),
(1014, 'bg_pattern_floral_02', '4', 'bg_pattern_floral_02', 3, 1, 33, '1'),
(1015, 'bg_pattern_floral_03', '4', 'bg_pattern_floral_03', 3, 1, 33, '1'),
(1016, 'bg_pattern_bulb', '4', 'bg_pattern_bulb', 3, 1, 33, '1'),
(1017, 'bg_pattern_cars', '4', 'bg_pattern_cars', 3, 1, 33, '1'),
(1018, 'bg_pattern_carpants', '4', 'bg_pattern_carpants', 3, 1, 33, '1'),
(1019, 'bg_pattern_plasto', '4', 'bg_pattern_plasto', 3, 1, 33, '1'),
(1020, 'bg_pattern_tinyroom', '4', 'bg_pattern_tinyroom', 3, 1, 33, '1'),
(1021, 'bg_pattern_hearts', '4', 'bg_pattern_hearts', 3, 1, 33, '1'),
(1022, 'bg_pattern_abstract1', '4', 'bg_pattern_abstract1', 3, 1, 33, '1'),
(1023, 'bg_bathroom_tile', '4', 'bg_bathroom_tile', 3, 1, 33, '1'),
(1024, 'bg_pattern_fish', '4', 'bg_pattern_fish', 3, 1, 33, '1'),
(1025, 'bg_pattern_deepred', '4', 'bg_pattern_deepred', 3, 1, 33, '1'),
(1026, 'bg_colour_02', '4', 'bg_colour_02', 3, 1, 5, '1'),
(1027, 'bg_colour_03', '4', 'bg_colour_03', 3, 1, 5, '1'),
(1028, 'bg_colour_04', '4', 'bg_colour_04', 3, 1, 5, '1'),
(1029, 'bg_colour_05', '4', 'bg_colour_05', 3, 1, 5, '1'),
(1030, 'bg_colour_06', '4', 'bg_colour_06', 3, 1, 5, '1'),
(1031, 'bg_colour_07', '4', 'bg_colour_07', 3, 1, 5, '1'),
(1032, 'bg_colour_09', '4', 'bg_colour_09', 3, 1, 5, '1'),
(1033, 'bg_colour_10', '4', 'bg_colour_10', 3, 1, 5, '1'),
(1034, 'bg_colour_11', '4', 'bg_colour_11', 3, 1, 5, '1'),
(1035, 'bg_colour_13', '4', 'bg_colour_13', 3, 1, 5, '1'),
(1036, 'bg_colour_14', '4', 'bg_colour_14', 3, 1, 5, '1'),
(1037, 'bg_colour_15', '4', 'bg_colour_15', 3, 1, 5, '1'),
(1038, 'bg_colour_17', '4', 'bg_colour_17', 3, 1, 5, '1'),
(1039, 'bg_tonga', '4', 'bg_tonga', 3, 1, 33, '1'),
(1040, 'xmas_bgpattern_starsky', '4', 'xmas_bgpattern_starsky', 3, 1, 36, '1'),
(1041, 'xmas_gifts_bg', '4', 'xmas_gifts_bg', 3, 1, 26, '1'),
(1046, 'newyear_bg_fireworks', '4', 'newyear_bg_fireworks', 3, 1, 33, '1'),
(1047, 'vale_rose_bg', '4', 'vale_rose_bg', 3, 1, 33, '1'),
(1048, 'vale_skull_bg', '4', 'vale_skull_bg', 3, 1, 33, '1'),
(1049, 'hc_bg_machine', '4', 'hc_bg_machine', 3, 1, 33, '1'),
(1050, 'hc_bg_pillow', '4', 'hc_bg_pillow', 3, 1, 33, '1'),
(1051, 'hc_bg_royal', '4', 'hc_bg_royal', 3, 1, 33, '1'),
(1052, 'easter_eggs_wallpaper', '4', 'easter_eggs_wallpaper', 3, 1, 26, '1'),
(1055, 'newyear_bg_fireworks2', '4', 'newyear_bg_fireworks2', 3, 1, 36, '1'),
(1056, 'nl_green_bg', '4', 'nl_green_bg', 3, 1, 33, '1'),
(1057, 'val_bgpattern_love', '4', 'val_bgpattern_love', 3, 1, 33, '1'),
(1058, 'val_bgpattern_skull', '4', 'val_bgpattern_skull', 3, 1, 33, '1'),
(1059, 'bg_bobbaheart', '4', 'bg_bobbaheart', 3, 1, 33, '1'),
(1060, 'bg_rain', '4', 'bg_rain', 3, 1, 33, '1'),
(1061, 'tutorial_bg', '4', 'tutorial_bg', 3, 1, 36, '1'),
(1062, 'habbo_group_tutorial_bg', '4', 'habbo_group_tutorial_bg', 3, 1, 36, '1'),
(1063, 'fantasticfour', '4', 'fantasticfour', 3, 1, 27, '1'),
(1064, 'silversurfer', '4', 'silversurfer', 3, 1, 27, '1'),
(1065, 'fantastic4', '4', 'fantastic4', 3, 1, 27, '1'),
(1066, 'silversurfer2', '4', 'silversurfer2', 3, 1, 27, '1'),
(1067, 'fantastic42', '4', 'fantastic42', 3, 1, 27, '1'),
(1068, 'fan43', '4', 'fan43', 3, 1, 27, '1'),
(1069, 'silversurfer3', '4', 'silversurfer3', 3, 1, 27, '1'),
(1070, 'grungewall', '4', 'grungewall', 3, 1, 33, '1'),
(1072, 'bg_infobus_blue', '4', 'bg_infobus_blue', 3, 1, 36, '1'),
(1073, 'bg_infobus_white', '4', 'bg_infobus_white', 3, 1, 36, '1'),
(1074, 'bg_infobus_yellow', '4', 'bg_infobus_yellow', 3, 1, 36, '1'),
(1075, 'bg_lido_flat', '4', 'bg_lido_flat', 3, 1, 36, '1'),
(1076, 'bg_lidoo', '4', 'bg_lidoo', 3, 1, 36, '1'),
(1077, 'bg_vip', '4', 'bg_vip', 3, 1, 36, '1'),
(1079, 'habbogroup', '4', 'habbogroup', 3, 1, 36, '1'),
(1080, 'snowstorm_bg', '4', 'snowstorm_bg', 3, 1, 36, '1'),
(1081, 'makeover', '4', 'makeover', 3, 1, 33, '1'),
(1291, 'uberHotel Logo', '1', 'sticker_uber_logo', 10, 1, 38, '1'),
(1083, 'kerrang2', '4', 'kerrang2', 3, 1, 5, '1'),
(1084, 'bg_kerrang2', '4', 'bg_kerrang2', 3, 1, 27, '1'),
(1085, 'christmas2007bg_001', '4', 'christmas2007bg_001', 3, 1, 26, '1'),
(1086, 'habbox', '4', 'habbox', 3, 1, 36, '1'),
(1087, 'sttriniansblackboard', '4', 'sttriniansblackboard', 3, 1, 27, '1'),
(1089, 'orca', '4', 'orca', 3, 1, 36, '1'),
(1090, 'penelope', '4', 'penelope', 3, 1, 27, '1'),
(1091, 'habborella_sea_bg', '4', 'habborella_sea_bg', 3, 1, 36, '1'),
(1093, 'random_habbos', '4', 'random_habbos', 3, 1, 36, '1'),
(1094, 'welcoming_party', '4', 'welcoming_party', 3, 1, 36, '1'),
(1096, 'bg_unofficial_fansites', '4', 'bg_unofficial_fansites', 3, 1, 36, '1'),
(1097, 'themepark_bg_02', '4', 'themepark_bg_02', 3, 1, 36, '1'),
(1098, 'themepark_bg_01', '4', 'themepark_bg_01', 3, 1, 36, '1'),
(1099, 'bg_serpentine_darkblue', '4', 'bg_serpentine_darkblue', 3, 1, 32, '1'),
(1100, 'bg_serpntine_darkred', '4', 'bg_serpntine_darkred', 3, 1, 33, '1'),
(1101, 'bg_serpentine_1', '4', 'bg_serpentine_1', 3, 1, 33, '1'),
(1102, 'bg_serpentine_2', '4', 'bg_serpentine_2', 3, 1, 33, '1'),
(1103, 'alhambragroup', '4', 'alhambragroup', 3, 1, 36, '1'),
(1104, 'shabboline', '4', 'shabboline', 3, 1, 36, '1'),
(1105, 'habbo_toolbar', '4', 'habbo_toolbar', 3, 1, 33, '1'),
(1106, 'madball_2008_bg_001', '4', 'madball_2008_bg_001', 3, 1, 36, '1'),
(1107, 'jp_prom_bg', '4', 'jp_prom_bg', 3, 1, 36, '1'),
(1108, 'habbo_social_game_001_opt', '4', 'habbo_social_game_001_opt', 3, 1, 36, '1'),
(1109, 'habbo_social_game_002', '4', 'habbo_social_game_002', 3, 1, 36, '1'),
(1110, 'hundredmillion_bg', '4', 'hundredmillion_bg', 3, 1, 36, '1'),
(1111, 'meet_dave_groupbg_02', '4', 'meet_dave_groupbg_02', 3, 1, 27, '1'),
(1112, 'meet_dave_groupbg_01', '4', 'meet_dave_groupbg_01', 3, 1, 27, '1'),
(1113, 'guidesgroup_bg', '4', 'guidesgroup_bg', 3, 1, 36, '1'),
(1114, 'grouppage_snowbattle2', '4', 'grouppage_snowbattle2', 3, 1, 36, '1'),
(1115, 'top_gamers_bg_64', '4', 'top_gamers_bg_64', 3, 1, 36, '1'),
(1116, 'summer_bg_optimal', '4', 'summer_bg_optimal', 3, 1, 36, '1'),
(1117, '10kbc_habbo_grouppage_bg_3b', '4', '10kbc_habbo_grouppage_bg_3b', 3, 1, 27, '1'),
(1118, '10kbc_habbo_grouppage_bg_2b', '4', '10kbc_habbo_grouppage_bg_2b', 3, 1, 27, '1'),
(1119, 'landing_page_comp', '4', 'landing_page_comp', 3, 1, 27, '1'),
(1120, '27419_appart732_scene', '4', '27419_appart732_scene', 3, 1, 36, '1'),
(1121, 'myspy_group', '4', 'myspy_group', 3, 1, 27, '1'),
(1122, 'habbolympics_bg_final', '4', 'habbolympics_bg_final', 3, 1, 36, '1'),
(1125, 'cw_group_1', '4', 'cw_group_1', 3, 1, 27, '1'),
(1126, 'cw_group_2', '4', 'cw_group_2', 3, 1, 27, '1'),
(1127, 'cw_poster', '4', 'cw_poster', 3, 1, 27, '1'),
(1128, 'wallpaper_dinerus', '4', 'wallpaper_dinerus', 3, 1, 36, '1'),
(1129, 'hairspray_sm_group', '4', 'hairspray_sm_group', 3, 1, 27, '1'),
(1130, 'reoc_billing_group', '4', 'reoc_billing_group', 3, 1, 36, '1'),
(1131, 'camp_rock_group', '4', 'camp_rock_group', 3, 1, 27, '1'),
(1134, 'arm_habbo_grouppage3', '4', 'arm_habbo_grouppage3', 3, 1, 37, '1'),
(1135, 'usob_grouppag_1e', '4', 'usob_grouppag_1e', 3, 1, 36, '1'),
(1136, 'kingcorp_928x1360', '4', 'kingcorp_928x1360', 3, 1, 36, '1'),
(1139, 'achievement_web_bg', '4', 'achievement_web_bg', 3, 1, 36, '1'),
(1140, 'peacegroup', '4', 'peacegroup', 3, 1, 36, '1'),
(1141, 'igor_2_group_928x1360', '4', 'igor_2_group_928x1360', 3, 1, 27, '1'),
(1292, 'Welcome to Uber!', '1', 'sticker_uber_welcome', 5, 1, 38, '1'),
(1143, 'hw_day2', '4', 'hw_day2', 3, 1, 36, '1'),
(1144, 'hw_day3', '4', 'hw_day3', 3, 1, 27, '1'),
(1145, 'hw_day4', '4', 'hw_day4', 3, 1, 36, '1'),
(1146, 'hw_day5', '4', 'hw_day5', 3, 1, 36, '1'),
(1147, 'hw_day6', '4', 'hw_day6', 3, 1, 36, '1'),
(1148, 'insiders_habbo', '4', 'insiders_habbo', 3, 1, 27, '1'),
(1149, 'atw_group_world', '4', 'atw_group_world', 3, 1, 27, '1'),
(1150, 'atw_group_far_east_aus', '4', 'atw_group_far_east_aus', 3, 1, 36, '1'),
(1151, 'atw_group_europe', '4', 'atw_group_europe', 3, 1, 36, '1'),
(1152, 'atw_group_america', '4', 'atw_group_america', 3, 1, 36, '1'),
(1153, 'atw_group_africa', '4', 'atw_group_africa', 3, 1, 5, '1'),
(1155, 'neon_gp_subpage_bg_v1', '4', 'neon_gp_subpage_bg_v1', 3, 1, 36, '1'),
(1156, 'neon_subpage2', '4', 'neon_subpage2', 3, 1, 36, '1'),
(1157, 'locoroco_group_928x1360_2', '4', 'locoroco_group_928x1360_2', 3, 1, 27, '1'),
(1159, 'sonic_unl_habbo_grouppg4', '4', 'sonic_unl_habbo_grouppg4', 3, 1, 27, '1'),
(1161, 'sonic_unl_habbo_group', '4', 'sonic_unl_habbo_group', 3, 1, 27, '1'),
(1162, 'xmas08_gpbg', '4', 'xmas08_gpbg', 3, 1, 36, '1'),
(1164, 'uk_cw_habbo_group_page_100k', '4', 'uk_cw_habbo_group_page_100k', 3, 1, 27, '1'),
(1166, 'childline_habbo_grouppg', '4', 'childline_habbo_grouppg', 3, 1, 27, '1'),
(1167, 'knifescrime_group', '4', 'knifescrime_group', 3, 1, 27, '1'),
(1168, 'h4d_habbo_background_group_02', '4', 'h4d_habbo_background_group_02', 3, 1, 33, '1'),
(1169, 'gameshow_group_928x1360', '4', 'gameshow_group_928x1360', 3, 1, 36, '1'),
(1170, 'bg_nobobba', '4', 'bg_nobobba', 3, 1, 27, '1'),
(1172, 'harajuku_group_07_b', '4', 'harajuku_group_07_b', 3, 1, 27, '1'),
(1173, 'harajuku_group_06_b', '4', 'harajuku_group_06_b', 3, 1, 27, '1'),
(1174, 'harajuku_group_05_b', '4', 'harajuku_group_05_b', 3, 1, 27, '1'),
(1175, 'harajuku_group_04_b', '4', 'harajuku_group_04_b', 3, 1, 27, '1'),
(1176, 'harajuku_group_03_b', '4', 'harajuku_group_03_b', 3, 1, 27, '1'),
(1177, 'harajuku_group_02_b', '4', 'harajuku_group_02_b', 3, 1, 27, '1'),
(1178, 'uk_h4d_bg', '4', 'uk_h4d_bg', 3, 1, 27, '1'),
(1179, 'bg_shalimar_grouptheatre', '4', 'bg_shalimar_grouptheatre', 3, 1, 36, '1'),
(1180, 'gp_sha', '4', 'gp_sha', 3, 1, 36, '1'),
(1181, 'habwrecked_group_01_928x1360', '4', 'habwrecked_group_01_928x1360', 3, 1, 36, '1'),
(1182, 'habwrecked_group_02_928x1360', '4', 'habwrecked_group_02_928x1360', 3, 1, 36, '1'),
(1183, 'habwrecked_group_03_928x1360', '4', 'habwrecked_group_03_928x1360', 3, 1, 36, '1'),
(1184, 'vip_group', '4', 'vip_group', 3, 1, 36, '1'),
(1185, 'bg_newsletter_03', '4', 'bg_newsletter_03', 3, 1, 36, '1'),
(1186, 'uk_office_928x1360', '4', 'uk_office_928x1360', 3, 1, 36, '1'),
(1187, 'bg_elliot_minor_back', '4', 'bg_elliot_minor_back', 3, 1, 27, '1'),
(1188, 'bg_habbouk_frank_11924', '4', 'bg_habbouk_frank_11924', 3, 1, 27, '1'),
(1189, 'bg_lostc_oceanfloor', '4', 'bg_lostc_oceanfloor', 3, 1, 36, '1'),
(1191, 'bg_earth_hour', '4', 'bg_earth_hour', 3, 1, 27, '1'),
(1192, 'habprentice_background_01', '4', 'habprentice_background_01', 3, 1, 36, '1'),
(1193, 'habprentice_background_02', '4', 'habprentice_background_02', 3, 1, 36, '1'),
(1194, 'bionicle_group_01', '4', 'bionicle_group_01', 3, 1, 27, '1'),
(1195, 'bionicle_group_04', '4', 'bionicle_group_04', 3, 1, 27, '1'),
(1197, 'bionicle_group_07', '4', 'bionicle_group_07', 3, 1, 27, '1'),
(1198, 'bionicle_group_05', '4', 'bionicle_group_05', 3, 1, 27, '1'),
(1199, 'bionicle_group_02', '4', 'bionicle_group_02', 3, 1, 27, '1'),
(1200, 'bionicle_group_06', '4', 'bionicle_group_06', 3, 1, 27, '1'),
(1202, 'pixie_background', '4', 'pixie_background', 3, 1, 27, '1'),
(1203, 'bionicle_group_03', '4', 'bionicle_group_03', 3, 1, 27, '1'),
(1204, 'uk_buzz_group_928x1360', '4', 'uk_buzz_group_928x1360', 3, 1, 27, '1'),
(1205, 'uk_group_page_17_again', '4', 'uk_group_page_17_again', 3, 1, 27, '1'),
(1206, 'uk_wtmi_group_928x1360', '4', 'uk_wtmi_group_928x1360', 3, 1, 27, '1'),
(1207, 'uk_wtmi_group_c', '4', 'uk_wtmi_group_c', 3, 1, 27, '1'),
(1208, 'habbo_mall_background', '4', 'habbo_mall_background', 3, 1, 36, '1'),
(1209, 'uk_skellig_bg', '4', 'uk_skellig_bg', 3, 1, 27, '1'),
(1211, 'bg_easter_1', '4', 'bg_easter_1', 3, 1, 36, '1'),
(1212, 'bg_easter_2', '4', 'bg_easter_2', 3, 1, 36, '1'),
(1213, 'bg_easter_3', '4', 'bg_easter_3', 3, 1, 36, '1'),
(1214, 'bg_easter_4', '4', 'bg_easter_4', 3, 1, 36, '1'),
(1215, 'bg_easter_5', '4', 'bg_easter_5', 3, 1, 37, '1'),
(1216, 'uk_equigg_bg', '4', 'uk_equigg_bg', 3, 1, 27, '1'),
(1217, 'uk_natm2_group_928x1360', '4', 'uk_natm2_group_928x1360', 3, 1, 27, '1'),
(1218, 'grouppage_country', '4', 'grouppage_country', 3, 1, 36, '1'),
(1219, 'uk_habboway_group_928x1360', '4', 'uk_habboway_group_928x1360', 3, 1, 36, '1'),
(1220, 'uk_parentsguide_group_928x1360', '4', 'uk_parentsguide_group_928x1360', 3, 1, 36, '1'),
(1221, 'uk_safetytips_group_928x1360', '4', 'uk_safetytips_group_928x1360', 3, 1, 36, '1'),
(1222, 'uk_natm2_group_main_928x1360', '4', 'uk_natm2_group_main_928x1360', 3, 1, 27, '1'),
(1223, 'uk_country_village_group', '4', 'uk_country_village_group', 3, 1, 36, '1'),
(1224, 'beta_group_bg2', '4', 'beta_group_bg2', 3, 1, 36, '1'),
(1225, 'uk_charliechic_group_928x1360', '4', 'uk_charliechic_group_928x1360', 3, 1, 27, '1'),
(1226, 'bg_ltribe_jungle', '4', 'bg_ltribe_jungle', 3, 1, 36, '1'),
(1227, 'uk_iceage3_group_928x1360', '4', 'uk_iceage3_group_928x1360', 3, 1, 27, '1'),
(1228, 'uk_supersuper_group_med', '4', 'uk_supersuper_group_med', 3, 1, 27, '1'),
(1229, 'uk_supersuper_group_large', '4', 'uk_supersuper_group_large', 3, 1, 27, '1'),
(1230, 'ia3_uk_english_platform_habbo_928x1360_static', '4', 'ia3_uk_english_platform_habbo_928x1360_static', 3, 1, 27, '1'),
(1231, 'openbeta_bg', '4', 'openbeta_bg', 3, 1, 36, '1'),
(1232, 'bg_generic_stars_2', '4', 'bg_generic_stars_2', 3, 1, 33, '1'),
(1233, 'groupbg_scifi2', '4', 'groupbg_scifi2', 3, 1, 36, '1'),
(1234, 'group_nspcc2_928x136', '4', 'group_nspcc2_928x136', 3, 1, 27, '1'),
(1235, 'bg_dating_parklife', '4', 'bg_dating_parklife', 3, 1, 36, '1'),
(1236, 'bg_hotcool_summer', '4', 'bg_hotcool_summer', 3, 1, 5, '1'),
(1237, 'calvinharris_group_928x1360', '4', 'calvinharris_group_928x1360', 3, 1, 27, '1'),
(1238, 'uk_september_group_02_928x1360', '4', 'uk_september_group_02_928x1360', 3, 1, 27, '1'),
(1239, 'uk1_mall_cop_group_928x1360', '4', 'uk1_mall_cop_group_928x1360', 3, 1, 27, '1'),
(1240, 'uk_muzutv_group_928x1360', '4', 'uk_muzutv_group_928x1360', 3, 1, 27, '1'),
(1241, 'uk_paramore_group_928x1360', '4', 'uk_paramore_group_928x1360', 3, 1, 27, '1'),
(1242, 'groupbg_hpv', '4', 'groupbg_hpv', 3, 1, 27, '1'),
(1243, 'uk_julianperretta_group', '4', 'uk_julianperretta_group', 3, 1, 27, '1'),
(1244, 'uk_bootyluv_group', '4', 'uk_bootyluv_group', 3, 1, 27, '1'),
(1246, 'bg_relax', '4', 'bg_relax', 3, 1, 36, '1'),
(1247, 'uk_cloudy_group_01_1', '4', 'uk_cloudy_group_01_1', 3, 1, 27, '1'),
(1248, 'uk_skulduggery_group', '4', 'uk_skulduggery_group', 3, 1, 27, '1'),
(1249, 'kitchensurvivor_bg_v2', '4', 'kitchensurvivor_bg_v2', 3, 1, 36, '1'),
(1250, 'uk_basshunter_group_928x1360', '4', 'uk_basshunter_group_928x1360', 3, 1, 27, '1'),
(1251, 'uk_theveronicas_group_928x1360', '4', 'uk_theveronicas_group_928x1360', 3, 1, 27, '1'),
(1293, 'Stickie notes', '3', 'stickienote', 10, 5, 4, '1'),
(1253, 'bg_ema09', '4', 'bg_ema09', 3, 1, 27, '1'),
(1255, 'bg_hween09_newsofhabbo2', '4', 'bg_hween09_newsofhabbo2', 3, 1, 27, '1'),
(1257, 'bg_howufeelin_happyface', '4', 'bg_howufeelin_happyface', 3, 1, 27, '1'),
(1258, 'bg_nspcc_parkscene', '4', 'bg_nspcc_parkscene', 3, 1, 27, '1'),
(1259, 'bg_twilight_week2_002', '4', 'bg_twilight_week2_002', 3, 1, 27, '1'),
(1260, 'bg_iceage_03', '4', 'bg_iceage_03', 3, 1, 27, '1'),
(1262, 'bg_twilight_week4_002', '4', 'bg_twilight_week4_002', 3, 1, 27, '1'),
(1263, 'bg_xmas09_wall', '4', 'bg_xmas09_wall', 3, 1, 26, '1'),
(1264, 'xmas2009_bg_snowing', '4', 'xmas2009_bg_snowing', 3, 1, 26, '1'),
(1265, 'xmas2009_bg_xmasfun2', '4', 'xmas2009_bg_xmasfun2', 3, 1, 26, '1'),
(1266, 'xmas2009_bg_xmasfun', '4', 'xmas2009_bg_xmasfun', 3, 1, 26, '1'),
(1267, 'bg_alvinandchipmunks', '4', 'bg_alvinandchipmunks', 3, 1, 27, '1'),
(1268, 'bg_st2', '4', 'bg_st2', 3, 1, 27, '1'),
(1269, 'bg_0800_final', '4', 'bg_0800_final', 3, 1, 27, '1'),
(1270, 'bg_pj', '4', 'bg_pj', 3, 1, 27, '1'),
(1271, 'hw_hotelhappenings_bg_v1', '4', 'hw_hotelhappenings_bg_v1', 3, 1, 36, '1'),
(1272, 'bg_fire', '4', 'bg_fire', 3, 1, 36, '1'),
(1273, 'bg_pj_001', '4', 'bg_pj_001', 3, 1, 27, '1'),
(1274, 'bg_safety_appart732', '4', 'bg_safety_appart732', 3, 1, 36, '1'),
(1276, 'gp_yir', '4', 'gp_yir', 3, 1, 27, '1'),
(1277, 'bg_aita', '4', 'bg_aita', 3, 1, 27, '1'),
(1278, 'bg__offifansite', '4', 'bg__offifansite', 3, 1, 36, '1'),
(1279, 'heartbreak_hotel', '4', 'heartbreak_hotel', 3, 1, 36, '1'),
(1280, 'gp_mandf', '4', 'gp_mandf', 3, 1, 27, '1'),
(1281, 'bg_winterolympics_2010', '4', 'bg_winterolympics_2010', 3, 1, 36, '1'),
(1282, 'bg_tlc_blank', '4', 'bg_tlc_blank', 3, 1, 27, '1'),
(1283, 'gp_int_sec', '4', 'gp_int_sec', 3, 1, 27, '1'),
(1284, 'mb_groupbg_3_stickys', '4', 'mb_groupbg_3_stickys', 3, 1, 36, '1'),
(1285, 'bg_httyd_tease', '4', 'bg_httyd_tease', 3, 1, 27, '1'),
(1286, 'hw_uk_habwrecked10_teaser', '4', 'hw_uk_habwrecked10_teaser', 3, 1, 36, '1'),
(1287, 'bg_httyd_tease_02', '4', 'bg_httyd_tease_02', 3, 1, 27, '1'),
(1288, 'hw_uk_habwrecked10_launch', '4', 'hw_uk_habwrecked10_launch', 3, 1, 36, '1'),
(1289, 'bg_httyd_main_02', '4', 'bg_httyd_main_02', 3, 1, 27, '1'),
(1290, 'bg_alvin_dvd', '4', 'bg_alvin_dvd', 3, 1, 27, '1');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `homes_categories`
--

CREATE TABLE IF NOT EXISTS `homes_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0',
  `type` varchar(120) NOT NULL DEFAULT 'stickers',
  `caption` varchar(120) NOT NULL DEFAULT 'undefined',
  `fuse_requirement` varchar(120) NOT NULL DEFAULT '',
  `order_num` int(11) NOT NULL DEFAULT '1',
  `enabled` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=39 ;

--
-- Gegevens worden uitgevoerd voor tabel `homes_categories`
--

INSERT INTO `homes_categories` (`id`, `parent_id`, `type`, `caption`, `fuse_requirement`, `order_num`, `enabled`) VALUES
(1, 0, 'stickers', 'Stickers', '', 1, '1'),
(2, 0, 'backgrounds', 'Backgrounds', '', 2, '1'),
(3, 0, 'stickie_notes', 'Notes', '', 3, '1'),
(4, 3, 'stickie_notes', 'Stickie Notes', '', 1, '1'),
(5, 2, 'backgrounds', 'General', '', 9001, '1'),
(26, 2, 'backgrounds', 'Holidays', '', 9004, '1'),
(7, 1, 'stickers', 'Letters', '', 11, '1'),
(22, 1, 'stickers', 'Borders', '', 12, '1'),
(25, 1, 'stickers', 'Effects', '', 13, '1'),
(23, 1, 'stickers', 'Music', '', 9, '1'),
(24, 1, 'stickers', 'Characters', '', 8, '1'),
(27, 2, 'backgrounds', 'Campaigns', '', 9005, '1'),
(28, 1, 'stickers', 'Campaigns', '', 7, '1'),
(29, 1, 'stickers', 'Holidays', '', 6, '1'),
(30, 1, 'stickers', 'Habbo', '', 5, '1'),
(31, 1, 'stickers', 'Countries', '', 4, '1'),
(32, 1, 'stickers', 'Other', '', 14, '1'),
(33, 2, 'backgrounds', 'Patterns', '', 9003, '1'),
(34, 1, 'stickers', 'Environment', '', 3, '1'),
(35, 1, 'stickers', 'Costumes', '', 2, '1'),
(36, 2, 'backgrounds', 'Habbo', '', 9002, '1'),
(37, 1, 'stickers', 'Arrows & Pointers', '', 1, '1'),
(38, 1, 'stickers', 'Uber', '', 0, '1');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `homes_inventory`
--

CREATE TABLE IF NOT EXISTS `homes_inventory` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL DEFAULT '0',
  `type` varchar(32) NOT NULL,
  `data` varchar(250) NOT NULL,
  `amount` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `homes_items`
--

CREATE TABLE IF NOT EXISTS `homes_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `home_id` int(10) unsigned NOT NULL,
  `type` enum('sticker','widget','stickie') NOT NULL DEFAULT 'sticker',
  `x` int(11) NOT NULL DEFAULT '0',
  `y` int(11) NOT NULL DEFAULT '0',
  `z` int(11) NOT NULL DEFAULT '0',
  `data` text NOT NULL,
  `skin` text NOT NULL,
  `owner_id` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `ipn_requests`
--

CREATE TABLE IF NOT EXISTS `ipn_requests` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` text NOT NULL,
  `ip` text NOT NULL,
  `status` enum('0','1','2','3','4','5','6') NOT NULL DEFAULT '0' COMMENT '0 = Error, 1 = OK, 2 = Forced, 3 = Auth failure, 4 = UID not found, 5 = Forced, 6 = Data failure',
  `request_data` text NOT NULL,
  `user_id` int(10) unsigned NOT NULL DEFAULT '0',
  `balance_diff` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `item_id_generator`
--

CREATE TABLE IF NOT EXISTS `item_id_generator` (
  `id_generator` int(10) unsigned NOT NULL,
  KEY `id_generator` (`id_generator`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `item_id_generator`
--

INSERT INTO `item_id_generator` (`id_generator`) VALUES
(142);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `messenger_friendships`
--

CREATE TABLE IF NOT EXISTS `messenger_friendships` (
  `user_one_id` int(10) unsigned NOT NULL,
  `user_two_id` int(10) unsigned NOT NULL,
  KEY `user_one_id` (`user_one_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `messenger_friendships`
--

INSERT INTO `messenger_friendships` (`user_one_id`, `user_two_id`) VALUES
(2, 3),
(3, 2);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `messenger_requests`
--

CREATE TABLE IF NOT EXISTS `messenger_requests` (
  `from_id` int(10) unsigned NOT NULL,
  `to_id` int(10) unsigned NOT NULL,
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `moderation_forum_replies`
--

CREATE TABLE IF NOT EXISTS `moderation_forum_replies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `thread_id` int(10) unsigned NOT NULL,
  `poster` varchar(120) NOT NULL,
  `date` varchar(50) NOT NULL,
  `message` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `moderation_forum_threads`
--

CREATE TABLE IF NOT EXISTS `moderation_forum_threads` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `poster` varchar(100) NOT NULL,
  `subject` varchar(120) NOT NULL,
  `date` varchar(50) NOT NULL,
  `timestamp` double NOT NULL,
  `message` text NOT NULL,
  `locked` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `moderation_presets`
--

CREATE TABLE IF NOT EXISTS `moderation_presets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `enabled` enum('0','1') NOT NULL DEFAULT '1',
  `type` enum('message','roommessage') NOT NULL DEFAULT 'message',
  `message` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;

--
-- Gegevens worden uitgevoerd voor tabel `moderation_presets`
--

INSERT INTO `moderation_presets` (`id`, `enabled`, `type`, `message`) VALUES
(2, '1', 'message', 'Your language and/or behavior is unacceptable. Please behave appropriately or expect further action.'),
(3, '1', 'roommessage', 'This room is unacceptable to the hotel management.'),
(14, '1', 'message', 'Speaking a foreign language is against hotel policy, if you cotinue you will be banned.'),
(15, '1', 'message', 'Please report this on our UserVoice - http://uber.uservoice.com/forums/45577-general'),
(16, '1', 'roommessage', 'Speaking a foreign language is against hotel policy, if you cotinue you will be banned.');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `moderation_tickets`
--

CREATE TABLE IF NOT EXISTS `moderation_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `score` int(11) NOT NULL,
  `type` int(11) NOT NULL,
  `status` enum('open','picked','resolved','abusive','invalid','deleted') NOT NULL DEFAULT 'open',
  `sender_id` int(10) unsigned NOT NULL,
  `reported_id` int(10) unsigned NOT NULL,
  `moderator_id` int(10) unsigned NOT NULL,
  `message` text NOT NULL,
  `room_id` int(10) unsigned NOT NULL,
  `room_name` varchar(100) NOT NULL,
  `timestamp` double NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;

--
-- Gegevens worden uitgevoerd voor tabel `moderation_tickets`
--

INSERT INTO `moderation_tickets` (`id`, `score`, `type`, `status`, `sender_id`, `reported_id`, `moderator_id`, `message`, `room_id`, `room_name`, `timestamp`) VALUES
(1, 1, 101, 'invalid', 1, 0, 1, 'looooooooooooooooooooooooooooooooooooooooooooooool', 5520, 'Testing Butterfly', 1308166138),
(2, 1, 104, 'resolved', 1, 0, 1, 'lklhjghhjgjkjhghjgjhghjghjgjhgjhghj', 5520, 'Testing Butterfly', 1308166169),
(3, 1, 105, 'invalid', 2, 0, 2, 'ooooooooooooooooooooooooooooooooooooooooooooool', 8, 'Buttsechs Bus', 1313493809);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `navigator_flatcats`
--

CREATE TABLE IF NOT EXISTS `navigator_flatcats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `caption` varchar(100) NOT NULL,
  `enabled` enum('0','1') NOT NULL DEFAULT '1',
  `min_rank` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;

--
-- Gegevens worden uitgevoerd voor tabel `navigator_flatcats`
--

INSERT INTO `navigator_flatcats` (`id`, `caption`, `enabled`, `min_rank`) VALUES
(15, 'No Category', '1', 1),
(1, 'Uber Staff Rooms µ', '1', 4),
(2, 'Competition Category', '0', 1),
(3, 'unused competition category', '0', 1),
(4, 'Themed & RPG Rooms', '1', 1),
(5, 'Restaurant, Bar & Night Club Rooms', '1', 1),
(6, 'Club & Group Rooms', '1', 1),
(7, 'Chat, Chill & Discussion Rooms', '1', 1),
(8, 'Maze & Theme Park Rooms', '1', 1),
(9, 'Trading & Shopping Rooms', '1', 1),
(10, 'Gaming & Race Rooms', '1', 1),
(11, 'Hair Salons & Modelling Rooms', '1', 1),
(12, 'Help Centre, Guide & Service Rooms', '1', 1),
(13, 'School, Daycare & Adoption Rooms', '1', 1),
(14, 'All Other Rooms', '1', 1);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `navigator_pubcats`
--

CREATE TABLE IF NOT EXISTS `navigator_pubcats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `caption` varchar(100) NOT NULL,
  `enabled` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;

--
-- Gegevens worden uitgevoerd voor tabel `navigator_pubcats`
--

INSERT INTO `navigator_pubcats` (`id`, `caption`, `enabled`) VALUES
(1, 'Cafes and Restaurants', '1'),
(2, 'Lounges and Entertainment', '1'),
(3, 'Pubs and Clubs', '1'),
(4, 'Outside Spaces & Swimming Pools', '1');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `navigator_publics`
--

CREATE TABLE IF NOT EXISTS `navigator_publics` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ordernum` int(11) NOT NULL DEFAULT '1',
  `bannertype` enum('0','1') NOT NULL COMMENT '0 = big, 1 = normal',
  `caption` varchar(100) NOT NULL,
  `image` text NOT NULL,
  `image_type` enum('internal','external') NOT NULL DEFAULT 'internal',
  `room_id` int(10) unsigned NOT NULL,
  `category_id` int(11) NOT NULL DEFAULT '0',
  `category_parent_id` int(11) NOT NULL DEFAULT '-1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;

--
-- Gegevens worden uitgevoerd voor tabel `navigator_publics`
--

INSERT INTO `navigator_publics` (`id`, `ordernum`, `bannertype`, `caption`, `image`, `image_type`, `room_id`, `category_id`, `category_parent_id`) VALUES
(1, 1, '1', 'Hotel Reception', 'welcome_lounge', 'internal', 1, 0, 2),
(2, 3, '1', 'Theatredrome', 'theatredrome_xmas', 'internal', 2, 0, 2),
(3, 8, '1', 'The Orient', '', 'internal', 3, 0, 3),
(4, 6, '1', 'Picnic Area', 'picnic', 'internal', 4, 0, 4),
(5, 5, '1', 'Tea Room', 'tearoom', 'internal', 5, 0, 1),
(6, 7, '1', 'Dusty Lounge', 'dusty_lounge', 'internal', 6, 0, 2),
(7, 4, '1', 'Uber Cinema', 'habbo_cinema', 'internal', 7, 0, -1),
(8, 2, '1', 'Buttsechs Bus', 'officialrooms_hq/hpv_infobus_nav_preview.png', 'external', 8, 0, -1);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `notes`
--

CREATE TABLE IF NOT EXISTS `notes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `content` varchar(500) NOT NULL,
  `date` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `ranks`
--

CREATE TABLE IF NOT EXISTS `ranks` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `prefix` text NOT NULL,
  `suffix` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;

--
-- Gegevens worden uitgevoerd voor tabel `ranks`
--

INSERT INTO `ranks` (`id`, `name`, `prefix`, `suffix`) VALUES
(1, 'User', '', ''),
(2, 'VIP', '<b>', '</b>'),
(3, 'Trial Moderator', '<span style="color: #04B404;">', '</span>'),
(4, 'Moderator', '<b style="color: #04B404;">', '</b>'),
(5, 'Senior Moderator', '<b style="color: #04B404;">', '</b>'),
(6, 'Administrator', '<b style="color: darkred;">', '</b>'),
(7, 'Senior Administrator', '<b style="color: darkred;">', '</b>');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `rooms`
--

CREATE TABLE IF NOT EXISTS `rooms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `roomtype` enum('public','private') NOT NULL DEFAULT 'private',
  `caption` varchar(100) NOT NULL DEFAULT 'Room',
  `owner` varchar(75) NOT NULL DEFAULT '',
  `description` text NOT NULL,
  `category` int(11) NOT NULL DEFAULT '0',
  `state` enum('open','locked','password') NOT NULL DEFAULT 'open',
  `users_now` int(11) NOT NULL DEFAULT '0',
  `users_max` int(11) NOT NULL DEFAULT '25',
  `model_name` varchar(50) NOT NULL,
  `public_ccts` text NOT NULL,
  `score` int(11) NOT NULL DEFAULT '0',
  `tags` text NOT NULL,
  `icon_bg` int(11) NOT NULL DEFAULT '1',
  `icon_fg` int(11) NOT NULL DEFAULT '0',
  `icon_items` text NOT NULL,
  `password` text NOT NULL,
  `wallpaper` varchar(10) NOT NULL DEFAULT '0.0',
  `floor` varchar(10) NOT NULL DEFAULT '0.0',
  `floorsize` int(2) NOT NULL DEFAULT '0',
  `wallsize` int(2) NOT NULL DEFAULT '0',
  `landscape` varchar(10) NOT NULL DEFAULT '0.0',
  `allow_pets` enum('0','1') NOT NULL DEFAULT '1',
  `allow_pets_eat` enum('0','1') NOT NULL DEFAULT '0',
  `allow_walkthrough` enum('0','1') NOT NULL DEFAULT '0',
  `allow_hidewall` enum('0','1') NOT NULL DEFAULT '0',
  `allow_rightsoverride` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5531 ;

--
-- Gegevens worden uitgevoerd voor tabel `rooms`
--

INSERT INTO `rooms` (`id`, `roomtype`, `caption`, `owner`, `description`, `category`, `state`, `users_now`, `users_max`, `model_name`, `public_ccts`, `score`, `tags`, `icon_bg`, `icon_fg`, `icon_items`, `password`, `wallpaper`, `floor`, `floorsize`, `wallsize`, `landscape`, `allow_pets`, `allow_pets_eat`, `allow_walkthrough`, `allow_hidewall`, `allow_rightsoverride`) VALUES
(1, 'public', 'Hotel Reception', '', 'Where we give you a warm welcome to the hotel!', 0, 'open', 0, 50, 'newbie_lobby', 'hh_room_nlobby', 0, '', 1, 0, '', '', '0.0', '0.0', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(2, 'public', 'Theatredrome', '', 'For mass assemblies and gatherings.', 0, 'open', 0, 50, 'theater', 'hh_room_theater', 0, '', 1, 0, '', '', '0.0', '0.0', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(3, 'public', 'Club Orient', '', 'Come and relax, dance under the lights or chill out with a cup of tea in this oriental styled club.', 0, 'open', 0, 30, 'orient', 'hh_room_orient', 0, '', 1, 0, '', '', '0.0', '0.0', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(4, 'public', 'Picnic Area', '', 'Enjoy the ever-lasting summer sun with a fresh picnic, even in winter!', 0, 'open', 0, 50, 'picnic', 'hh_room_picnic', 0, '', 1, 0, '', '', '0.0', '0.0', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(5, 'public', 'Tea Room', '', 'Have a relaxing cup of fruit, herbal or even everyday tea in this Chinese themed tea house.\r\n', 0, 'open', 0, 30, 'tearoom', 'hh_room_tearoom', 0, '', 1, 0, '', '', '0.0', '0.0', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(6, 'public', 'Dusty Lounge', '', 'Origninally where the hotel air conditioning emptied its filters, this dusty, old void is now a beautifully decorated lounge!', 0, 'open', 0, 30, 'dusty_lounge', 'hh_room_dustylounge', 0, '', 1, 0, '', '', '0.0', '0.0', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(8, 'public', 'Buttsechs Bus', '', 'Buttsechs on tour!', 0, 'open', 0, 50, 'park_b', 'hh_room_park_hpv,hh_room_park_hpv2', 0, '', 1, 0, '', '', '0.0', '0.0', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(7, 'public', 'Uber Cinema', '', 'The shittiest movies you''ve never seen.', 0, 'open', 0, 50, 'cinema_a', 'hh_room_cinema', 0, '', 1, 0, '', '', '0.0', '0.0', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(5529, 'private', 'test2', 'Beautiful', '', 0, 'open', 0, 25, 'model_a', '', 0, '', 1, 0, '', '', '0.0', '0.0', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(5528, 'private', 'Welcome Room', 'Beautiful', '', 0, 'open', 0, 25, 'model_a', '', 0, '', 1, 0, '', '', '2704', '610', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(5527, 'private', 'El café por las mañanas.', 'Monroe', '', 1, 'open', 0, 10, 'model_a', '', 0, '', 1, 0, '', '', '3103', '610', 2, 0, '0.0', '1', '0', '0', '0', '0'),
(5530, 'private', 'Airblender''s room', 'Airblender', '', 0, 'open', 0, 25, 'model_s', '', 0, '', 1, 0, '', '', '1701', '601', 0, 0, '0.0', '1', '0', '0', '0', '0');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `room_ads`
--

CREATE TABLE IF NOT EXISTS `room_ads` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ad_image` text NOT NULL,
  `ad_image_orig` text NOT NULL,
  `ad_link` text NOT NULL,
  `views` int(11) NOT NULL DEFAULT '0',
  `views_limit` int(11) NOT NULL DEFAULT '0' COMMENT '0 = unlimited',
  `enabled` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `room_items`
--

CREATE TABLE IF NOT EXISTS `room_items` (
  `id` int(10) unsigned NOT NULL,
  `room_id` int(10) unsigned NOT NULL,
  `base_item` int(10) unsigned NOT NULL,
  `extra_data` text NOT NULL,
  `x` int(11) NOT NULL,
  `y` int(11) NOT NULL,
  `z` double NOT NULL,
  `rot` int(11) NOT NULL,
  `wall_pos` varchar(100) NOT NULL,
  KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `room_items`
--

INSERT INTO `room_items` (`id`, `room_id`, `base_item`, `extra_data`, `x`, `y`, `z`, `rot`, `wall_pos`) VALUES
(132, 5527, 199871, '1', 10, 12, 0, 0, ''),
(137, 5528, 3568279, '', 9, 6, 0, 2, ''),
(136, 5528, 3568280, '', 7, 6, 0, 2, ''),
(139, 5528, 322, '', 8, 9, 0, 2, ''),
(138, 5528, 20078, '', 7, 12, 0, 2, '');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `room_items_moodlight`
--

CREATE TABLE IF NOT EXISTS `room_items_moodlight` (
  `item_id` int(10) unsigned NOT NULL,
  `enabled` enum('0','1') NOT NULL DEFAULT '0',
  `current_preset` int(11) NOT NULL,
  `preset_one` text NOT NULL,
  `preset_two` text NOT NULL,
  `preset_three` text NOT NULL,
  KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `room_models`
--

CREATE TABLE IF NOT EXISTS `room_models` (
  `id` varchar(100) NOT NULL,
  `door_x` int(11) NOT NULL,
  `door_y` int(11) NOT NULL,
  `door_z` double NOT NULL,
  `door_dir` int(4) NOT NULL DEFAULT '2',
  `heightmap` text NOT NULL,
  `public_items` text NOT NULL,
  `club_only` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `room_models`
--

INSERT INTO `room_models` (`id`, `door_x`, `door_y`, `door_z`, `door_dir`, `heightmap`, `public_items`, `club_only`) VALUES
('model_a', 3, 5, 0, 2, 'xxxxxxxxxxxx\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0'),
('model_b', 0, 5, 0, 2, 'xxxxxxxxxxxx\r\nxxxxx0000000\r\nxxxxx0000000\r\nxxxxx0000000\r\nxxxxx0000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0'),
('model_c', 4, 7, 0, 2, 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0'),
('model_d', 4, 7, 0, 2, 'xxxxxxxxxxxx\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxxxxxxxxx', '', '0'),
('model_e', 1, 5, 0, 2, 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0'),
('model_f', 2, 5, 0, 2, 'xxxxxxxxxxxx\r\nxxxxxxx0000x\r\nxxxxxxx0000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nx0000000000x\r\nx0000000000x\r\nx0000000000x\r\nx0000000000x\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0'),
('model_i', 0, 10, 0, 2, 'xxxxxxxxxxxxxxxxx\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nxxxxxxxxxxxxxxxxx', '', '0'),
('model_j', 0, 10, 0, 2, 'xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('model_k', 0, 13, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('model_l', 0, 16, 0, 2, 'xxxxxxxxxxxxxxxxxxxxx\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('model_m', 0, 15, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('model_n', 0, 16, 0, 2, 'xxxxxxxxxxxxxxxxxxxxx\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx000000xxxxxxxx000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000xxxxxxxx000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('model_g', 1, 7, 1, 2, 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxx1111000000\r\nxx1111000000\r\nxx1111000000\r\nxx1111000000\r\nxx1111000000\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '1'),
('model_q', 10, 4, 2, 2, 'xxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx2222xxxxxxxxxxxxxx\r\nx2222xxxxxxxxxxxxxx\r\nx2222211111xx000000\r\nx222221111110000000\r\nx222221111110000000\r\nx2222211111xx000000\r\nxx22xxx1111xxxxxxxx\r\nxx11xxx1111xxxxxxxx\r\nx1111xx1111xx000000\r\nx1111xx111110000000\r\nx1111xx111110000000\r\nx1111xx1111xx000000\r\nxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_o', 0, 18, 1, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx00000000xxxx\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_r', 10, 4, 3, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxx333333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nx4444433333xxxxxxxxxxxxxx\r\nx4444433333xxxxxxxxxxxxxx\r\nx44444333333222xx000000xx\r\nx44444333333222xx000000xx\r\nxxx44xxxxxxxx22xx000000xx\r\nxxx33xxxxxxxx11xx000000xx\r\nxxx33322222211110000000xx\r\nxxx33322222211110000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_p', 0, 23, 2, 2, 'xxxxxxxxxxxxxxxxxxx\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx22222222xxxx\r\nxxxxxxx11111111xxxx\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx2222xx11111111xxxx\r\nx2222xx00000000xxxx\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\n22222xx000000000000\r\nx2222xx000000000000\r\nxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_h', 4, 4, 1, 2, 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '1'),
('old_skool', 2, 1, 0, 2, 'xx0xxxxxxxxxxxxxx\r\n0000000xxx00000xx\r\n0000000x0000000xx\r\n0000000xxxxxxxxxx\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n00000000000000000\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x', 'SLHk49mobiles_chair3QBPAHHHk410mobiles_chair3RBPAHHHk411mobiles_chair3SBPAHHHk412mobiles_chair3PCPAHHHe101mobiles_chair1IRBHPAHe1010mobiles_chair1RBRBHPAHe110mobiles_chair1HSBHJHb111mobiles_table2ISBHHHc112mobiles_table3JSBHHHe113mobiles_chair1KSBHRAHb1110mobiles_table2RBSBHHHc1111mobiles_table3SBSBHHHa121mobiles_table1IPCHHHd122mobiles_table4JPCHHHe129mobiles_chair1QBPCHJHa1210mobiles_table1RBPCHHHd1211mobiles_table4SBPCHHHe1212mobiles_chair1PCPCHRAHe131mobiles_chair1IQCHHHe1311mobiles_chair1SBQCHHHe150mobiles_chair1HSCHPAHe170mobiles_chair1HQDHJHb171mobiles_table2IQDHHHc172mobiles_table3JQDHHHe173mobiles_chair1KQDHRAHa181mobiles_table1IRDHHHd182mobiles_table4JRDHHHe192mobiles_chair1JSDHHHe211mobiles_chair1IQEHPAHb216mobiles_table2RAQEHHHc217mobiles_table3SAQEHHHe2112mobiles_chair1PCQEHPAHe220mobiles_chair1HREHJHb221mobiles_table2IREHHHc222mobiles_table3JREHHHe223mobiles_chair1KREHRAHe225mobiles_chair1QAREHJHa226mobiles_table1RAREHHHd227mobiles_table4SAREHHHe228mobiles_chair1PBREHRAHe2211mobiles_chair1SBREHJHb2212mobiles_table2PCREHHHc2213mobiles_table3QCREHHHe2214mobiles_chair1RCREHRAHa231mobiles_table1ISEHHHd232mobiles_table4JSEHHHa2312mobiles_table1PCSEHHHd2313mobiles_table4QCSEHHHe241mobiles_chair1IPFHHHe247mobiles_chair1SAPFHPAHe2413mobiles_chair1QCPFHH', '0'),
('pizza', 5, 27, 1, 2, 'xxxxxxxxx0000000\r\nx11111x1xx000000\r\n11xxxxx111x00000\r\n11x1111111xx0000\r\n11x1111111100000\r\nxxx1111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n11111111111xxxxx\r\n1111111111xxxxxx\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n11xx11xx11111111\r\nxxxx11xxxxxxxxxx\r\nxxxx11xxxxxxxxxx', 'QGHa015pizza_plant1SCHHJHe314pizza_sofa1RCKHPAHE315pizza_sofa2SCKHPAHc515pizza_tableSCQAHJHb60pizza_plant2HRAIJHf614pizza_sofa3RCRAHHHF615pizza_sofa4SCRAHHHd81pizza_chairIPBIPAHd82pizza_chairJPBIPAHc102pizza_tableJRBIJHe1014pizza_sofa1RCRBHPAHE1015pizza_sofa2SCRBHPAHd111pizza_chairISBIHHd112pizza_chairJSBIHHc1215pizza_tableSCPCHJHf1314pizza_sofa3RCQCHHHF1315pizza_sofa4SCQCHHHd161pizza_chairIPDIPAHd162pizza_chairJPDIPAHc182pizza_tableJRDIJHd191pizza_chairISDIHHd192pizza_chairJSDIHHd2111pizza_chairSBQEIJHd2114pizza_chairRCQEIRAHd2211pizza_chairSBREIJHc2213pizza_tableQCREIHHd2214pizza_chairRCREIRAHa250pizza_plant1HQFIJHa2515pizza_plant1SCQFIJ', '0'),
('pub_a', 15, 25, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222222111xxx\r\nxxxxxxxxx2222222222111xxx\r\nxxxxxxxxx2222222222000xxx\r\nxxxxxxxxx2222222222000xxx\r\nxxxxxxxxx2222222222000xxx\r\nxxxxxxxxx2222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333332222222222222000xxx\r\nx333332222222222222000xxx\r\nx333332222222222222000xxx\r\nx333332222222222222000xxx\r\nx333333332222222222000xxx\r\nxxxxx31111112222222000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', 'SWHS119pub_sofa2SDIIPAHs120pub_sofaPEIIPAHs121pub_sofaQEIIPAHq211bardesk1SBJJHHc212pub_chairPCJJRAHQ311bardesk2SBKJHHq411bardesk1SBPAJHHc412pub_chairPCPAJRAHQ511bardesk2SBQAJHHf518pub_fenceRDQAJIHq611bardesk1SBRAJHHc612pub_chairPCRAJRAHf618pub_fenceRDRAJHHQ711bardesk2SBSAJHHf718pub_fenceRDSAJHHq811bardesk1SBPBJHHc812pub_chairPCPBJRAHf818pub_fenceRDPBJHHw910bardesk4RBQBJHHW911bardesk3SBQBJHHf918pub_fenceRDQBJHHf1018pub_fenceRDRBJHHC112pub_chair2JSBKPAHC113pub_chair2KSBKPAHC115pub_chair2QASBKPAHC116pub_chair2RASBKPAHf118pub_fencePBSBKIHf1118pub_fenceRDSBJHHf128pub_fencePBPCKHHf1218pub_fenceRDPCJHHf138pub_fencePBQCKHHC139pub_chair2QBQCJJHk1314pub_chair3RCQCJJHT1315pub_table2SCQCJIHk1316pub_chair3PDQCJRAHf1318pub_fenceRDQCJHHf148pub_fencePBRCKJHC149pub_chair2QBRCJJHk1414pub_chair3RCRCJJHT1415pub_table2SCRCJJHk1416pub_chair3PDRCJRAHf1418pub_fenceRDRCJHHt151pub_tableISCKHHf155pub_fenceQASCKIHf1518pub_fenceRDSCJHHS161pub_sofa2IPDKJHf165pub_fenceQAPDKHHf1618pub_fenceRDPDJHHs171pub_sofaIQDKJHf175pub_fenceQAQDKHHk1713pub_chair3QCQDJPAHk1714pub_chair3RCQDJPAHk1715pub_chair3SCQDJPAHk1716pub_chair3PDQDJPAHf1718pub_fenceRDQDJHHs181pub_sofaIRDKJHf185pub_fenceQARDKHHT1813pub_table2QCRDJQAHT1814pub_table2RCRDJRAHT1815pub_table2SCRDJRAHT1816pub_table2PDRDJPAHf1818pub_fenceRDRDJHHs192pub_sofaJSDKHHS193pub_sofa2KSDKHHf195pub_fenceQASDKHHk1913pub_chair3QCSDJHHk1914pub_chair3RCSDJHHk1915pub_chair3SCSDJHHk1916pub_chair3PDSDJHHf1918pub_fenceRDSDJHHf201pub_fenceIPEKQAHf202pub_fenceJPEKRAHf203pub_fenceKPEKRAHf204pub_fencePAPEKRAHf205pub_fenceQAPEKKHf2018pub_fenceRDPEJHHS217pub_sofa2SAQEIPAHs218pub_sofaPBQEIPAHf2112pub_fencePCQEJQAHf2113pub_fenceQCQEJRAHf2114pub_fenceRCQEJRAHf2115pub_fenceSCQEJRAHf2116pub_fencePDQEJRAHf2117pub_fenceQDQEJRAHf2118pub_fenceRDQEJKHS226pub_sofa2RAREIJHt2215pub_tableSCREHHHC2216pub_chair2PDREHPAHC2217pub_chair2QDREHPAHs236pub_sofaRASEIJHT238pub_table2PBSEIIHs246pub_sofaRAPFIJHT248pub_table2PBPFIHHs256pub_sofaRAQFIJHT258pub_table2PBQFIJ', '0'),
('newbie_lobby', 2, 11, 0, 2, 'xxxxxxxxxxxxxxxx000000\r\nxxxxx0xxxxxxxxxx000000\r\nxxxxx00000000xxx000000\r\nxxxxx000000000xx000000\r\n0000000000000000000000\r\n0000000000000000000000\r\n0000000000000000000000\r\n0000000000000000000000\r\n0000000000000000000000\r\nxxxxx000000000000000xx\r\nxxxxx000000000000000xx\r\nx0000000000000000000xx\r\nx0000000000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxxx0000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxx000000000000xxxxx\r\nxxxxx000000000000xxxxx', 'SOHa016crl_lampPDHHHHy017crl_sofa2cQDHHPAHw018crl_sofa2bRDHHPAHv019crl_sofa2aSDHHPAHa020crl_lampPEHHHHb116crl_chairPDIHJHa27crl_lampSAJHHHa211crl_lampSBJHHHb216crl_chairPDJHJHc35crl_pillarQAKHHHb37crl_chairSAKHJHu39crl_table1bQBKHHHs311crl_sofa1cSBKHRAHb316crl_chairPDKHJHA319crl_table2bSDKHHHz320crl_table2aPEKHHHa40crl_lampHPAHHHy41crl_sofa2cIPAHPAHw42crl_sofa2bJPAHPAHv43crl_sofa2aKPAHPAHa44crl_lampPAPAHHHt49crl_table1aQBPAHHHr411crl_sofa1bSBPAHRAHh415crl_wall2aSCPAHHHa416crl_lampPDPAHHHb50crl_chairHQAHJHb57crl_chairSAQAHJHq511crl_sofa1aSBQAHRAHA62crl_table2bJRAHHHz63crl_table2aKRAHHHa611crl_lampSBRAHHHb70crl_chairHSAHJHa80crl_lampHPBHHHD81crl_sofa3cIPBHHHC82crl_sofa3bJPBHHHB83crl_sofa3aKPBHHHa84crl_lampPAPBHHHo819crl_barchair2SDPBHHHp820crl_tablebarPEPBHHHo821crl_barchair2QEPBHHHE95crl_pillar2QAQBHHHc99crl_pillarQBQBHHHP158crl_desk1aPBSCHHHO159crl_deskiQBSCHHHN1510crl_deskhRBSCHHHM1610crl_deskgRBPDHHHL1710crl_deskfRBQDHHHK1810crl_deskeRBRDHHHK1910crl_deskeRBSDHHHK2010crl_deskeRBPEHHHK2110crl_deskeRBQEHHHK2210crl_deskeRBREHHHK2310crl_deskeRBSEHHHG247crl_wallbSAPFHHHK2410crl_deskeRBPFHHHF257crl_wallaSAQFHHHH258crl_desk1bPBQFHHHI259crl_desk1cQBQFHHHJ2510crl_desk1dRBQFHHHd2712crl_lamp2PCSFHHHf2713crl_cabinet2QCSFHHHe2714crl_cabinet1RCSFHHHd2715crl_lamp2SCSFHH', '0'),
('tearoom', 21, 19, 1, 6, 'xxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxx3333x33333333x\r\n333333xx3333x33333333x\r\n3333333x3333x33333333x\r\n3333333x3333x33333333x\r\n3333333xxxxxx33333333x\r\n333333333333333333333x\r\n333333333333333333333x\r\n333333333333333333333x\r\n333333333333333333333x\r\n33333333222x333333333x\r\n33333333222x333333333x\r\n33333333222x333333333x\r\n33333333222x333333333x\r\n33333333111x333333333x\r\n33333333111x333333333x\r\n33333333111x333333333x\r\nxxxxxxxx111xxxxxxxxxxx\r\n11111111111111111111xx\r\n1111111111111111111111\r\n1111111111111111111111\r\n11111111111111111111xx', 'QIHh113hardwoodsofa1QCIKPAHi114hardwoodsofa2RCIKPAHj115hardwoodsofa3SCIKPAHc116teabambooPDIKHHh118hardwoodsofa1RDIKPAHi119hardwoodsofa2SDIKPAHj120hardwoodsofa3PEIKPAHl313teasmalltable1QCKKHHk315teasmalltable2SCKKHHl318teasmalltable1RDKKHHk320teasmalltable2PEKKHHe62teastoolJRAKPAHe63teastoolKRAKPAHf68chinastoolredPBRAKPAHf69chinastoolredQBRAKPAHf610chinastoolredRBRAKPAHf611chinastoolredSBRAKPAHa82teatable1JPBKHHb83teatable2KPBKHHm92teastool2JQBKHHm93teastool2KQBKHHe916teastoolPDQBKPAHe917teastoolQDQBKPAHa1116teatable1PDSBKHHb1117teatable2QDSBKHHe122teastoolJPCKPAHe123teastoolKPCKPAHm1216teastool2PDPCKHHm1217teastool2QDPCKHHa142teatable1JRCKHHb143teatable2KRCKHHm152teastool2JSCKHHm153teastool2KSCKHHd180teavaseHRDIHHg190chinastoolgreenHSDIJHg200chinastoolgreenHPEIJHd210teavaseHQEIH', '0'),
('rooftop', 17, 12, 4, 2, '44xxxxxxxxxxxxxxxxxx\r\n444xxxxxxxxxxx444444\r\n4444xxxxxxxxxx444444\r\n44444xxxx4xxxx444444\r\n444444xxx44xxx444444\r\n44444444444444444444\r\n44444444444444444444\r\n44444444444444444444\r\n44444444xx44xx44xx44\r\n44444444xx44xx44xx44\r\n44444444444444444444\r\n44444444444444444444\r\n44444444444444444444\r\nx444444x444444xx4444\r\nx444444x444444xx333x\r\nx444444x444444xx222x\r\nx444444x444444xx11xx\r\nx444444x444444xxxxxx', 'PKHa10rooftop_minichairHIPAPAHd116rooftop_flatcurbPDIPAPAHe117rooftop_flatcurb2QDIPAPAHc20rooftop_rodtableHJPAHHa21rooftop_minichairIJPARAHa30rooftop_minichairHKPAHHd416rooftop_flatcurbPDPAPAHHe417rooftop_flatcurb2QDPAPAHHa62rooftop_minichairJRAPAPAHa71rooftop_minichairISAPAJHc72rooftop_rodtableJSAPAHHa73rooftop_minichairKSAPARAHa82rooftop_minichairJPBPAHHa90rooftop_minichairHQBPAPAHb100rooftop_emptytableHRBPAHHa110rooftop_minichairHSBPAHHd131rooftop_flatcurbIQCPAJHd136rooftop_flatcurbRAQCPARAHd138rooftop_flatcurbPBQCPAJHd1313rooftop_flatcurbQCQCPARAHf141rooftop_flatcurb3IRCPAJHf146rooftop_flatcurb3RARCPARAHf148rooftop_flatcurb3PBRCPAJHf1413rooftop_flatcurb3QCRCPARAHf151rooftop_flatcurb3ISCPAJHf156rooftop_flatcurb3RASCPARAHf158rooftop_flatcurb3PBSCPAJHf1513rooftop_flatcurb3QCSCPARAHf161rooftop_flatcurb3IPDPAJHf166rooftop_flatcurb3RAPDPARAHf168rooftop_flatcurb3PBPDPAJHf1613rooftop_flatcurb3QCPDPARAHg171rooftop_flatcurb4IQDPAHHf172rooftop_flatcurb3JQDPAHHf173rooftop_flatcurb3KQDPAHHf174rooftop_flatcurb3PAQDPAHHf175rooftop_flatcurb3QAQDPAHHh176rooftop_flatcurb5RAQDPAHHg178rooftop_flatcurb4PBQDPAHHf179rooftop_flatcurb3QBQDPAHHf1710rooftop_flatcurb3RBQDPAHHf1711rooftop_flatcurb3SBQDPAHHf1712rooftop_flatcurb3PCQDPAHHh1713rooftop_flatcurb5QCQDPAH', '0'),
('rooftop_2', 4, 9, 0, 2, 'x0000x000\r\nxxxxxx000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\nxxx000xxx\r\nxxx000xxx', 'RDHk08rooftop_bigchairPBHHPAHl18rooftop_bigtablePBIHHHj20rooftop_sofabHJHPAHi21rooftop_sofaIJHPAHk28rooftop_bigchairPBJHHHk38rooftop_bigchairPBKHPAHl48rooftop_bigtablePBPAHHHj50rooftop_sofabHQAHHHi51rooftop_sofaIQAHHHk58rooftop_bigchairPBQAHHHj60rooftop_sofabHRAHPAHi61rooftop_sofaIRAHPAHj67rooftop_sofabSARAHPAHi68rooftop_sofaPBRAHPAHj90rooftop_sofabHQBHHHi91rooftop_sofaIQBHHHj97rooftop_sofabSAQBHHHi98rooftop_sofaPBQBHH', '0'),
('star_lounge', 37, 36, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx2222x4444442222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222x444x32222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222xx4xx22222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222222111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222222111xxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333x22222222222222xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333x22222222222222xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333x22222222221111xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333xx2x22222220000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx333333332222222000000xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx333333332222222x0000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx33333332222222x0000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxx222222000000xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'PXHk1521star_tableQESCJHHa1522star_sofaRESCJPAHb1523star_sofa2SESCJPAHz1524palmPFSCJHHb1621star_sofa2QEPDJJHQ1632dj1PHPDJHHW1633dj2QHPDJHHE1634dj3RHPDJHHa1721star_sofaQEQDJJHm1728star_microphonePGQDPAHHb1821star_sofa2QERDJJHa1835star_sofaSHRDJRAHa1921star_sofaQESDJJHb1935star_sofa2SHSDJRAHb2021star_sofa2QEPEJJHb2024star_sofa2PFPEJJHa2032star_sofaPHPEJRAHa2035star_sofaSHPEJRAHa2121star_sofaQEQEJJHa2124star_sofaPFQEJJHb2132star_sofa2PHQEJRAHb2135star_sofa2SHQEJRAHc2221star_sofachairQEREJJHk2224star_tablePFREJHHb2225star_sofa2QFREJHHa2226star_sofaRFREJHHb2230star_sofa2RGREJHHa2231star_sofaSGREJHHk2232star_tablePHREJHHk2235star_tableSHREJHHz2321palmQESEJHHa2335star_sofaSHSEJRAHp2422bar10REPFJHHb2435star_sofa2SHPFJRAHa2437star_sofaQIPFIPAHb2438star_sofa2RIPFIPAHa2439star_sofaSIPFIPAHb2440star_sofa2PJPFIPAHo2522bar9REQFJHHb2525star_sofa2QFQFJHHa2526star_sofaRFQFJHHb2530star_sofa2RGQFJHHa2531star_sofaSGQFJHHa2535star_sofaSHQFJRAHb2536star_sofa2PIQFIJHi2622bar8RERFJHHX2625palm1QFRFJHHV2626palm3RFRFJHHC2630palm2RGRFJHHB2631palm4SGRFJHHb2635star_sofa2SHRFJRAHa2636star_sofaPIRFIJHk2639star_tableSIRFIHHk2640star_tablePJRFIHHu2722bar7RESFJHHa2725star_sofaQFSFJPAHb2726star_sofa2RFSFJPAHa2730star_sofaRGSFJPAHb2731star_sofa2SGSFJPAHk2735star_tableSHSFJHHz2736palmPISFIHHk2737star_tableQISFIHHy2822bar6REPGJHHt2922bar5REQGJHHk2925star_tableQFQGJHHk2926star_tableRFQGJHHk3016star_tablePDRGKHHr3022bar4RERGJHHb3116star_sofa2PDSGKJHe3122bar3RESGJHHb3125star_sofa2QFSGJHHa3126star_sofaRFSGJHHa3130star_sofaRGSGJRAHa3216star_sofaPDPHKJHw3222bar2REPHJHHB3225palm4QFPHJHHX3226palm1RFPHJHHb3230star_sofa2RGPHJRAHb3316star_sofa2PDQHKJHq3322bar1REQHJHHa3325star_sofaQFQHJPAHb3326star_sofa2RFQHJPAHa3330star_sofaRGQHJRAHa3416star_sofaPDRHKJHb3430star_sofa2RGRHJRAHV3435palm3SHRHHHHC3436palm2PIRHHHHk3516star_tablePDSHKHHa3530star_sofaRGSHJRAHb3630star_sofa2RGPIJRAHc3725star_sofachairQFQIJHHb3726star_sofa2RFQIJHHa3727star_sofaSFQIJHHb3728star_sofa2PGQIJHHa3729star_sofaQGQIJHHk3730star_tableRGQIJH', '0'),
('netcafe', 22, 12, 0, 2, 'xxxxx1111xxxxxxxxxxx1xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxxxxx0000000000000xxxx\r\n111111100000000000000xxxx\r\n111111100000000000000xxxx\r\n111111100000000000000xxxx\r\nxxxx11100000000000000xxxx\r\nx1xx11100000000000000xxxx\r\nx1xx11100000000000000xxxx\r\nx1xx111000000000000000000\r\nx1xx111000000000000000000\r\nxxxx111000000000000000000\r\nxxxx11100000000000000xxxx\r\nxxxx1110000000xx11111xxxx\r\nxxxxx111110000x111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxx1111100001111111xxxx', 'RRHi06shift1RAHIPAHj07shift2SAHIPAHm110mRBIIHHl113lQCIIHHk116kPDIIHHk119kSDIIHHh35kukat6QAKIHHg36kukat5RAKIHHc312kukat2PCKIHHb313kukat1QCKIHHc319kukat2SDKIHHb320kukat1PEKIHHi412shift1PCPAHPAHj413shift2QCPAHPAHi419shift1SDPAHPAHj420shift2PEPAHPAHi50shift1HQAIPAHj51shift2IQAIPAHi52shift1JQAIPAHj53shift2KQAIPAHk715kSCSAHJHo716table2PDSAHRAHz717tablecornerQDSAHHHm718mRDSAHRAHl815lSCPBHJHo816table2PDPBHPAHl818lRDPBHRAHm94mPAQBIRAHk99kQBQBHJHp910table3RBQBHRAHz911tablecornerSBQBHHHm912mPCQBHRAHk915kSCQBHJHo916table2PDQBHJHk918kRDQBHRAHk104kPARBIRAHm109mQBRBHJHp1010table3RBRBHPAHm1012mPCRBHRAHm1015mSCRBHJHo1016table2PDRBHHHk1018kRDRBHRAHl114lPASBIRAHl119lQBSBHJHp1110table3RBSBHJHl1112lPCSBHRAHk124kPAPCIRAHl129lQBPCHJHp1210table3RBPCHHHk1212kPCPCHRAHm134mPAQCIRAHc165kukat2QAPDIHHb166kukat1RAPDIHHc167kukat2SAPDIHHb168kukat1PBPDIHHe169kukat3QBPDIHHd1615kukka2SCPDIHHf179kukat4QBQDIHHk186kRARDIRAHe189kukat3QBRDIHHs1820sofabig3PERDIRAHf199kukat4QBSDIHHn1917table1QDSDIPAHz1918tablecornerRDSDIHHr1920sofabig2PESDIRAHn2017table1QDPEIJHr2020sofabig2PEPEIRAHm216mRAQEIRAHn2117table1QDQEIHHq2120sofabig1PEQEIRAHv2316sofalittle3PDSEIHHu2317sofalittle2QDSEIHHt2318sofalittle1RDSEIHHa2320kukkaPESEIH', '0'),
('dusty_lounge', 14, 1, 2, 4, 'xxxxxxxxxxxxxx22xxxxxxxxxxxxx\r\nxxxxxxxxxx222x222x2xxxxxxxxxx\r\nxxxxxxx33322222222223xxxxxxx3\r\nxxxxxxx33322222222223xxxxxxx3\r\nxxxxxxx33322222222223x33333x3\r\nxxxxxxx33322222222223x33333x3\r\nxx111xx33322222222223xxxxxxx3\r\nxx111xxx332222222222333333333\r\nxx111xxxx32222222222333333333\r\nxx111xxxxxx222222222333333333\r\nxx111xxxxxxx1111111x333333333\r\nxx111xxxxxxx1111111x222222222\r\nxx111xxxxxx111111111111111111\r\nxx111xxxxxx111111111111111111\r\n11111xxxxxx111111111111111111\r\n11111xxxxxx111111111111111111\r\n11x11xxxxxx111111111111111111\r\n11xxxxxxxxx11111111111111111x\r\nx11xxxxxxxxx1111111x1111111xx\r\nxx11xxxxxxx111111111111111xxx\r\nxxx11xxxxxx11111111111111xxxx\r\nxxxx11111111111111111111xxxxx\r\nxxxxx11111111111111xxxxxxxxxx\r\nxxxxxxxxxxx11111111xxxxxxxxxx\r\nxxxxxxxxxxx11111111xxxxxxxxxx', 'QHHc48greenchair2PBPAKPAHd49greenchair1QBPAKPAHc68greenchair2PBRAKHHd69greenchair1QBRAKHHa620dustylampPERAKJHa628dustylampPGRAKJHc73greenchair2KSAIPAHd74greenchair1PASAIPAHc93greenchair2KQBIHHd94greenchair1PAQBIHHb1021yellowchairQERBKJHb1023yellowchairSERBKRAHb1026yellowchairRFRBKJHb1028yellowchairPGRBKRAHc1211greenchair2SBPCIJHc133greenchair2KQCIPAHd134greenchair1PAQCIPAHd1311greenchair1SBQCIJHa1411dustylampSBRCIJHc153greenchair2KSCIHHd154greenchair1PASCIHHc1511greenchair2SBSCIJHb1524yellowchairPFSCIPAHd1611greenchair1SBPDIJHb1722yellowchairREQDIJHa1724dustylampPFQDIJHb1726yellowchairRFQDIRAHa1911dustylampSBSDIJHb1924yellowchairPFSDIHHc2312greenchair2PCSEIJHc2314greenchair2RCSEIRAHd2412greenchair1PCPFIJHd2414greenchair1RCPFIRA', '0'),
('orient', 35, 22, 0, 6, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx00000000xxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1000000000xxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xx000x000xx111x111xxx\r\nxxxxxxxxxxxxxx1xx000x000xxxxxx1111xx\r\nxxxxxxxxxxxxxx1xx000x000x111111111xx\r\nxxxxxxxxxxxxxx1xx000x000x111111111xx\r\nxxx111111111111xx000x000x111111111xx\r\nxxx1xxxxxxxxxxxxx000x000x111111111xx\r\nxxx1x1111111111000000000x111111111xx\r\nxxx1x1111111111000000000xx1111111xxx\r\nxxx1x11xxxxxx11000000000xx1111111100\r\nxxx111xxxxxxx11000000000011111111100\r\nxxx111xxxxxxx11000000000011111111100\r\nxxxxx1xxxxxxx11000000000011111111100\r\nxxxxx11xxxxxx11000000000xx1111111100\r\nxxxxx1111111111000000000xx1111111xxx\r\nxxxxx1111111111xx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x00xx11xxxx111xx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxx11111111xx', 'SOHd1017benchQDRBHJHd1019benchSDRBHRAHd1021benchQERBHJHd1023benchSERBHRAHd1117benchQDSBHJHd1119benchSDSBHRAHd1121benchQESBHJHd1123benchSESBHRAHb1132koc_chairPHSBIPAHd1217benchQDPCHJHd1219benchSDPCHRAHd1221benchQEPCHJHd1223benchSEPCHRAHb1231koc_chairSGPCIJHa1232koc_tablePHPCIHHb1233koc_chairQHPCIRAHd1317benchQDQCHJHd1319benchSDQCHRAHd1321benchQEQCHJHd1323benchSEQCHRAHb1325koc_chairQFQCIPAHb1332koc_chairPHQCIHHd1417benchQDRCHJHd1419benchSDRCHRAHd1421benchQERCHJHd1423benchSERCHRAHa1425koc_tableQFRCIHHb1426koc_chairRFRCIRAHd1517benchQDSCHJHd1519benchSDSCHRAHd1521benchQESCHJHd1523benchSESCHRAHb1525koc_chairQFSCIHHb1529koc_chairQGSCIJHa1530koc_tableRGSCIHHb1531koc_chairSGSCIRAHb1630koc_chairRGPDIHHc2425chairf1QFPFIJHc2433chairf1QHPFIRAHd2517benchQDQFHJHd2519benchSDQFHRAHd2521benchQEQFHJHd2523benchSEQFHRAHc2525chairf1QFQFIJHc2533chairf1QHQFIRAHd2617benchQDRFHJHd2619benchSDRFHRAHd2621benchQERFHJHd2623benchSERFHRAHc2625chairf1QFRFIJHc2633chairf1QHRFIRAHd2717benchQDSFHJHd2719benchSDSFHRAHd2721benchQESFHJHd2723benchSESFHRAHd2817benchQDPGHJHd2819benchSDPGHRAHd2821benchQEPGHJHd2823benchSEPGHRAHd2917benchQDQGHJHd2919benchSDQGHRAHd2921benchQEQGHJHd2923benchSEQG`hFFRA', '0'),
('custom_model', 0, 0, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx0000000000000xxxx\r\nxxxxxxxxxxx000000000000000xxx\r\nxxxxxxxxxx00000000000000000xx\r\nxxxxxxxxxx00000000000000000xx\r\nxxxxxxxxxx00000000000000000xx\r\nxxxxxxxxxx11111111111111111xx\r\nxxxxxxxxxx22222222222222222xx\r\nxxxxxxxxxx22222222222222222xx\r\nxxxxxxxxxx22222222222222222xx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('theater', 20, 27, 0, 0, 'XXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXX111111111XXXXXXX\r\nXXXXXXX11111111100000XX\r\nXXXX00X11111111100000XX\r\nXXXX00x11111111100000XX\r\n4XXX00X11111111100000XX\r\n4440000XXXXXXXXX00000XX\r\n444000000000000000000XX\r\n4XX000000000000000000XX\r\n4XX0000000000000000000X\r\n44400000000000000000000\r\n44400000000000000000000\r\n44X0000000000000000O000\r\n44X11111111111111111000\r\n44X11111111111111111000\r\n33X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22211111111111111111000\r\n22211111111111111111000\r\nXXXXXXXXXXXXXXXXXXXX00X\r\nXXXXXXXXXXXXXXXXXXXX00X', 'QKHm1011micSBRBIHHd112thchair2JSBPAJHd122thchair2JPCPAJHd152thchair2JSCPAJHc156thchair1RASCHHHc157thchair1SASCHHHc158thchair1PBSCHHHc159thchair1QBSCHHHc1510thchair1RBSCHHHc1512thchair1PCSCHHHc1513thchair1QCSCHHHc1514thchair1RCSCHHHc1515thchair1SCSCHHHc1516thchair1PDSCHHHd162thchair2JPDPAJHc206thchair1RAPEIHHc207thchair1SAPEIHHc208thchair1PBPEIHHc209thchair1QBPEIHHc2010thchair1RBPEIHHc2012thchair1PCPEIHHc2013thchair1QCPEIHHc2014thchair1RCPEIHHc2015thchair1SCPEIHHc2016thchair1PDPEIHHc236thchair1RASEIHHc237thchair1SASEIHHc238thchair1PBSEIHHc239thchair1QBSEIHHc2310thchair1RBSEIHHc2312thchair1PCSEIHHc2313thchair1QCSEIHHc2314thchair1RCSEIHHc2315thchair1SCSEIHHc2316thchair1PDSEIHHc266thchair1RARFIHHc267thchair1SARFIHHc268thchair1PBRFIHHc269thchair1QBRFIHHc2610thchair1RBRFIHHc2612thchair1PCRFIHHc2613thchair1QCRFIHHc2614thchair1RCRFIHHc2615thchair1SCRFIHHc2616thchair1PDRFIH', '0'),
('picnic', 16, 5, 2, 4, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxx22222xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\n22xxxxxxxxxxxxx22xxxxxxxxxxxxxxxxxxxxx\r\n2222222222222222222x222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222xxx222222222222222222222222\r\n2222222222xx33x22222222222222222222222\r\n222222222xx3333x2222222222222222222222\r\n222222222x333333x222222222222222222222\r\n222222222x333333x222222222222222222222\r\n2222222222x3332x2222222222222222222222\r\n22222222222x33x22222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222x22222xxxx22222222222222222222\r\n22222222222222xxxx22222222222222222222\r\n22222222222222xxx222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222', 'PcHh710hedge7RBSAJPAHh711hedge7SBSAJPAHh712hedge7PCSAJPAHh713hedge7QCSAJPAHy714hedge8RCSAJPAHs718hedge2RDSAJPAHh719hedge7SDSAJPAHh720hedge7PESAJPAHh721hedge7QESAJPAHz814hedge9RCPBJPAHz818hedge9RDPBJPAHv93hedge5KQBJPAHz103hedge9KRBJPAHc1112picnic_dummychair1PCSBKPAHc1113picnic_dummychair1QCSBKPAHc1114picnic_dummychair1RCSB`hFFPAHc1310picnic_dummychair1RBQCKJHc1315picnic_dummychair1SCQCKRAHb1321picnic_groundQEQCJPAHb147picnic_groundSARCJPAHc1410picnic_dummychair1RBRCKJHc1415picnic_dummychair1SCRCKRAHb1519picnic_groundSDSCJJHb1523picnic_groundSESCJRAHb165picnic_groundQAPDJJHb169picnic_groundQBPDJRAHL1620picnic_cloth1PEPDJJHL176picnic_cloth1RAQDJJHb1721picnic_groundQEQDJHHb187picnic_groundSARDJHHa190picnic_redbench2HSDJJHA200picnic_redbench1HPEJJHw2011hedge6SBPEJPAHh2012hedge7PCPEJPAHh2013hedge7QCPEJPAHt2014hedge3RCPEJPAHu2017hedge4QDPEJPAHh2018hedge7RDPEJPAHh2019hedge7SDPEJPAHy2020hedge8PEPEJPAHv2111hedge5SBQEJPAHM2112picnic_bench1PCQEJPAHN2113picnic_bench2QCQEJPAHO2114picnic_bench3RCQEJPAHM2117picnic_bench1QDQEJPAHN2118picnic_bench2RDQEJPAHO2119picnic_bench3SDQEJPAHv2120hedge5PEQEJPAHa220picnic_redbench2HREJJHv2211hedge5SBREJPAHv2220hedge5PEREJPAHb2225picnic_groundQFREJPAHA230picnic_redbench1HSEJJHv2311hedge5SBSEJPAHM2312picnic_bench1PCSEJJHM2319picnic_bench1SDSEJRAHv2320hedge5PESEJPAHc246picnic_dummychair1RAPFJPAHd247picnic_dummychair4SAPFJPAHe248picnic_dummychair6PBPFJPAHv2411hedge5SBPFJPAHN2412picnic_bench2PCPFJJHN2419picnic_bench2SDPFJRAHv2420hedge5PEPFJPAHb2423picnic_groundSEPFJJHb2427picnic_groundSFPFJRAHK255picnic_stumpQAQFJJHv2511hedge5SBQFJPAHN2512picnic_bench2PCQFJJHN2519picnic_bench2SDQFJRAHv2520hedge5PEQFJPAHG2524picnic_cloth2PFQFJJHK267picnic_stumpSARFJHHv2611hedge5SBRFJPAHO2612picnic_bench3PCRFJJHH2614picnic_fireplace1RCRFJHHI2616picnic_fireplace2PDRFJJHO2619picnic_bench3SDRFJRAHv2620hedge5PERFJPAHb2625picnic_groundQFRFJHHz2711hedge9SBSFJPAHQ2712picnic_lemonadePCSFJPAHz2720hedge9PESFJPAHE298picnic_firewood2PBQGJHHa300picnic_redbench2HRGJJHD308picnic_firewood1PBRGJHHA310picnic_redbench1HSGJJHD318picnic_firewood1PBSGJHHM3112picnic_bench1PCSGJPAHN3113picnic_bench2QCSGJPAHO3114picnic_bench3RCSGJPAHM3118picnic_bench1RDSGJPAHN3119picnic_bench2SDSGJPAHO3120picnic_bench3PESGJPAHf3127picnic_carrotSFSGJHHf3128picnic_carrotPGSGJHHf3129picnic_carrotQGSGJHHf3130picnic_carrotRGSGJHHf3131picnic_carrotSGSGJHHD328picnic_firewood1PBPHJHHF3212picnic_table2PCPHJJHP3214picnic_tableRCPHJJHF3218picnic_table2RDPHJJHP3220picnic_tablePEPHJJHr333hedge1KQHJPAHD338picnic_firewood1PBQHJHHM3312picnic_bench1PCQHJHHN3313picnic_bench2QCQHJHHO3314picnic_bench3RCQHJHHM3318picnic_bench1RDQHJHHN3319picnic_bench2SDQHJHHO3320picnic_bench3PEQHJHHg3327picnic_cabbageSFQHJHHg3328picnic_cabbagePGQHJHHg3329picnic_cabbageQGQHJHHv343hedge5KRHJPAHD348picnic_firewood1PBRHJHHv353hedge5KSHJPAHD358picnic_firewood1PBSHJHHv363hedge5KPIJPAHD368picnic_firewood1PBPIJHHD378picnic_firewood1PBQIJHHM3712picnic_bench1PCQIJPAHN3713picnic_bench2QCQIJPAHO3714picnic_bench3RCQIJPAHM3718picnic_bench1RDQIJPAHN3719picnic_bench2SDQIJPAHO3720picnic_bench3PEQIJPAHD388picnic_firewood1PBRIJHHF3812picnic_table2PCRIJJHP3814picnic_tableRCRIJJHF3818picnic_table2RDRIJJHP3820picnic_tablePERIJJHJ398picnic_firewood3PBSIJHHM3912picnic_bench1PCSIJHHN3913picnic_bench2QCSIJHHO3914picnic_bench3RCSIJHHM3918picnic_bench1RDSIJHHN3919picnic_bench2SDSIJHHO3920picnic_bench3PESIJH', '0'),
('cinema_a', 20, 27, 1, 0, 'xxxxxxx1xx11111111xxxxxx\r\nxxx1111111111111111xxxxx\r\nxxx111xxxx1111111111xxxx\r\nxxxx2xxxxxxxxxxxxxxxxxxx\r\nxx3x3x333311xxxxxxxxxx11\r\nxx3333333311111111111111\r\nxx3333333311111111111111\r\nxx3333333311111111122111\r\nxx3333333311x22222222111\r\nxx3333333311x22222222111\r\nxx3333333311xxxxxxxxx111\r\nxx3333333311111111111111\r\nxx3333333311111111111111\r\nxx3333333311111111111111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\n333333332111111xxxx11111\r\n333333332111111111111111\r\n333333332111111111111111\r\n333333332111111111111111\r\nxx3333332111111111111111\r\nxxxxxxxxxxxxxxxxxxx11111\r\nxxxxxxxxxxxxxxxxxxx11111\r\nxxxxxxxxxxxxxxxxxxx11111', 'PUHC42orangeJPAKHHA47loungey_chairSAPAKJHV48loungey_tablebigbPBPAKHHA49loungey_chairQBPAKRAHA52loungey_chairJQAKPAHA57loungey_chairSAQAKJHU58loungey_tablebigaPBQAKHHA59loungey_chairQBQAKRAHB62loungey_tableJRAKHHA72loungey_chairJSAKHHh713theater_chairQCSAIHHh714theater_chairRCSAIHHh715theater_chairSCSAIHHh716theater_chairPDSAIHHh717theater_chairQDSAIHHh718theater_chairRDSAIHHz721stairQESAIHHL89lightpoleQBPBKHHq813pomomaskiQCPBJJHq814pomomaskiRCPBJHHq815pomomaskiSCPBJHHq816pomomaskiPDPBJHHq817pomomaskiQDPBJHHq818pomomaskiRDPBJHHq819pomomaskiSDPBJIHz821stairQEPBIHHC92orangeJQBKHHh913theater_chairQCQBJHHh914theater_chairRCQBJHHh915theater_chairSCQBJHHh916theater_chairPDQBJHHh917theater_chairQDQBJHHh918theater_chairRDQBJHHh919theater_chairSDQBJHHh920theater_chairPEQBJHHz921stairQEQBIHHA102loungey_chairJRBKPAHA109loungey_chairQBRBKPAHB112loungey_tableJSBKHHB119loungey_tableQBSBKHHA122loungey_chairJPCKHHA129loungey_chairQBPCKHHd1217cubicb_chairQDPCIRAHc1219cubico_chairSDPCIJHd1315cubicb_chairSCQCIJHL1319lightpoleSDQCIHHd1320cubicb_chairPEQCIRAHL149lightpoleQBRCKHHA152loungey_chairJSCKPAHd1514cubicb_chairRCSCIPAHc1519cubico_chairSDSCIPAHB162loungey_tableJPDKHHA167loungey_chairSAPDKJHB168loungey_tablePBPDKJHA169loungey_chairQBPDKRAHd1613cubicb_chairQCPDIJHd1614cubicb_chairRCPDIRAHC1619orangeSDPDIHHA172loungey_chairJQDKHHA177loungey_chairSAQDKJHB178loungey_tablePBQDKJHA179loungey_chairQBQDKRAHd1719cubicb_chairSDQDIJHC182orangeJRDKHHd1814cubicb_chairRCRDIPAHK192bardesqueJSDKHHK202bardesqueJPEKIHb203bar_chairKPEKRAHL209lightpoleQBPEKHHd2014cubicb_chairRCPEIHHd2019cubicb_chairSDPEIJHc2020cubico_chairPEPEIRAHK212bardesqueJQEKIHb213bar_chairKQEKRAHd2119cubicb_chairSDQEIHHK222bardesqueJREKIHb223bar_chairKREKRAHL2216lightpolePDREIHHc2218cubico_chairRDREIHHK232bardesqueJSEKIHb233bar_chairKSEKRAHK242bardesqueJPFKIHb243bar_chairKPFKRAHK252bardesqueJQFKJ', '0'),
('the_den', 3, 22, 0, 0, '00000000xxxxxxxx\r\n0000000000000000\r\n0000000000000000\r\n000000000000xx00\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx\r\nGV00000000xxxxxxxx\r\n0000000000000000\r\n0000000000000000\r\n000000000000xx00\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx', '', '0'),
('model_s', 0, 3, 0, 2, 'xxxxxx\r\nx00000\r\nx00000\r\n000000\r\nx00000\r\nx00000\r\nx00000\r\nx00000', '', '0'),
('park_a', 2, 15, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx00xxxxxxxxxxxx\r\nxxxxxxxxxxxxx0x00xxxxxxxxxxx0x000xxxxxxxxxxx\r\nxxxxxxxxxxxx0000000000000000000000xxxxxxxxxx\r\nxxxxxxxxxxx000000000000000000000000xxxxxxxxx\r\nxxxxxxxxxxx0000000000000000000000000xxxxxxxx\r\nxxxxxxxxxxx00000000000000000000000000xxxxxxx\r\nxxxxxxxx000000000000000000000000000000xxxxxx\r\nxxxxxxx00000000000000000000000000000000xxxxx\r\nxxxxxxx000000000000000000000000000000000xxxx\r\nxxxxxxx0000000000000000000000000000000000xxx\r\nxxxxxxxxx000000000000000000000000000000000xx\r\n00000000000000000000xx00000000000000000000xx\r\n0000000000000000000xxxx00000000000xxxxxxx0xx\r\n0000000000000000000xxxx00000000000x00000xxxx\r\nxxxxx00x0000000000xxxxx0xxxxxx0000x0000000xx\r\nxxxxx0000000000000xxxxx0xx000x0000x000000xxx\r\nxxxxx0000000000000xxxxx0x000000000x00000xxxx\r\nxxxxx000000x0000000xxxx0x000000000xxx00xxxxx\r\nxxxxxxxx000x0000000xxx00xxx000000x0000xxxxxx\r\nxxxxxxxx000x000000xxxx0x0000000000000xxxxxxx\r\nxxxxxxxx000x000000011100000000000000xxxxxxxx\r\nxxxxxxxx000x00000001110000000000000xxxxxxxxx\r\nxxxxxxxxx00x0000000111x00000000x00xxxxxxxxxx\r\nxxxxxxxxxx0x0000000xxx0000000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx000000xxxx0000000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx000000xxx00xxxxx00xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxx0xx000x00xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxx0x000000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxxxx00000xxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxxxx00xxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxx0xxxxxxxxxxxxxxxxxxxx', 'RPHN527parkfence2SFQAHHHN529parkfence2QGQAHHHM619parkfence1SDRAHHHO620parkfence3PERAHPAHO621parkfence3QERAHPAHO622parkfence3RERAHPAHN623parkfence2SERAHPAHO624parkfence3PFRAHPAHO625parkfence3QFRAHPAHO626parkfence3RFRAHPAHM627parkfence1SFRAHJHO629parkfence3QGRAHJHN717parkfence2QDSAHHHO719parkfence3SDSAHJHO723parkfence3SESAHJHO727parkfence3SFSAHJHO729parkfence3QGSAHJHO817parkfence3QDPBHJHO819parkfence3SDPBHJHN821parkfence2QEPBHHHO823parkfence3SEPBHJHN825parkfence2QFPBHHHO827parkfence3SFPBHJHO829parkfence3QGPBHJHL98bench2PBQBHPAHK99benchQBQBHPAHO917parkfence3QDQBHJHN919parkfence2SDQBHRAHO921parkfence3QEQBHJHN923parkfence2SEQBHRAHO925parkfence3QFQBHJHN927parkfence2SFQBHRAHO929parkfence3QGQBHJHO1017parkfence3QDRBHJHO1021parkfence3QERBHJHO1025parkfence3QFRBHJHO1029parkfence3QGRBHJHL117bench2SASBHJHM1117parkfence1QDSBHPAHO1118parkfence3RDSBHPAHO1119parkfence3SDSBHPAHO1120parkfence3PESBHPAHN1121parkfence2QESBHJHO1122parkfence3RESBHPAHO1123parkfence3SESBHPAHO1124parkfence3PFSBHPAHN1125parkfence2QFSBHJHO1126parkfence3RFSBHPAHO1127parkfence3SFSBHPAHO1128parkfence3PGSBHPAHM1129parkfence1QGSBHRAHK127benchSAPCHJHL1635bench2SHPDHJHL1637bench2QIPDHPAHK1638benchRIPDHPAHK1735benchSHQDHJHL1827bench2SFRDHPAHK1828benchPGRDHPAHL1835bench2SHRDHJHL1925bench2QFSDHJHK1935benchSHSDHJHK2025benchQFPEHJHL2925bench2QFQGHPAHK2926benchRFQGHPAHL3023bench2SERGHJHK3123benchSESGHJ@`SGSBMRDPBPA0.0I2Mqueue_tile2JMPGRAH0.0I2Mqueue_tile2SAMPFSAJ0.0I2Mqueue_tile2QBMRFSAPA0.0I2Mqueue_tile2SFMSERBJ0.0I2Mqueue_tile2SCMRFPBPA0.0I2Mqueue_tile2REMPGQBH0.0I2Mqueue_tile2PGMPFRBH0.0I2Mqueue_tile2PCMPEPBH0.0I2Mqueue_tile2QGMRFRBJ0.0I2Mqueue_tile2QDMRDQBPA0.0I2Mqueue_tile2RFMRERBJ0.0I2Mqueue_tile2PFMSDRBJ0.0I2Mqueue_tile2PDMPGPBH0.0I2Mqueue_tile2RGMSFRBJ0.0I2Mqueue_tile2RAMRESAPA0.0I2Mqueue_tile2RBMPGSAH0.0I2Mqueue_tile2SDMREQBPA0.0I2Mqueue_tile2QEMRFQBPA0.0I2Mqueue_tile2RCMPFPBH0.0I2Mqueue_tile2KMRDSAPA0.0I2Mqueue_tile2PAMPESAJ0.0I2Mqueue_tile2PBMQFSAJ0.0I2Mqueue_tile2IMPGQAH0.0I2Mqueue_tile2SEMRDRBJ0.0I2Mqueue_tile2QCMREPBPA0.0I2Mqueue_tile2SGMPGRBH0.0I2Mqueue_tile2QAMQESAJ0.0I2Mqueue_tile2QFMPERBH0.0I2Mqueue_tile2RDMPEQBH0.0I2Mqueue_tile2PEMPFQBH0.0I2Mqueue_tile2', '0'),
('park_b', 11, 2, 0, 6, '0000x0000000\r\n0000xx000000\r\n000000000000\r\n00000000000x\r\n000000000000\r\n00x0000x0000', '', '0'),
('model_0', 0, 4, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\n000000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1');
INSERT INTO `room_models` (`id`, `door_x`, `door_y`, `door_z`, `door_dir`, `heightmap`, `public_items`, `club_only`) VALUES
('model_v', 0, 3, 2, 2, 'xxxxxxxxxxxxxxxxxxxx\r\nx222221111111111111x\r\nx222221111111111111x\r\n2222221111111111111x\r\nx222221111111111111x\r\nx222221111111111111x\r\nx222221111111111111x\r\nxxxxxxxx1111xxxxxxxx\r\nxxxxxxxx0000xxxxxxxx\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxxxxxxx00000000000x\r\nx000000x00000000000x\r\nx000000x0000xxxxxxxx\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nxxxxxxxx0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_t', 0, 3, 2, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\n2222222222222222222222222222x\r\nx222222222222222222222222222x\r\nx2222xxxxxx222222xxxxxxx2222x\r\nx2222xxxxxx111111xxxxxxx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xx11xxx1111xxxx11xx2222x\r\nx2222xx11xxx0000xxxx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx2222xx11xxxxxxxxxxx11xx2222x\r\nx2222xx11xxxxxxxxxxx11xx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xxxxxxxxxxxxxxxxxxx2222x\r\nx2222xxxxxxxxxxxxxxxxxxx2222x\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_x', 0, 12, 0, 2, 'xxxxxxxxxxxxxxxxxxxx\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxx00xxx0000xxx00xxx\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\n0000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000xxxxxx000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_w', 0, 3, 2, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx2222xx1111111111xx11111111\r\nx2222xx1111111111xx11111111\r\n222222111111111111111111111\r\nx22222111111111111111111111\r\nx22222111111111111111111111\r\nx22222111111111111111111111\r\nx2222xx1111111111xx11111111\r\nx2222xx1111111111xx11111111\r\nx2222xx1111111111xxxx1111xx\r\nx2222xx1111111111xxxx0000xx\r\nxxxxxxx1111111111xx00000000\r\nxxxxxxx1111111111xx00000000\r\nx22222111111111111000000000\r\nx22222111111111111000000000\r\nx22222111111111111000000000\r\nx22222111111111111000000000\r\nx2222xx1111111111xx00000000\r\nx2222xx1111111111xx00000000\r\nx2222xxxx1111xxxxxxxxxxxxxx\r\nx2222xxxx0000xxxxxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx', '', '1'),
('model_z', 0, 9, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\n000000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_u', 0, 17, 1, 2, 'xxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\n11111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_y', 0, 3, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx0000000000xx0000x\r\nx00000000xx0000000000xx0000x\r\n000000000xx0000000000xx0000x\r\nx00000000xx0000000000xx0000x\r\nx00000000xx0000xx0000xx0000x\r\nx00000000xx0000xx0000xx0000x\r\nx00000000xx0000xx0000000000x\r\nx00000000xx0000xx0000000000x\r\nxxxxx0000xx0000xx0000000000x\r\nxxxxx0000xx0000xx0000000000x\r\nxxxxx0000xx0000xxxxxxxxxxxxx\r\nxxxxx0000xx0000xxxxxxxxxxxxx\r\nx00000000xx0000000000000000x\r\nx00000000xx0000000000000000x\r\nx00000000xx0000000000000000x\r\nx00000000xx0000000000000000x\r\nx0000xxxxxxxxxxxxxxxxxx0000x\r\nx0000xxxxxxxxxxxxxxxxxx0000x\r\nx00000000000000000000000000x\r\nx00000000000000000000000000x\r\nx00000000000000000000000000x\r\nx00000000000000000000000000x\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_oscar', 0, 15, 1, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx11xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111111111111100000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111111111111100000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx11xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_b2g', 0, 0, 0, 2, 'xxxxxxxxxxxxxx\r\nx00000x000000x\r\nx000000000000x\r\nx00000x000000x\r\nx00000x000000x\r\nx00000x000000x\r\nx00000x000000x\r\nxxx0xxx000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx00000xx00000x\r\nxxxxxxxxxxxxxx', '', '1'),
('model_opening', 0, 23, 2, 2, 'xxxxxxxxxxxxxxxxxxx\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx2222xx111111111111\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\n22222xx000000000000\r\nx2222xx000000000000\r\nxxxxxxxxxxxxxxxxxxx', '', '1');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `room_model_static`
--

CREATE TABLE IF NOT EXISTS `room_model_static` (
  `model` varchar(30) NOT NULL,
  `x` int(3) NOT NULL,
  `y` int(3) NOT NULL,
  `name` varchar(255) NOT NULL,
  `seat` int(11) NOT NULL DEFAULT '0',
  `rotation` int(3) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `room_model_static`
--

INSERT INTO `room_model_static` (`model`, `x`, `y`, `name`, `seat`, `rotation`) VALUES
('old_skool', 9, 4, 'mobiles_chair3', 1, 0),
('old_skool', 10, 4, 'mobiles_chair3', 1, 0),
('old_skool', 11, 4, 'mobiles_chair3', 1, 0),
('old_skool', 12, 4, 'mobiles_chair3', 1, 0),
('old_skool', 1, 10, 'mobiles_chair1', 1, 4),
('old_skool', 10, 10, 'mobiles_chair1', 1, 4),
('old_skool', 0, 11, 'mobiles_chair1', 1, 2),
('old_skool', 1, 11, 'mobiles_table2', 0, 0),
('old_skool', 2, 11, 'mobiles_table3', 0, 0),
('old_skool', 3, 11, 'mobiles_chair1', 1, 6),
('old_skool', 10, 11, 'mobiles_table2', 0, 0),
('old_skool', 11, 11, 'mobiles_table3', 0, 0),
('old_skool', 1, 12, 'mobiles_table1', 0, 0),
('old_skool', 2, 12, 'mobiles_table4', 0, 0),
('old_skool', 9, 12, 'mobiles_chair1', 1, 2),
('old_skool', 10, 12, 'mobiles_table1', 0, 0),
('old_skool', 11, 12, 'mobiles_table4', 0, 0),
('old_skool', 12, 12, 'mobiles_chair1', 1, 6),
('old_skool', 1, 13, 'mobiles_chair1', 1, 0),
('old_skool', 11, 13, 'mobiles_chair1', 1, 0),
('old_skool', 0, 15, 'mobiles_chair1', 1, 4),
('old_skool', 0, 17, 'mobiles_chair1', 1, 2),
('old_skool', 1, 17, 'mobiles_table2', 0, 0),
('old_skool', 2, 17, 'mobiles_table3', 0, 0),
('old_skool', 3, 17, 'mobiles_chair1', 1, 6),
('old_skool', 1, 18, 'mobiles_table1', 0, 0),
('old_skool', 2, 18, 'mobiles_table4', 0, 0),
('old_skool', 2, 19, 'mobiles_chair1', 1, 0),
('old_skool', 1, 21, 'mobiles_chair1', 1, 4),
('old_skool', 6, 21, 'mobiles_table2', 0, 0),
('old_skool', 7, 21, 'mobiles_table3', 0, 0),
('old_skool', 12, 21, 'mobiles_chair1', 1, 4),
('old_skool', 0, 22, 'mobiles_chair1', 1, 2),
('old_skool', 1, 22, 'mobiles_table2', 0, 0),
('old_skool', 2, 22, 'mobiles_table3', 0, 0),
('old_skool', 3, 22, 'mobiles_chair1', 1, 6),
('old_skool', 5, 22, 'mobiles_chair1', 1, 2),
('old_skool', 6, 22, 'mobiles_table1', 0, 0),
('old_skool', 7, 22, 'mobiles_table4', 0, 0),
('old_skool', 8, 22, 'mobiles_chair1', 1, 6),
('old_skool', 11, 22, 'mobiles_chair1', 1, 2),
('old_skool', 12, 22, 'mobiles_table2', 0, 0),
('old_skool', 13, 22, 'mobiles_table3', 0, 0),
('old_skool', 14, 22, 'mobiles_chair1', 1, 6),
('old_skool', 1, 23, 'mobiles_table1', 0, 0),
('old_skool', 2, 23, 'mobiles_table4', 0, 0),
('old_skool', 12, 23, 'mobiles_table1', 0, 0),
('old_skool', 13, 23, 'mobiles_table4', 0, 0),
('old_skool', 1, 24, 'mobiles_chair1', 1, 0),
('old_skool', 7, 24, 'mobiles_chair1', 1, 4),
('old_skool', 13, 24, 'mobiles_chair1', 1, 0),
('pizza', 15, 0, 'pizza_plant1', 0, 0);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `room_rights`
--

CREATE TABLE IF NOT EXISTS `room_rights` (
  `room_id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  KEY `room_id` (`room_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `room_rights`
--

INSERT INTO `room_rights` (`room_id`, `user_id`) VALUES
(5525, 2);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `server_status`
--

CREATE TABLE IF NOT EXISTS `server_status` (
  `status` enum('0','1','2') NOT NULL DEFAULT '0',
  `users_online` int(11) NOT NULL DEFAULT '0',
  `rooms_loaded` int(11) NOT NULL DEFAULT '0',
  `server_ver` text NOT NULL,
  `stamp` double NOT NULL,
  `userpeak` int(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `server_status`
--

INSERT INTO `server_status` (`status`, `users_online`, `rooms_loaded`, `server_ver`, `stamp`, `userpeak`) VALUES
('1', 0, 0, 'Server Hang-Glider Emulator v.2.0.1', 1341154249.4976, 2);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `site_app_form`
--

CREATE TABLE IF NOT EXISTS `site_app_form` (
  `id` varchar(24) NOT NULL,
  `caption` varchar(120) NOT NULL,
  `descr` text NOT NULL,
  `field_type` enum('textbox','textarea','checkbox') NOT NULL,
  `required` enum('0','1') NOT NULL DEFAULT '1',
  `order_num` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `site_app_openings`
--

CREATE TABLE IF NOT EXISTS `site_app_openings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `text_descr` text NOT NULL,
  `text_reqs` text NOT NULL,
  `text_duties` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `site_config`
--

CREATE TABLE IF NOT EXISTS `site_config` (
  `var` varchar(20) NOT NULL,
  `result` varchar(150) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `site_config`
--

INSERT INTO `site_config` (`var`, `result`) VALUES
('saved_chatlog', '1'),
('MsgActivated', '1'),
('welcome_message', 'Welcome to Glipper!!!'),
('maintenance', '0');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `site_config_old`
--

CREATE TABLE IF NOT EXISTS `site_config_old` (
  `maintenance` enum('0','1') NOT NULL DEFAULT '0',
  `welcome_message` varchar(150) NOT NULL DEFAULT '¡Welcome to Hang - Glider!',
  `msg_activated` enum('1','0') NOT NULL DEFAULT '1',
  `saved_chatlog` enum('1','0') NOT NULL DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `site_config_old`
--

INSERT INTO `site_config_old` (`maintenance`, `welcome_message`, `msg_activated`, `saved_chatlog`) VALUES
('0', '¡Welcome to Hang - Glider!', '1', '1');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `site_cron`
--

CREATE TABLE IF NOT EXISTS `site_cron` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `prio` int(11) NOT NULL DEFAULT '5',
  `enabled` enum('0','1') NOT NULL DEFAULT '1',
  `scriptfile` varchar(50) NOT NULL,
  `last_exec` int(11) NOT NULL,
  `exec_every` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;

--
-- Gegevens worden uitgevoerd voor tabel `site_cron`
--

INSERT INTO `site_cron` (`id`, `prio`, `enabled`, `scriptfile`, `last_exec`, `exec_every`) VALUES
(1, 5, '1', 'mod_forum.php', 1341147528, 7200),
(2, 4, '1', 'moderation_cleanup.php', 1341147528, 7200),
(3, 5, '1', 'respect.php', 1341147528, 86400),
(4, 5, '1', 'serverstat.php', 1341153088, 120),
(5, 3, '1', 'credits.php', 1341147528, 10800);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `site_hotcampaigns`
--

CREATE TABLE IF NOT EXISTS `site_hotcampaigns` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL DEFAULT '1',
  `enabled` enum('0','1') NOT NULL DEFAULT '1',
  `image_url` text NOT NULL,
  `caption` text NOT NULL,
  `descr` text NOT NULL,
  `url` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `site_minimail`
--

CREATE TABLE IF NOT EXISTS `site_minimail` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `sender_id` int(10) unsigned NOT NULL,
  `receiver_id` int(10) unsigned NOT NULL,
  `folder` enum('inbox','sent','trash') NOT NULL DEFAULT 'inbox',
  `is_read` enum('0','1') NOT NULL DEFAULT '0',
  `subject` varchar(120) NOT NULL,
  `date` varchar(120) NOT NULL,
  `isodate` varchar(120) NOT NULL,
  `timestamp` int(11) NOT NULL,
  `body` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `site_navi`
--

CREATE TABLE IF NOT EXISTS `site_navi` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0',
  `order_id` int(11) NOT NULL,
  `caption` text NOT NULL,
  `class` text NOT NULL,
  `url` text NOT NULL,
  `visibility` enum('0','1','2','3') NOT NULL COMMENT '0 = Never, 1 = Always, 2 = Logged in only, 3 = Guests only',
  PRIMARY KEY (`id`),
  KEY `parent_id` (`parent_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=20 ;

--
-- Gegevens worden uitgevoerd voor tabel `site_navi`
--

INSERT INTO `site_navi` (`id`, `parent_id`, `order_id`, `caption`, `class`, `url`, `visibility`) VALUES
(1, 0, 1, '%habboName%', 'metab', '%www%/me', '2'),
(2, 1, 1, 'Home', '', '/me', '2'),
(5, 0, 2, 'Community', '', '%www%/community', '1'),
(4, 1, 3, 'Account Settings', '', '%www%/profile', '2'),
(6, 0, 3, 'Credits', '', '%www%/credits', '1'),
(7, 5, 1, 'Community', '', '%www%/community', '1'),
(8, 0, 1, 'Register now!', 'tab-register-now', '%www%/register', '3'),
(9, 6, 1, 'Credits', '', '%www%/credits', '1'),
(10, 6, 3, 'Pixels', '', '%www%/credits/pixels', '1'),
(11, 6, 2, 'Uber Club', '', '%www%/credits/uberclub', '1'),
(12, 0, 4, 'VIP Shop (%vipbalance%)', 'viptab', '/vip/shop', '2'),
(13, 12, 1, 'Shop Home', '', '%www%/vip/shop', '2'),
(14, 1, 2, 'My Page', '', '%www%/home/%habboName%', '2'),
(15, 1, 4, 'Uber Club', '', '%www%/credits/uberclub', '2'),
(16, 5, 3, 'Uber Staff', '', '%www%/community/staff', '1'),
(17, 5, 2, 'News', '', '%www%/articles', '1'),
(18, 12, 2, 'Get Points', '', '%www%/vip/getpoints', '2'),
(19, 5, 4, 'Staff Blog', '', '/blog', '1');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `site_news`
--

CREATE TABLE IF NOT EXISTS `site_news` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `seo_link` varchar(120) NOT NULL DEFAULT 'news-article',
  `title` text NOT NULL,
  `category_id` int(10) unsigned NOT NULL DEFAULT '1',
  `topstory_image` text NOT NULL,
  `body` text NOT NULL,
  `snippet` text NOT NULL,
  `datestr` varchar(50) NOT NULL,
  `timestamp` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `site_news_categories`
--

CREATE TABLE IF NOT EXISTS `site_news_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `caption` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;

--
-- Gegevens worden uitgevoerd voor tabel `site_news_categories`
--

INSERT INTO `site_news_categories` (`id`, `caption`) VALUES
(12, 'Uncategorized'),
(1, 'Uber'),
(2, 'Technical'),
(3, 'Updates'),
(4, 'Competitions'),
(5, 'Polls'),
(6, 'Sponsored'),
(7, 'Credits'),
(8, 'Uber Club'),
(9, 'VIP'),
(10, 'Furni'),
(11, 'Support');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `tele_links`
--

CREATE TABLE IF NOT EXISTS `tele_links` (
  `tele_one_id` int(10) unsigned NOT NULL,
  `tele_two_id` int(10) unsigned NOT NULL,
  KEY `tele_one_id` (`tele_one_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `users`
--

CREATE TABLE IF NOT EXISTS `users` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `username` varchar(50) NOT NULL,
  `real_name` varchar(100) NOT NULL DEFAULT '',
  `password` varchar(50) NOT NULL,
  `mail` varchar(50) NOT NULL DEFAULT 'defaultuser@meth0d.org',
  `auth_ticket` text NOT NULL,
  `rank` int(11) unsigned NOT NULL DEFAULT '1',
  `credits` int(11) NOT NULL DEFAULT '0',
  `vip_points` int(11) NOT NULL DEFAULT '0',
  `activity_points` int(11) NOT NULL DEFAULT '0',
  `activity_points_lastupdate` double NOT NULL DEFAULT '0',
  `look` varchar(100) NOT NULL DEFAULT 'hr-115-42.hd-190-1.ch-215-62.lg-285-91.sh-290-62',
  `gender` enum('M','F') NOT NULL DEFAULT 'M',
  `motto` varchar(50) NOT NULL,
  `account_created` varchar(50) NOT NULL,
  `last_online` varchar(50) NOT NULL,
  `online` enum('0','1') NOT NULL DEFAULT '0',
  `ip_last` varchar(120) NOT NULL,
  `ip_reg` varchar(120) NOT NULL,
  `home_room` int(10) unsigned NOT NULL DEFAULT '0',
  `respect` int(11) NOT NULL DEFAULT '0',
  `daily_respect_points` int(11) NOT NULL DEFAULT '3',
  `daily_pet_respect_points` int(11) NOT NULL DEFAULT '3',
  `newbie_status` int(11) NOT NULL DEFAULT '0',
  `is_muted` enum('0','1') NOT NULL DEFAULT '0',
  `mutant_penalty` enum('0','1','2') NOT NULL DEFAULT '0',
  `mutant_penalty_expire` int(11) NOT NULL DEFAULT '0',
  `block_newfriends` enum('0','1') NOT NULL DEFAULT '0',
  `BattleBanzai` varchar(1) NOT NULL DEFAULT 'r',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;

--
-- Gegevens worden uitgevoerd voor tabel `users`
--

INSERT INTO `users` (`id`, `username`, `real_name`, `password`, `mail`, `auth_ticket`, `rank`, `credits`, `vip_points`, `activity_points`, `activity_points_lastupdate`, `look`, `gender`, `motto`, `account_created`, `last_online`, `online`, `ip_last`, `ip_reg`, `home_room`, `respect`, `daily_respect_points`, `daily_pet_respect_points`, `newbie_status`, `is_muted`, `mutant_penalty`, `mutant_penalty_expire`, `block_newfriends`, `BattleBanzai`) VALUES
(1, 'Monroe', '', '', 'defaultuser@meth0d.org', 'testmonroe', 7, 199955, 0, 3872, 1315169831.3422, 'hd-185-2.lg-285-91.sh-290-62.hr-115-42.ch-215-62', 'M', ':)', '', '04/09/2011 23:10:03', '0', '127.0.0.1', '', 0, 3, 73, 0, 0, '0', '0', 0, '0', 'r');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_achievements`
--

CREATE TABLE IF NOT EXISTS `user_achievements` (
  `user_id` int(10) unsigned NOT NULL,
  `achievement_id` int(10) unsigned NOT NULL,
  `achievement_level` int(11) NOT NULL,
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `user_achievements`
--

INSERT INTO `user_achievements` (`user_id`, `achievement_id`, `achievement_level`) VALUES
(1, 11, 1),
(2, 11, 1),
(2, 6, 1),
(3, 11, 1),
(2, 5, 1),
(3, 5, 1),
(3, 6, 1);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_badges`
--

CREATE TABLE IF NOT EXISTS `user_badges` (
  `user_id` int(10) unsigned NOT NULL,
  `badge_id` varchar(100) NOT NULL,
  `badge_slot` int(11) NOT NULL DEFAULT '0',
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `user_badges`
--

INSERT INTO `user_badges` (`user_id`, `badge_id`, `badge_slot`) VALUES
(1, 'Z63', 0),
(2, 'Z63', 1),
(2, 'LLL', 0),
(2, 'XXX', 0),
(2, 'ACH_Student1', 0),
(3, 'Z63', 1),
(2, 'HC1', 0),
(2, 'ACH_Motto1', 0),
(3, 'ACH_Motto1', 0),
(2, 'ACH_BasicClub1', 0),
(3, 'ACH_Student1', 0);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_effects`
--

CREATE TABLE IF NOT EXISTS `user_effects` (
  `user_id` int(10) unsigned NOT NULL,
  `effect_id` int(11) NOT NULL DEFAULT '1',
  `total_duration` int(11) NOT NULL DEFAULT '3600',
  `is_activated` enum('0','1') NOT NULL DEFAULT '0',
  `activated_stamp` double NOT NULL DEFAULT '0',
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_favorites`
--

CREATE TABLE IF NOT EXISTS `user_favorites` (
  `user_id` int(10) unsigned NOT NULL,
  `room_id` int(10) unsigned NOT NULL,
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_ignores`
--

CREATE TABLE IF NOT EXISTS `user_ignores` (
  `user_id` int(10) unsigned NOT NULL,
  `ignore_id` int(10) unsigned NOT NULL,
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_info`
--

CREATE TABLE IF NOT EXISTS `user_info` (
  `user_id` int(11) NOT NULL,
  `bans` int(11) NOT NULL DEFAULT '0',
  `cautions` int(11) NOT NULL DEFAULT '0',
  `reg_timestamp` double NOT NULL DEFAULT '0',
  `login_timestamp` double NOT NULL DEFAULT '0',
  `cfhs` int(11) NOT NULL DEFAULT '0',
  `cfhs_abusive` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `user_info`
--

INSERT INTO `user_info` (`user_id`, `bans`, `cautions`, `reg_timestamp`, `login_timestamp`, `cfhs`, `cfhs_abusive`) VALUES
(4, 0, 0, 1341148784, 1341148784, 0, 0);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_items`
--

CREATE TABLE IF NOT EXISTS `user_items` (
  `id` int(10) unsigned NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `base_item` int(10) unsigned NOT NULL,
  `extra_data` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `user_items`
--

INSERT INTO `user_items` (`id`, `user_id`, `base_item`, `extra_data`) VALUES
(89, 2, 2785096, ''),
(90, 2, 2785096, ''),
(91, 2, 2785096, ''),
(92, 2, 2785096, ''),
(93, 2, 2785096, ''),
(94, 2, 2785096, ''),
(95, 2, 2785096, ''),
(96, 2, 2785096, ''),
(97, 2, 2785096, ''),
(98, 2, 2785096, ''),
(99, 2, 2785096, ''),
(100, 2, 2785096, ''),
(101, 2, 2785096, ''),
(102, 2, 2785096, ''),
(103, 2, 2785096, ''),
(0, 2, 2785109, ''),
(1, 2, 2785109, ''),
(2, 2, 2785109, ''),
(3, 2, 2785109, ''),
(4, 2, 2785096, ''),
(5, 2, 2785096, ''),
(6, 2, 2785096, ''),
(7, 2, 2785096, ''),
(8, 2, 2785096, ''),
(9, 2, 2785096, ''),
(10, 2, 2785096, ''),
(11, 2, 2785096, ''),
(12, 2, 2785096, ''),
(13, 2, 2785096, ''),
(14, 2, 2785096, ''),
(15, 2, 2785096, ''),
(16, 2, 2785096, ''),
(17, 2, 2785096, ''),
(18, 2, 2785096, ''),
(19, 2, 2785096, ''),
(20, 2, 2785096, ''),
(21, 2, 2785096, ''),
(22, 2, 2785096, ''),
(23, 2, 2785096, ''),
(24, 2, 2785096, ''),
(25, 2, 2785096, ''),
(26, 2, 2785096, ''),
(27, 2, 2785096, ''),
(28, 2, 2785096, ''),
(29, 2, 2785096, ''),
(30, 2, 2785096, ''),
(31, 2, 2785096, ''),
(32, 2, 2785096, ''),
(33, 2, 2785096, ''),
(34, 2, 2785096, ''),
(35, 2, 2785096, ''),
(36, 2, 2785096, ''),
(37, 2, 2785096, ''),
(38, 2, 2785096, ''),
(39, 2, 2785096, ''),
(40, 2, 2785096, ''),
(41, 2, 2785096, ''),
(42, 2, 2785096, ''),
(43, 2, 2785096, ''),
(44, 2, 2785096, ''),
(45, 2, 2785096, ''),
(46, 2, 2785096, ''),
(47, 2, 2785096, ''),
(48, 2, 2785096, ''),
(49, 2, 2785096, ''),
(50, 2, 2785096, ''),
(51, 2, 2785096, ''),
(52, 2, 2785096, ''),
(53, 2, 2785096, ''),
(54, 2, 2785096, ''),
(55, 2, 2785096, ''),
(56, 2, 2785096, ''),
(57, 2, 2785096, ''),
(58, 2, 2785096, ''),
(59, 2, 2785096, ''),
(60, 2, 2785096, ''),
(61, 2, 2785096, ''),
(62, 2, 2785096, ''),
(63, 2, 2785096, ''),
(64, 2, 2785096, ''),
(65, 2, 2785096, ''),
(66, 2, 2785096, ''),
(67, 2, 2785096, ''),
(68, 2, 2785096, ''),
(69, 2, 2785096, ''),
(70, 2, 2785096, ''),
(71, 2, 2785096, ''),
(72, 2, 2785096, ''),
(73, 2, 2785096, ''),
(74, 2, 2785096, ''),
(75, 2, 2785096, ''),
(76, 2, 2785096, ''),
(77, 2, 2785096, ''),
(78, 2, 2785096, ''),
(79, 2, 2785096, ''),
(80, 2, 2785096, ''),
(81, 2, 2785096, ''),
(82, 2, 2785096, ''),
(83, 2, 2785096, ''),
(84, 2, 2785096, ''),
(85, 2, 2785096, ''),
(86, 2, 2785096, ''),
(87, 2, 2785096, ''),
(88, 2, 2785096, '');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_pets`
--

CREATE TABLE IF NOT EXISTS `user_pets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `room_id` int(10) unsigned NOT NULL,
  `name` varchar(32) NOT NULL DEFAULT 'Unnamed',
  `race` varchar(3) NOT NULL DEFAULT '000',
  `color` varchar(6) NOT NULL DEFAULT 'FFFFFF',
  `type` int(10) unsigned NOT NULL,
  `expirience` int(11) NOT NULL,
  `energy` int(11) NOT NULL,
  `nutrition` int(11) NOT NULL DEFAULT '100',
  `respect` int(11) NOT NULL DEFAULT '0',
  `createstamp` double NOT NULL DEFAULT '0',
  `x` int(11) NOT NULL DEFAULT '0',
  `y` int(11) NOT NULL DEFAULT '0',
  `z` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;

--
-- Gegevens worden uitgevoerd voor tabel `user_pets`
--

INSERT INTO `user_pets` (`id`, `user_id`, `room_id`, `name`, `race`, `color`, `type`, `expirience`, `energy`, `nutrition`, `respect`, `createstamp`, `x`, `y`, `z`) VALUES
(1, 3, 0, 'Rawr', '0', 'FFFFFF', 6, 0, 0, 100, 0, 1315158791.2538, 0, 0, 0),
(2, 3, 5528, 'Dragon', '3', 'FFFFFF', 12, 0, 100, 100, 0, 1315158911.6578, 0, 0, 0),
(3, 3, 5528, 'lol', '0', 'FFFFFF', 8, 0, 100, 100, 0, 1315160450.5328, 0, 0, 0);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_presents`
--

CREATE TABLE IF NOT EXISTS `user_presents` (
  `item_id` int(10) unsigned NOT NULL,
  `base_id` int(10) unsigned NOT NULL,
  `amount` int(11) NOT NULL,
  `extra_data` text NOT NULL,
  KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_roomvisits`
--

CREATE TABLE IF NOT EXISTS `user_roomvisits` (
  `user_id` int(10) unsigned NOT NULL,
  `room_id` int(10) unsigned NOT NULL,
  `entry_timestamp` double NOT NULL,
  `exit_timestamp` double NOT NULL,
  `hour` int(11) NOT NULL,
  `minute` int(11) NOT NULL,
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_subscriptions`
--

CREATE TABLE IF NOT EXISTS `user_subscriptions` (
  `user_id` int(10) unsigned NOT NULL,
  `subscription_id` varchar(50) NOT NULL,
  `timestamp_activated` int(11) NOT NULL,
  `timestamp_expire` int(11) NOT NULL,
  `usedgifts` int(255) NOT NULL DEFAULT '0',
  `useddays` int(255) NOT NULL DEFAULT '1',
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `user_subscriptions`
--

INSERT INTO `user_subscriptions` (`user_id`, `subscription_id`, `timestamp_activated`, `timestamp_expire`, `usedgifts`, `useddays`) VALUES
(1, 'habbo_vip', 1308169740, 1326918540, 0, 1),
(2, 'habbo_vip', 1313493221, 1326885221, 0, 1),
(3, 'habbo_vip', 1313672532, 1321707732, 0, 1),
(2, 'habbo_club', 1314461909, 1333210709, 0, 1);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_tags`
--

CREATE TABLE IF NOT EXISTS `user_tags` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `tag` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `user_wardrobe`
--

CREATE TABLE IF NOT EXISTS `user_wardrobe` (
  `user_id` int(10) unsigned NOT NULL,
  `slot_id` int(10) unsigned NOT NULL,
  `look` varchar(120) NOT NULL,
  `gender` enum('F','M') NOT NULL DEFAULT 'M',
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Gegevens worden uitgevoerd voor tabel `user_wardrobe`
--

INSERT INTO `user_wardrobe` (`user_id`, `slot_id`, `look`, `gender`) VALUES
(2, 6, 'hd-185-2.lg-285-91.sh-290-62.hr-115-42.ch-215-62', 'M');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `vip_items`
--

CREATE TABLE IF NOT EXISTS `vip_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(120) NOT NULL,
  `name` text NOT NULL,
  `descr` text NOT NULL,
  `price` int(11) NOT NULL DEFAULT '5',
  `image` varchar(120) NOT NULL DEFAULT '',
  `featured` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Gegevens worden uitgevoerd voor tabel `vip_items`
--

INSERT INTO `vip_items` (`id`, `type`, `name`, `descr`, `price`, `image`, `featured`) VALUES
(1, 'cr5000', 'Instant credits update - 5000 credits', 'This will set your credits balance to 5000. This is considered a refill only, meaning your credits balance will *not* go above 5000 by purchasing this product.', 5, '%www%/images/money_stash.png', '1');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `wordsfilter`
--

CREATE TABLE IF NOT EXISTS `wordsfilter` (
  `word` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Filtro de Palabras';

--
-- Gegevens worden uitgevoerd voor tabel `wordsfilter`
--

INSERT INTO `wordsfilter` (`word`) VALUES
('puto'),
('puta'),
('pendejo'),
('pendeja'),
('pito'),
('verga'),
('pene'),
('vagina'),
('cabron'),
('cabrona'),
('chingada'),
('chingados'),
('mierda'),
('popo'),
('poop'),
('motherlover'),
('motherfuck'),
('p.u.t.o'),
('p.u.t.h.o'),
('putho'),
('mamawebo'),
('mamahuevo'),
('mmg'),
('putha'),
('putho'),
('pija'),
('penis'),
('witch'),
('b!tch'),
('dumbass'),
('joto'),
('jotho'),
('idiot'),
('culo');

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
 
Status
Not open for further replies.
Back
Top